diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs index 1bab2abd8e9..d567e19f02f 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs @@ -1,7 +1,5 @@ -using Content.Server.Atmos.EntitySystems; using Content.Server.Atmos.Piping.Components; using Content.Server.Atmos.Piping.Trinary.Components; -using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; using Content.Shared.Atmos.Piping; @@ -13,7 +11,6 @@ namespace Content.Server.Atmos.Piping.Trinary.EntitySystems [UsedImplicitly] public sealed class PressureControlledValveSystem : EntitySystem { - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; @@ -40,39 +37,26 @@ private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, ref return; } - // If output is higher than input, flip input/output to enable bidirectional flow. - if (outletNode.Air.Pressure > inletNode.Air.Pressure) - { - PipeNode temp = outletNode; - outletNode = inletNode; - inletNode = temp; - } - - float control = (controlNode.Air.Pressure - outletNode.Air.Pressure) - comp.Threshold; - float transferRate; - if (control < 0) - { - comp.Enabled = false; - transferRate = 0; - } - else + // If the pressure in either inlet or outlet exceeds the side pressure, act as an open pipe. + if (!comp.Enabled && (controlNode.Air.Pressure < inletNode.Air.Pressure + || controlNode.Air.Pressure < outletNode.Air.Pressure)) { + inletNode.AddAlwaysReachable(outletNode); + outletNode.AddAlwaysReachable(inletNode); comp.Enabled = true; - transferRate = Math.Min(control * comp.Gain, comp.MaxTransferRate * _atmosphereSystem.PumpSpeedup()); + UpdateAppearance(uid, comp); + _ambientSoundSystem.SetAmbience(uid, true); + return; } - UpdateAppearance(uid, comp); - // We multiply the transfer rate in L/s by the seconds passed since the last process to get the liters. - var transferVolume = transferRate * args.dt; - if (transferVolume <= 0) - { - _ambientSoundSystem.SetAmbience(uid, false); + if (!comp.Enabled) return; - } - _ambientSoundSystem.SetAmbience(uid, true); - var removed = inletNode.Air.RemoveVolume(transferVolume); - _atmosphereSystem.Merge(outletNode.Air, removed); + inletNode.RemoveAlwaysReachable(outletNode); + outletNode.RemoveAlwaysReachable(inletNode); + comp.Enabled = false; + UpdateAppearance(uid, comp); + _ambientSoundSystem.SetAmbience(uid, false); } private void OnFilterLeaveAtmosphere(EntityUid uid, PressureControlledValveComponent comp, ref AtmosDeviceDisabledEvent args) diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index 7b8a81c34f5..1aeed69e030 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -51,7 +51,7 @@ private void CacheEmotes() /// The id of emote prototype. Should has valid /// Whether or not this message should appear in the adminlog window /// Conceptual range of transmission, if it shows in the chat window, if it shows to far-away ghosts or ghosts at all... - /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. + /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. public void TryEmoteWithChat( EntityUid source, string emoteId, @@ -74,7 +74,7 @@ public void TryEmoteWithChat( /// Whether or not this message should appear in the adminlog window /// Whether or not this message should appear in the chat window /// Conceptual range of transmission, if it shows in the chat window, if it shows to far-away ghosts or ghosts at all... - /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. + /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. public void TryEmoteWithChat( EntityUid source, EmotePrototype emote, diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index b4641928e48..8afaafa3588 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -8,7 +8,6 @@ using Content.Server.Language; using Content.Server.Speech.Components; using Content.Server.Speech.EntitySystems; -using Content.Server.Chat; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.ActionBlocker; @@ -147,7 +146,7 @@ private void OnGameChange(GameRunLevelChangedEvent ev) /// Whether or not this message should appear in the adminlog window /// /// The player doing the speaking - /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. + /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. public void TrySendInGameICMessage( EntityUid source, string message, @@ -170,7 +169,7 @@ public void TrySendInGameICMessage( /// Conceptual range of transmission, if it shows in the chat window, if it shows to far-away ghosts or ghosts at all... /// /// The player doing the speaking - /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. + /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. /// If set to true, action blocker will not be considered for whether an entity can send this message. public void TrySendInGameICMessage( EntityUid source, @@ -421,11 +420,11 @@ private void SendEntitySpeak( } else { - var nameEv = new TransformSpeakerNameEvent(source, Name(source)); + var nameEv = new TransformSpeakerSpeechEvent(source, Name(source)); RaiseLocalEvent(source, nameEv); - name = nameEv.Name; + name = nameEv.VoiceName ?? Name(source); // Check for a speech verb override - if (nameEv.SpeechVerb != null && _prototypeManager.TryIndex(nameEv.SpeechVerb, out var proto)) + if (nameEv.SpeechVerb != null && _prototypeManager.TryIndex(nameEv.SpeechVerb, out var proto)) speech = proto; } @@ -493,9 +492,9 @@ private void SendEntityWhisper( } else { - var nameEv = new TransformSpeakerNameEvent(source, Name(source)); + var nameEv = new TransformSpeakerSpeechEvent(source, Name(source)); RaiseLocalEvent(source, nameEv); - name = nameEv.Name; + name = nameEv.VoiceName ?? Name(source); } name = FormattedMessage.EscapeText(name); @@ -990,20 +989,6 @@ public record ExpandICChatRecipientstEvent(EntityUid Source, float VoiceRange, D { } -public sealed class TransformSpeakerNameEvent : EntityEventArgs -{ - public EntityUid Sender; - public string Name; - public string? SpeechVerb; - - public TransformSpeakerNameEvent(EntityUid sender, string name, string? speechVerb = null) - { - Sender = sender; - Name = name; - SpeechVerb = speechVerb; - } -} - /// /// Raised broadcast in order to transform speech.transmit /// diff --git a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs index 952b88344da..203872518f2 100644 --- a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs +++ b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs @@ -1,110 +1,30 @@ -using Content.Server.Administration.Logs; -using Content.Server.Chat.Systems; -using Content.Server.Popups; -using Content.Server.VoiceMask; -using Content.Shared.Database; +using Content.Server.VoiceMask; using Content.Shared.Implants; -using Content.Shared.Implants.Components; -using Content.Shared.Popups; -using Content.Shared.Preferences; using Content.Shared.Tag; -using Content.Shared.VoiceMask; -using Robust.Server.GameObjects; -using Robust.Shared.Containers; namespace Content.Server.Implants; public sealed class SubdermalBionicSyrinxImplantSystem : EntitySystem { - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly TagSystem _tag = default!; [ValidatePrototypeId] - public const string BionicSyrinxImplant = "BionicSyrinxImplant"; - + private const string BionicSyrinxImplant = "BionicSyrinxImplant"; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInsert); - SubscribeLocalEvent(OnSpeakerNameTransform); - SubscribeLocalEvent(OnChangeName); - // We need to remove the SyrinxVoiceMaskComponent from the owner before the implant - // is removed, so we need to execute before the SubdermalImplantSystem. - SubscribeLocalEvent(OnRemove, before: new[] { typeof(SubdermalImplantSystem) }); + SubscribeLocalEvent(OnInsert); } - private void OnInsert(EntityUid uid, VoiceMaskerComponent component, ImplantImplantedEvent args) + private void OnInsert(EntityUid uid, VoiceMaskComponent component, ImplantImplantedEvent args) { if (!args.Implanted.HasValue || !_tag.HasTag(args.Implant, BionicSyrinxImplant)) return; - var voicemask = EnsureComp(args.Implanted.Value); - voicemask.VoiceName = MetaData(args.Implanted.Value).EntityName; - Dirty(args.Implanted.Value, voicemask); - } - - private void OnRemove(EntityUid uid, VoiceMaskerComponent component, EntGotRemovedFromContainerMessage args) - { - if (!TryComp(uid, out var implanted) || implanted.ImplantedEntity == null) - return; - - RemComp(implanted.ImplantedEntity.Value); - } - - /// - /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. - /// - private void OnChangeName(EntityUid uid, SyrinxVoiceMaskComponent component, VoiceMaskChangeNameMessage message) - { - if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) - { - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Actor, PopupType.SmallCaution); - return; - } - - component.VoiceName = message.Name; - _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.Actor); - TrySetLastKnownName(uid, message.Name); - UpdateUI(uid, component); - } - - /// - /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. - /// - private void TrySetLastKnownName(EntityUid implanted, string lastName) - { - if (!HasComp(implanted) - || !TryComp(implanted, out var maskComp)) - return; - - maskComp.LastSetName = lastName; - } - - /// - /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. - /// - private void UpdateUI(EntityUid owner, SyrinxVoiceMaskComponent? component = null) - { - if (!Resolve(owner, ref component, logMissing: false)) - return; - - if (_uiSystem.TryGetOpenUi(owner, VoiceMaskUIKey.Key, out _)) - _uiSystem.SetUiState(new(owner, null), VoiceMaskUIKey.Key, new VoiceMaskBuiState(component.VoiceName, null)); - } - - /// - /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. - /// - private void OnSpeakerNameTransform(EntityUid uid, SyrinxVoiceMaskComponent component, TransformSpeakerNameEvent args) - { - if (component.Enabled) - args.Name = component.VoiceName; + // Update the name so it's the entities default name. You can't take it off like a voice mask so it's important! + component.VoiceMaskName = Name(args.Implanted.Value); } } diff --git a/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs deleted file mode 100644 index 97c04039f92..00000000000 --- a/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Server.VoiceMask; - -[RegisterComponent] -public sealed partial class SyrinxVoiceMaskComponent : Component -{ - [ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true; - - [ViewVariables(VVAccess.ReadWrite)] public string VoiceName = "Unknown"; -} diff --git a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs index ddf2a41b573..6ade9aea34e 100644 --- a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs @@ -206,11 +206,11 @@ private void OnReceiveRadio(EntityUid uid, RadioSpeakerComponent component, ref if (uid == args.RadioSource) return; - var nameEv = new TransformSpeakerNameEvent(args.MessageSource, Name(args.MessageSource)); + var nameEv = new TransformSpeakerSpeechEvent(args.MessageSource, Name(args.MessageSource)); RaiseLocalEvent(args.MessageSource, nameEv); var name = Loc.GetString("speech-name-relay", ("speaker", Name(uid)), - ("originalName", nameEv.Name)); + ("originalName", nameEv.VoiceName ?? Name(args.MessageSource))); // log to chat so people can identity the speaker/source, but avoid clogging ghost chat if there are many radios var message = args.OriginalChatMsg.Message; // The chat system will handle the rest and re-obfuscate if needed. diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index 28e6bfc1081..023b660ef89 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -3,8 +3,6 @@ using Content.Server.Language; using Content.Server.Power.Components; using Content.Server.Radio.Components; -using Content.Server.Speech; -using Content.Server.VoiceMask; using Content.Shared.Chat; using Content.Shared.Database; using Content.Shared.Language; @@ -92,28 +90,13 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann if (!_messages.Add(message)) return; - var name = TryComp(messageSource, out VoiceMaskComponent? mask) && mask.Enabled - ? mask.VoiceName - : MetaData(messageSource).EntityName; - - // Delta-V: Support syrinx voice mask on radio. - if (TryComp(messageSource, out SyrinxVoiceMaskComponent? syrinx) && syrinx.Enabled) - name = syrinx.VoiceName; + var evt = new TransformSpeakerSpeechEvent(messageSource, Name(messageSource)); + RaiseLocalEvent(messageSource, evt); + var name = evt.VoiceName ?? Name(messageSource); name = FormattedMessage.EscapeText(name); // most radios are relayed to chat, so lets parse the chat message beforehand - SpeechVerbPrototype speech; - if (mask != null - && mask.Enabled - && mask.SpeechVerb != null - && _prototype.TryIndex(mask.SpeechVerb, out var proto)) - { - speech = proto; - } - else - speech = _chat.GetSpeechVerb(messageSource, message); - var content = escapeMarkup ? FormattedMessage.EscapeText(message) : message; diff --git a/Content.Server/Speech/Components/ListenWireAction.cs b/Content.Server/Speech/Components/ListenWireAction.cs index 68d2201862c..b8b1c19e84b 100644 --- a/Content.Server/Speech/Components/ListenWireAction.cs +++ b/Content.Server/Speech/Components/ListenWireAction.cs @@ -1,9 +1,12 @@ -using Content.Server.Speech.Components; using Content.Server.Chat.Systems; -using Content.Server.VoiceMask; +using Content.Shared.Radio; +using Content.Server.Radio.Components; +using Content.Server.Radio.EntitySystems; +using Content.Server.Speech.Components; using Content.Server.Wires; -using Content.Shared.Speech; using Content.Shared.Wires; +using Content.Shared.Speech; +using Robust.Shared.Prototypes; namespace Content.Server.Speech; @@ -11,17 +14,13 @@ public sealed partial class ListenWireAction : BaseToggleWireAction { private WiresSystem _wires = default!; private ChatSystem _chat = default!; + private RadioSystem _radio = default!; + private IPrototypeManager _protoMan = default!; /// /// Length of the gibberish string sent when pulsing the wire /// private const int NoiseLength = 16; - - /// - /// Identifier of the SpeechVerbPrototype to use when pulsing the wire - /// - [ValidatePrototypeId] - private const string SpeechVerb = "Electricity"; public override Color Color { get; set; } = Color.Green; public override string Name { get; set; } = "wire-name-listen"; @@ -37,6 +36,8 @@ public override void Initialize() _wires = EntityManager.System(); _chat = EntityManager.System(); + _radio = EntityManager.System(); + _protoMan = IoCManager.Resolve(); } public override StatusLightState? GetLightState(Wire wire) { @@ -72,46 +73,20 @@ public override void Pulse(EntityUid user, Wire wire) if (!GetValue(wire.Owner) || !IsPowered(wire.Owner)) return; - // We have to use a valid euid in the ListenEvent. The user seems - // like a sensible choice, but we need to mask their name. - - // Save the user's existing voicemask if they have one - var oldEnabled = true; - var oldVoiceName = Loc.GetString("wire-listen-pulse-error-name"); - string? oldSpeechVerb = null; - if (EntityManager.TryGetComponent(user, out var oldMask)) - { - oldEnabled = oldMask.Enabled; - oldVoiceName = oldMask.VoiceName; - oldSpeechVerb = oldMask.SpeechVerb; - } - - // Give the user a temporary voicemask component - var mask = EntityManager.EnsureComponent(user); - mask.Enabled = true; - mask.VoiceName = Loc.GetString("wire-listen-pulse-identifier"); - mask.SpeechVerb = SpeechVerb; - var chars = Loc.GetString("wire-listen-pulse-characters").ToCharArray(); var noiseMsg = _chat.BuildGibberishString(chars, NoiseLength); - var attemptEv = new ListenAttemptEvent(wire.Owner); - EntityManager.EventBus.RaiseLocalEvent(wire.Owner, attemptEv); - if (!attemptEv.Cancelled) - { - var ev = new ListenEvent(noiseMsg, user); - EntityManager.EventBus.RaiseLocalEvent(wire.Owner, ev); - } + if (!EntityManager.TryGetComponent(wire.Owner, out var radioMicroPhoneComp)) + return; - // Remove the voicemask component, or set it back to what it was before - if (oldMask == null) - EntityManager.RemoveComponent(user, mask); - else - { - mask.Enabled = oldEnabled; - mask.VoiceName = oldVoiceName; - mask.SpeechVerb = oldSpeechVerb; - } + if (!EntityManager.TryGetComponent(wire.Owner, out var voiceOverrideComp)) + return; + + // The reason for the override is to make the voice sound like its coming from electrity rather than the intercom. + voiceOverrideComp.NameOverride = Loc.GetString("wire-listen-pulse-identifier"); + voiceOverrideComp.Enabled = true; + _radio.SendRadioMessage(wire.Owner, noiseMsg, _protoMan.Index(radioMicroPhoneComp.BroadcastChannel), wire.Owner); + voiceOverrideComp.Enabled = false; base.Pulse(user, wire); } diff --git a/Content.Server/Speech/Components/VoiceOverrideComponent.cs b/Content.Server/Speech/Components/VoiceOverrideComponent.cs new file mode 100644 index 00000000000..70deba5ba55 --- /dev/null +++ b/Content.Server/Speech/Components/VoiceOverrideComponent.cs @@ -0,0 +1,35 @@ +using Content.Shared.Speech; +using Robust.Shared.Prototypes; + +namespace Content.Server.Speech.Components; + +/// +/// Will change the voice of the entity that has the component (e.g radio and speech). +/// +/// +/// Before using this component, please take a look at the the TransformSpeakerNameEvent (and the inventory relay version). +/// Depending on what you're doing, it could be a better choice! +/// +[RegisterComponent] +public sealed partial class VoiceOverrideComponent : Component +{ + /// + /// The name that will be used instead of an entities default one. + /// Uses the localized version of the string and if null wont do anything. + /// + [DataField] + public string? NameOverride = null; + + /// + /// The verb that will be used insteand of an entities default one. + /// If null, the defaut will be used. + /// + [DataField] + public ProtoId? SpeechVerbOverride = null; + + /// + /// If true, the override values (if they are not null) will be applied. + /// + [DataField] + public bool Enabled = true; +} diff --git a/Content.Server/Speech/EntitySystems/VoiceOverrideSystem.cs b/Content.Server/Speech/EntitySystems/VoiceOverrideSystem.cs new file mode 100644 index 00000000000..97510966f55 --- /dev/null +++ b/Content.Server/Speech/EntitySystems/VoiceOverrideSystem.cs @@ -0,0 +1,22 @@ +using Content.Shared.Chat; +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems; + +public sealed partial class VoiceOverrideSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnTransformSpeakerName); + } + + private void OnTransformSpeakerName(Entity entity, ref TransformSpeakerSpeechEvent args) + { + if (!entity.Comp.Enabled) + return; + + args.VoiceName = entity.Comp.NameOverride ?? args.VoiceName; + args.SpeechVerb = entity.Comp.SpeechVerbOverride ?? args.SpeechVerb; + } +} diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs index 206c0800f0a..22af959fbd2 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSpeakerSystem.cs @@ -45,11 +45,11 @@ private void OnSpeechSent(EntityUid uid, SurveillanceCameraSpeakerComponent comp component.LastSoundPlayed = time; } - var nameEv = new TransformSpeakerNameEvent(args.Speaker, Name(args.Speaker)); + var nameEv = new TransformSpeakerSpeechEvent(args.Speaker, Name(args.Speaker)); RaiseLocalEvent(args.Speaker, nameEv); var name = Loc.GetString("speech-name-relay", ("speaker", Name(uid)), - ("originalName", nameEv.Name)); + ("originalName", nameEv.VoiceName ?? Name(uid))); // log to chat so people can identity the speaker/source, but avoid clogging ghost chat if there are many radios _chatSystem.TrySendInGameICMessage(uid, args.Message, InGameICChatType.Speak, ChatTransmitRange.GhostRangeLimit, nameOverride: name); diff --git a/Content.Server/VoiceMask/VoiceMaskComponent.cs b/Content.Server/VoiceMask/VoiceMaskComponent.cs index d0c92003006..d3116f94db1 100644 --- a/Content.Server/VoiceMask/VoiceMaskComponent.cs +++ b/Content.Server/VoiceMask/VoiceMaskComponent.cs @@ -3,21 +3,38 @@ namespace Content.Server.VoiceMask; +/// +/// This component is for voice mask items! Adding this component to clothing will give the the voice mask UI +/// and allow the wearer to change their voice and verb at will. +/// +/// +/// DO NOT use this if you do not want the interface. +/// The VoiceOverrideSystem is probably what your looking for (Or you might have to make something similar)! +/// [RegisterComponent] public sealed partial class VoiceMaskComponent : Component { + /// + /// The name that will override an entities default name. If null, it will use the default override. + /// + [DataField] + public string? VoiceMaskName = null; + + /// + /// The speech verb that will override an entities default one. If null, it will use the entities default verb. + /// [DataField] - [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled = true; + public ProtoId? VoiceMaskSpeechVerb; + /// + /// The action that gets displayed when the voice mask is equipped. + /// [DataField] - [ViewVariables(VVAccess.ReadWrite)] - public string VoiceName = "Unknown"; + public EntProtoId Action = "ActionChangeVoiceMask"; /// - /// If EnableSpeechVerbModification is true, overrides the speech verb used when this entity speaks. + /// Reference to the action. /// [DataField] - [ViewVariables(VVAccess.ReadWrite)] - public ProtoId? SpeechVerb; + public EntityUid? ActionEntity; } diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs deleted file mode 100644 index b97c47ceefc..00000000000 --- a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs +++ /dev/null @@ -1,49 +0,0 @@ -using Content.Server.Actions; -using Content.Shared.Clothing; -using Content.Shared.Inventory; - -namespace Content.Server.VoiceMask; - -// This partial deals with equipment, i.e., the syndicate voice mask. -public sealed partial class VoiceMaskSystem -{ - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly ActionsSystem _actions = default!; - - private const string MaskSlot = "mask"; - - private void OnEquip(EntityUid uid, VoiceMaskerComponent component, ClothingGotEquippedEvent args) - { - var user = args.Wearer; - var comp = EnsureComp(user); - comp.VoiceName = component.LastSetName; - comp.SpeechVerb = component.LastSpeechVerb; - - _actions.AddAction(user, ref component.ActionEntity, component.Action, uid); - } - - private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, ClothingGotUnequippedEvent args) - { - RemComp(args.Wearer); - } - - private VoiceMaskerComponent? TryGetMask(EntityUid user) - { - if (!HasComp(user) || !_inventory.TryGetSlotEntity(user, MaskSlot, out var maskEntity)) - return null; - - return CompOrNull(maskEntity); - } - - private void TrySetLastKnownName(EntityUid user, string name) - { - if (TryGetMask(user) is {} comp) - comp.LastSetName = name; - } - - private void TrySetLastSpeechVerb(EntityUid user, string? verb) - { - if (TryGetMask(user) is {} comp) - comp.LastSpeechVerb = verb; - } -} diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index d925092083b..98f6b18f537 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -1,111 +1,115 @@ -using Content.Server.Administration.Logs; -using Content.Server.Chat.Systems; -using Content.Server.Popups; +using Content.Shared.Actions; +using Content.Shared.Administration.Logs; +using Content.Shared.Chat; using Content.Shared.Clothing; using Content.Shared.Database; +using Content.Shared.Implants; +using Content.Shared.Inventory; using Content.Shared.Popups; using Content.Shared.Preferences; using Content.Shared.Speech; using Content.Shared.VoiceMask; -using Robust.Server.GameObjects; -using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Server.VoiceMask; public sealed partial class VoiceMaskSystem : EntitySystem { - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; public override void Initialize() { - SubscribeLocalEvent(OnSpeakerNameTransform); + base.Initialize(); + SubscribeLocalEvent>(OnTransformSpeakerName); + SubscribeLocalEvent>(OnTransformSpeakerNameImplant); SubscribeLocalEvent(OnChangeName); SubscribeLocalEvent(OnChangeVerb); - SubscribeLocalEvent(OnMaskToggled); - SubscribeLocalEvent(OnEquip); - SubscribeLocalEvent(OnUnequip); - SubscribeLocalEvent(OnSetName); - // SubscribeLocalEvent>(GetVerbs); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OpenUI); } - private void OnSetName(VoiceMaskSetNameEvent ev) + private void OnTransformSpeakerName(Entity entity, ref InventoryRelayedEvent args) { - OpenUI(ev.Performer); + args.Args.VoiceName = GetCurrentVoiceName(entity); + args.Args.SpeechVerb = entity.Comp.VoiceMaskSpeechVerb ?? args.Args.SpeechVerb; } - private void OnChangeName(EntityUid uid, VoiceMaskComponent component, VoiceMaskChangeNameMessage message) + private void OnTransformSpeakerNameImplant(Entity entity, ref ImplantRelayEvent args) { - if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) - { - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Actor, PopupType.SmallCaution); - return; - } - - component.VoiceName = message.Name; - _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.Actor); - - TrySetLastKnownName(uid, message.Name); - - UpdateUI(uid, component); + args.Event.VoiceName = GetCurrentVoiceName(entity); + args.Event.SpeechVerb = entity.Comp.VoiceMaskSpeechVerb ?? args.Event.SpeechVerb; } - private void OnChangeVerb(Entity ent, ref VoiceMaskChangeVerbMessage msg) + #region User inputs from UI + private void OnChangeVerb(Entity entity, ref VoiceMaskChangeVerbMessage msg) { - if (msg.Verb is {} id && !_proto.HasIndex(id)) + if (msg.Verb is { } id && !_proto.HasIndex(id)) return; - ent.Comp.SpeechVerb = msg.Verb; + entity.Comp.VoiceMaskSpeechVerb = 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.Actor); - - TrySetLastSpeechVerb(ent, msg.Verb); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), entity, msg.Actor); - UpdateUI(ent, ent.Comp); + UpdateUI(entity); } - private void OnSpeakerNameTransform(EntityUid uid, VoiceMaskComponent component, TransformSpeakerNameEvent args) + private void OnChangeName(Entity entity, ref VoiceMaskChangeNameMessage message) { - if (component.Enabled) + if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) { - /* - args.Name = _idCard.TryGetIdCard(uid, out var card) && !string.IsNullOrEmpty(card.FullName) - ? card.FullName - : Loc.GetString("voice-mask-unknown"); - */ - - args.Name = component.VoiceName; - if (component.SpeechVerb != null) - args.SpeechVerb = component.SpeechVerb; + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), entity, message.Actor, PopupType.SmallCaution); + return; } + + entity.Comp.VoiceMaskName = message.Name; + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Actor):player} set voice of {ToPrettyString(entity):mask}: {entity.Comp.VoiceMaskName}"); + + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), entity, message.Actor); + + UpdateUI(entity); } + #endregion - private void OnMaskToggled(Entity ent, ref WearerMaskToggledEvent args) + #region UI + private void OnEquip(EntityUid uid, VoiceMaskComponent component, ClothingGotEquippedEvent args) { - ent.Comp.Enabled = !args.IsToggled; + _actions.AddAction(args.Wearer, ref component.ActionEntity, component.Action, uid); } - private void OpenUI(EntityUid player) + private void OpenUI(VoiceMaskSetNameEvent ev) { - if (!_uiSystem.IsUiOpen(player, VoiceMaskUIKey.Key)) + // If this ever becomes an entity remove this! + if (!TryComp(ev.Action, out var actionComp)) + return; + + var maskEntity = actionComp.Container; + + if (!TryComp(maskEntity, out var voiceMaskComp)) return; - _uiSystem.OpenUi(player, VoiceMaskUIKey.Key, player); - UpdateUI(player); + if (!_uiSystem.HasUi(maskEntity.Value, VoiceMaskUIKey.Key)) + return; + + _uiSystem.OpenUi(maskEntity.Value, VoiceMaskUIKey.Key, ev.Performer); + UpdateUI((maskEntity.Value, voiceMaskComp)); } - private void UpdateUI(EntityUid owner, VoiceMaskComponent? component = null) + private void UpdateUI(Entity entity) { - if (!Resolve(owner, ref component, logMissing: false)) - return; + if (_uiSystem.HasUi(entity, VoiceMaskUIKey.Key)) + _uiSystem.SetUiState(entity.Owner, VoiceMaskUIKey.Key, new VoiceMaskBuiState(GetCurrentVoiceName(entity), entity.Comp.VoiceMaskSpeechVerb)); + } + #endregion - if (_uiSystem.HasUi(owner, VoiceMaskUIKey.Key)) - _uiSystem.SetUiState(owner, VoiceMaskUIKey.Key, new VoiceMaskBuiState(component.VoiceName, component.SpeechVerb)); + #region Helper functions + private string GetCurrentVoiceName(Entity entity) + { + return entity.Comp.VoiceMaskName ?? Loc.GetString("voice-mask-default-name-override"); } + #endregion } diff --git a/Content.Server/VoiceMask/VoiceMaskerComponent.cs b/Content.Server/VoiceMask/VoiceMaskerComponent.cs deleted file mode 100644 index afea5877df2..00000000000 --- a/Content.Server/VoiceMask/VoiceMaskerComponent.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Content.Shared.Speech; -using Robust.Shared.Prototypes; - -namespace Content.Server.VoiceMask; - -[RegisterComponent] -public sealed partial class VoiceMaskerComponent : Component -{ - [DataField] - public string LastSetName = "Unknown"; - - [DataField] - public ProtoId? LastSpeechVerb; - - [DataField] - public EntProtoId Action = "ActionChangeVoiceMask"; - - [DataField] - public EntityUid? ActionEntity; -} diff --git a/Content.Shared/Chat/SharedChatEvents.cs b/Content.Shared/Chat/SharedChatEvents.cs new file mode 100644 index 00000000000..6d5c435e055 --- /dev/null +++ b/Content.Shared/Chat/SharedChatEvents.cs @@ -0,0 +1,24 @@ +using Content.Shared.Speech; +using Robust.Shared.Prototypes; +using Content.Shared.Inventory; + +namespace Content.Shared.Chat; + +/// +/// This event should be sent everytime an entity talks (Radio, local chat, etc...). +/// The event is sent to both the entity itself, and all clothing (For stuff like voice masks). +/// +public sealed class TransformSpeakerSpeechEvent : EntityEventArgs, IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + public EntityUid Sender; + public string? VoiceName; + public ProtoId? SpeechVerb; + + public TransformSpeakerSpeechEvent(EntityUid sender, string? name = null) + { + Sender = sender; + VoiceName = name; + SpeechVerb = null; + } +} diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index efbcc9bed58..14cb37d18bb 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -70,19 +70,25 @@ public SpeechVerbPrototype GetSpeechVerb(EntityUid source, string message, Speec if (!Resolve(source, ref speech, false)) return _prototypeManager.Index(DefaultSpeechVerb); + var evt = new TransformSpeakerSpeechEvent(source); + RaiseLocalEvent(source, evt); + + SpeechVerbPrototype? speechProto = null; + if (evt.SpeechVerb != null && _prototypeManager.TryIndex(evt.SpeechVerb, out var evntProto)) + speechProto = evntProto; + // check for a suffix-applicable speech verb - SpeechVerbPrototype? current = null; foreach (var (str, id) in speech.SuffixSpeechVerbs) { var proto = _prototypeManager.Index(id); - if (message.EndsWith(Loc.GetString(str)) && proto.Priority >= (current?.Priority ?? 0)) + if (message.EndsWith(Loc.GetString(str)) && proto.Priority >= (speechProto?.Priority ?? 0)) { - current = proto; + speechProto = proto; } } // if no applicable suffix verb return the normal one used by the entity - return current ?? _prototypeManager.Index(speech.SpeechVerb); + return speechProto ?? _prototypeManager.Index(speech.SpeechVerb); } /// diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 830d2270aa4..a43d4fca723 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Shared.Actions; +using Content.Shared.Chat; using Content.Shared.Implants.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; @@ -29,6 +30,7 @@ public override void Initialize() SubscribeLocalEvent(RelayToImplantEvent); SubscribeLocalEvent(RelayToImplantEvent); SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); } private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args) diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index b9d6a51f886..39e10415f8e 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -13,6 +13,7 @@ using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; +using Content.Shared.Chat; namespace Content.Shared.Inventory; @@ -29,6 +30,7 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f3edcf68eaa..ed4bdf332c5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -7665,3 +7665,66 @@ Entries: id: 6496 time: '2024-10-29T02:24:08.0000000+00:00' url: https://github.com/Simple-Station/Einstein-Engines/pull/1162 +- author: Ichaie + changes: + - type: Add + message: >- + Fixed several issues with the Gax Station. It also now has a newly + redesigned AI Satellite. + id: 6497 + time: '2024-11-01T23:01:34.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1163 +- author: VMSolidus + changes: + - type: Tweak + message: >- + Several new updates to Saltern, particularly around Service, Logistics, + and Engineering. + - type: Tweak + message: >- + Pressure Controlled Valves now actually function like their real-world + counterpart. If the pressure in the control-side exceeds the pressure in + either input or output sides, the valve opens, allowing air to flow + bidirectionally between input and output(Basically, an open valve). Air + can never pass through the Control-side. + - type: Tweak + message: >- + Literally doubled the power output of solar panels, to make them + actually worthwhile to setup. + id: 6498 + time: '2024-11-02T00:40:50.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1170 +- author: VMSolidus + changes: + - type: Add + message: >- + Cargo can now order crates of Uranium, Gold, and Silver. This is still + far more expensive than getting the materials from Salvage, but serves + as an incredibly useful failsafe in the event Salvage is + Unwilling/Dead/Incompetent/Shitters. + id: 6499 + time: '2024-11-02T01:03:14.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1171 +- author: Beck Thompson + changes: + - type: Fix + message: Fixed various bugs related to voice masks and voice mask implants. + id: 6500 + time: '2024-11-02T01:11:00.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1147 +- author: VMSolidus + changes: + - type: Add + message: >- + Added Python, Pollock, Webley, K38, Fitz, Wood Furniture Viper, Energy + Pistol, PDW-9, and Svalinn to security loadouts as new Duty Weapon + options. + - type: Tweak + message: >- + Modified the descriptions of all handguns obtained via Security Officer + Loadouts to explicitly state that they actually belong to the security + officer. Apparently people were being stupid and confiscating weapons + from their own Secoffs that they were entirely intended to have. + id: 6501 + time: '2024-11-02T01:11:17.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1158 diff --git a/Resources/Locale/en-US/loadouts/jobs/security.ftl b/Resources/Locale/en-US/loadouts/jobs/security.ftl index 565e295047d..442dc653269 100644 --- a/Resources/Locale/en-US/loadouts/jobs/security.ftl +++ b/Resources/Locale/en-US/loadouts/jobs/security.ftl @@ -6,6 +6,8 @@ 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) +loadout-name-LoadoutMagazineMagnumSpare = pistol magazine (.45 magnum, spare) +loadout-name-LoadoutMagazineMagnumRubberSpare = pistol magazine (.45 magnum rubber, spare) # Duty Weapons loadout-name-LoadoutSecurityMk58 = Mk58 (lethal) @@ -17,4 +19,17 @@ 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 +loadout-name-LoadoutSecurityPistolViperNonLethal = Viper (non-lethal) +loadout-name-LoadoutSecurityPistolViperWood = Viper (wood furniture, lethal) +loadout-name-LoadoutSecurityEnergyGun = Mini Energy Gun +loadout-name-LoadoutSecurityEnergyGunPistol = Energy Pistol +loadout-name-LoadoutSecurityPistolPollock = Pollock (lethal) +loadout-name-LoadoutSecurityPistolPollockNonlethal = Pollock (non-lethal) +loadout-name-LoadoutSecurityRevolverSnub = Snub-nose .45 (lethal) +loadout-name-LoadoutSecurityRevolverSnubNonlethal = Snub-nose .45 (non-lethal) +loadout-name-LoadoutSecurityRevolverK38Master = K-38 Master (lethal) +loadout-name-LoadoutSecurityRevolverK38MasterNonlethal = K-38 Master (non-lethal) +loadout-name-LoadoutSecurityRevolverFitz = Fitz (lethal) +loadout-name-LoadoutSecurityRevolverFitzNonlethal = Fitz (non-lethal) +loadout-name-LoadoutSecurityRevolverPython = Python (lethal) +loadout-name-LoadoutSecurityRevolverPythonNonlethal = Python (non-lethal) diff --git a/Resources/Locale/en-US/voice-mask.ftl b/Resources/Locale/en-US/voice-mask.ftl index 2f5acefee41..f3740cdafb6 100644 --- a/Resources/Locale/en-US/voice-mask.ftl +++ b/Resources/Locale/en-US/voice-mask.ftl @@ -1,3 +1,5 @@ +voice-mask-default-name-override = Unknown + voice-mask-name-change-window = Voice Mask Name Change voice-mask-name-change-info = Type in the name you want to mimic. voice-mask-name-change-speech-style = Speech style diff --git a/Resources/Maps/gaxstation.yml b/Resources/Maps/gaxstation.yml index 3de887a3b3b..e3e186a62da 100644 --- a/Resources/Maps/gaxstation.yml +++ b/Resources/Maps/gaxstation.yml @@ -45,7 +45,7 @@ entities: - uid: 1 components: - type: MetaData - name: NTEB14 'GaxStation' TG-182 + name: GaxStation - type: Transform - type: Map mapPaused: True @@ -130,11 +130,11 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA + tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAABAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 @@ -150,7 +150,7 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAA version: 6 -2,3: ind: -2,3 @@ -178,7 +178,7 @@ entities: version: 6 1,4: ind: 1,4 - tiles: JgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: JgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 0,5: ind: 0,5 @@ -190,15 +190,15 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAeQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAeQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAA + tiles: JgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAA version: 6 2,0: ind: 2,0 @@ -218,7 +218,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 4,2: ind: 4,2 @@ -238,23 +238,23 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: JgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 2,4: ind: 2,4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAaAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAaAAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAaAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAaAAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,5: ind: 2,5 - tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -310,11 +310,11 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANgAAAAAANgAAAAAANgAAAAAAJgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAANgAAAAAANgAAAAAAJgAAAAAANgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAANgAAAAAANgAAAAAAJgAAAAAANgAAAAAAJgAAAAAA version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANgAAAAAAJgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANgAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANgAAAAAAJgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAJgAAAAAA version: 6 5,-1: ind: 5,-1 @@ -324,6 +324,18 @@ entities: ind: -3,5 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 2,-3: + ind: 2,-3 + tiles: JgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -349,39 +361,39 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 4702: 34,0 + 4522: 34,0 - node: color: '#FFFFFFFF' id: Arrows decals: - 4701: 33,-2 + 4521: 33,-2 - node: angle: -3.141592653589793 rad color: '#4B709CFF' id: ArrowsGreyscale decals: - 4863: -6,20 - 4864: -5,20 + 4683: -6,20 + 4684: -5,20 - node: angle: -1.5707963267948966 rad color: '#4B709CFF' id: ArrowsGreyscale decals: - 4867: -4,21 - 4868: -3,21 + 4687: -4,21 + 4688: -3,21 - node: angle: -1.5707963267948966 rad color: '#9C2020FF' id: ArrowsGreyscale decals: - 4865: -4,19 - 4866: -3,19 + 4685: -4,19 + 4686: -3,19 - node: color: '#9C2020FF' id: ArrowsGreyscale decals: - 4861: -6,20 - 4862: -5,20 + 4681: -6,20 + 4682: -5,20 - node: color: '#FFFFFFFF' id: Bot @@ -461,29 +473,28 @@ entities: 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 + 2901: -20,67 + 2902: -20,68 + 3802: 51,-6 + 4131: 33,54 + 4132: 34,55 + 4133: 35,54 + 4134: 34,53 + 4197: -33,19 + 4206: -27,7 + 4207: -27,7 + 4253: -36,27 + 4259: -26,31 + 4260: -26,33 + 4261: -26,35 + 4262: -26,37 + 4263: -15,37 + 4519: 33,0 + 4592: 27,3 + 4593: 24,2 + 4615: 35,-1 + 4616: 35,-2 + 4617: 37,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -509,16 +520,16 @@ entities: 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 + 2907: -26,68 + 4127: 33,55 + 4128: 35,53 + 4296: -21,37 + 4297: -21,36 + 4298: -22,35 + 4299: -23,35 + 4300: -19,32 + 4301: -19,31 + 4594: 23,2 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -531,26 +542,26 @@ entities: 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 + 2903: -10,62 + 2904: -10,64 + 2908: -22,69 + 2909: -22,70 + 4129: 35,55 + 4130: 33,53 + 4198: -28,10 + 4294: -19,36 + 4295: -19,37 + 4302: -21,31 + 4303: -21,32 + 4304: -22,33 + 4305: -23,33 + 4595: 25,2 - node: color: '#9C2020FF' id: Box decals: - 4859: -6,19 - 4860: -5,19 + 4679: -6,19 + 4680: -5,19 - node: color: '#FFFFFFFF' id: Box @@ -574,50 +585,50 @@ entities: 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 + 3803: 49,-7 + 4175: -34,17 + 4176: -32,17 + 4177: -30,18 + 4178: -31,19 + 4179: -32,20 + 4180: -34,21 + 4181: -27,19 + 4182: -27,19 + 4183: -25,19 + 4184: -26,18 + 4185: -27,16 + 4186: -27,16 + 4187: -28,16 + 4188: -29,16 + 4189: -31,13 + 4190: -34,13 + 4191: -34,9 + 4192: -32,7 + 4193: -29,10 + 4194: -28,7 + 4195: -26,10 + 4196: -26,14 + 4251: -34,26 + 4252: -35,27 + 4258: -28,28 + 4285: -21,35 + 4286: -20,35 + 4287: -19,35 + 4288: -19,33 + 4289: -20,33 + 4290: -21,33 + 4291: -22,34 + 4292: -20,36 + 4293: -20,32 + 4588: 27,1 + 4589: 27,2 + 4590: 28,3 + 4591: 28,3 + 4596: 25,1 + 4614: 34,1 + 4618: 36,-2 + 4619: 77,40 + 4620: 78,40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -635,49 +646,49 @@ entities: color: '#4B709CFF' id: BoxGreyscale decals: - 4857: -6,21 - 4858: -5,21 + 4677: -6,21 + 4678: -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 + 2905: -33,52 + 4277: -14,35 + 4278: -14,33 + 4279: -14,29 + 4280: -14,27 - node: color: '#DE3A3A96' id: BrickCornerOverlayNE decals: - 2946: -17,68 + 2896: -17,68 - node: color: '#DE3A3A96' id: BrickCornerOverlaySE decals: - 2947: -17,67 + 2897: -17,67 - node: color: '#DE3A3A96' id: BrickCornerOverlaySW decals: - 2948: -18,67 + 2898: -18,67 - node: color: '#52B4E996' id: BrickLineOverlayN decals: - 3736: 21,21 + 3686: 21,21 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 4766: 25,1 + 4586: 25,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4764: 23,1 - 4765: 24,1 + 4584: 23,1 + 4585: 24,1 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -685,14 +696,14 @@ entities: 659: -1,71 678: 2,77 713: 9,79 - 4826: 70,29 + 4646: 70,29 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: 660: 2,71 681: 7,77 - 4827: 69,29 + 4647: 69,29 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -704,13 +715,13 @@ entities: 686: 6,74 699: 11,71 703: 8,70 - 4833: 70,24 + 4653: 70,24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: 658: 2,74 - 4832: 69,24 + 4652: 69,24 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -732,7 +743,7 @@ entities: 673: -2,71 679: 2,76 719: 5,71 - 4848: 69,24 + 4668: 69,24 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw @@ -744,7 +755,7 @@ entities: 682: 8,77 709: 2,75 720: 11,71 - 4849: 70,24 + 4669: 70,24 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe @@ -757,7 +768,7 @@ entities: 693: 5,74 702: 8,71 774: 6,75 - 4847: 69,29 + 4667: 69,29 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw @@ -766,7 +777,7 @@ entities: 670: 2,75 671: 3,74 711: 8,79 - 4846: 70,29 + 4666: 70,29 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -777,14 +788,14 @@ entities: 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 + 4654: 70,25 + 4655: 70,26 + 4656: 70,27 + 4657: 70,28 + 4662: 69,28 + 4663: 69,27 + 4664: 69,26 + 4665: 69,25 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -825,14 +836,14 @@ entities: 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 + 4648: 69,28 + 4649: 69,27 + 4650: 69,26 + 4651: 69,25 + 4658: 70,27 + 4659: 70,28 + 4660: 70,26 + 4661: 70,25 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe @@ -849,9 +860,15 @@ entities: 1560: 83,35 1616: 20,40 1632: 1,17 - 4683: 21,-17 - 4743: 28,3 - 4782: 36,1 + 4563: 28,3 + 4602: 36,1 + 4859: 32,-37 + 4860: 31,-36 + 4867: 32,-44 + 4909: 32,-28 + 4938: 37,-27 + 4941: 38,-29 + 4948: 26,-32 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -867,7 +884,7 @@ entities: 530: 29,29 572: 29,36 1090: -4,60 - 4292: 5,35 + 4242: 5,35 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe @@ -885,7 +902,7 @@ entities: 104: 4,17 124: 12,17 1567: 86,38 - 4162: -6,8 + 4112: -6,8 - node: color: '#D381C996' id: BrickTileWhiteCornerNe @@ -896,10 +913,10 @@ entities: 2062: 50,11 2151: 60,22 2174: 59,17 - 3798: 54,-1 - 3802: 54,2 - 3812: 52,7 - 4714: 36,5 + 3748: 54,-1 + 3752: 54,2 + 3762: 52,7 + 4534: 36,5 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNe @@ -923,7 +940,7 @@ entities: 1679: -3,31 1980: 46,14 2410: 62,57 - 4271: -4,17 + 4221: -4,17 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe @@ -956,9 +973,13 @@ entities: 1617: 19,40 1621: 16,39 1635: -2,17 - 4662: 39,-16 - 4670: 32,-17 - 4742: 27,3 + 4562: 27,3 + 4855: 29,-36 + 4856: 28,-37 + 4868: 28,-44 + 4903: 28,-30 + 4906: 29,-28 + 4937: 36,-27 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -980,7 +1001,7 @@ entities: 515: 21,28 526: 25,29 1088: -6,60 - 4294: 3,35 + 4244: 3,35 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw @@ -999,7 +1020,7 @@ entities: 146: -2,12 546: -16,9 1566: 84,38 - 4164: -8,8 + 4114: -8,8 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -1012,9 +1033,9 @@ entities: 2050: 48,11 2056: 47,7 2073: 52,27 - 3783: 48,2 - 3787: 48,-1 - 4721: 30,5 + 3733: 48,2 + 3737: 48,-1 + 4541: 30,5 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNw @@ -1037,10 +1058,10 @@ entities: 1986: 43,14 2423: 59,62 2757: 69,15 - 2945: -18,68 - 4260: 3,29 - 4274: -7,17 - 4875: -12,68 + 2895: -18,68 + 4210: 3,29 + 4224: -7,17 + 4695: -12,68 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1088,8 +1109,12 @@ entities: 1593: 73,33 1613: 20,37 1641: 1,14 - 4695: 21,-7 - 4811: 71,23 + 4631: 71,23 + 4858: 32,-38 + 4875: 32,-48 + 4915: 32,-34 + 4942: 38,-30 + 4950: 26,-34 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1106,7 +1131,7 @@ entities: 505: 19,28 1579: 86,30 2272: 9,39 - 4300: 5,31 + 4250: 5,31 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1124,7 +1149,7 @@ entities: 84: 12,10 126: 12,15 560: 8,9 - 4171: -6,3 + 4121: -6,3 - node: color: '#D381C996' id: BrickTileWhiteCornerSe @@ -1135,9 +1160,9 @@ entities: 2106: 56,24 2152: 60,20 2172: 59,15 - 3797: 54,-2 - 3801: 54,1 - 4715: 36,3 + 3747: 54,-2 + 3751: 54,1 + 4535: 36,3 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe @@ -1203,11 +1228,13 @@ entities: 1588: 75,33 1623: 16,37 1638: -2,14 - 4644: 32,-7 - 4652: 39,-8 - 4740: 27,1 - 4788: 35,-2 - 4808: 68,23 + 4560: 27,1 + 4608: 35,-2 + 4628: 68,23 + 4857: 28,-38 + 4879: 28,-48 + 4899: 28,-34 + 4944: 36,-30 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1221,7 +1248,7 @@ entities: 489: 25,31 497: 21,30 1581: 84,30 - 4298: 3,31 + 4248: 3,31 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw @@ -1238,7 +1265,7 @@ entities: 111: 6,15 543: -14,11 559: 6,9 - 4169: -8,3 + 4119: -8,3 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -1250,8 +1277,8 @@ entities: 2051: 48,9 2057: 47,6 2070: 52,24 - 3784: 48,1 - 3788: 48,-2 + 3734: 48,1 + 3738: 48,-2 - node: color: '#D4D4D496' id: BrickTileWhiteCornerSw @@ -1276,8 +1303,8 @@ entities: 2406: 59,56 2427: 59,59 2755: 69,13 - 4262: 3,27 - 4877: -12,66 + 4212: 3,27 + 4697: -12,66 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1301,21 +1328,21 @@ entities: color: '#334E6DC8' id: BrickTileWhiteEndE decals: - 4786: 37,-2 + 4606: 37,-2 - node: color: '#D381C996' id: BrickTileWhiteEndE decals: - 3794: 54,-4 - 3803: 54,4 + 3744: 54,-4 + 3753: 54,4 - node: color: '#334E6DC8' id: BrickTileWhiteEndN decals: - 4733: 31,2 - 4780: 35,2 - 4813: 71,25 - 4824: 68,29 + 4553: 31,2 + 4600: 35,2 + 4633: 71,25 + 4644: 68,29 - node: color: '#EFB34196' id: BrickTileWhiteEndN @@ -1335,7 +1362,7 @@ entities: color: '#D381C996' id: BrickTileWhiteEndW decals: - 3780: 48,4 + 3730: 48,4 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe @@ -1365,12 +1392,14 @@ entities: 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 + 4565: 28,1 + 4601: 35,1 + 4605: 36,-2 + 4638: 68,23 + 4863: 31,-37 + 4926: 29,-34 + 4927: 29,-31 + 4940: 37,-29 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe @@ -1396,7 +1425,6 @@ entities: 566: 23,36 573: 29,35 1093: -4,57 - 2904: -38,37 - node: zIndex: 100 color: '#52B4E996' @@ -1419,12 +1447,6 @@ entities: 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 @@ -1436,8 +1458,8 @@ entities: 105: 4,16 122: 11,17 148: -3,11 - 4161: -6,7 - 4484: 8,17 + 4111: -6,7 + 4434: 8,17 - node: color: '#D381C996' id: BrickTileWhiteInnerNe @@ -1451,13 +1473,13 @@ entities: 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 + 3746: 53,-4 + 3750: 53,-1 + 3754: 53,2 + 3758: 52,4 + 3761: 52,6 + 3765: 49,7 + 4531: 35,5 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNe @@ -1503,8 +1525,7 @@ entities: 2420: 60,60 2747: 71,15 2770: 67,11 - 2926: -36,37 - 3753: 70,39 + 3703: 70,39 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -1524,8 +1545,7 @@ entities: 1369: -9,31 1388: -31,27 1391: -34,28 - 2933: -34,37 - 4197: 33,49 + 4147: 33,49 - node: zIndex: 100 color: '#FA750096' @@ -1557,14 +1577,15 @@ entities: 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 + 2894: 32,49 + 4568: 31,1 + 4613: 35,1 + 4622: 68,27 + 4635: 71,23 + 4862: 29,-37 + 4904: 29,-30 + 4925: 31,-34 + 4930: 31,-31 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw @@ -1597,7 +1618,6 @@ entities: 522: 25,25 575: 31,35 1084: -6,57 - 2901: -36,37 - node: zIndex: 100 color: '#52B4E996' @@ -1653,10 +1673,10 @@ entities: 2075: 54,27 2081: 54,30 2122: 64,30 - 3779: 49,4 - 3781: 49,2 - 3785: 49,-1 - 4725: 35,5 + 3729: 49,4 + 3731: 49,2 + 3735: 49,-1 + 4545: 35,5 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNw @@ -1702,7 +1722,6 @@ entities: 2726: -2,64 2759: 71,15 2773: 70,11 - 2924: -34,37 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw @@ -1726,10 +1745,9 @@ entities: 1282: -11,37 1288: -11,41 1356: -5,36 - 2932: -32,37 - 4195: 35,49 - 4196: 37,49 - 4265: -6,19 + 4145: 35,49 + 4146: 37,49 + 4215: -6,19 - node: zIndex: 100 color: '#FA750096' @@ -1769,11 +1787,10 @@ entities: 2240: 41,33 2243: 39,33 2778: 66,27 - 2913: -38,36 - 4694: 20,-7 - 4696: 21,-6 - 4732: 30,3 - 4791: 34,0 + 4552: 30,3 + 4611: 34,0 + 4920: 29,-32 + 4928: 29,-29 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe @@ -1833,9 +1850,8 @@ entities: 106: 4,16 118: 8,19 121: 11,19 - 2938: -34,36 - 4174: -6,6 - 4268: -6,19 + 4124: -6,6 + 4218: -6,19 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -1855,31 +1871,19 @@ entities: 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 + 3740: 49,-4 + 3743: 52,-4 + 3745: 53,-4 + 3749: 53,-2 + 3755: 53,1 + 3756: 53,4 + 3760: 52,6 + 4538: 32,3 - 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 @@ -1921,7 +1925,7 @@ entities: 2417: 60,60 2745: 71,17 2765: 67,17 - 4870: 43,12 + 4690: 43,12 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe @@ -1944,8 +1948,8 @@ entities: 1574: 87,34 1578: 86,31 1663: -5,33 - 3859: -37,25 - 3860: -37,25 + 3809: -37,25 + 3810: -37,25 - node: zIndex: 100 angle: 29.845130209103036 rad @@ -1992,14 +1996,12 @@ entities: 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 + 4559: 28,1 + 4599: 23,1 + 4610: 35,0 + 4625: 68,27 + 4922: 31,-32 + 4929: 31,-29 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -2050,8 +2052,7 @@ entities: 1127: 13,19 1648: 3,14 1703: -4,6 - 2937: -32,36 - 4485: 7,19 + 4435: 7,19 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -2072,18 +2073,12 @@ entities: 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 + 3727: 49,6 + 3732: 49,4 + 3736: 49,1 + 3739: 49,-2 + 3741: 50,-4 + 3742: 53,-4 - node: color: '#D4D4D496' id: BrickTileWhiteInnerSw @@ -2213,28 +2208,29 @@ entities: 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 + 4554: 31,1 + 4555: 31,0 + 4564: 28,2 + 4603: 36,0 + 4604: 36,-1 + 4632: 71,24 + 4639: 68,24 + 4640: 68,25 + 4641: 68,27 + 4642: 68,26 + 4643: 68,28 + 4872: 32,-45 + 4873: 32,-46 + 4874: 32,-47 + 4910: 32,-29 + 4911: 32,-30 + 4912: 32,-31 + 4913: 32,-32 + 4914: 32,-33 + 4919: 29,-33 + 4932: 29,-30 + 4939: 37,-28 + 4949: 26,-33 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -2311,14 +2307,12 @@ entities: 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 + 4236: 1,35 + 4237: 1,34 + 4238: 1,33 + 4239: 5,32 + 4240: 5,33 + 4241: 5,34 - node: zIndex: 100 color: '#52B4E996' @@ -2355,13 +2349,6 @@ entities: 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 @@ -2388,15 +2375,8 @@ entities: 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 + 4122: -6,4 + 4123: -6,5 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -2443,15 +2423,8 @@ entities: 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 + 3759: 52,5 + 4533: 35,6 - node: color: '#D4D4D496' id: BrickTileWhiteLineE @@ -2460,13 +2433,6 @@ entities: 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 @@ -2524,11 +2490,9 @@ entities: 2767: 67,15 2768: 67,14 2769: 67,13 - 2920: -36,38 - 2921: -36,39 - 3752: 70,40 - 4269: -4,15 - 4270: -4,16 + 3702: 70,40 + 4219: -4,15 + 4220: -4,16 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -2562,11 +2526,9 @@ entities: 1392: -34,29 1575: 87,33 1576: 87,32 - 2930: -34,39 - 2931: -34,38 - 4188: 35,51 - 4189: 35,50 - 4190: 35,52 + 4138: 35,51 + 4139: 35,50 + 4140: 35,52 - node: zIndex: 100 color: '#FA750096' @@ -2618,28 +2580,21 @@ entities: 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 + 4566: 29,1 + 4567: 30,1 + 4612: 34,1 + 4623: 67,27 + 4636: 70,23 + 4637: 69,23 + 4861: 30,-36 + 4869: 29,-44 + 4870: 30,-44 + 4871: 31,-44 + 4907: 30,-28 + 4908: 31,-28 + 4924: 30,-34 + 4931: 30,-31 + 4947: 25,-32 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -2700,9 +2655,8 @@ entities: 571: 28,36 574: 30,35 1089: -5,60 - 2903: -37,37 - 4293: 4,35 - 4703: 4,21 + 4243: 4,35 + 4523: 4,21 - node: zIndex: 100 color: '#52B4E996' @@ -2763,12 +2717,6 @@ entities: 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 @@ -2795,8 +2743,8 @@ entities: 545: -15,9 1565: 85,38 1627: 3,17 - 4163: -7,8 - 4176: -5,7 + 4113: -7,8 + 4126: -5,7 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -2819,12 +2767,12 @@ entities: 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 + 3757: 53,4 + 3763: 51,7 + 3764: 50,7 + 4542: 32,5 + 4543: 33,5 + 4544: 34,5 - node: color: '#D4D4D496' id: BrickTileWhiteLineN @@ -2913,11 +2861,10 @@ entities: 2758: 70,15 2771: 68,11 2772: 69,11 - 2927: -35,37 - 4258: 4,29 - 4259: 5,29 - 4272: -6,17 - 4273: -5,17 + 4208: 4,29 + 4209: 5,29 + 4222: -6,17 + 4223: -5,17 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2950,9 +2897,8 @@ entities: 1387: -30,27 1390: -33,28 1660: -8,31 - 2934: -33,37 - 4186: 36,49 - 4187: 34,49 + 4136: 36,49 + 4137: 34,49 - node: zIndex: 100 color: '#FA750096' @@ -3006,29 +2952,25 @@ entities: 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 + 4556: 29,-1 + 4557: 28,-1 + 4607: 36,-2 + 4624: 67,27 + 4629: 69,23 + 4630: 70,23 + 4864: 31,-38 + 4865: 30,-38 + 4866: 29,-38 + 4876: 31,-48 + 4877: 30,-48 + 4878: 29,-48 + 4916: 31,-34 + 4917: 30,-34 + 4918: 29,-34 + 4921: 30,-32 + 4933: 30,-29 + 4943: 37,-30 + 4951: 25,-34 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -3086,7 +3028,7 @@ entities: 500: 20,32 578: 24,36 1580: 85,30 - 4299: 4,31 + 4249: 4,31 - node: color: '#9FED5896' id: BrickTileWhiteLineS @@ -3145,17 +3087,11 @@ entities: 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 + 4120: -7,3 + 4125: -5,6 + 4216: -4,19 + 4217: -5,19 + 4524: 4,19 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -3197,20 +3133,8 @@ entities: 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 + 4536: 34,3 + 4537: 33,3 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -3274,8 +3198,8 @@ entities: 2762: 70,17 2763: 69,17 2764: 68,17 - 4263: 4,27 - 4264: 5,27 + 4213: 4,27 + 4214: 5,27 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -3323,7 +3247,7 @@ entities: 1374: -35,25 1386: -30,27 1394: -36,25 - 4224: -32,7 + 4174: -32,7 - node: zIndex: 100 color: '#FA750096' @@ -3378,25 +3302,27 @@ entities: 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 + 4558: 28,0 + 4561: 27,2 + 4597: 23,-1 + 4598: 23,0 + 4609: 35,-1 + 4621: 68,28 + 4626: 68,25 + 4627: 68,24 + 4634: 71,24 + 4645: 68,26 + 4880: 28,-47 + 4881: 28,-46 + 4882: 28,-45 + 4900: 28,-33 + 4901: 28,-32 + 4902: 28,-31 + 4905: 29,-29 + 4923: 31,-33 + 4934: 31,-30 + 4935: 36,-29 + 4936: 36,-28 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -3468,11 +3394,9 @@ entities: 576: 31,36 1086: -6,58 1087: -6,59 - 2905: -36,38 - 2906: -36,39 - 4295: 3,34 - 4296: 3,33 - 4297: 3,32 + 4245: 3,34 + 4246: 3,33 + 4247: 3,32 - node: zIndex: 100 color: '#52B4E996' @@ -3525,17 +3449,10 @@ entities: 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 + 4115: -8,7 + 4116: -8,6 + 4117: -8,5 + 4118: -8,4 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -3581,17 +3498,10 @@ entities: 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 + 3728: 49,5 + 4532: 35,6 + 4539: 30,3 + 4540: 30,4 - node: color: '#D4D4D496' id: BrickTileWhiteLineW @@ -3664,19 +3574,17 @@ entities: 2429: 60,58 2756: 69,14 2760: 71,16 - 4261: 3,28 - 4275: -7,16 - 4276: -7,15 - 4869: 43,12 - 4876: -12,67 + 4211: 3,28 + 4225: -7,16 + 4226: -7,15 + 4689: 43,12 + 4696: -12,67 - node: zIndex: 100 color: '#DE3A3A96' id: BrickTileWhiteLineW decals: 2881: 10,30 - 2918: -34,39 - 2919: -34,38 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -3732,19 +3640,12 @@ entities: 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 + 4141: 35,52 + 4142: 35,52 + 4143: 35,51 + 4144: 35,50 + 4172: -34,8 + 4173: -34,9 - node: zIndex: 100 color: '#FA750096' @@ -3804,12 +3705,12 @@ entities: 721: 0,70 722: -1,71 723: -2,75 - 2940: 33,18 + 2892: 33,18 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 2941: 32,18 + 2893: 32,18 - node: color: '#FFFFFFFF' id: Bushf1 @@ -3906,33 +3807,33 @@ entities: 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 + 4807: -33.747612,71.87493 + 4808: -30.082,72.072716 + 4809: -29.936958,75.06785 + 4810: -33.912235,74.93599 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 3843: 49,-3 + 3793: 49,-3 - node: color: '#FFFFFFFF' id: Caution decals: - 3842: 50,-4 + 3792: 50,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 3844: 51,-3 + 3794: 51,-3 - node: color: '#DE3A3A96' id: Delivery decals: - 2949: -18,65 - 2950: -17,65 + 2899: -18,65 + 2900: -17,65 - node: color: '#FFFFFFFF' id: Delivery @@ -3945,35 +3846,35 @@ entities: 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 + 4135: 34,54 + 4199: -28,12 + 4200: -28,14 + 4201: -34,6 + 4202: -35,7 + 4203: -30,6 + 4204: -35,11 + 4205: -35,15 + 4254: -37,25 + 4255: -37,27 + 4256: -31,24 + 4257: -36,28 + 4264: -22,28 + 4265: -21,28 + 4266: -20,25 + 4267: -21,25 + 4268: -19,25 + 4269: -18,25 + 4270: -18,28 + 4271: -19,29 + 4272: -16,30 + 4273: -16,31 + 4274: -15,34 + 4275: -17,35 + 4276: -17,33 + 4281: -17,31 + 4282: -17,30 + 4283: -17,37 + 4284: -17,38 - node: color: '#951710FF' id: Dirt @@ -4045,151 +3946,151 @@ entities: 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 + 2971: 42,21 + 2972: 42,21 + 2973: 40,21 + 2974: 40,21 + 2975: 40,20 + 2976: 41,20 + 2977: 41,19 + 2978: 40,19 + 2979: 43,19 + 2980: 43,20 + 3040: 49,11 + 3041: 50,11 + 3042: 50,10 + 3073: 60,38 + 3180: 68,52 + 3181: 68,50 + 3182: 69,50 + 3183: 70,51 + 3184: 69,51 + 3185: 70,50 + 3186: 70,50 + 3391: -19,68 + 3392: -19,67 + 3393: -15,68 + 3394: -16,69 + 3395: -18,69 + 3396: -17,67 + 3397: -16,66 + 3503: 16,44 + 3504: 15,43 + 3514: 26,42 + 3515: 28,42 + 3516: 29,42 + 3517: 29,40 + 3518: 27,44 + 3519: 28,45 + 3540: 27,27 + 3541: 28,27 + 3542: 28,26 + 3543: 28,26 + 3544: 29,27 + 3545: 26,29 + 3546: 26,27 + 3547: 26,26 + 3548: 27,28 + 3549: 26,25 + 3550: 26,24 + 3551: 25,24 + 3552: 25,24 + 3553: 26,23 + 3554: 23,25 + 3555: 23,27 + 3556: 23,27 + 3557: 21,25 + 3558: 22,24 + 3559: 22,24 + 3560: 22,24 + 3561: 19,24 + 3562: 20,24 + 3563: 21,26 + 3564: 22,27 + 3565: 23,25 + 3566: 23,25 + 3567: 23,24 + 4030: -15,-1 + 4031: -15,-1 + 4032: -17,0 + 4033: -15,1 + 4034: -15,2 + 4035: -15,-1 + 4036: -17,-2 + 4037: -14,-2 + 4038: -14,-2 + 4039: -14,0 + 4040: -16,0 + 4041: -16,-2 + 4042: -17,-1 + 4043: -18,1 + 4044: -18,2 + 4045: -18,0 + 4046: -17,-1 + 4047: -18,-2 + 4048: -15,2 + 4049: -15,3 + 4050: -14,3 + 4051: -15,2 + 4052: -15,4 + 4053: -15,5 + 4054: -15,6 + 4055: -15,6 + 4056: -16,5 + 4057: -16,7 + 4058: -15,9 + 4059: -14,9 + 4060: -14,6 + 4061: -13,6 + 4062: -15,7 + 4063: -15,6 + 4064: -15,7 + 4065: -18,8 + 4066: -18,8 + 4067: -18,7 + 4068: -19,7 + 4069: -18,7 + 4070: -18,6 + 4071: -18,6 + 4072: -15,7 + 4073: -15,8 + 4074: -15,8 + 4075: -13,5 + 4076: -12,4 + 4077: -11,6 + 4078: -11,5 + 4079: -11,4 + 4080: -10,4 + 4081: -11,6 + 4082: -11,7 + 4083: -11,8 + 4084: -11,9 + 4085: -11,10 + 4086: -11,11 + 4087: -13,12 + 4088: -13,12 + 4089: -10,9 + 4090: -11,12 + 4091: -12,13 + 4092: -12,13 + 4093: -12,11 + 4094: -13,12 + 4095: -8,12 + 4096: -11,12 + 4097: -12,12 + 4098: -9,11 + 4099: -8,10 + 4100: -11,11 + 4101: -12,11 + 4102: -10,10 + 4103: -7,10 + 4104: -11,13 + 4105: -12,14 + 4106: -11,12 + 4107: -10,12 + 4108: -10,11 + 4109: -10,12 + 4110: -10,11 - node: color: '#951710FF' id: DirtHeavy @@ -4207,15 +4108,15 @@ entities: 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 + 3687: 69,61 + 3688: 73,61 + 3689: 75,60 + 3690: 75,59 + 3691: 78,60 + 3692: 78,61 + 3693: 75,61 + 3694: 75,62 + 3695: 74,61 - node: cleanable: True color: '#FFFFFFFF' @@ -4259,315 +4160,315 @@ entities: 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 + 2981: 42,20 + 2982: 42,20 + 2983: 42,19 + 2984: 42,20 + 2985: 43,21 + 2986: 43,21 + 2987: 44,21 + 2988: 44,20 + 2989: 44,20 + 3005: 34,15 + 3053: 57,19 + 3070: 60,42 + 3071: 61,42 + 3072: 61,43 + 3104: 44,42 + 3105: 44,42 + 3177: 63,50 + 3178: 66,52 + 3179: 64,53 + 3290: -2,47 + 3291: 4,47 + 3292: 3,47 + 3293: -6,47 + 3294: -7,47 + 3295: -11,49 + 3296: -13,47 + 3297: -13,47 + 3298: 0,40 + 3299: -2,36 + 3300: -2,33 + 3301: 0,31 + 3302: 0,31 + 3303: 1,30 + 3304: -1,27 + 3305: -1,27 + 3306: 1,26 + 3307: -2,24 + 3308: -1,19 + 3309: -2,19 + 3310: -7,20 + 3311: -6,21 + 3312: 1,19 + 3313: 9,18 + 3314: 12,19 + 3315: 22,19 + 3316: 25,20 + 3317: 28,20 + 3318: 30,19 + 3319: 30,19 + 3320: 28,19 + 3321: 26,18 + 3322: 23,17 + 3323: 24,16 + 3324: 23,14 + 3325: 25,13 + 3326: 26,13 + 3327: 26,15 + 3328: 23,14 + 3329: 28,14 + 3330: 21,12 + 3331: 22,10 + 3332: 21,9 + 3333: 22,8 + 3334: 27,10 + 3335: 35,47 + 3336: 39,48 + 3337: 39,49 + 3338: 15,47 + 3339: 14,49 + 3358: -2,52 + 3359: -2,51 + 3360: -1,51 + 3361: -1,52 + 3362: -1,51 + 3363: -1,54 + 3364: -3,56 + 3365: -5,55 + 3366: -5,54 + 3367: -2,55 + 3368: 0,55 + 3369: -8,56 + 3370: -9,55 + 3371: -11,55 + 3372: -12,55 + 3373: -13,54 + 3374: -13,53 + 3375: -11,57 + 3376: -12,58 + 3377: -16,57 + 3378: -16,55 + 3379: -15,55 + 3380: -13,57 + 3381: -12,60 + 3382: -12,61 + 3383: -12,63 + 3384: -13,64 + 3385: -18,62 + 3386: -19,61 + 3387: -20,60 + 3388: -20,64 + 3389: -17,64 + 3390: -17,64 + 3398: -23,69 + 3399: -23,69 + 3400: -23,70 + 3401: -25,71 + 3402: -25,70 + 3403: -24,68 + 3435: -33,53 + 3436: -33,53 + 3437: -32,51 + 3438: -29,52 + 3439: -28,53 + 3440: -28,54 + 3441: -29,55 + 3442: -27,51 + 3443: -27,51 + 3444: -20,54 + 3445: -19,55 + 3446: -15,49 + 3447: -18,38 + 3448: -15,38 + 3449: -17,36 + 3450: -18,37 + 3451: -26,30 + 3452: -26,28 + 3453: -26,28 + 3454: -24,28 + 3455: -23,28 + 3456: -20,27 + 3457: -20,28 + 3458: -23,26 + 3459: -31,27 + 3460: -32,26 + 3461: -32,25 + 3462: -33,24 + 3463: -30,24 + 3464: -32,23 + 3465: -33,24 + 3466: -33,25 + 3467: -31,25 + 3468: -32,26 + 3469: -33,27 + 3470: -34,28 + 3471: -32,28 + 3472: -31,28 + 3473: -34,29 + 3474: -34,26 + 3475: -34,25 + 3476: -38,26 + 3477: -36,25 + 3478: -35,28 + 3479: -28,20 + 3480: -27,22 + 3481: -22,18 + 3482: -23,17 + 3483: -21,19 + 3484: -18,18 + 3485: -19,18 + 3486: -18,17 + 3487: -15,19 + 3488: -14,20 + 3489: -15,19 + 3490: -12,19 + 3491: -11,20 + 3492: -9,20 + 3493: -1,25 + 3494: 1,30 + 3495: -2,32 + 3496: 12,44 + 3497: 13,40 + 3498: 17,43 + 3499: 15,42 + 3500: 18,44 + 3501: 17,45 + 3502: 18,45 + 3662: 17,38 + 3663: 17,39 + 3664: 23,43 + 3665: 24,43 + 3666: 36,44 + 3667: 37,45 + 3668: 38,44 + 3669: 36,43 + 3670: 35,43 + 3671: 40,47 + 3672: 40,47 + 3673: 38,47 + 3674: 37,47 + 3675: 40,49 + 3676: 41,48 + 3677: 42,47 + 3678: 42,52 + 3679: 41,51 + 3680: 41,50 + 3681: 41,51 + 3682: 40,53 + 3683: 39,54 + 3684: 42,53 + 3685: 44,54 + 3921: -15,-7 + 3922: -15,-7 + 3923: -16,-5 + 3924: -16,-5 + 3925: -17,-6 + 3926: -16,-8 + 3927: -17,-7 + 3928: -17,-5 + 3929: -17,-5 + 3930: -17,-7 + 3931: -17,-8 + 3932: -16,-6 + 3933: -17,-4 + 3934: -17,-6 + 3935: -15,-6 + 3936: -15,-5 + 3937: -15,-4 + 3938: -16,-5 + 3939: -17,-2 + 3940: -17,-1 + 3941: -17,-2 + 3942: -18,-1 + 3943: -17,0 + 3944: -17,1 + 3945: -16,-2 + 3946: -15,-1 + 3947: -15,-1 + 3948: -14,0 + 3949: -14,-2 + 3950: -15,-1 + 3951: -14,1 + 3952: -15,2 + 3953: -17,1 + 3954: -15,2 + 3955: -15,3 + 3956: -17,0 + 3957: -17,-1 + 3958: -15,1 + 3959: -16,-1 + 3960: -16,0 + 3961: -15,3 + 3962: -15,6 + 3963: -13,7 + 3964: -13,6 + 3965: -14,6 + 3966: -14,5 + 3967: -12,5 + 3968: -15,5 + 3969: -15,5 + 3970: -15,5 + 3971: -16,5 + 3972: -16,6 + 3973: -16,6 + 3974: -16,8 + 3975: -15,8 + 3976: -14,9 + 3977: -14,8 + 3978: -14,8 + 3979: -15,9 + 3980: -14,9 + 3981: -13,10 + 3982: -13,9 + 3983: -12,9 + 3984: -12,10 + 3985: -12,10 + 3986: -12,9 + 3987: -12,10 + 3988: -11,10 + 3989: -11,9 + 3990: -11,11 + 3991: -11,11 + 3992: -10,10 + 3993: -10,9 + 3994: -11,11 + 3995: -13,11 + 3996: -13,12 + 3997: -13,12 + 3998: -13,12 + 3999: -11,11 + 4000: -11,11 + 4001: -12,13 + 4002: -9,10 + 4003: -8,10 + 4004: -10,6 + 4005: -10,6 + 4006: -11,6 + 4007: -11,5 + 4008: -12,5 + 4009: -10,4 + 4010: -10,4 + 4011: -12,4 + 4012: -11,5 + 4013: -12,4 + 4014: -10,5 + 4015: -12,6 + 4016: -11,5 + 4017: -13,6 + 4018: -14,5 + 4019: -11,5 + 4020: -11,5 + 4021: -14,5 + 4022: -12,5 + 4023: -13,5 + 4024: -15,1 + 4025: -15,1 + 4026: -14,0 + 4027: -14,0 + 4028: -14,-1 + 4029: -14,-1 - node: color: '#951710FF' id: DirtHeavyMonotile @@ -4584,12 +4485,12 @@ entities: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3746: 69,58 - 3747: 63,60 - 3748: 70,56 - 3749: 67,55 - 3750: 67,45 - 3751: 68,43 + 3696: 69,58 + 3697: 63,60 + 3698: 70,56 + 3699: 67,55 + 3700: 67,45 + 3701: 68,43 - node: cleanable: True color: '#FFFFFFFF' @@ -4630,656 +4531,656 @@ entities: 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 + 2958: 53,25 + 2959: 56,29 + 2960: 54,30 + 2961: 50,27 + 2962: 50,26 + 2963: 50,25 + 2964: 50,24 + 2965: 48,26 + 2966: 47,26 + 2967: 47,25 + 2968: 49,24 + 2969: 49,24 + 2970: 47,24 + 3006: 35,10 + 3007: 35,10 + 3008: 36,11 + 3009: 38,11 + 3010: 39,9 + 3011: 41,7 + 3012: 36,7 + 3043: 49,10 + 3044: 48,9 + 3045: 57,17 + 3046: 58,17 + 3047: 58,16 + 3048: 59,16 + 3049: 59,17 + 3050: 59,21 + 3051: 60,20 + 3052: 60,21 + 3059: 62,30 + 3060: 61,29 + 3061: 57,38 + 3062: 57,39 + 3063: 58,40 + 3064: 58,40 + 3065: 60,40 + 3066: 62,40 + 3067: 62,37 + 3068: 62,37 + 3069: 60,37 + 3074: 56,43 + 3075: 56,44 + 3076: 57,45 + 3077: 57,45 + 3078: 56,46 + 3079: 56,46 + 3080: 55,46 + 3081: 55,46 + 3082: 57,46 + 3083: 57,46 + 3084: 54,46 + 3085: 54,46 + 3086: 53,46 + 3087: 53,46 + 3088: 53,46 + 3089: 52,45 + 3090: 52,44 + 3091: 52,44 + 3092: 53,43 + 3093: 54,42 + 3094: 54,42 + 3095: 55,42 + 3096: 45,40 + 3097: 47,42 + 3098: 49,43 + 3099: 47,43 + 3100: 46,44 + 3101: 46,42 + 3102: 49,41 + 3103: 50,42 + 3145: 46,33 + 3146: 43,35 + 3147: 43,35 + 3148: 49,33 + 3149: 58,33 + 3150: 56,33 + 3151: 54,33 + 3152: 59,35 + 3153: 62,35 + 3154: 64,35 + 3155: 70,33 + 3156: 70,33 + 3157: 71,35 + 3158: 73,35 + 3159: 72,33 + 3160: 69,36 + 3161: 71,39 + 3162: 71,38 + 3163: 72,37 + 3164: 72,40 + 3165: 63,38 + 3166: 65,39 + 3167: 66,40 + 3168: 66,41 + 3169: 64,42 + 3170: 63,42 + 3171: 65,43 + 3172: 65,44 + 3173: 65,47 + 3174: 64,47 + 3175: 64,47 + 3176: 66,47 + 3187: 68,50 + 3188: 69,49 + 3189: 69,49 + 3190: 70,49 + 3191: 69,49 + 3192: 68,48 + 3193: 68,48 + 3194: 70,48 + 3195: 69,50 + 3196: 68,49 + 3197: 68,52 + 3198: 69,52 + 3199: 70,52 + 3200: 73,44 + 3201: 73,43 + 3202: 74,43 + 3203: 77,44 + 3204: 76,44 + 3205: 75,43 + 3206: 77,42 + 3207: 78,42 + 3208: 77,44 + 3209: 35,37 + 3210: 37,38 + 3211: 37,40 + 3212: 35,38 + 3213: 37,38 + 3214: 40,37 + 3215: 41,38 + 3233: 21,34 + 3234: 22,34 + 3235: 22,32 + 3236: 22,31 + 3237: 24,31 + 3238: 22,30 + 3239: 22,30 + 3240: 18,31 + 3241: 17,30 + 3242: 16,29 + 3243: 15,29 + 3244: 16,28 + 3245: 17,28 + 3246: 19,28 + 3247: 17,30 + 3248: 11,31 + 3249: 12,30 + 3250: 11,31 + 3251: 11,33 + 3252: 12,33 + 3253: 13,34 + 3254: 17,35 + 3255: 19,35 + 3256: 18,34 + 3340: 5,56 + 3341: 5,58 + 3342: 5,58 + 3343: 6,58 + 3344: -1,63 + 3345: -2,62 + 3346: -2,62 + 3347: -2,62 + 3348: 3,62 + 3349: -6,64 + 3505: 23,39 + 3506: 22,40 + 3507: 22,38 + 3508: 22,37 + 3509: 27,40 + 3510: 26,40 + 3511: 26,39 + 3512: 26,38 + 3513: 29,39 + 3568: 22,26 + 3569: 22,25 + 3570: 22,25 + 3571: 23,26 + 3572: 22,25 + 3573: 22,24 + 3574: 23,24 + 3575: 20,24 + 3576: 25,25 + 3577: 26,26 + 3578: 26,27 + 3579: 27,28 + 3580: 27,28 + 3581: 26,28 + 3582: 25,28 + 3583: 25,27 + 3584: 25,26 + 3585: 22,19 + 3586: 25,25 + 3587: 24,19 + 3588: 15,18 + 3589: 14,18 + 3590: 9,15 + 3591: 9,15 + 3592: 13,15 + 3593: 11,15 + 3594: 12,16 + 3595: 9,13 + 3596: 12,10 + 3597: 12,10 + 3598: 9,10 + 3599: 8,9 + 3600: 8,9 + 3601: 7,12 + 3602: 6,13 + 3603: 0,11 + 3604: 0,8 + 3605: 1,8 + 3606: 1,8 + 3607: 1,4 + 3608: 2,4 + 3609: 4,4 + 3610: 3,3 + 3611: 3,7 + 3612: 3,9 + 3613: 4,9 + 3614: 4,12 + 3615: 3,13 + 3616: 1,11 + 3617: 1,11 + 3618: -2,7 + 3619: -4,5 + 3620: -4,3 + 3621: -4,3 + 3622: -3,8 + 3623: -3,10 + 3624: -2,10 + 3625: -1,9 + 3626: -1,8 + 3627: 2,11 + 3628: -3,10 + 3629: -4,11 + 3630: -4,6 + 3631: -7,2 + 3632: -7,9 + 3633: -7,12 + 3634: -9,11 + 3635: -10,10 + 3636: -11,9 + 3637: -11,12 + 3638: -11,12 + 3639: -13,13 + 3640: -12,14 + 3641: -11,14 + 3642: -11,14 + 3643: -10,13 + 3644: -14,12 + 3645: -14,11 + 3646: -13,10 + 3647: -12,8 + 3648: -15,7 + 3649: -15,6 + 3650: -13,5 + 3651: -11,5 + 3652: -11,6 + 3653: -14,6 + 3654: -14,5 + 3655: -14,9 + 3656: -14,9 + 3657: -15,8 + 3658: -17,3 + 3659: -15,3 + 3660: -15,3 + 3661: -15,2 + 3811: -18,-2 + 3812: -14,-1 + 3813: -15,1 + 3814: -15,0 + 3815: -17,0 + 3816: -17,0 + 3817: -17,1 + 3818: -16,-1 + 3819: -17,-2 + 3820: -16,1 + 3821: -14,1 + 3822: -14,2 + 3823: -14,2 + 3824: -16,3 + 3825: -16,3 + 3826: -15,2 + 3827: -13,6 + 3828: -12,6 + 3829: -14,7 + 3830: -15,8 + 3831: -15,7 + 3832: -15,7 + 3833: -15,7 + 3834: -14,6 + 3835: -12,5 + 3836: -12,6 + 3837: -11,7 + 3838: -11,9 + 3839: -11,9 + 3840: -11,9 + 3841: -11,9 + 3842: -11,9 + 3843: -11,9 + 3844: -11,7 + 3845: -11,7 + 3846: -12,9 + 3847: -12,11 + 3848: -12,11 + 3849: -12,11 + 3850: -12,10 + 3851: -12,9 + 3852: -10,10 + 3853: -10,10 + 3854: -10,9 + 3855: -11,9 + 3856: -12,9 + 3857: -11,9 + 3858: -11,6 + 3859: -10,5 + 3860: -11,4 + 3861: -10,4 + 3862: -11,5 + 3863: -12,5 + 3864: -12,5 + 3865: -11,6 + 3866: -12,6 + 3867: -13,7 + 3868: -15,6 + 3869: -14,6 + 3870: -14,3 + 3871: -14,2 + 3872: -16,2 + 3873: -16,2 + 3874: -18,1 + 3875: -18,1 + 3876: -18,2 + 3877: -18,2 + 3878: -17,2 + 3879: -17,2 + 3880: -17,1 + 3881: -17,1 + 3882: -17,1 + 3883: -18,0 + 3884: -17,0 + 3885: -16,-1 + 3886: -18,-2 + 3887: -16,0 + 3888: -16,-1 + 3889: -16,-4 + 3890: -15,-5 + 3891: -16,-4 + 3892: -18,-5 + 3893: -16,-5 + 3894: -16,-5 + 3895: -16,-5 + 3896: -16,-5 + 3897: -17,-5 + 3898: -16,-7 + 3899: -16,-8 + 3900: -15,-6 + 3901: -17,-5 + 3902: -17,-7 + 3903: -17,-8 + 3904: -16,-7 + 3905: -16,-6 + 3906: -18,-4 + 3907: -17,-6 + 3908: -16,-7 + 3909: -16,-8 + 3910: -17,-9 + 3911: -16,-10 + 3912: -16,-10 + 3913: -16,-10 + 3914: -16,-10 + 3915: -16,-7 + 3916: -16,-7 + 3917: -18,-8 + 3918: -18,-7 + 3919: -17,-6 + 3920: -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 + 2910: 66,58 + 2911: 65,60 + 2912: 65,60 + 2913: 62,61 + 2914: 66,49 + 2915: 62,47 + 2916: 65,46 + 2917: 66,46 + 2918: 69,43 + 2919: 67,42 + 2920: 70,37 + 2921: 72,35 + 2922: 69,34 + 2923: 70,33 + 2924: 72,33 + 2925: 73,33 + 2926: 76,34 + 2927: 76,34 + 2928: 75,34 + 2929: 77,35 + 2930: 81,34 + 2931: 81,38 + 2932: 85,37 + 2933: 86,37 + 2934: 86,34 + 2935: 85,33 + 2936: 85,32 + 2937: 86,31 + 2938: 82,26 + 2939: 81,26 + 2940: 81,25 + 2941: 80,24 + 2942: 80,23 + 2943: 80,22 + 2944: 82,21 + 2945: 82,21 + 2946: 83,21 + 2947: 76,28 + 2948: 77,29 + 2949: 77,30 + 2950: 75,30 + 2951: 74,30 + 2952: 74,29 + 2953: 58,29 + 2954: 59,30 + 2955: 62,30 + 2956: 62,29 + 2957: 62,28 + 2990: 34,14 + 2991: 34,14 + 2992: 32,14 + 2993: 34,16 + 2994: 34,16 + 2995: 35,16 + 2996: 36,16 + 2997: 37,15 + 2998: 36,14 + 2999: 35,14 + 3000: 35,14 + 3001: 36,13 + 3002: 33,13 + 3003: 32,14 + 3004: 32,15 + 3013: 38,11 + 3014: 38,11 + 3015: 38,9 + 3016: 38,9 + 3017: 40,12 + 3018: 40,13 + 3019: 39,13 + 3020: 40,12 + 3021: 29,1 + 3022: 28,0 + 3023: 28,0 + 3024: 28,-1 + 3025: 31,0 + 3026: 31,1 + 3027: 31,1 + 3028: 28,3 + 3029: 29,3 + 3030: 28,2 + 3031: 27,2 + 3032: 26,0 + 3033: 26,0 + 3034: 25,-1 + 3035: 24,1 + 3036: 50,9 + 3037: 48,10 + 3038: 49,10 + 3039: 48,11 + 3054: 58,19 + 3055: 59,20 + 3056: 59,19 + 3057: 58,29 + 3058: 58,29 + 3106: 48,42 + 3107: 47,42 + 3108: 44,41 + 3109: 44,41 + 3110: 44,39 + 3111: 45,39 + 3112: 45,38 + 3113: 45,38 + 3114: 46,39 + 3115: 48,41 + 3116: 49,42 + 3117: 50,43 + 3118: 50,44 + 3119: 51,37 + 3120: 52,38 + 3121: 55,39 + 3122: 54,39 + 3123: 52,39 + 3124: 51,39 + 3125: 50,38 + 3126: 36,35 + 3127: 37,33 + 3128: 38,33 + 3129: 46,33 + 3130: 48,33 + 3131: 52,33 + 3132: 63,35 + 3133: 60,33 + 3134: 57,33 + 3135: 62,35 + 3136: 61,32 + 3137: 60,33 + 3138: 56,33 + 3139: 56,33 + 3140: 50,35 + 3141: 49,35 + 3142: 49,36 + 3143: 47,33 + 3144: 45,33 + 3216: 38,38 + 3217: 36,38 + 3218: 36,39 + 3219: 36,39 + 3220: 36,40 + 3221: 37,40 + 3222: 38,40 + 3223: 40,40 + 3224: 39,40 + 3225: 29,35 + 3226: 27,34 + 3227: 27,33 + 3228: 29,33 + 3229: 26,32 + 3230: 26,31 + 3231: 29,32 + 3232: 29,32 + 3257: 11,34 + 3258: 10,33 + 3259: 9,32 + 3260: 10,32 + 3261: 11,31 + 3262: 10,31 + 3263: 12,31 + 3264: 12,32 + 3265: 12,38 + 3266: 12,38 + 3267: 13,39 + 3268: 14,40 + 3269: 13,41 + 3270: 12,40 + 3271: 14,38 + 3272: 14,37 + 3273: 12,37 + 3274: 5,39 + 3275: 4,39 + 3276: 4,38 + 3277: 5,39 + 3278: 6,38 + 3279: 7,38 + 3280: 9,39 + 3281: 6,40 + 3282: 5,40 + 3283: 8,39 + 3284: 8,38 + 3285: 4,43 + 3286: 5,43 + 3287: 7,44 + 3288: 7,44 + 3289: 6,44 + 3350: -8,51 + 3351: -9,52 + 3352: -9,52 + 3353: -9,51 + 3354: -9,51 + 3355: -5,52 + 3356: -5,52 + 3357: -5,51 + 3404: -24,67 + 3405: -24,67 + 3406: -23,67 + 3407: -23,68 + 3408: -24,70 + 3409: -25,69 + 3410: -25,63 + 3411: -24,63 + 3412: -24,62 + 3413: -25,61 + 3414: -24,61 + 3415: -23,60 + 3416: -24,61 + 3417: -25,60 + 3418: -25,60 + 3419: -23,61 + 3420: -30,58 + 3421: -30,57 + 3422: -32,57 + 3423: -33,57 + 3424: -33,56 + 3425: -33,55 + 3426: -32,55 + 3427: -33,55 + 3428: -35,58 + 3429: -35,58 + 3430: -35,56 + 3431: -36,56 + 3432: -35,56 + 3433: -34,56 + 3434: -34,57 + 3520: 26,27 + 3521: 25,27 + 3522: 24,25 + 3523: 25,24 + 3524: 25,23 + 3525: 27,23 + 3526: 28,24 + 3527: 28,25 + 3528: 28,27 + 3529: 28,27 + 3530: 28,28 + 3531: 28,28 + 3532: 28,28 + 3533: 29,26 + 3534: 29,26 + 3535: 27,26 + 3536: 26,26 + 3537: 26,24 + 3538: 26,24 + 3539: 26,23 + 3704: 32,40 + 3705: 31,43 + 3706: 32,43 + 3707: 33,38 + 3708: 32,37 + 3709: 32,35 + 3710: 16,20 + 3711: 19,20 + 3712: 5,52 + 3713: 5,63 + 3714: 6,67 + 3715: 7,67 + 3716: 2,63 + 3717: 22,48 + 3718: 16,48 + 3719: 20,56 + 3720: 22,58 + 3721: 18,56 + 3722: 18,56 + 3723: 16,55 + 3724: 12,55 + 3725: 8,55 + 3726: 8,57 - node: color: '#951710FF' id: Donk @@ -5289,158 +5190,158 @@ entities: 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 + 4778: -32.740227,71.75434 + 4779: -33.87947,72.741684 + 4780: -30.176937,72.779655 + 4781: -31.52504,74.5075 + 4782: -32.056686,75.24801 + 4783: -32.455418,76.14042 + 4784: -29.968077,76.0075 + 4785: -28.259216,72.13409 + 4786: -28.544025,73.3113 + 4787: -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 + 4768: -33.898457,75.34295 + 4769: -32.569344,76.23535 + 4770: -31.619976,75.95054 + 4771: -31.01238,74.71636 + 4772: -30.347824,72.13409 + 4773: -33.30985,72.874596 + 4774: -33.082,70.99484 + 4775: -30.879469,71.260666 + 4776: -28.563015,71.260666 + 4777: -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 + 4757: -33.233902,71.69738 + 4758: -32.208584,72.64674 + 4759: -30.936432,72.058136 + 4760: -29.759216,71.127754 + 4761: -27.822506,71.279655 + 4762: -33.10099,75.077126 + 4763: -30.44276,74.39358 + 4764: -28.316177,73.67206 + 4765: -30.556684,76.02649 + 4766: -31.487064,76.72903 + 4767: -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 + 4746: -34.069344,71.31763 + 4747: -30.328836,71.03282 + 4748: -31.259216,72.39991 + 4749: -32.702255,73.02649 + 4750: -30.195925,74.58345 + 4751: -33.063015,75.4189 + 4752: -29.835167,75.64674 + 4753: -30.879469,76.95687 + 4754: -32.96808,76.99484 + 4755: -27.80352,71.67839 + 4756: -28.316177,73.63409 - node: color: '#00000077' id: FullTileOverlayGreyscale decals: - 4206: -35,7 - 4207: -35,8 - 4208: -35,9 + 4156: -35,7 + 4157: -35,8 + 4158: -35,9 - node: color: '#3EB38896' id: FullTileOverlayGreyscale decals: - 4209: -34,6 - 4210: -33,6 - 4211: -32,6 + 4159: -34,6 + 4160: -33,6 + 4161: -32,6 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 4216: -35,15 - 4217: -35,16 - 4218: -35,17 + 4166: -35,15 + 4167: -35,16 + 4168: -35,17 - node: color: '#8C347F96' id: FullTileOverlayGreyscale decals: - 4203: -28,6 - 4204: -29,6 - 4205: -30,6 + 4153: -28,6 + 4154: -29,6 + 4155: -30,6 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 4219: -35,19 - 4220: -35,20 - 4221: -35,21 + 4169: -35,19 + 4170: -35,20 + 4171: -35,21 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 4212: -35,11 - 4213: -35,12 - 4214: -35,12 - 4215: -35,13 + 4162: -35,11 + 4163: -35,12 + 4164: -35,12 + 4165: -35,13 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 4974: -29.436432,70.59611 - 4975: -31.657951,70.86193 + 4794: -29.436432,70.59611 + 4795: -31.657951,70.86193 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 4972: -31.904785,70.27332 + 4792: -31.904785,70.27332 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 4971: -33.974407,70.27332 + 4791: -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 + 4790: -32.645294,70.6151 + 4793: -30.822506,70.71004 + 4813: -27.37387,73.70472 + 4814: -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 + 4798: -28.695925,70.06446 + 4799: -32.94909,70.08345 + 4800: -35.36048,69.95054 + 4801: -30.860481,69.798645 + 4802: -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 + 4803: -34.08833,70.88092 + 4804: -35.056686,70.93788 + 4805: -29.94909,71.03282 + 4806: -27.974407,70.9189 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 4969: -30.082,70.3113 + 4789: -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 + 4788: -34.94276,70.34927 + 4796: -28.44909,70.69105 + 4797: -28.031368,70.3113 + 4811: -27.24729,74.10029 + 4812: -27.13653,73.055984 - node: angle: -3.141592653589793 rad color: '#DE3A3A96' @@ -5458,8 +5359,8 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 4362: -21,29 - 4363: -20,29 + 4312: -21,29 + 4313: -20,29 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -5467,34 +5368,34 @@ entities: decals: 1936: 41,19 2438: 71,40 - 3845: 48,-3 - 3846: 48,0 - 3847: 48,3 - 4364: -17,34 - 4365: -19,34 + 3795: 48,-3 + 3796: 48,0 + 3797: 48,3 + 4314: -17,34 + 4315: -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 + 3801: 51,-5 + 4306: -21,39 + 4307: -20,39 + 4308: -19,39 + 4520: 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 + 3798: 54,3 + 3799: 54,0 + 3800: 54,-3 + 4309: -25,33 + 4310: -25,34 + 4311: -25,35 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5589,8 +5490,8 @@ entities: color: '#FFFFFFFF' id: StandClear decals: - 4762: 25,-1 - 4763: 27,-1 + 4582: 25,-1 + 4583: 27,-1 - node: color: '#951710FF' id: Waffle @@ -5603,10 +5504,13 @@ entities: 1278: -17,43 2285: 77,59 2286: 76,59 - 3828: 48,-4 - 3829: 50,-3 - 3830: 49,-5 - 3831: 53,-5 + 3778: 48,-4 + 3779: 50,-3 + 3780: 49,-5 + 3781: 53,-5 + 4823: 34,-32 + 4824: 35,-32 + 4840: 26,-30 - node: color: '#D381C996' id: WarnCornerGreyscaleNW @@ -5630,9 +5534,7 @@ entities: 2188: 48,26 2276: 21,45 2469: 76,5 - 3837: 52,1 - 4624: 40,-8 - 4626: 39,-7 + 3787: 52,1 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -5643,11 +5545,9 @@ entities: 2274: 9,38 2275: 20,45 2500: 69,4 - 3839: 50,1 - 3854: -36,29 - 3856: -37,28 - 4581: 21,-6 - 4583: 20,-7 + 3789: 50,1 + 3804: -36,29 + 3806: -37,28 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -5660,10 +5560,7 @@ entities: 2277: 21,43 2472: 76,2 2479: 74,-2 - 3834: 52,-2 - 4606: 32,-18 - 4614: 39,-17 - 4616: 40,-16 + 3784: 52,-2 - node: color: '#DE3A3A96' id: WarnCornerSW @@ -5679,9 +5576,7 @@ entities: 2278: 20,43 2482: 72,-2 2489: 69,2 - 3832: 50,-2 - 4593: 20,-17 - 4595: 21,-18 + 3782: 50,-2 - node: color: '#D381C996' id: WarnCornerSmallGreyscaleNW @@ -5734,12 +5629,17 @@ entities: 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 + 4234: 1,24 + 4546: 36,3 + 4547: 30,5 + 4745: -28,72 + 4839: 29,-25 + 4850: 29,-43 + 4894: 28,-48 + 4957: 29,-28 + 4964: 32,-30 + 4965: 32,-34 + 4969: 32,-39 - node: zIndex: 100 color: '#FFFFFFFF' @@ -5792,12 +5692,16 @@ entities: 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 + 3805: -36,28 + 4148: 35,19 + 4231: -7,15 + 4548: 32,5 + 4694: 44,10 + 4838: 31,-25 + 4849: 31,-43 + 4898: 32,-48 + 4956: 31,-28 + 4961: 28,-34 - node: zIndex: 100 color: '#FFFFFFFF' @@ -5849,15 +5753,20 @@ entities: 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 + 4229: -9,17 + 4233: 1,26 + 4549: 34,3 + 4550: 36,5 + 4571: 29,0 + 4575: 27,3 + 4587: 24,0 + 4836: 29,-21 + 4837: 29,-26 + 4848: 29,-39 + 4890: 28,-44 + 4963: 32,-28 + 4966: 32,-32 + 4968: 32,-37 - node: color: '#DE3A3A96' id: WarnCornerSmallSW @@ -5899,23 +5808,49 @@ entities: 2490: 69,3 2508: 72,9 2532: 63,5 - 4280: -7,17 - 4594: 21,-17 - 4731: 36,3 - 4761: 28,0 - 4872: 44,12 + 4230: -7,17 + 4551: 36,3 + 4581: 28,0 + 4692: 44,12 + 4834: 31,-21 + 4835: 31,-26 + 4847: 31,-39 + 4886: 32,-44 + 4962: 28,-32 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 4879: -11,70 - 4880: -6,70 + 4699: -11,70 + 4700: -6,70 + 4845: 31,-41 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 4854: 34,-28 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 4853: 34,-30 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 4878: -12,70 - 4881: -7,70 + 4698: -12,70 + 4701: -7,70 + 4846: 29,-41 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 4825: 36,-33 + 4826: 36,-32 + 4827: 35,-32 + 4828: 34,-32 + 4945: 38,-31 + 4946: 36,-26 - node: color: '#DE3A3A96' id: WarnLineE @@ -5987,77 +5922,76 @@ entities: 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 + 3767: 48,3 + 3768: 48,0 + 3769: 48,-3 + 3775: 53,-3 + 3776: 53,0 + 3777: 53,3 + 3785: 52,-1 + 3786: 52,0 + 4228: -9,16 + 4232: 1,25 + 4331: -3,49 + 4332: -3,48 + 4333: -3,47 + 4334: 7,49 + 4335: 7,48 + 4336: 7,47 + 4358: 3,62 + 4359: 3,63 + 4360: 3,64 + 4373: 18,49 + 4374: 18,48 + 4375: 18,47 + 4376: 27,49 + 4377: 27,48 + 4378: 27,47 + 4393: 37,49 + 4394: 37,48 + 4395: 37,47 + 4423: 20,21 + 4424: 20,19 + 4425: 20,20 + 4439: 43,35 + 4440: 43,34 + 4441: 43,33 + 4442: 49,35 + 4443: 49,34 + 4444: 49,33 + 4466: 63,35 + 4467: 63,34 + 4468: 63,33 + 4469: 67,35 + 4470: 67,34 + 4471: 67,33 + 4501: 79,59 + 4502: 79,60 + 4503: 79,61 + 4504: 79,62 + 4515: 70,11 + 4516: 70,10 + 4517: 70,10 + 4518: 70,9 + 4528: 4,21 + 4529: 4,20 + 4530: 4,19 + 4572: 29,-1 + 4573: 27,1 + 4574: 27,2 + 4579: 24,-1 + 4580: 26,-1 + 4739: -27,74 + 4740: -27,73 + 4741: -28,74 + 4742: -28,73 + 4851: 34,-29 + 4891: 28,-45 + 4892: 28,-46 + 4893: 28,-47 + 4959: 32,-29 + 4960: 32,-33 + 4967: 32,-38 - node: zIndex: 100 color: '#FFFFFFFF' @@ -6073,7 +6007,7 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 2956: -15,65 + 2906: -15,65 - node: color: '#D381C996' id: WarnLineGreyscaleW @@ -6123,107 +6057,99 @@ entities: 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 + 3783: 51,-2 + 4151: -16,26 + 4152: -15,26 + 4316: -1,24 + 4317: 0,24 + 4318: 1,24 + 4322: -1,44 + 4323: 0,44 + 4324: 1,44 + 4340: 6,54 + 4341: 5,54 + 4342: 4,54 + 4352: 6,61 + 4353: 5,61 + 4354: 4,61 + 4355: 4,65 + 4356: 5,65 + 4357: 6,65 + 4364: 11,46 + 4365: 12,46 + 4366: 13,46 + 4382: 30,46 + 4383: 31,46 + 4384: 32,46 + 4385: 33,46 + 4396: 31,36 + 4397: 32,36 + 4398: 33,36 + 4405: 31,32 + 4406: 32,32 + 4407: 33,32 + 4408: 30,22 + 4409: 31,22 + 4410: 32,22 + 4411: 33,22 + 4418: 23,18 + 4419: 25,18 + 4426: 7,18 + 4427: 8,18 + 4428: 11,18 + 4429: 10,18 + 4448: 50,36 + 4449: 51,36 + 4450: 52,36 + 4451: 55,36 + 4452: 56,36 + 4453: 57,36 + 4454: 56,32 + 4455: 55,32 + 4456: 54,32 + 4475: 66,32 + 4476: 65,32 + 4477: 64,32 + 4484: 65,36 + 4485: 66,36 + 4486: 64,36 + 4487: 70,36 + 4488: 69,36 + 4494: 64,52 + 4495: 65,52 + 4496: 66,52 + 4505: 64,22 + 4506: 65,22 + 4507: 66,22 + 4569: 31,0 + 4570: 30,0 + 4576: 28,3 + 4691: 43,12 + 4711: -35,71 + 4712: -34,71 + 4713: -33,71 + 4714: -32,71 + 4715: -31,71 + 4716: -30,71 + 4717: -29,71 + 4718: -28,71 + 4719: -28,70 + 4720: -29,70 + 4721: -30,70 + 4722: -31,70 + 4723: -32,70 + 4724: -33,70 + 4725: -34,70 + 4726: -35,70 + 4727: -36,70 + 4830: 30,-26 + 4831: 30,-21 + 4832: 30,-23 + 4841: 30,-39 + 4842: 30,-41 + 4887: 31,-44 + 4888: 30,-44 + 4889: 29,-44 - node: color: '#DE3A3A96' id: WarnLineS @@ -6299,77 +6225,84 @@ entities: 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 + 3766: 49,3 + 3770: 49,-3 + 3771: 49,0 + 3772: 54,0 + 3773: 54,3 + 3774: 54,-3 + 3790: 50,0 + 3791: 50,-1 + 3807: -37,27 + 3808: -37,25 + 4227: -7,16 + 4235: 3,25 + 4328: -3,47 + 4329: -3,48 + 4330: -3,49 + 4337: 7,47 + 4338: 7,48 + 4339: 7,49 + 4361: 3,62 + 4362: 3,63 + 4363: 3,64 + 4370: 18,47 + 4371: 18,48 + 4372: 18,49 + 4379: 27,49 + 4380: 27,48 + 4381: 27,47 + 4390: 37,47 + 4391: 37,48 + 4392: 37,49 + 4420: 20,19 + 4421: 20,20 + 4422: 20,21 + 4436: 43,33 + 4437: 43,34 + 4438: 43,35 + 4445: 49,33 + 4446: 49,34 + 4447: 49,35 + 4463: 63,33 + 4464: 63,34 + 4465: 63,35 + 4472: 67,35 + 4473: 67,34 + 4474: 67,33 + 4497: 81,59 + 4498: 81,60 + 4499: 81,61 + 4500: 81,62 + 4511: 70,11 + 4512: 70,9 + 4513: 70,10 + 4514: 70,11 + 4525: 4,19 + 4526: 4,20 + 4527: 4,21 + 4577: 28,-1 + 4578: 26,-1 + 4737: -27,74 + 4738: -27,73 + 4743: -26,74 + 4744: -26,73 + 4815: 34,-32 + 4816: 34,-33 + 4817: 34,-34 + 4818: 34,-35 + 4819: 34,-36 + 4820: 34,-37 + 4821: 34,-38 + 4822: 34,-39 + 4852: 34,-29 + 4883: 32,-47 + 4884: 32,-46 + 4885: 32,-45 + 4952: 25,-32 + 4953: 25,-33 + 4954: 25,-34 + 4958: 28,-33 - node: zIndex: 100 color: '#FFFFFFFF' @@ -6445,130 +6378,121 @@ entities: 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 + 3788: 51,1 + 4149: -16,26 + 4150: -15,26 + 4319: 1,24 + 4320: 0,24 + 4321: -1,24 + 4325: 1,44 + 4326: 0,44 + 4327: -1,44 + 4343: 4,54 + 4344: 5,54 + 4345: 6,54 + 4346: 6,61 + 4347: 5,61 + 4348: 4,61 + 4349: 4,65 + 4350: 5,65 + 4351: 6,65 + 4367: 11,46 + 4368: 12,46 + 4369: 13,46 + 4386: 30,46 + 4387: 31,46 + 4388: 32,46 + 4389: 33,46 + 4399: 31,36 + 4400: 32,36 + 4401: 33,36 + 4402: 33,32 + 4403: 32,32 + 4404: 31,32 + 4412: 30,22 + 4413: 31,22 + 4414: 32,22 + 4415: 33,22 + 4416: 23,18 + 4417: 25,18 + 4430: 7,18 + 4431: 8,18 + 4432: 11,18 + 4433: 10,18 + 4457: 50,36 + 4458: 52,36 + 4459: 51,36 + 4460: 55,36 + 4461: 56,36 + 4462: 57,36 + 4478: 64,32 + 4479: 65,32 + 4480: 66,32 + 4481: 66,36 + 4482: 64,36 + 4483: 65,36 + 4489: 70,36 + 4490: 69,36 + 4491: 66,52 + 4492: 65,52 + 4493: 64,52 + 4508: 64,22 + 4509: 65,22 + 4510: 66,22 + 4693: 43,10 + 4702: -36,70 + 4703: -35,70 + 4704: -34,70 + 4705: -32,70 + 4706: -33,70 + 4707: -31,70 + 4708: -30,70 + 4709: -29,70 + 4710: -28,70 + 4728: -36,69 + 4729: -35,69 + 4730: -34,69 + 4731: -33,69 + 4732: -32,69 + 4733: -31,69 + 4734: -30,69 + 4735: -29,69 + 4736: -28,69 + 4829: 30,-25 + 4833: 30,-23 + 4843: 30,-41 + 4844: 30,-43 + 4895: 29,-48 + 4896: 30,-48 + 4897: 31,-48 + 4955: 30,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 4851: 71,31 + 4671: 71,31 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 4850: 71,30 + 4670: 71,30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 4852: 72,31 - 4853: 73,31 + 4672: 72,31 + 4673: 73,31 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 4854: 72,31 - 4856: 73,30 + 4674: 72,31 + 4676: 73,30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 4855: 73,30 + 4675: 73,30 - node: color: '#951710FF' id: prolizard @@ -6614,7 +6538,7 @@ entities: 1,4: 0: 63711 1,-1: - 1: 52416 + 1: 32768 2,1: 0: 61559 2,2: @@ -6717,7 +6641,8 @@ entities: -8,4: 0: 65535 -8,-1: - 1: 58030 + 1: 57902 + 0: 128 -7,0: 3: 4368 1: 17476 @@ -6729,7 +6654,8 @@ entities: -7,3: 0: 65535 -7,-1: - 1: 61695 + 1: 61455 + 0: 240 -7,4: 0: 65535 -6,1: @@ -7244,13 +7170,13 @@ entities: -9,6: 0: 65532 -8,7: - 0: 4363 + 0: 4379 1: 52224 -9,7: 0: 1919 -8,8: - 0: 13057 - 1: 2188 + 0: 1 + 1: 32764 -7,5: 0: 34827 1: 48 @@ -7271,17 +7197,17 @@ entities: -6,8: 0: 61160 -9,8: - 0: 65280 - 1: 7 + 1: 65527 -8,9: - 0: 13107 - 1: 34824 + 1: 65407 -9,9: - 0: 65535 + 1: 65535 -8,10: - 1: 19640 + 1: 19647 + 0: 576 -9,10: - 1: 240 + 1: 255 + 0: 3328 -8,11: 1: 4 0: 3072 @@ -7300,8 +7226,7 @@ entities: -6,9: 0: 62392 -6,10: - 1: 15 - 0: 57584 + 0: 57599 -6,11: 0: 3310 -6,12: @@ -7312,13 +7237,12 @@ entities: -11,10: 1: 8 -10,8: - 1: 4383 - 0: 52224 + 1: 65535 -10,9: - 1: 4369 - 0: 52428 + 1: 65535 -10,10: - 1: 241 + 1: 255 + 0: 1024 -11,6: 1: 30583 -11,7: @@ -7363,21 +7287,29 @@ entities: -9,-5: 1: 34944 -8,-4: - 1: 53487 + 1: 4111 + 0: 49376 -8,-3: - 1: 45535 + 1: 12575 + 0: 32960 -8,-5: - 1: 57584 + 0: 57344 + 1: 240 -8,-2: - 1: 41646 + 1: 8750 + 0: 32896 -7,-4: - 1: 28735 + 1: 15 + 0: 28720 -7,-3: - 1: 61567 + 1: 15 + 0: 61552 -7,-2: - 1: 61695 + 1: 15 + 0: 61680 -7,-5: - 1: 12532 + 0: 12288 + 1: 244 -6,-4: 1: 6559 -6,-3: @@ -7385,7 +7317,8 @@ entities: -6,-2: 1: 8751 -6,-5: - 1: 39413 + 1: 39397 + 0: 16 -5,-4: 1: 65280 -5,-3: @@ -7562,27 +7495,36 @@ entities: 5,17: 1: 2 6,17: - 1: 44706 + 1: 11810 + 0: 32896 6,18: - 1: 44706 + 1: 11810 + 0: 32896 6,19: - 1: 44706 + 1: 11810 + 0: 32896 6,20: 1: 226 7,17: - 1: 65522 + 0: 61680 + 1: 3842 7,18: - 1: 65522 + 0: 61680 + 1: 3842 7,19: - 1: 65522 + 0: 61680 + 1: 3842 7,20: 1: 35058 8,17: - 1: 45047 + 1: 12151 + 0: 32896 8,18: - 1: 44962 + 1: 12066 + 0: 32896 8,19: - 1: 44962 + 1: 12066 + 0: 32896 4,-1: 1: 4980 5,1: @@ -7593,7 +7535,8 @@ entities: 6: 2184 5,-1: 6: 32768 - 1: 57 + 0: 49 + 1: 8 6,0: 6: 817 0: 34944 @@ -7623,85 +7566,92 @@ entities: 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 + 0: 53521 + 1: 10248 + 5,-5: + 0: 4369 + 1: 2062 5,-3: - 0: 6553 + 0: 21845 + 1: 2048 5,-2: - 0: 3633 - 1: 61696 - 5,-5: - 0: 15872 - 1: 510 + 0: 21845 + 1: 160 6,-4: - 0: 20464 + 0: 29696 + 1: 33314 + 6: 8 6,-3: - 0: 65350 + 1: 2816 + 0: 62708 6,-2: - 0: 3840 - 1: 61440 + 1: 176 + 0: 17476 + 6,-5: + 1: 8739 + 6: 34952 7,-4: - 0: 45872 + 6: 255 + 1: 61440 7,-3: - 0: 13235 + 0: 4112 + 1: 20292 7,-2: - 0: 3840 - 1: 61440 + 1: 62900 + 0: 64 + 7,-5: + 6: 65535 8,-4: - 0: 65280 + 6: 19 + 1: 14472 + 0: 50176 8,-3: - 0: 4095 + 1: 3840 + 0: 61684 8,-2: - 0: 63474 - 1: 2048 + 1: 4528 + 0: 17476 8,-1: - 0: 43527 - 1: 8 + 0: 43535 8,-5: - 0: 61696 - 1: 3829 + 6: 13107 + 1: 34952 9,-4: - 0: 13064 + 0: 28672 + 1: 33282 9,-3: - 0: 819 + 0: 21588 + 1: 768 9,-2: - 0: 12536 - 1: 36608 + 1: 176 + 0: 17476 9,-1: - 1: 34821 - 0: 4866 - 9,-5: - 0: 61440 - 1: 3921 + 0: 4879 + 1: 34816 9,0: 0: 4113 1: 3276 10,-4: 0: 4369 - 1: 43690 - 10,-3: - 0: 4369 - 1: 41642 + 1: 36488 10,-2: - 0: 1 - 1: 52498 - 10,-5: - 1: 48058 + 0: 4369 + 1: 52256 10,-1: + 0: 35217 1: 558 - 0: 34944 + 10,-5: + 0: 4369 + 1: 36488 + 10,-3: + 0: 4369 + 1: 34440 10,0: 0: 20206 11,-4: - 1: 61416 + 1: 3848 + 0: 57568 11,-3: 1: 35720 11,-2: @@ -7711,9 +7661,11 @@ entities: 11,0: 0: 61166 11,-5: - 1: 61416 + 0: 57568 + 1: 3848 12,-4: - 1: 49080 + 0: 12336 + 1: 36744 12,-3: 1: 248 0: 57344 @@ -7856,9 +7808,11 @@ entities: 12,-2: 0: 43246 12,-5: - 1: 49080 + 1: 36744 + 0: 12336 13,-4: - 1: 61416 + 1: 3848 + 0: 57568 13,-3: 1: 35064 0: 12288 @@ -7866,15 +7820,18 @@ entities: 0: 8243 1: 2184 13,-5: - 1: 61416 + 0: 57568 + 1: 3848 14,-4: - 1: 49080 + 0: 12336 + 1: 36744 14,-2: 1: 36857 14,-3: 1: 17032 14,-5: - 1: 49080 + 1: 36744 + 0: 12336 15,-2: 1: 16 0: 4096 @@ -7951,7 +7908,7 @@ entities: 0: 10103 19,3: 0: 4112 - 1: 204 + 1: 192 20,4: 0: 12288 1: 34816 @@ -7998,48 +7955,86 @@ entities: 0: 8192 1: 32768 19,-2: - 1: 8091 + 1: 4369 19,-1: 1: 785 19,-4: 1: 4369 19,-3: - 1: 47889 - 20,-2: - 1: 3978 + 1: 40721 + 20,-3: + 1: 36096 12,-7: - 1: 64224 + 1: 31456 + 0: 32768 11,-7: 1: 61440 12,-6: - 1: 49080 + 0: 12336 + 1: 36744 11,-6: - 1: 61416 + 0: 57568 + 1: 3848 13,-7: 1: 62000 13,-6: - 1: 61416 + 1: 3848 + 0: 57568 14,-7: 1: 61440 14,-6: - 1: 49080 + 0: 12336 + 1: 36744 + 8,-8: + 0: 21789 + 8,-9: + 0: 64972 + 7,-8: + 0: 61439 + 8,-7: + 0: 30469 + 7,-7: + 0: 65358 8,-6: - 1: 20736 - 7,-5: - 1: 253 - 0: 3840 + 0: 7 + 6: 13056 + 1: 34816 + 7,-6: + 6: 61696 + 0: 1093 + 9,-8: + 0: 30529 + 1: 132 + 9,-7: + 0: 3891 + 1: 4104 + 9,-6: + 1: 1297 + 9,-5: + 1: 523 + 9,-9: + 0: 4369 + 1: 50244 10,-7: - 1: 32768 + 0: 4352 + 1: 57344 + 10,-8: + 1: 256 10,-6: - 1: 34952 + 0: 4369 + 1: 36488 8,20: - 1: 64242 + 1: 64210 + 0: 32 9,17: - 1: 65522 + 0: 61680 + 1: 3842 9,18: - 1: 65522 + 0: 61680 + 1: 3842 9,19: - 1: 65522 + 0: 61680 + 1: 3842 9,20: 1: 242 10,17: @@ -8148,42 +8143,116 @@ entities: 21,6: 1: 58982 21,3: - 1: 63604 + 1: 63600 21,0: - 1: 17612 - 21,-1: - 1: 17604 - 21,1: - 1: 19652 - 21,2: - 1: 19652 + 1: 136 22,0: - 1: 4368 + 1: 4369 + 21,1: + 1: 2176 22,1: - 1: 273 + 1: 4369 + 21,2: + 1: 2176 22,2: - 1: 771 + 1: 4883 22,3: - 1: 1799 + 1: 1815 + 22,-1: + 1: 12593 -4,20: 1: 1 + 5,-8: + 1: 19812 + 5,-7: + 1: 2 + 0: 7936 5,-6: - 1: 41472 - 6,-5: - 1: 242 - 0: 3840 - 7,-6: - 1: 16384 - 20,-3: - 1: 40960 - 21,-2: - 1: 18314 + 0: 4369 + 1: 1024 + 5,-9: + 1: 25684 + 6,-8: + 0: 3591 + 1: 4352 + 6,-7: + 0: 52684 + 1: 4113 + 6,-9: + 0: 63239 + 6,-6: + 1: 8977 + 0: 12 + 6: 34816 + 7,-9: + 0: 65358 + 5,-10: + 1: 26346 + 5,-13: + 1: 60044 + 5,-12: + 1: 59528 + 5,-11: + 1: 51402 + 6,-10: + 0: 32352 + 6,-12: + 1: 8738 + 0: 34952 + 6,-11: + 1: 50722 + 0: 8 + 6,-13: + 1: 9921 + 7,-12: + 0: 64511 + 7,-11: + 0: 57599 + 7,-10: + 0: 65520 + 7,-13: + 0: 61440 + 1: 240 + 8,-12: + 0: 13107 + 1: 34952 + 8,-11: + 0: 19 + 1: 27784 + 8,-10: + 0: 57296 21,-3: - 1: 43520 + 1: 36608 + 21,-2: + 1: 136 22,-2: - 1: 28785 - 22,-1: - 1: 12336 + 1: 29041 + 21,-1: + 1: 128 + 8,-13: + 0: 4096 + 1: 35952 + 9,-10: + 0: 4096 + 1: 52458 + 9,-12: + 1: 57890 + 9,-11: + 1: 25194 + 9,-13: + 1: 59943 + 10,-9: + 1: 16 + 8,-14: + 1: 63872 + 7,-14: + 1: 61856 + 9,-14: + 1: 12800 + 5,-14: + 1: 34816 + 6,-14: + 1: 61984 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9135,6 +9204,8 @@ entities: - 8782 - 8785 - 8545 + - 20257 + - 4763 - uid: 46 components: - type: Transform @@ -9146,16 +9217,6 @@ entities: - 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 @@ -9687,28 +9748,6 @@ entities: - 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 @@ -9809,6 +9848,95 @@ entities: - 19403 - 19402 - 19585 + - uid: 20121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 18452 + - 18478 + - 20150 + - 20130 + - 20138 + - uid: 20122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 20142 + - 19627 + - 18496 + - 20136 + - 20137 + - 20140 + - uid: 20123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 20139 + - 19675 + - 18493 + - 20133 + - 20131 + - 20138 + - 20140 + - uid: 20124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 20140 + - 19083 + - 19626 + - 20134 + - 20132 + - 20133 + - 20137 + - 20142 + - 20139 + - 20138 + - 20257 + - uid: 20125 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 20156 + - 20138 + - 18598 + - 20131 + - 20132 + - 20130 + - 18452 + - 20140 + - 20139 + - uid: 20149 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 20141 + - 20148 + - 18479 + - 20134 + - 20140 - proto: AirCanister entities: - uid: 84 @@ -9826,6 +9954,26 @@ entities: - type: Transform pos: -4.5,21.5 parent: 2 + - uid: 19617 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 19716 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 19717 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 - proto: AirlockArmoryGlassLocked entities: - uid: 85 @@ -9856,11 +10004,6 @@ entities: 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 @@ -10017,6 +10160,20 @@ entities: - type: Transform pos: 3.5,58.5 parent: 2 +- proto: AirlockEngineering + entities: + - uid: 18455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-37.5 + parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 115 @@ -10177,6 +10334,16 @@ entities: - type: Transform pos: -37.5,30.5 parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 - proto: AirlockExternalEngineeringLocked entities: - uid: 144 @@ -10189,6 +10356,18 @@ entities: - type: Transform pos: -22.5,4.5 parent: 2 + - uid: 18454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 - proto: AirlockExternalGlass entities: - uid: 146 @@ -10793,6 +10972,32 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,46.5 parent: 2 +- proto: AirlockHatch + entities: + - uid: 18457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-32.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-34.5 + parent: 2 + - uid: 18460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 - proto: AirlockHatchMaintenance entities: - uid: 213 @@ -11331,31 +11536,25 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 307 + - uid: 18462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,2.5 + rot: -1.5707963267948966 rad + pos: 30.5,-21.5 parent: 2 - - uid: 308 + - uid: 18463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + rot: -1.5707963267948966 rad + pos: 30.5,-23.5 parent: 2 - - uid: 309 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 307 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 + pos: 35.5,2.5 parent: 2 - proto: AirlockSalvageGlassLocked entities: @@ -12384,14 +12583,6 @@ entities: - 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 @@ -12565,26 +12756,16 @@ entities: - 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 + - uid: 18452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-11.5 + rot: 1.5707963267948966 rad + pos: 25.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 + - 20121 + - 20125 - uid: 18628 components: - type: Transform @@ -12632,6 +12813,81 @@ entities: deviceLists: - 19588 - 8512 + - uid: 20138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20121 + - 20125 + - 20128 + - 20124 + - 20123 + - uid: 20139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20125 + - 20124 + - 20123 + - uid: 20140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20149 + - 20125 + - 20124 + - 20127 + - 20123 + - 20122 + - uid: 20141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20149 + - uid: 20142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20124 + - 20122 + - 20126 +- proto: AirTankFilled + entities: + - uid: 19811 + components: + - type: Transform + pos: 28.318115,-38.56996 + parent: 2 + - uid: 19812 + components: + - type: Transform + pos: 28.479652,-38.55204 + parent: 2 + - uid: 19813 + components: + - type: Transform + pos: 28.65914,-38.55204 + parent: 2 - proto: AltarConvertMaint entities: - uid: 474 @@ -13217,27 +13473,39 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,27.5 parent: 2 - - uid: 572 + - uid: 573 components: - type: Transform - pos: -32.5,40.5 + pos: -6.5,18.5 parent: 2 - - uid: 573 + - uid: 13429 components: - type: Transform - pos: -6.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,68.5 parent: 2 - - uid: 574 + - uid: 19818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 + pos: 27.5,-42.5 parent: 2 - - uid: 13429 + - uid: 19819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,68.5 + rot: 3.141592653589793 rad + pos: 29.5,-34.5 + parent: 2 + - uid: 19820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-18.5 parent: 2 - proto: APCElectronics entities: @@ -13431,11 +13699,26 @@ entities: - type: Transform pos: -15.5,-8.5 parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 - uid: 9910 components: - type: Transform pos: 53.5,6.5 parent: 2 + - uid: 19769 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 608 @@ -13835,6 +14118,261 @@ entities: - type: Transform pos: 55.5,6.5 parent: 2 + - uid: 19718 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 19720 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 19721 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 19724 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 19729 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 19730 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 19731 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 19737 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 19738 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 19739 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 19740 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 19741 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 19742 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 19747 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 19751 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 19753 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 19754 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 19755 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 19756 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 19757 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 19758 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 19760 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 19764 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 19765 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 19767 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 680 @@ -14712,15 +15250,29 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 - - uid: 860 + - uid: 18430 components: - type: Transform - pos: 35.5,-9.5 + rot: 1.5707963267948966 rad + pos: 36.5,-33.5 parent: 2 - - uid: 861 + - uid: 18434 components: - type: Transform - pos: 34.5,-9.5 + rot: -1.5707963267948966 rad + pos: 30.5,-32.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-38.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 parent: 2 - proto: BorgModuleClowning entities: @@ -27679,185 +28231,30 @@ entities: - 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 + pos: -31.5,30.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 + pos: -31.5,31.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 + pos: -31.5,28.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 + pos: -31.5,29.5 parent: 2 - uid: 3487 components: @@ -28769,18808 +29166,20576 @@ entities: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 3669 + - uid: 13018 components: - type: Transform - pos: 27.5,-11.5 + pos: 73.5,24.5 parent: 2 - - uid: 3670 + - uid: 13719 components: - type: Transform - pos: 26.5,-11.5 + pos: 33.5,-1.5 parent: 2 - - uid: 3671 + - uid: 13758 components: - type: Transform - pos: 25.5,-11.5 + pos: 72.5,24.5 parent: 2 - - uid: 3672 + - uid: 15034 components: - type: Transform - pos: 26.5,-10.5 + pos: 34.5,-1.5 parent: 2 - - uid: 3673 + - uid: 15035 components: - type: Transform - pos: 26.5,-9.5 + pos: 33.5,-2.5 parent: 2 - - uid: 3674 + - uid: 18587 components: - type: Transform - pos: 26.5,-8.5 + pos: 69.5,22.5 parent: 2 - - uid: 3675 + - uid: 18794 components: - type: Transform - pos: 26.5,-12.5 + pos: 77.5,47.5 parent: 2 - - uid: 3676 + - uid: 18795 components: - type: Transform - pos: 26.5,-13.5 + pos: 76.5,47.5 parent: 2 - - uid: 3677 + - uid: 18796 components: - type: Transform - pos: 26.5,-14.5 + pos: 75.5,47.5 parent: 2 - - uid: 3678 + - uid: 18797 components: - type: Transform - pos: 25.5,-13.5 + pos: 74.5,47.5 parent: 2 - - uid: 3679 + - uid: 18798 components: - type: Transform - pos: 24.5,-13.5 + pos: 73.5,47.5 parent: 2 - - uid: 3680 + - uid: 18799 components: - type: Transform - pos: 23.5,-13.5 + pos: 75.5,48.5 parent: 2 - - uid: 3681 + - uid: 18800 components: - type: Transform - pos: 27.5,-13.5 + pos: 75.5,49.5 parent: 2 - - uid: 3682 + - uid: 18801 components: - type: Transform - pos: 28.5,-13.5 + pos: 75.5,50.5 parent: 2 - - uid: 3683 + - uid: 18802 components: - type: Transform - pos: 29.5,-13.5 + pos: 75.5,51.5 parent: 2 - - uid: 3684 + - uid: 18803 components: - type: Transform - pos: 25.5,-9.5 + pos: 75.5,52.5 parent: 2 - - uid: 3685 + - uid: 18804 components: - type: Transform - pos: 24.5,-9.5 + pos: 75.5,53.5 parent: 2 - - uid: 3686 + - uid: 18805 components: - type: Transform - pos: 23.5,-9.5 + pos: 74.5,53.5 parent: 2 - - uid: 3687 + - uid: 18806 components: - type: Transform - pos: 27.5,-9.5 + pos: 73.5,53.5 parent: 2 - - uid: 3688 + - uid: 18807 components: - type: Transform - pos: 28.5,-9.5 + pos: 73.5,54.5 parent: 2 - - uid: 3689 + - uid: 18808 components: - type: Transform - pos: 29.5,-9.5 + pos: 74.5,50.5 parent: 2 - - uid: 3690 + - uid: 18809 components: - type: Transform - pos: 29.5,-11.5 + pos: 73.5,50.5 parent: 2 - - uid: 3691 + - uid: 18810 components: - type: Transform - pos: 29.5,-10.5 + pos: 72.5,50.5 parent: 2 - - uid: 3692 + - uid: 18811 components: - type: Transform - pos: 29.5,-12.5 + pos: 71.5,50.5 parent: 2 - - uid: 3693 + - uid: 18812 components: - type: Transform - pos: 30.5,-11.5 + pos: 70.5,50.5 parent: 2 - - uid: 3694 + - uid: 18813 components: - type: Transform - pos: 31.5,-11.5 + pos: 69.5,50.5 parent: 2 - - uid: 3695 + - uid: 18814 components: - type: Transform - pos: 32.5,-11.5 + pos: 69.5,51.5 parent: 2 - - uid: 3696 + - uid: 18815 components: - type: Transform - pos: 33.5,-11.5 + pos: 69.5,49.5 parent: 2 - - uid: 3697 + - uid: 18816 components: - type: Transform - pos: 34.5,-11.5 + pos: 76.5,53.5 parent: 2 - - uid: 3698 + - uid: 18817 components: - type: Transform - pos: 35.5,-11.5 + pos: 77.5,53.5 parent: 2 - - uid: 3699 + - uid: 18818 components: - type: Transform - pos: 36.5,-11.5 + pos: 78.5,53.5 parent: 2 - - uid: 3700 + - uid: 18819 components: - type: Transform - pos: 37.5,-11.5 + pos: 79.5,53.5 parent: 2 - - uid: 3701 + - uid: 18820 components: - type: Transform - pos: 33.5,-10.5 + pos: 79.5,52.5 parent: 2 - - uid: 3702 + - uid: 18821 components: - type: Transform - pos: 33.5,-9.5 + pos: 79.5,51.5 parent: 2 - - uid: 3703 + - uid: 18822 components: - type: Transform - pos: 33.5,-8.5 + pos: 79.5,50.5 parent: 2 - - uid: 3704 + - uid: 18823 components: - type: Transform - pos: 33.5,-13.5 + pos: 79.5,49.5 parent: 2 - - uid: 3705 + - uid: 18824 components: - type: Transform - pos: 33.5,-12.5 + pos: 78.5,54.5 parent: 2 - - uid: 3706 + - uid: 18825 components: - type: Transform - pos: 33.5,-7.5 + pos: 78.5,55.5 parent: 2 - - uid: 3707 + - uid: 18826 components: - type: Transform - pos: 33.5,-6.5 + pos: 78.5,56.5 parent: 2 - - uid: 3708 + - uid: 18827 components: - type: Transform - pos: 33.5,-5.5 + pos: 78.5,57.5 parent: 2 - - uid: 3709 + - uid: 18828 components: - type: Transform - pos: 34.5,-6.5 + pos: 77.5,56.5 parent: 2 - - uid: 3710 + - uid: 18829 components: - type: Transform - pos: 35.5,-6.5 + pos: 79.5,56.5 parent: 2 - - uid: 3711 + - uid: 18830 components: - type: Transform - pos: 36.5,-6.5 + pos: 76.5,56.5 parent: 2 - - uid: 3712 + - uid: 18831 components: - type: Transform - pos: 37.5,-6.5 + pos: 75.5,56.5 parent: 2 - - uid: 3713 + - uid: 18832 components: - type: Transform - pos: 38.5,-6.5 + pos: 75.5,55.5 parent: 2 - - uid: 3714 + - uid: 18833 components: - type: Transform - pos: 39.5,-6.5 + pos: 75.5,54.5 parent: 2 - - uid: 3715 + - uid: 18834 components: - type: Transform - pos: 39.5,-7.5 + pos: 75.5,57.5 parent: 2 - - uid: 3716 + - uid: 19431 components: - type: Transform - pos: 40.5,-7.5 + pos: -36.5,69.5 parent: 2 - - uid: 3717 + - uid: 19442 components: - type: Transform - pos: 40.5,-8.5 + pos: -36.5,70.5 parent: 2 - - uid: 3718 + - uid: 19443 components: - type: Transform - pos: 40.5,-9.5 + pos: -36.5,71.5 parent: 2 - - uid: 3719 + - uid: 19444 components: - type: Transform - pos: 40.5,-10.5 + pos: -35.5,71.5 parent: 2 - - uid: 3720 + - uid: 19445 components: - type: Transform - pos: 40.5,-11.5 + pos: -35.5,72.5 parent: 2 - - uid: 3721 + - uid: 19446 components: - type: Transform - pos: 40.5,-12.5 + pos: -35.5,73.5 parent: 2 - - uid: 3722 + - uid: 19447 components: - type: Transform - pos: 40.5,-13.5 + pos: -35.5,74.5 parent: 2 - - uid: 3723 + - uid: 19448 components: - type: Transform - pos: 40.5,-14.5 + pos: -35.5,75.5 parent: 2 - - uid: 3724 + - uid: 19449 components: - type: Transform - pos: 40.5,-15.5 + pos: -35.5,76.5 parent: 2 - - uid: 3725 + - uid: 19450 components: - type: Transform - pos: 39.5,-15.5 + pos: -34.5,76.5 parent: 2 - - uid: 3726 + - uid: 19451 components: - type: Transform - pos: 39.5,-16.5 + pos: -34.5,77.5 parent: 2 - - uid: 3727 + - uid: 19452 components: - type: Transform - pos: 38.5,-16.5 + pos: -33.5,77.5 parent: 2 - - uid: 3728 + - uid: 19453 components: - type: Transform - pos: 37.5,-16.5 + pos: -33.5,78.5 parent: 2 - - uid: 3729 + - uid: 19454 components: - type: Transform - pos: 36.5,-16.5 + pos: -32.5,78.5 parent: 2 - - uid: 3730 + - uid: 19455 components: - type: Transform - pos: 35.5,-16.5 + pos: -31.5,78.5 parent: 2 - - uid: 3731 + - uid: 19456 components: - type: Transform - pos: 34.5,-16.5 + pos: -30.5,78.5 parent: 2 - - uid: 3732 + - uid: 19457 components: - type: Transform - pos: 33.5,-16.5 + pos: -29.5,78.5 parent: 2 - - uid: 3733 + - uid: 19458 components: - type: Transform - pos: 32.5,-16.5 + pos: -29.5,77.5 parent: 2 - - uid: 3734 + - uid: 19459 components: - type: Transform - pos: 32.5,-17.5 + pos: -28.5,77.5 parent: 2 - - uid: 3735 + - uid: 19460 components: - type: Transform - pos: 31.5,-17.5 + pos: -28.5,76.5 parent: 2 - - uid: 3736 + - uid: 19461 components: - type: Transform - pos: 30.5,-17.5 + pos: -27.5,76.5 parent: 2 - - uid: 3737 + - uid: 19462 components: - type: Transform - pos: 29.5,-17.5 + pos: -27.5,75.5 parent: 2 - - uid: 3738 + - uid: 19463 components: - type: Transform - pos: 28.5,-17.5 + pos: -26.5,75.5 parent: 2 - - uid: 3739 + - uid: 19464 components: - type: Transform - pos: 27.5,-17.5 + pos: -25.5,75.5 parent: 2 - - uid: 3740 + - uid: 19465 components: - type: Transform - pos: 26.5,-17.5 + pos: -25.5,74.5 parent: 2 - - uid: 3741 + - uid: 19467 components: - type: Transform - pos: 25.5,-17.5 + pos: -24.5,74.5 parent: 2 - - uid: 3742 + - uid: 19468 components: - type: Transform - pos: 24.5,-17.5 + pos: -23.5,74.5 parent: 2 - - uid: 3743 + - uid: 19469 components: - type: Transform - pos: 23.5,-17.5 + pos: -22.5,74.5 parent: 2 - - uid: 3744 + - uid: 19470 components: - type: Transform - pos: 22.5,-17.5 + pos: -21.5,74.5 parent: 2 - - uid: 3745 + - uid: 19862 components: - type: Transform - pos: 21.5,-17.5 + pos: 29.5,-34.5 parent: 2 - - uid: 3746 + - uid: 19863 components: - type: Transform - pos: 21.5,-16.5 + pos: 30.5,-34.5 parent: 2 - - uid: 3747 + - uid: 19864 components: - type: Transform - pos: 20.5,-16.5 + pos: 30.5,-33.5 parent: 2 - - uid: 3748 + - uid: 19865 components: - type: Transform - pos: 20.5,-15.5 + pos: 30.5,-32.5 parent: 2 - - uid: 3749 + - uid: 19866 components: - type: Transform - pos: 20.5,-14.5 + pos: 30.5,-31.5 parent: 2 - - uid: 3750 + - uid: 19867 components: - type: Transform - pos: 20.5,-13.5 + pos: 30.5,-30.5 parent: 2 - - uid: 3751 + - uid: 19868 components: - type: Transform - pos: 20.5,-12.5 + pos: 30.5,-29.5 parent: 2 - - uid: 3752 + - uid: 19869 components: - type: Transform - pos: 20.5,-11.5 + pos: 30.5,-28.5 parent: 2 - - uid: 3753 + - uid: 19870 components: - type: Transform - pos: 20.5,-10.5 + pos: 30.5,-27.5 parent: 2 - - uid: 3754 + - uid: 19871 components: - type: Transform - pos: 20.5,-9.5 + pos: 30.5,-35.5 parent: 2 - - uid: 3755 + - uid: 19872 components: - type: Transform - pos: 20.5,-8.5 + pos: 30.5,-36.5 parent: 2 - - uid: 3756 + - uid: 19873 components: - type: Transform - pos: 20.5,-7.5 + pos: 30.5,-37.5 parent: 2 - - uid: 3757 + - uid: 19874 components: - type: Transform - pos: 20.5,-6.5 + pos: 30.5,-38.5 parent: 2 - - uid: 3758 + - uid: 19875 components: - type: Transform - pos: 21.5,-6.5 + pos: 29.5,-37.5 parent: 2 - - uid: 3759 + - uid: 19876 components: - type: Transform - pos: 21.5,-5.5 + pos: 28.5,-37.5 parent: 2 - - uid: 3760 + - uid: 19877 components: - type: Transform - pos: 22.5,-5.5 + pos: 27.5,-37.5 parent: 2 - - uid: 3761 + - uid: 19878 components: - type: Transform - pos: 23.5,-5.5 + pos: 26.5,-37.5 parent: 2 - - uid: 3762 + - uid: 19879 components: - type: Transform - pos: 24.5,-5.5 + pos: 25.5,-37.5 parent: 2 - - uid: 3763 + - uid: 19880 components: - type: Transform - pos: 25.5,-5.5 + pos: 25.5,-36.5 parent: 2 - - uid: 3764 + - uid: 19881 components: - type: Transform - pos: 26.5,-5.5 + pos: 25.5,-35.5 parent: 2 - - uid: 3765 + - uid: 19882 components: - type: Transform - pos: 27.5,-5.5 + pos: 25.5,-38.5 parent: 2 - - uid: 3766 + - uid: 19883 components: - type: Transform - pos: 28.5,-5.5 + pos: 31.5,-37.5 parent: 2 - - uid: 3767 + - uid: 19884 components: - type: Transform - pos: 29.5,-5.5 + pos: 32.5,-37.5 parent: 2 - - uid: 3768 + - uid: 19885 components: - type: Transform - pos: 30.5,-5.5 + pos: 33.5,-37.5 parent: 2 - - uid: 3769 + - uid: 19886 components: - type: Transform - pos: 31.5,-5.5 + pos: 34.5,-37.5 parent: 2 - - uid: 3770 + - uid: 19887 components: - type: Transform - pos: 32.5,-5.5 + pos: 35.5,-37.5 parent: 2 - - uid: 13018 + - uid: 19888 components: - type: Transform - pos: 73.5,24.5 + pos: 35.5,-38.5 parent: 2 - - uid: 13758 + - uid: 19889 components: - type: Transform - pos: 72.5,24.5 + pos: 35.5,-36.5 parent: 2 - - uid: 18587 + - uid: 19890 components: - type: Transform - pos: 69.5,22.5 + pos: 35.5,-35.5 parent: 2 - - uid: 18794 + - uid: 19891 components: - type: Transform - pos: 77.5,47.5 + pos: 35.5,-34.5 parent: 2 - - uid: 18795 + - uid: 19892 components: - type: Transform - pos: 76.5,47.5 + pos: 35.5,-33.5 parent: 2 - - uid: 18796 + - uid: 19893 components: - type: Transform - pos: 75.5,47.5 + pos: 35.5,-32.5 parent: 2 - - uid: 18797 + - uid: 19894 components: - type: Transform - pos: 74.5,47.5 + pos: 35.5,-31.5 parent: 2 - - uid: 18798 + - uid: 19895 components: - type: Transform - pos: 73.5,47.5 + pos: 34.5,-32.5 parent: 2 - - uid: 18799 + - uid: 19896 components: - type: Transform - pos: 75.5,48.5 + pos: 33.5,-32.5 parent: 2 - - uid: 18800 + - uid: 19897 components: - type: Transform - pos: 75.5,49.5 + pos: 32.5,-32.5 parent: 2 - - uid: 18801 + - uid: 19898 components: - type: Transform - pos: 75.5,50.5 + pos: 31.5,-32.5 parent: 2 - - uid: 18802 + - uid: 19899 components: - type: Transform - pos: 75.5,51.5 + pos: 29.5,-32.5 parent: 2 - - uid: 18803 + - uid: 19900 components: - type: Transform - pos: 75.5,52.5 + pos: 28.5,-32.5 parent: 2 - - uid: 18804 + - uid: 19901 components: - type: Transform - pos: 75.5,53.5 + pos: 27.5,-32.5 parent: 2 - - uid: 18805 + - uid: 19902 components: - type: Transform - pos: 74.5,53.5 + pos: 26.5,-32.5 parent: 2 - - uid: 18806 + - uid: 19903 components: - type: Transform - pos: 73.5,53.5 + pos: 25.5,-32.5 parent: 2 - - uid: 18807 + - uid: 19904 components: - type: Transform - pos: 73.5,54.5 + pos: 29.5,-29.5 parent: 2 - - uid: 18808 + - uid: 19905 components: - type: Transform - pos: 74.5,50.5 + pos: 28.5,-29.5 parent: 2 - - uid: 18809 + - uid: 19906 components: - type: Transform - pos: 73.5,50.5 + pos: 27.5,-29.5 parent: 2 - - uid: 18810 + - uid: 19907 components: - type: Transform - pos: 72.5,50.5 + pos: 26.5,-29.5 parent: 2 - - uid: 18811 + - uid: 19908 components: - type: Transform - pos: 71.5,50.5 + pos: 25.5,-29.5 parent: 2 - - uid: 18812 + - uid: 19909 components: - type: Transform - pos: 70.5,50.5 + pos: 31.5,-29.5 parent: 2 - - uid: 18813 + - uid: 19910 components: - type: Transform - pos: 69.5,50.5 + pos: 32.5,-29.5 parent: 2 - - uid: 18814 + - uid: 19911 components: - type: Transform - pos: 69.5,51.5 + pos: 33.5,-29.5 parent: 2 - - uid: 18815 + - uid: 19912 components: - type: Transform - pos: 69.5,49.5 + pos: 34.5,-29.5 parent: 2 - - uid: 18816 + - uid: 19913 components: - type: Transform - pos: 76.5,53.5 + pos: 35.5,-29.5 parent: 2 - - uid: 18817 + - uid: 19914 components: - type: Transform - pos: 77.5,53.5 + pos: 36.5,-29.5 parent: 2 - - uid: 18818 + - uid: 19915 components: - type: Transform - pos: 78.5,53.5 + pos: 37.5,-29.5 parent: 2 - - uid: 18819 + - uid: 19916 components: - type: Transform - pos: 79.5,53.5 + pos: 38.5,-29.5 parent: 2 - - uid: 18820 + - uid: 19917 components: - type: Transform - pos: 79.5,52.5 + pos: 38.5,-30.5 parent: 2 - - uid: 18821 + - uid: 19918 components: - type: Transform - pos: 79.5,51.5 + pos: 38.5,-31.5 parent: 2 - - uid: 18822 + - uid: 19919 components: - type: Transform - pos: 79.5,50.5 + pos: 38.5,-32.5 parent: 2 - - uid: 18823 + - uid: 19920 components: - type: Transform - pos: 79.5,49.5 + pos: 38.5,-33.5 parent: 2 - - uid: 18824 + - uid: 19921 components: - type: Transform - pos: 78.5,54.5 + pos: 38.5,-34.5 parent: 2 - - uid: 18825 + - uid: 19922 components: - type: Transform - pos: 78.5,55.5 + pos: 38.5,-35.5 parent: 2 - - uid: 18826 + - uid: 19923 components: - type: Transform - pos: 78.5,56.5 + pos: 38.5,-36.5 parent: 2 - - uid: 18827 + - uid: 19924 components: - type: Transform - pos: 78.5,57.5 + pos: 38.5,-37.5 parent: 2 - - uid: 18828 + - uid: 19925 components: - type: Transform - pos: 77.5,56.5 + pos: 38.5,-38.5 parent: 2 - - uid: 18829 + - uid: 19926 components: - type: Transform - pos: 79.5,56.5 + pos: 37.5,-38.5 parent: 2 - - uid: 18830 + - uid: 19927 components: - type: Transform - pos: 76.5,56.5 + pos: 37.5,-39.5 parent: 2 - - uid: 18831 + - uid: 19928 components: - type: Transform - pos: 75.5,56.5 + pos: 37.5,-40.5 parent: 2 - - uid: 18832 + - uid: 19929 components: - type: Transform - pos: 75.5,55.5 + pos: 37.5,-41.5 parent: 2 - - uid: 18833 + - uid: 19930 components: - type: Transform - pos: 75.5,54.5 + pos: 37.5,-42.5 parent: 2 - - uid: 18834 + - uid: 19931 components: - type: Transform - pos: 75.5,57.5 + pos: 37.5,-43.5 parent: 2 - - uid: 19431 + - uid: 19932 components: - type: Transform - pos: -36.5,69.5 + pos: 37.5,-44.5 parent: 2 - - uid: 19442 + - uid: 19933 components: - type: Transform - pos: -36.5,70.5 + pos: 37.5,-45.5 parent: 2 - - uid: 19443 + - uid: 19934 components: - type: Transform - pos: -36.5,71.5 + pos: 37.5,-46.5 parent: 2 - - uid: 19444 + - uid: 19935 components: - type: Transform - pos: -35.5,71.5 + pos: 37.5,-47.5 parent: 2 - - uid: 19445 + - uid: 19936 components: - type: Transform - pos: -35.5,72.5 + pos: 37.5,-48.5 parent: 2 - - uid: 19446 + - uid: 19937 components: - type: Transform - pos: -35.5,73.5 + pos: 37.5,-49.5 parent: 2 - - uid: 19447 + - uid: 19938 components: - type: Transform - pos: -35.5,74.5 + pos: 37.5,-50.5 parent: 2 - - uid: 19448 + - uid: 19939 components: - type: Transform - pos: -35.5,75.5 + pos: 37.5,-51.5 parent: 2 - - uid: 19449 + - uid: 19940 components: - type: Transform - pos: -35.5,76.5 + pos: 36.5,-51.5 parent: 2 - - uid: 19450 + - uid: 19941 components: - type: Transform - pos: -34.5,76.5 + pos: 36.5,-52.5 parent: 2 - - uid: 19451 + - uid: 19942 components: - type: Transform - pos: -34.5,77.5 + pos: 35.5,-52.5 parent: 2 - - uid: 19452 + - uid: 19943 components: - type: Transform - pos: -33.5,77.5 + pos: 34.5,-52.5 parent: 2 - - uid: 19453 + - uid: 19944 components: - type: Transform - pos: -33.5,78.5 + pos: 33.5,-52.5 parent: 2 - - uid: 19454 + - uid: 19945 components: - type: Transform - pos: -32.5,78.5 + pos: 32.5,-52.5 parent: 2 - - uid: 19455 + - uid: 19946 components: - type: Transform - pos: -31.5,78.5 + pos: 31.5,-52.5 parent: 2 - - uid: 19456 + - uid: 19947 components: - type: Transform - pos: -30.5,78.5 + pos: 30.5,-52.5 parent: 2 - - uid: 19457 + - uid: 19948 components: - type: Transform - pos: -29.5,78.5 + pos: 29.5,-52.5 parent: 2 - - uid: 19458 + - uid: 19949 components: - type: Transform - pos: -29.5,77.5 + pos: 28.5,-52.5 parent: 2 - - uid: 19459 + - uid: 19950 components: - type: Transform - pos: -28.5,77.5 + pos: 27.5,-52.5 parent: 2 - - uid: 19460 + - uid: 19951 components: - type: Transform - pos: -28.5,76.5 + pos: 26.5,-52.5 parent: 2 - - uid: 19461 + - uid: 19952 components: - type: Transform - pos: -27.5,76.5 + pos: 25.5,-52.5 parent: 2 - - uid: 19462 + - uid: 19953 components: - type: Transform - pos: -27.5,75.5 + pos: 24.5,-52.5 parent: 2 - - uid: 19463 + - uid: 19954 components: - type: Transform - pos: -26.5,75.5 + pos: 24.5,-51.5 parent: 2 - - uid: 19464 + - uid: 19955 components: - type: Transform - pos: -25.5,75.5 + pos: 23.5,-51.5 parent: 2 - - uid: 19465 + - uid: 19956 components: - type: Transform - pos: -25.5,74.5 + pos: 23.5,-50.5 parent: 2 - - uid: 19467 + - uid: 19957 components: - type: Transform - pos: -24.5,74.5 + pos: 23.5,-49.5 parent: 2 - - uid: 19468 + - uid: 19958 components: - type: Transform - pos: -23.5,74.5 + pos: 23.5,-48.5 parent: 2 - - uid: 19469 + - uid: 19959 components: - type: Transform - pos: -22.5,74.5 + pos: 23.5,-47.5 parent: 2 - - uid: 19470 + - uid: 19960 components: - type: Transform - pos: -21.5,74.5 + pos: 23.5,-46.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 3771 + - uid: 19961 components: - type: Transform - pos: -7.469557,28.649622 + pos: 23.5,-45.5 parent: 2 - - uid: 3772 + - uid: 19962 components: - type: Transform - pos: 48.691536,31.712133 + pos: 23.5,-44.5 parent: 2 - - uid: 3773 + - uid: 19963 components: - type: Transform - pos: 48.601868,31.479158 + pos: 23.5,-43.5 parent: 2 - - uid: 3774 + - uid: 19964 components: - type: Transform - pos: 60.434174,28.366611 + pos: 23.5,-42.5 parent: 2 - - uid: 3775 + - uid: 19965 components: - type: Transform - pos: 60.77491,28.599586 + pos: 23.5,-41.5 parent: 2 -- proto: CableApcStack1 - entities: - - uid: 3776 + - uid: 19966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.308266,50.298573 + pos: 23.5,-40.5 parent: 2 - - uid: 3777 + - uid: 19967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.79256,50.782536 + pos: 23.5,-39.5 parent: 2 - - uid: 3778 + - uid: 19968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.2451,53.87569 + pos: 23.5,-38.5 parent: 2 -- proto: Cablecuffs - entities: - - uid: 3779 + - uid: 19969 components: - type: Transform - pos: -26.328623,55.189487 + pos: 22.5,-38.5 parent: 2 - - uid: 3780 + - uid: 19970 components: - type: Transform - pos: -26.515789,55.32977 + pos: 22.5,-37.5 parent: 2 -- proto: CableHV - entities: - - uid: 3781 + - uid: 19971 components: - type: Transform - pos: -3.5,17.5 + pos: 22.5,-36.5 parent: 2 - - uid: 3782 + - uid: 19972 components: - type: Transform - pos: -22.5,33.5 + pos: 22.5,-35.5 parent: 2 - - uid: 3783 + - uid: 19973 components: - type: Transform - pos: -25.5,26.5 + pos: 22.5,-34.5 parent: 2 - - uid: 3784 + - uid: 19974 components: - type: Transform - pos: -21.5,36.5 + pos: 22.5,-33.5 parent: 2 - - uid: 3785 + - uid: 19975 components: - type: Transform - pos: -17.5,36.5 + pos: 22.5,-32.5 parent: 2 - - uid: 3786 + - uid: 19976 components: - type: Transform - pos: -19.5,36.5 + pos: 22.5,-31.5 parent: 2 - - uid: 3787 + - uid: 19977 components: - type: Transform - pos: -20.5,31.5 + pos: 22.5,-30.5 parent: 2 - - uid: 3788 + - uid: 19978 components: - type: Transform - pos: -20.5,32.5 + pos: 22.5,-29.5 parent: 2 - - uid: 3789 + - uid: 19979 components: - type: Transform - pos: -24.5,24.5 + pos: 23.5,-29.5 parent: 2 - - uid: 3790 + - uid: 19980 components: - type: Transform - pos: -25.5,24.5 + pos: 24.5,-29.5 parent: 2 - - uid: 3791 + - uid: 19981 components: - type: Transform - pos: -25.5,24.5 + pos: 24.5,-28.5 parent: 2 - - uid: 3792 + - uid: 19982 components: - type: Transform - pos: -25.5,25.5 + pos: 24.5,-27.5 parent: 2 - - uid: 3793 + - uid: 19983 components: - type: Transform - pos: -26.5,26.5 + pos: 24.5,-26.5 parent: 2 - - uid: 3794 + - uid: 19984 components: - type: Transform - pos: -27.5,26.5 + pos: 24.5,-25.5 parent: 2 - - uid: 3795 + - uid: 19985 components: - type: Transform - pos: -22.5,-0.5 + pos: 24.5,-24.5 parent: 2 - - uid: 3796 + - uid: 19986 components: - type: Transform - pos: -22.5,1.5 + pos: 24.5,-23.5 parent: 2 - - uid: 3797 + - uid: 19987 components: - type: Transform - pos: -22.5,0.5 + pos: 24.5,-22.5 parent: 2 - - uid: 3798 + - uid: 19988 components: - type: Transform - pos: -24.5,-3.5 + pos: 24.5,-21.5 parent: 2 - - uid: 3799 + - uid: 19989 components: - type: Transform - pos: -25.5,-11.5 + pos: 25.5,-21.5 parent: 2 - - uid: 3800 + - uid: 19990 components: - type: Transform - pos: -24.5,-11.5 + pos: 25.5,-20.5 parent: 2 - - uid: 3801 + - uid: 19991 components: - type: Transform - pos: -28.5,26.5 + pos: 25.5,-19.5 parent: 2 - - uid: 3802 + - uid: 19992 components: - type: Transform - pos: -29.5,26.5 + pos: 25.5,-18.5 parent: 2 - - uid: 3803 + - uid: 19993 components: - type: Transform - pos: -31.5,27.5 + pos: 25.5,-17.5 parent: 2 - - uid: 3804 + - uid: 19994 components: - type: Transform - pos: 45.5,-20.5 + pos: 25.5,-16.5 parent: 2 - - uid: 3805 + - uid: 19995 components: - type: Transform - pos: 46.5,-20.5 + pos: 25.5,-15.5 parent: 2 - - uid: 3806 + - uid: 19996 components: - type: Transform - pos: 47.5,-20.5 + pos: 25.5,-14.5 parent: 2 - - uid: 3807 + - uid: 19997 components: - type: Transform - pos: 48.5,-20.5 + pos: 25.5,-13.5 parent: 2 - - uid: 3808 + - uid: 19998 components: - type: Transform - pos: 49.5,-20.5 + pos: 26.5,-13.5 parent: 2 - - uid: 3809 + - uid: 19999 components: - type: Transform - pos: 45.5,-22.5 + pos: 26.5,-12.5 parent: 2 - - uid: 3810 + - uid: 20000 components: - type: Transform - pos: 46.5,-22.5 + pos: 27.5,-12.5 parent: 2 - - uid: 3811 + - uid: 20001 components: - type: Transform - pos: 47.5,-22.5 + pos: 28.5,-12.5 parent: 2 - - uid: 3812 + - uid: 20002 components: - type: Transform - pos: 48.5,-22.5 + pos: 29.5,-12.5 parent: 2 - - uid: 3813 + - uid: 20003 components: - type: Transform - pos: 49.5,-22.5 + pos: 30.5,-12.5 parent: 2 - - uid: 3814 + - uid: 20004 components: - type: Transform - pos: 49.5,-21.5 + pos: 31.5,-12.5 parent: 2 - - uid: 3815 + - uid: 20005 components: - type: Transform - pos: 45.5,-21.5 + pos: 32.5,-12.5 parent: 2 - - uid: 3816 + - uid: 20006 components: - type: Transform - pos: 50.5,-21.5 + pos: 33.5,-12.5 parent: 2 - - uid: 3817 + - uid: 20007 components: - type: Transform - pos: 52.5,-21.5 + pos: 34.5,-12.5 parent: 2 - - uid: 3818 + - uid: 20008 components: - type: Transform - pos: 53.5,-21.5 + pos: 34.5,-13.5 parent: 2 - - uid: 3819 + - uid: 20009 components: - type: Transform - pos: 53.5,-20.5 + pos: 35.5,-13.5 parent: 2 - - uid: 3820 + - uid: 20010 components: - type: Transform - pos: 53.5,-22.5 + pos: 35.5,-14.5 parent: 2 - - uid: 3821 + - uid: 20011 components: - type: Transform - pos: 54.5,-20.5 + pos: 35.5,-15.5 parent: 2 - - uid: 3822 + - uid: 20012 components: - type: Transform - pos: 55.5,-20.5 + pos: 35.5,-16.5 parent: 2 - - uid: 3823 + - uid: 20013 components: - type: Transform - pos: 56.5,-20.5 + pos: 35.5,-17.5 parent: 2 - - uid: 3824 + - uid: 20014 components: - type: Transform - pos: 57.5,-20.5 + pos: 35.5,-19.5 parent: 2 - - uid: 3825 + - uid: 20015 components: - type: Transform - pos: 57.5,-22.5 + pos: 35.5,-20.5 parent: 2 - - uid: 3826 + - uid: 20016 components: - type: Transform - pos: 56.5,-22.5 + pos: 35.5,-21.5 parent: 2 - - uid: 3827 + - uid: 20017 components: - type: Transform - pos: 55.5,-22.5 + pos: 36.5,-21.5 parent: 2 - - uid: 3828 + - uid: 20018 components: - type: Transform - pos: 54.5,-22.5 + pos: 36.5,-22.5 parent: 2 - - uid: 3829 + - uid: 20019 components: - type: Transform - pos: 57.5,-21.5 + pos: 36.5,-23.5 parent: 2 - - uid: 3830 + - uid: 20020 components: - type: Transform - pos: 51.5,-24.5 + pos: 36.5,-24.5 parent: 2 - - uid: 3831 + - uid: 20021 components: - type: Transform - pos: 51.5,-23.5 + pos: 36.5,-25.5 parent: 2 - - uid: 3832 + - uid: 20022 components: - type: Transform - pos: 49.5,-18.5 + pos: 36.5,-26.5 parent: 2 - - uid: 3833 + - uid: 20023 components: - type: Transform - pos: 49.5,-17.5 + pos: 36.5,-27.5 parent: 2 - - uid: 3834 + - uid: 20024 components: - type: Transform - pos: 49.5,-16.5 + pos: 36.5,-28.5 parent: 2 - - uid: 3835 + - uid: 20025 components: - type: Transform - pos: 48.5,-16.5 + pos: 36.5,-29.5 parent: 2 - - uid: 3836 + - uid: 20026 components: - type: Transform - pos: 47.5,-16.5 + pos: 34.5,-26.5 parent: 2 - - uid: 3837 + - uid: 20027 components: - type: Transform - pos: 46.5,-16.5 + pos: 34.5,-25.5 parent: 2 - - uid: 3838 + - uid: 20028 components: - type: Transform - pos: 45.5,-16.5 + pos: 34.5,-24.5 parent: 2 - - uid: 3839 + - uid: 20029 components: - type: Transform - pos: 45.5,-17.5 + pos: 34.5,-23.5 parent: 2 - - uid: 3840 + - uid: 20030 components: - type: Transform - pos: 45.5,-18.5 + pos: 33.5,-24.5 parent: 2 - - uid: 3841 + - uid: 20031 components: - type: Transform - pos: 46.5,-18.5 + pos: 32.5,-24.5 parent: 2 - - uid: 3842 + - uid: 20032 components: - type: Transform - pos: 47.5,-18.5 + pos: 31.5,-24.5 parent: 2 - - uid: 3843 + - uid: 20033 components: - type: Transform - pos: 48.5,-18.5 + pos: 30.5,-24.5 parent: 2 - - uid: 3844 + - uid: 20034 components: - type: Transform - pos: 53.5,-18.5 + pos: 29.5,-24.5 parent: 2 - - uid: 3845 + - uid: 20035 components: - type: Transform - pos: 54.5,-18.5 + pos: 28.5,-24.5 parent: 2 - - uid: 3846 + - uid: 20036 components: - type: Transform - pos: 55.5,-18.5 + pos: 27.5,-24.5 parent: 2 - - uid: 3847 + - uid: 20037 components: - type: Transform - pos: 56.5,-18.5 + pos: 26.5,-24.5 parent: 2 - - uid: 3848 + - uid: 20038 components: - type: Transform - pos: 57.5,-18.5 + pos: 26.5,-25.5 parent: 2 - - uid: 3849 + - uid: 20039 components: - type: Transform - pos: 57.5,-17.5 + pos: 26.5,-26.5 parent: 2 - - uid: 3850 + - uid: 20040 components: - type: Transform - pos: 57.5,-16.5 + pos: 34.5,-18.5 parent: 2 - - uid: 3851 + - uid: 20041 components: - type: Transform - pos: 56.5,-16.5 + pos: 33.5,-18.5 parent: 2 - - uid: 3852 + - uid: 20042 components: - type: Transform - pos: 55.5,-16.5 + pos: 32.5,-18.5 parent: 2 - - uid: 3853 + - uid: 20043 components: - type: Transform - pos: 54.5,-16.5 + pos: 31.5,-18.5 parent: 2 - - uid: 3854 + - uid: 20044 components: - type: Transform - pos: 53.5,-16.5 + pos: 30.5,-18.5 parent: 2 - - uid: 3855 + - uid: 20045 components: - type: Transform - pos: 53.5,-17.5 + pos: 29.5,-18.5 parent: 2 - - uid: 3856 + - uid: 20046 components: - type: Transform - pos: 52.5,-17.5 + pos: 28.5,-18.5 parent: 2 - - uid: 3857 + - uid: 20047 components: - type: Transform - pos: 50.5,-17.5 + pos: 27.5,-18.5 parent: 2 - - uid: 3858 + - uid: 20048 components: - type: Transform - pos: 50.5,-13.5 + pos: 29.5,-17.5 parent: 2 - - uid: 3859 + - uid: 20049 components: - type: Transform - pos: 49.5,-13.5 + pos: 29.5,-16.5 parent: 2 - - uid: 3860 + - uid: 20050 components: - type: Transform - pos: 49.5,-12.5 + pos: 29.5,-15.5 parent: 2 - - uid: 3861 + - uid: 20051 components: - type: Transform - pos: 48.5,-12.5 + pos: 31.5,-17.5 parent: 2 - - uid: 3862 + - uid: 20052 components: - type: Transform - pos: 47.5,-12.5 + pos: 31.5,-16.5 parent: 2 - - uid: 3863 + - uid: 20053 components: - type: Transform - pos: 46.5,-12.5 + pos: 31.5,-15.5 parent: 2 - - uid: 3864 + - uid: 20054 components: - type: Transform - pos: 45.5,-12.5 + pos: 30.5,-15.5 parent: 2 - - uid: 3865 + - uid: 20055 components: - type: Transform - pos: 45.5,-13.5 + pos: 30.5,-19.5 parent: 2 - - uid: 3866 + - uid: 20056 components: - type: Transform - pos: 45.5,-14.5 + pos: 27.5,-20.5 parent: 2 - - uid: 3867 + - uid: 20057 components: - type: Transform - pos: 46.5,-14.5 + pos: 28.5,-20.5 parent: 2 - - uid: 3868 + - uid: 20058 components: - type: Transform - pos: 47.5,-14.5 + pos: 29.5,-20.5 parent: 2 - - uid: 3869 + - uid: 20059 components: - type: Transform - pos: 48.5,-14.5 + pos: 30.5,-20.5 parent: 2 - - uid: 3870 + - uid: 20060 components: - type: Transform - pos: 49.5,-14.5 + pos: 31.5,-20.5 parent: 2 - - uid: 3871 + - uid: 20061 components: - type: Transform - pos: 52.5,-13.5 + pos: 32.5,-20.5 parent: 2 - - uid: 3872 + - uid: 20062 components: - type: Transform - pos: 53.5,-13.5 + pos: 33.5,-20.5 parent: 2 - - uid: 3873 + - uid: 20063 components: - type: Transform - pos: 53.5,-12.5 + pos: 28.5,-15.5 parent: 2 - - uid: 3874 + - uid: 20064 components: - type: Transform - pos: 54.5,-12.5 + pos: 27.5,-15.5 parent: 2 - - uid: 3875 + - uid: 20065 components: - type: Transform - pos: 55.5,-12.5 + pos: 32.5,-15.5 parent: 2 - - uid: 3876 + - uid: 20066 components: - type: Transform - pos: 56.5,-12.5 + pos: 33.5,-15.5 parent: 2 - - uid: 3877 + - uid: 20158 components: - type: Transform - pos: 57.5,-12.5 + pos: 27.5,-42.5 parent: 2 - - uid: 3878 + - uid: 20159 components: - type: Transform - pos: 57.5,-13.5 + pos: 27.5,-43.5 parent: 2 - - uid: 3879 + - uid: 20160 components: - type: Transform - pos: 57.5,-14.5 + pos: 27.5,-44.5 parent: 2 - - uid: 3880 + - uid: 20161 components: - type: Transform - pos: 56.5,-14.5 + pos: 27.5,-45.5 parent: 2 - - uid: 3881 + - uid: 20162 components: - type: Transform - pos: 55.5,-14.5 + pos: 27.5,-46.5 parent: 2 - - uid: 3882 + - uid: 20163 components: - type: Transform - pos: 54.5,-14.5 + pos: 27.5,-47.5 parent: 2 - - uid: 3883 + - uid: 20164 components: - type: Transform - pos: 53.5,-14.5 + pos: 28.5,-47.5 parent: 2 - - uid: 3884 + - uid: 20165 components: - type: Transform - pos: -26.5,-16.5 + pos: 28.5,-48.5 parent: 2 - - uid: 3885 + - uid: 20166 components: - type: Transform - pos: -27.5,-16.5 + pos: 29.5,-48.5 parent: 2 - - uid: 3886 + - uid: 20167 components: - type: Transform - pos: -28.5,-16.5 + pos: 30.5,-48.5 parent: 2 - - uid: 3887 + - uid: 20168 components: - type: Transform - pos: -29.5,-16.5 + pos: 31.5,-48.5 parent: 2 - - uid: 3888 + - uid: 20169 components: - type: Transform - pos: -30.5,-16.5 + pos: 32.5,-48.5 parent: 2 - - uid: 3889 + - uid: 20170 components: - type: Transform - pos: -30.5,-15.5 + pos: 32.5,-47.5 parent: 2 - - uid: 3890 + - uid: 20171 components: - type: Transform - pos: -26.5,-15.5 + pos: 33.5,-47.5 parent: 2 - - uid: 3891 + - uid: 20172 components: - type: Transform - pos: -30.5,-14.5 + pos: 33.5,-46.5 parent: 2 - - uid: 3892 + - uid: 20173 components: - type: Transform - pos: -29.5,-14.5 + pos: 33.5,-45.5 parent: 2 - - uid: 3893 + - uid: 20174 components: - type: Transform - pos: -28.5,-14.5 + pos: 33.5,-44.5 parent: 2 - - uid: 3894 + - uid: 20175 components: - type: Transform - pos: -27.5,-14.5 + pos: 33.5,-43.5 parent: 2 - - uid: 3895 + - uid: 20176 components: - type: Transform - pos: -26.5,-14.5 + pos: 32.5,-43.5 parent: 2 - - uid: 3896 + - uid: 20177 components: - type: Transform - pos: -25.5,-15.5 + pos: 32.5,-42.5 parent: 2 - - uid: 3897 + - uid: 20178 components: - type: Transform - pos: -23.5,-18.5 + pos: 31.5,-42.5 parent: 2 - - uid: 3898 + - uid: 20179 components: - type: Transform - pos: -25.5,-12.5 + pos: 30.5,-42.5 parent: 2 - - uid: 3899 + - uid: 20180 components: - type: Transform - pos: -29.5,-12.5 + pos: 29.5,-42.5 parent: 2 - - uid: 3900 + - uid: 20181 components: - type: Transform - pos: -28.5,-12.5 + pos: 28.5,-42.5 parent: 2 - - uid: 3901 + - uid: 20182 components: - type: Transform - pos: -27.5,-12.5 + pos: 30.5,-43.5 parent: 2 - - uid: 3902 + - uid: 20183 components: - type: Transform - pos: -26.5,-12.5 + pos: 30.5,-44.5 parent: 2 - - uid: 3903 + - uid: 20184 components: - type: Transform - pos: -23.5,-17.5 + pos: 30.5,-45.5 parent: 2 - - uid: 3904 + - uid: 20185 components: - type: Transform - pos: -23.5,-7.5 + pos: 30.5,-46.5 parent: 2 - - uid: 3905 + - uid: 20186 components: - type: Transform - pos: -24.5,-7.5 + pos: 30.5,-47.5 parent: 2 - - uid: 3906 + - uid: 20187 components: - type: Transform - pos: -24.5,-6.5 + pos: 31.5,-45.5 parent: 2 - - uid: 3907 + - uid: 20188 components: - type: Transform - pos: -25.5,-6.5 + pos: 32.5,-45.5 parent: 2 - - uid: 3908 + - uid: 20189 components: - type: Transform - pos: -26.5,-6.5 + pos: 29.5,-45.5 parent: 2 - - uid: 3909 + - uid: 20190 components: - type: Transform - pos: -27.5,-6.5 + pos: 28.5,-45.5 parent: 2 - - uid: 3910 + - uid: 20191 components: - type: Transform - pos: -28.5,-6.5 + pos: 30.5,-41.5 parent: 2 - - uid: 3911 + - uid: 20192 components: - type: Transform - pos: -28.5,-7.5 + pos: 30.5,-40.5 parent: 2 - - uid: 3912 + - uid: 20193 components: - type: Transform - pos: -28.5,-8.5 + pos: 29.5,-40.5 parent: 2 - - uid: 3913 + - uid: 20194 components: - type: Transform - pos: -27.5,-8.5 + pos: 31.5,-40.5 parent: 2 - - uid: 3914 +- proto: CableApcStack + entities: + - uid: 3771 components: - type: Transform - pos: -26.5,-8.5 + pos: -7.469557,28.649622 parent: 2 - - uid: 3915 + - uid: 3772 components: - type: Transform - pos: -25.5,-8.5 + pos: 48.691536,31.712133 parent: 2 - - uid: 3916 + - uid: 3773 components: - type: Transform - pos: -24.5,-8.5 + pos: 48.601868,31.479158 parent: 2 - - uid: 3917 + - uid: 3774 components: - type: Transform - pos: -24.5,-2.5 + pos: 60.434174,28.366611 parent: 2 - - uid: 3918 + - uid: 3775 components: - type: Transform - pos: -25.5,-2.5 + pos: 60.77491,28.599586 parent: 2 - - uid: 3919 +- proto: CableApcStack1 + entities: + - uid: 3776 components: - type: Transform - pos: -26.5,-2.5 + rot: -1.5707963267948966 rad + pos: 50.308266,50.298573 parent: 2 - - uid: 3920 + - uid: 3777 components: - type: Transform - pos: -27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 50.79256,50.782536 parent: 2 - - uid: 3921 + - uid: 3778 components: - type: Transform - pos: -28.5,-2.5 + rot: 3.141592653589793 rad + pos: 50.2451,53.87569 parent: 2 - - uid: 3922 +- proto: Cablecuffs + entities: + - uid: 3779 components: - type: Transform - pos: -28.5,-4.5 + pos: -26.328623,55.189487 parent: 2 - - uid: 3923 + - uid: 3780 components: - type: Transform - pos: -27.5,-4.5 + pos: -26.515789,55.32977 parent: 2 - - uid: 3924 +- proto: CableHV + entities: + - uid: 3465 components: - type: Transform - pos: -26.5,-4.5 + pos: -15.5,26.5 parent: 2 - - uid: 3925 + - uid: 3781 components: - type: Transform - pos: -25.5,-4.5 + pos: -3.5,17.5 parent: 2 - - uid: 3926 + - uid: 3782 components: - type: Transform - pos: -24.5,-4.5 + pos: -22.5,33.5 parent: 2 - - uid: 3927 + - uid: 3783 components: - type: Transform - pos: 27.5,79.5 + pos: -25.5,26.5 parent: 2 - - uid: 3928 + - uid: 3784 components: - type: Transform - pos: 28.5,79.5 + pos: -21.5,36.5 parent: 2 - - uid: 3929 + - uid: 3785 components: - type: Transform - pos: 29.5,79.5 + pos: -17.5,36.5 parent: 2 - - uid: 3930 + - uid: 3786 components: - type: Transform - pos: 30.5,79.5 + pos: -19.5,36.5 parent: 2 - - uid: 3931 + - uid: 3787 components: - type: Transform - pos: 31.5,79.5 + pos: -20.5,31.5 parent: 2 - - uid: 3932 + - uid: 3788 components: - type: Transform - pos: 31.5,78.5 + pos: -20.5,32.5 parent: 2 - - uid: 3933 + - uid: 3789 components: - type: Transform - pos: 31.5,77.5 + pos: -24.5,24.5 parent: 2 - - uid: 3934 + - uid: 3790 components: - type: Transform - pos: 30.5,77.5 + pos: -25.5,24.5 parent: 2 - - uid: 3935 + - uid: 3791 components: - type: Transform - pos: 29.5,77.5 + pos: -25.5,24.5 parent: 2 - - uid: 3936 + - uid: 3792 components: - type: Transform - pos: 28.5,77.5 + pos: -25.5,25.5 parent: 2 - - uid: 3937 + - uid: 3793 components: - type: Transform - pos: 27.5,77.5 + pos: -26.5,26.5 parent: 2 - - uid: 3938 + - uid: 3794 components: - type: Transform - pos: 27.5,78.5 + pos: -27.5,26.5 parent: 2 - - uid: 3939 + - uid: 3795 components: - type: Transform - pos: 32.5,78.5 + pos: -22.5,-0.5 parent: 2 - - uid: 3940 + - uid: 3796 components: - type: Transform - pos: 33.5,81.5 + pos: -22.5,1.5 parent: 2 - - uid: 3941 + - uid: 3797 components: - type: Transform - pos: 34.5,74.5 + pos: -22.5,0.5 parent: 2 - - uid: 3942 + - uid: 3798 components: - type: Transform - pos: 35.5,79.5 + pos: -24.5,-3.5 parent: 2 - - uid: 3943 + - uid: 3799 components: - type: Transform - pos: 36.5,79.5 + pos: -25.5,-11.5 parent: 2 - - uid: 3944 + - uid: 3800 components: - type: Transform - pos: 37.5,79.5 + pos: -24.5,-11.5 parent: 2 - - uid: 3945 + - uid: 3801 components: - type: Transform - pos: 38.5,79.5 + pos: -28.5,26.5 parent: 2 - - uid: 3946 + - uid: 3802 components: - type: Transform - pos: 39.5,79.5 + pos: -29.5,26.5 parent: 2 - - uid: 3947 + - uid: 3804 components: - type: Transform - pos: 39.5,77.5 + pos: 45.5,-20.5 parent: 2 - - uid: 3948 + - uid: 3805 components: - type: Transform - pos: 38.5,77.5 + pos: 46.5,-20.5 parent: 2 - - uid: 3949 + - uid: 3806 components: - type: Transform - pos: 37.5,77.5 + pos: 47.5,-20.5 parent: 2 - - uid: 3950 + - uid: 3807 components: - type: Transform - pos: 36.5,77.5 + pos: 48.5,-20.5 parent: 2 - - uid: 3951 + - uid: 3808 components: - type: Transform - pos: 35.5,77.5 + pos: 49.5,-20.5 parent: 2 - - uid: 3952 + - uid: 3809 components: - type: Transform - pos: 35.5,78.5 + pos: 45.5,-22.5 parent: 2 - - uid: 3953 + - uid: 3810 components: - type: Transform - pos: 39.5,78.5 + pos: 46.5,-22.5 parent: 2 - - uid: 3954 + - uid: 3811 components: - type: Transform - pos: 34.5,78.5 + pos: 47.5,-22.5 parent: 2 - - uid: 3955 + - uid: 3812 components: - type: Transform - pos: 35.5,74.5 + pos: 48.5,-22.5 parent: 2 - - uid: 3956 + - uid: 3813 components: - type: Transform - pos: 35.5,75.5 + pos: 49.5,-22.5 parent: 2 - - uid: 3957 + - uid: 3814 components: - type: Transform - pos: 36.5,75.5 + pos: 49.5,-21.5 parent: 2 - - uid: 3958 + - uid: 3815 components: - type: Transform - pos: 37.5,75.5 + pos: 45.5,-21.5 parent: 2 - - uid: 3959 + - uid: 3816 components: - type: Transform - pos: 38.5,75.5 + pos: 50.5,-21.5 parent: 2 - - uid: 3960 + - uid: 3817 components: - type: Transform - pos: 39.5,75.5 + pos: 52.5,-21.5 parent: 2 - - uid: 3961 + - uid: 3818 components: - type: Transform - pos: 39.5,74.5 + pos: 53.5,-21.5 parent: 2 - - uid: 3962 + - uid: 3819 components: - type: Transform - pos: 39.5,73.5 + pos: 53.5,-20.5 parent: 2 - - uid: 3963 + - uid: 3820 components: - type: Transform - pos: 38.5,73.5 + pos: 53.5,-22.5 parent: 2 - - uid: 3964 + - uid: 3821 components: - type: Transform - pos: 37.5,73.5 + pos: 54.5,-20.5 parent: 2 - - uid: 3965 + - uid: 3822 components: - type: Transform - pos: 36.5,73.5 + pos: 55.5,-20.5 parent: 2 - - uid: 3966 + - uid: 3823 components: - type: Transform - pos: 35.5,73.5 + pos: 56.5,-20.5 parent: 2 - - uid: 3967 + - uid: 3824 components: - type: Transform - pos: 34.5,70.5 + pos: 57.5,-20.5 parent: 2 - - uid: 3968 + - uid: 3825 components: - type: Transform - pos: 35.5,70.5 + pos: 57.5,-22.5 parent: 2 - - uid: 3969 + - uid: 3826 components: - type: Transform - pos: 35.5,71.5 + pos: 56.5,-22.5 parent: 2 - - uid: 3970 + - uid: 3827 components: - type: Transform - pos: 36.5,71.5 + pos: 55.5,-22.5 parent: 2 - - uid: 3971 + - uid: 3828 components: - type: Transform - pos: 37.5,71.5 + pos: 54.5,-22.5 parent: 2 - - uid: 3972 + - uid: 3829 components: - type: Transform - pos: 38.5,71.5 + pos: 57.5,-21.5 parent: 2 - - uid: 3973 + - uid: 3830 components: - type: Transform - pos: 39.5,71.5 + pos: 51.5,-24.5 parent: 2 - - uid: 3974 + - uid: 3831 components: - type: Transform - pos: 39.5,70.5 + pos: 51.5,-23.5 parent: 2 - - uid: 3975 + - uid: 3832 components: - type: Transform - pos: 39.5,69.5 + pos: 49.5,-18.5 parent: 2 - - uid: 3976 + - uid: 3833 components: - type: Transform - pos: 38.5,69.5 + pos: 49.5,-17.5 parent: 2 - - uid: 3977 + - uid: 3834 components: - type: Transform - pos: 37.5,69.5 + pos: 49.5,-16.5 parent: 2 - - uid: 3978 + - uid: 3835 components: - type: Transform - pos: 36.5,69.5 + pos: 48.5,-16.5 parent: 2 - - uid: 3979 + - uid: 3836 components: - type: Transform - pos: 35.5,69.5 + pos: 47.5,-16.5 parent: 2 - - uid: 3980 + - uid: 3837 components: - type: Transform - pos: 32.5,70.5 + pos: 46.5,-16.5 parent: 2 - - uid: 3981 + - uid: 3838 components: - type: Transform - pos: 31.5,70.5 + pos: 45.5,-16.5 parent: 2 - - uid: 3982 + - uid: 3839 components: - type: Transform - pos: 31.5,69.5 + pos: 45.5,-17.5 parent: 2 - - uid: 3983 + - uid: 3840 components: - type: Transform - pos: 30.5,69.5 + pos: 45.5,-18.5 parent: 2 - - uid: 3984 + - uid: 3841 components: - type: Transform - pos: 29.5,69.5 + pos: 46.5,-18.5 parent: 2 - - uid: 3985 + - uid: 3842 components: - type: Transform - pos: 28.5,69.5 + pos: 47.5,-18.5 parent: 2 - - uid: 3986 + - uid: 3843 components: - type: Transform - pos: 27.5,69.5 + pos: 48.5,-18.5 parent: 2 - - uid: 3987 + - uid: 3844 components: - type: Transform - pos: 27.5,70.5 + pos: 53.5,-18.5 parent: 2 - - uid: 3988 + - uid: 3845 components: - type: Transform - pos: 27.5,71.5 + pos: 54.5,-18.5 parent: 2 - - uid: 3989 + - uid: 3846 components: - type: Transform - pos: 28.5,71.5 + pos: 55.5,-18.5 parent: 2 - - uid: 3990 + - uid: 3847 components: - type: Transform - pos: 29.5,71.5 + pos: 56.5,-18.5 parent: 2 - - uid: 3991 + - uid: 3848 components: - type: Transform - pos: 30.5,71.5 + pos: 57.5,-18.5 parent: 2 - - uid: 3992 + - uid: 3849 components: - type: Transform - pos: 31.5,71.5 + pos: 57.5,-17.5 parent: 2 - - uid: 3993 + - uid: 3850 components: - type: Transform - pos: 31.5,73.5 + pos: 57.5,-16.5 parent: 2 - - uid: 3994 + - uid: 3851 components: - type: Transform - pos: 30.5,73.5 + pos: 56.5,-16.5 parent: 2 - - uid: 3995 + - uid: 3852 components: - type: Transform - pos: 29.5,73.5 + pos: 55.5,-16.5 parent: 2 - - uid: 3996 + - uid: 3853 components: - type: Transform - pos: 28.5,73.5 + pos: 54.5,-16.5 parent: 2 - - uid: 3997 + - uid: 3854 components: - type: Transform - pos: 27.5,73.5 + pos: 53.5,-16.5 parent: 2 - - uid: 3998 + - uid: 3855 components: - type: Transform - pos: 27.5,74.5 + pos: 53.5,-17.5 parent: 2 - - uid: 3999 + - uid: 3856 components: - type: Transform - pos: 27.5,75.5 + pos: 52.5,-17.5 parent: 2 - - uid: 4000 + - uid: 3857 components: - type: Transform - pos: 28.5,75.5 + pos: 50.5,-17.5 parent: 2 - - uid: 4001 + - uid: 3858 components: - type: Transform - pos: 29.5,75.5 + pos: 50.5,-13.5 parent: 2 - - uid: 4002 + - uid: 3859 components: - type: Transform - pos: 30.5,75.5 + pos: 49.5,-13.5 parent: 2 - - uid: 4003 + - uid: 3860 components: - type: Transform - pos: 31.5,75.5 + pos: 49.5,-12.5 parent: 2 - - uid: 4004 + - uid: 3861 components: - type: Transform - pos: 31.5,74.5 + pos: 48.5,-12.5 parent: 2 - - uid: 4005 + - uid: 3862 components: - type: Transform - pos: 32.5,74.5 + pos: 47.5,-12.5 parent: 2 - - uid: 4006 + - uid: 3863 components: - type: Transform - pos: 48.5,-10.5 + pos: 46.5,-12.5 parent: 2 - - uid: 4007 + - uid: 3864 components: - type: Transform - pos: 14.5,48.5 + pos: 45.5,-12.5 parent: 2 - - uid: 4008 + - uid: 3865 components: - type: Transform - pos: 16.5,48.5 + pos: 45.5,-13.5 parent: 2 - - uid: 4009 + - uid: 3866 components: - type: Transform - pos: 15.5,48.5 + pos: 45.5,-14.5 parent: 2 - - uid: 4010 + - uid: 3867 components: - type: Transform - pos: -11.5,33.5 + pos: 46.5,-14.5 parent: 2 - - uid: 4011 + - uid: 3868 components: - type: Transform - pos: -11.5,34.5 + pos: 47.5,-14.5 parent: 2 - - uid: 4012 + - uid: 3869 components: - type: Transform - pos: -11.5,35.5 + pos: 48.5,-14.5 parent: 2 - - uid: 4013 + - uid: 3870 components: - type: Transform - pos: -11.5,36.5 + pos: 49.5,-14.5 parent: 2 - - uid: 4014 + - uid: 3871 components: - type: Transform - pos: -12.5,36.5 + pos: 52.5,-13.5 parent: 2 - - uid: 4015 + - uid: 3872 components: - type: Transform - pos: -13.5,42.5 + pos: 53.5,-13.5 parent: 2 - - uid: 4016 + - uid: 3873 components: - type: Transform - pos: -13.5,43.5 + pos: 53.5,-12.5 parent: 2 - - uid: 4017 + - uid: 3874 components: - type: Transform - pos: -13.5,44.5 + pos: 54.5,-12.5 parent: 2 - - uid: 4018 + - uid: 3875 components: - type: Transform - pos: -14.5,44.5 + pos: 55.5,-12.5 parent: 2 - - uid: 4019 + - uid: 3876 components: - type: Transform - pos: -12.5,44.5 + pos: 56.5,-12.5 parent: 2 - - uid: 4020 + - uid: 3877 components: - type: Transform - pos: -12.5,45.5 + pos: 57.5,-12.5 parent: 2 - - uid: 4021 + - uid: 3878 components: - type: Transform - pos: -13.5,45.5 + pos: 57.5,-13.5 parent: 2 - - uid: 4022 + - uid: 3879 components: - type: Transform - pos: -14.5,45.5 + pos: 57.5,-14.5 parent: 2 - - uid: 4023 + - uid: 3880 components: - type: Transform - pos: -15.5,45.5 + pos: 56.5,-14.5 parent: 2 - - uid: 4024 + - uid: 3881 components: - type: Transform - pos: -16.5,45.5 + pos: 55.5,-14.5 parent: 2 - - uid: 4025 + - uid: 3882 components: - type: Transform - pos: -16.5,44.5 + pos: 54.5,-14.5 parent: 2 - - uid: 4026 + - uid: 3883 components: - type: Transform - pos: -16.5,43.5 + pos: 53.5,-14.5 parent: 2 - - uid: 4027 + - uid: 3884 components: - type: Transform - pos: -13.5,46.5 + pos: -26.5,-16.5 parent: 2 - - uid: 4028 + - uid: 3885 components: - type: Transform - pos: -13.5,47.5 + pos: -27.5,-16.5 parent: 2 - - uid: 4029 + - uid: 3886 components: - type: Transform - pos: -13.5,48.5 + pos: -28.5,-16.5 parent: 2 - - uid: 4030 + - uid: 3887 components: - type: Transform - pos: -12.5,48.5 + pos: -29.5,-16.5 parent: 2 - - uid: 4031 + - uid: 3888 components: - type: Transform - pos: -11.5,48.5 + pos: -30.5,-16.5 parent: 2 - - uid: 4032 + - uid: 3889 components: - type: Transform - pos: -10.5,48.5 + pos: -30.5,-15.5 parent: 2 - - uid: 4033 + - uid: 3890 components: - type: Transform - pos: -9.5,48.5 + pos: -26.5,-15.5 parent: 2 - - uid: 4034 + - uid: 3891 components: - type: Transform - pos: -8.5,48.5 + pos: -30.5,-14.5 parent: 2 - - uid: 4035 + - uid: 3892 components: - type: Transform - pos: -7.5,48.5 + pos: -29.5,-14.5 parent: 2 - - uid: 4036 + - uid: 3893 components: - type: Transform - pos: -6.5,48.5 + pos: -28.5,-14.5 parent: 2 - - uid: 4037 + - uid: 3894 components: - type: Transform - pos: -5.5,48.5 + pos: -27.5,-14.5 parent: 2 - - uid: 4038 + - uid: 3895 components: - type: Transform - pos: -4.5,48.5 + pos: -26.5,-14.5 parent: 2 - - uid: 4039 + - uid: 3896 components: - type: Transform - pos: -3.5,48.5 + pos: -25.5,-15.5 parent: 2 - - uid: 4040 + - uid: 3897 components: - type: Transform - pos: -2.5,48.5 + pos: -23.5,-18.5 parent: 2 - - uid: 4041 + - uid: 3898 components: - type: Transform - pos: -1.5,48.5 + pos: -25.5,-12.5 parent: 2 - - uid: 4042 + - uid: 3899 components: - type: Transform - pos: -0.5,48.5 + pos: -29.5,-12.5 parent: 2 - - uid: 4043 + - uid: 3900 components: - type: Transform - pos: 0.5,48.5 + pos: -28.5,-12.5 parent: 2 - - uid: 4044 + - uid: 3901 components: - type: Transform - pos: 1.5,48.5 + pos: -27.5,-12.5 parent: 2 - - uid: 4045 + - uid: 3902 components: - type: Transform - pos: 2.5,48.5 + pos: -26.5,-12.5 parent: 2 - - uid: 4046 + - uid: 3903 components: - type: Transform - pos: 3.5,48.5 + pos: -23.5,-17.5 parent: 2 - - uid: 4047 + - uid: 3904 components: - type: Transform - pos: 4.5,48.5 + pos: -23.5,-7.5 parent: 2 - - uid: 4048 + - uid: 3905 components: - type: Transform - pos: 5.5,48.5 + pos: -24.5,-7.5 parent: 2 - - uid: 4049 + - uid: 3906 components: - type: Transform - pos: 5.5,49.5 + pos: -24.5,-6.5 parent: 2 - - uid: 4050 + - uid: 3907 components: - type: Transform - pos: 5.5,50.5 + pos: -25.5,-6.5 parent: 2 - - uid: 4051 + - uid: 3908 components: - type: Transform - pos: 5.5,51.5 + pos: -26.5,-6.5 parent: 2 - - uid: 4052 + - uid: 3909 components: - type: Transform - pos: 5.5,52.5 + pos: -27.5,-6.5 parent: 2 - - uid: 4053 + - uid: 3910 components: - type: Transform - pos: 5.5,53.5 + pos: -28.5,-6.5 parent: 2 - - uid: 4054 + - uid: 3911 components: - type: Transform - pos: 5.5,54.5 + pos: -28.5,-7.5 parent: 2 - - uid: 4055 + - uid: 3912 components: - type: Transform - pos: 5.5,55.5 + pos: -28.5,-8.5 parent: 2 - - uid: 4056 + - uid: 3913 components: - type: Transform - pos: 5.5,56.5 + pos: -27.5,-8.5 parent: 2 - - uid: 4057 + - uid: 3914 components: - type: Transform - pos: 5.5,57.5 + pos: -26.5,-8.5 parent: 2 - - uid: 4058 + - uid: 3915 components: - type: Transform - pos: 5.5,58.5 + pos: -25.5,-8.5 parent: 2 - - uid: 4059 + - uid: 3916 components: - type: Transform - pos: 5.5,59.5 + pos: -24.5,-8.5 parent: 2 - - uid: 4060 + - uid: 3917 components: - type: Transform - pos: 5.5,60.5 + pos: -24.5,-2.5 parent: 2 - - uid: 4061 + - uid: 3918 components: - type: Transform - pos: 5.5,61.5 + pos: -25.5,-2.5 parent: 2 - - uid: 4062 + - uid: 3919 components: - type: Transform - pos: 5.5,62.5 + pos: -26.5,-2.5 parent: 2 - - uid: 4063 + - uid: 3920 components: - type: Transform - pos: 5.5,63.5 + pos: -27.5,-2.5 parent: 2 - - uid: 4064 + - uid: 3921 components: - type: Transform - pos: 4.5,63.5 + pos: -28.5,-2.5 parent: 2 - - uid: 4065 + - uid: 3922 components: - type: Transform - pos: 3.5,63.5 + pos: -28.5,-4.5 parent: 2 - - uid: 4066 + - uid: 3923 components: - type: Transform - pos: 2.5,63.5 + pos: -27.5,-4.5 parent: 2 - - uid: 4067 + - uid: 3924 components: - type: Transform - pos: 1.5,63.5 + pos: -26.5,-4.5 parent: 2 - - uid: 4068 + - uid: 3925 components: - type: Transform - pos: 0.5,63.5 + pos: -25.5,-4.5 parent: 2 - - uid: 4069 + - uid: 3926 components: - type: Transform - pos: -0.5,63.5 + pos: -24.5,-4.5 parent: 2 - - uid: 4070 + - uid: 3927 components: - type: Transform - pos: -1.5,63.5 + pos: 27.5,79.5 parent: 2 - - uid: 4071 + - uid: 3928 components: - type: Transform - pos: -2.5,63.5 + pos: 28.5,79.5 parent: 2 - - uid: 4072 + - uid: 3929 components: - type: Transform - pos: -3.5,63.5 + pos: 29.5,79.5 parent: 2 - - uid: 4073 + - uid: 3930 components: - type: Transform - pos: -3.5,64.5 + pos: 30.5,79.5 parent: 2 - - uid: 4074 + - uid: 3931 components: - type: Transform - pos: -3.5,65.5 + pos: 31.5,79.5 parent: 2 - - uid: 4075 + - uid: 3932 components: - type: Transform - pos: -3.5,66.5 + pos: 31.5,78.5 parent: 2 - - uid: 4076 + - uid: 3933 components: - type: Transform - pos: -3.5,67.5 + pos: 31.5,77.5 parent: 2 - - uid: 4077 + - uid: 3934 components: - type: Transform - pos: -3.5,68.5 + pos: 30.5,77.5 parent: 2 - - uid: 4078 + - uid: 3935 components: - type: Transform - pos: -2.5,68.5 + pos: 29.5,77.5 parent: 2 - - uid: 4079 + - uid: 3936 components: - type: Transform - pos: 5.5,64.5 + pos: 28.5,77.5 parent: 2 - - uid: 4080 + - uid: 3937 components: - type: Transform - pos: 6.5,64.5 + pos: 27.5,77.5 parent: 2 - - uid: 4081 + - uid: 3938 components: - type: Transform - pos: 7.5,64.5 + pos: 27.5,78.5 parent: 2 - - uid: 4082 + - uid: 3939 components: - type: Transform - pos: 8.5,64.5 + pos: 32.5,78.5 parent: 2 - - uid: 4083 + - uid: 3940 components: - type: Transform - pos: 9.5,64.5 + pos: 33.5,81.5 parent: 2 - - uid: 4084 + - uid: 3941 components: - type: Transform - pos: 10.5,64.5 + pos: 34.5,74.5 parent: 2 - - uid: 4085 + - uid: 3942 components: - type: Transform - pos: 11.5,64.5 + pos: 35.5,79.5 parent: 2 - - uid: 4086 + - uid: 3943 components: - type: Transform - pos: 12.5,64.5 + pos: 36.5,79.5 parent: 2 - - uid: 4087 + - uid: 3944 components: - type: Transform - pos: 13.5,64.5 + pos: 37.5,79.5 parent: 2 - - uid: 4088 + - uid: 3945 components: - type: Transform - pos: 13.5,65.5 + pos: 38.5,79.5 parent: 2 - - uid: 4089 + - uid: 3946 components: - type: Transform - pos: 14.5,65.5 + pos: 39.5,79.5 parent: 2 - - uid: 4090 + - uid: 3947 components: - type: Transform - pos: 15.5,65.5 + pos: 39.5,77.5 parent: 2 - - uid: 4091 + - uid: 3948 components: - type: Transform - pos: 16.5,65.5 + pos: 38.5,77.5 parent: 2 - - uid: 4092 + - uid: 3949 components: - type: Transform - pos: 17.5,65.5 + pos: 37.5,77.5 parent: 2 - - uid: 4093 + - uid: 3950 components: - type: Transform - pos: 18.5,65.5 + pos: 36.5,77.5 parent: 2 - - uid: 4094 + - uid: 3951 components: - type: Transform - pos: 19.5,65.5 + pos: 35.5,77.5 parent: 2 - - uid: 4095 + - uid: 3952 components: - type: Transform - pos: 20.5,65.5 + pos: 35.5,78.5 parent: 2 - - uid: 4096 + - uid: 3953 components: - type: Transform - pos: 21.5,65.5 + pos: 39.5,78.5 parent: 2 - - uid: 4097 + - uid: 3954 components: - type: Transform - pos: 22.5,65.5 + pos: 34.5,78.5 parent: 2 - - uid: 4098 + - uid: 3955 components: - type: Transform - pos: 23.5,65.5 + pos: 35.5,74.5 parent: 2 - - uid: 4099 + - uid: 3956 components: - type: Transform - pos: 24.5,65.5 + pos: 35.5,75.5 parent: 2 - - uid: 4100 + - uid: 3957 components: - type: Transform - pos: 24.5,64.5 + pos: 36.5,75.5 parent: 2 - - uid: 4101 + - uid: 3958 components: - type: Transform - pos: 24.5,63.5 + pos: 37.5,75.5 parent: 2 - - uid: 4102 + - uid: 3959 components: - type: Transform - pos: 24.5,62.5 + pos: 38.5,75.5 parent: 2 - - uid: 4103 + - uid: 3960 components: - type: Transform - pos: 24.5,61.5 + pos: 39.5,75.5 parent: 2 - - uid: 4104 + - uid: 3961 components: - type: Transform - pos: 24.5,60.5 + pos: 39.5,74.5 parent: 2 - - uid: 4105 + - uid: 3962 components: - type: Transform - pos: 25.5,60.5 + pos: 39.5,73.5 parent: 2 - - uid: 4106 + - uid: 3963 components: - type: Transform - pos: 26.5,60.5 + pos: 38.5,73.5 parent: 2 - - uid: 4107 + - uid: 3964 components: - type: Transform - pos: 27.5,60.5 + pos: 37.5,73.5 parent: 2 - - uid: 4108 + - uid: 3965 components: - type: Transform - pos: 28.5,60.5 + pos: 36.5,73.5 parent: 2 - - uid: 4109 + - uid: 3966 components: - type: Transform - pos: 29.5,60.5 + pos: 35.5,73.5 parent: 2 - - uid: 4110 + - uid: 3967 components: - type: Transform - pos: 30.5,60.5 + pos: 34.5,70.5 parent: 2 - - uid: 4111 + - uid: 3968 components: - type: Transform - pos: 31.5,60.5 + pos: 35.5,70.5 parent: 2 - - uid: 4112 + - uid: 3969 components: - type: Transform - pos: 31.5,61.5 + pos: 35.5,71.5 parent: 2 - - uid: 4113 + - uid: 3970 components: - type: Transform - pos: 32.5,61.5 + pos: 36.5,71.5 parent: 2 - - uid: 4114 + - uid: 3971 components: - type: Transform - pos: 33.5,61.5 + pos: 37.5,71.5 parent: 2 - - uid: 4115 + - uid: 3972 components: - type: Transform - pos: 35.5,61.5 + pos: 38.5,71.5 parent: 2 - - uid: 4116 + - uid: 3973 components: - type: Transform - pos: 31.5,62.5 + pos: 39.5,71.5 parent: 2 - - uid: 4117 + - uid: 3974 components: - type: Transform - pos: 35.5,63.5 + pos: 39.5,70.5 parent: 2 - - uid: 4118 + - uid: 3975 components: - type: Transform - pos: 34.5,61.5 + pos: 39.5,69.5 parent: 2 - - uid: 4119 + - uid: 3976 components: - type: Transform - pos: 33.5,65.5 + pos: 38.5,69.5 parent: 2 - - uid: 4120 + - uid: 3977 components: - type: Transform - pos: 31.5,63.5 + pos: 37.5,69.5 parent: 2 - - uid: 4121 + - uid: 3978 components: - type: Transform - pos: 31.5,64.5 + pos: 36.5,69.5 parent: 2 - - uid: 4122 + - uid: 3979 components: - type: Transform - pos: 32.5,64.5 + pos: 35.5,69.5 parent: 2 - - uid: 4123 + - uid: 3980 components: - type: Transform - pos: 33.5,64.5 + pos: 32.5,70.5 parent: 2 - - uid: 4124 + - uid: 3981 components: - type: Transform - pos: 35.5,63.5 + pos: 31.5,70.5 parent: 2 - - uid: 4125 + - uid: 3982 components: - type: Transform - pos: 33.5,67.5 + pos: 31.5,69.5 parent: 2 - - uid: 4126 + - uid: 3983 components: - type: Transform - pos: 33.5,66.5 + pos: 30.5,69.5 parent: 2 - - uid: 4127 + - uid: 3984 components: - type: Transform - pos: 33.5,68.5 + pos: 29.5,69.5 parent: 2 - - uid: 4128 + - uid: 3985 components: - type: Transform - pos: 0.5,47.5 + pos: 28.5,69.5 parent: 2 - - uid: 4129 + - uid: 3986 components: - type: Transform - pos: 0.5,46.5 + pos: 27.5,69.5 parent: 2 - - uid: 4130 + - uid: 3987 components: - type: Transform - pos: 0.5,45.5 + pos: 27.5,70.5 parent: 2 - - uid: 4131 + - uid: 3988 components: - type: Transform - pos: 0.5,44.5 + pos: 27.5,71.5 parent: 2 - - uid: 4132 + - uid: 3989 components: - type: Transform - pos: 0.5,43.5 + pos: 28.5,71.5 parent: 2 - - uid: 4133 + - uid: 3990 components: - type: Transform - pos: 0.5,42.5 + pos: 29.5,71.5 parent: 2 - - uid: 4134 + - uid: 3991 components: - type: Transform - pos: 0.5,41.5 + pos: 30.5,71.5 parent: 2 - - uid: 4135 + - uid: 3992 components: - type: Transform - pos: 0.5,40.5 + pos: 31.5,71.5 parent: 2 - - uid: 4136 + - uid: 3993 components: - type: Transform - pos: 0.5,39.5 + pos: 31.5,73.5 parent: 2 - - uid: 4137 + - uid: 3994 components: - type: Transform - pos: 0.5,38.5 + pos: 30.5,73.5 parent: 2 - - uid: 4138 + - uid: 3995 components: - type: Transform - pos: 0.5,37.5 + pos: 29.5,73.5 parent: 2 - - uid: 4139 + - uid: 3996 components: - type: Transform - pos: 0.5,36.5 + pos: 28.5,73.5 parent: 2 - - uid: 4140 + - uid: 3997 components: - type: Transform - pos: 0.5,35.5 + pos: 27.5,73.5 parent: 2 - - uid: 4141 + - uid: 3998 components: - type: Transform - pos: 0.5,34.5 + pos: 27.5,74.5 parent: 2 - - uid: 4142 + - uid: 3999 components: - type: Transform - pos: 0.5,33.5 + pos: 27.5,75.5 parent: 2 - - uid: 4143 + - uid: 4000 components: - type: Transform - pos: 0.5,32.5 + pos: 28.5,75.5 parent: 2 - - uid: 4144 + - uid: 4001 components: - type: Transform - pos: 6.5,48.5 + pos: 29.5,75.5 parent: 2 - - uid: 4145 + - uid: 4002 components: - type: Transform - pos: 7.5,48.5 + pos: 30.5,75.5 parent: 2 - - uid: 4146 + - uid: 4003 components: - type: Transform - pos: 8.5,48.5 + pos: 31.5,75.5 parent: 2 - - uid: 4147 + - uid: 4004 components: - type: Transform - pos: 9.5,48.5 + pos: 31.5,74.5 parent: 2 - - uid: 4148 + - uid: 4005 components: - type: Transform - pos: 10.5,48.5 + pos: 32.5,74.5 parent: 2 - - uid: 4149 + - uid: 4006 components: - type: Transform - pos: 11.5,48.5 + pos: 48.5,-10.5 parent: 2 - - uid: 4150 + - uid: 4007 components: - type: Transform - pos: 12.5,48.5 + pos: 14.5,48.5 parent: 2 - - uid: 4151 + - uid: 4008 components: - type: Transform - pos: 13.5,48.5 + pos: 16.5,48.5 parent: 2 - - uid: 4152 + - uid: 4009 components: - type: Transform - pos: 0.5,31.5 + pos: 15.5,48.5 parent: 2 - - uid: 4153 + - uid: 4010 components: - type: Transform - pos: 0.5,30.5 + pos: -11.5,33.5 parent: 2 - - uid: 4154 + - uid: 4011 components: - type: Transform - pos: 0.5,29.5 + pos: -11.5,34.5 parent: 2 - - uid: 4155 + - uid: 4012 components: - type: Transform - pos: 0.5,28.5 + pos: -11.5,35.5 parent: 2 - - uid: 4156 + - uid: 4013 components: - type: Transform - pos: 0.5,27.5 + pos: -11.5,36.5 parent: 2 - - uid: 4157 + - uid: 4014 components: - type: Transform - pos: 0.5,26.5 + pos: -12.5,36.5 parent: 2 - - uid: 4158 + - uid: 4015 components: - type: Transform - pos: 0.5,25.5 + pos: -13.5,42.5 parent: 2 - - uid: 4159 + - uid: 4016 components: - type: Transform - pos: 0.5,24.5 + pos: -13.5,43.5 parent: 2 - - uid: 4160 + - uid: 4017 components: - type: Transform - pos: 0.5,23.5 + pos: -13.5,44.5 parent: 2 - - uid: 4161 + - uid: 4018 components: - type: Transform - pos: 0.5,22.5 + pos: -14.5,44.5 parent: 2 - - uid: 4162 + - uid: 4019 components: - type: Transform - pos: 0.5,21.5 + pos: -12.5,44.5 parent: 2 - - uid: 4163 + - uid: 4020 components: - type: Transform - pos: 0.5,20.5 + pos: -12.5,45.5 parent: 2 - - uid: 4164 + - uid: 4021 components: - type: Transform - pos: -22.5,4.5 + pos: -13.5,45.5 parent: 2 - - uid: 4165 + - uid: 4022 components: - type: Transform - pos: -22.5,5.5 + pos: -14.5,45.5 parent: 2 - - uid: 4166 + - uid: 4023 components: - type: Transform - pos: -22.5,6.5 + pos: -15.5,45.5 parent: 2 - - uid: 4167 + - uid: 4024 components: - type: Transform - pos: -22.5,7.5 + pos: -16.5,45.5 parent: 2 - - uid: 4168 + - uid: 4025 components: - type: Transform - pos: -21.5,7.5 + pos: -16.5,44.5 parent: 2 - - uid: 4169 + - uid: 4026 components: - type: Transform - pos: -20.5,7.5 + pos: -16.5,43.5 parent: 2 - - uid: 4170 + - uid: 4027 components: - type: Transform - pos: -20.5,8.5 + pos: -13.5,46.5 parent: 2 - - uid: 4171 + - uid: 4028 components: - type: Transform - pos: -20.5,9.5 + pos: -13.5,47.5 parent: 2 - - uid: 4172 + - uid: 4029 components: - type: Transform - pos: -21.5,9.5 + pos: -13.5,48.5 parent: 2 - - uid: 4173 + - uid: 4030 components: - type: Transform - pos: -22.5,9.5 + pos: -12.5,48.5 parent: 2 - - uid: 4174 + - uid: 4031 components: - type: Transform - pos: -22.5,10.5 + pos: -11.5,48.5 parent: 2 - - uid: 4175 + - uid: 4032 components: - type: Transform - pos: -22.5,11.5 + pos: -10.5,48.5 parent: 2 - - uid: 4176 + - uid: 4033 components: - type: Transform - pos: -22.5,12.5 + pos: -9.5,48.5 parent: 2 - - uid: 4177 + - uid: 4034 components: - type: Transform - pos: -22.5,13.5 + pos: -8.5,48.5 parent: 2 - - uid: 4178 + - uid: 4035 components: - type: Transform - pos: -22.5,14.5 + pos: -7.5,48.5 parent: 2 - - uid: 4179 + - uid: 4036 components: - type: Transform - pos: -21.5,14.5 + pos: -6.5,48.5 parent: 2 - - uid: 4180 + - uid: 4037 components: - type: Transform - pos: -20.5,14.5 + pos: -5.5,48.5 parent: 2 - - uid: 4181 + - uid: 4038 components: - type: Transform - pos: -20.5,13.5 + pos: -4.5,48.5 parent: 2 - - uid: 4182 + - uid: 4039 components: - type: Transform - pos: -20.5,12.5 + pos: -3.5,48.5 parent: 2 - - uid: 4183 + - uid: 4040 components: - type: Transform - pos: -20.5,11.5 + pos: -2.5,48.5 parent: 2 - - uid: 4184 + - uid: 4041 components: - type: Transform - pos: -19.5,11.5 + pos: -1.5,48.5 parent: 2 - - uid: 4185 + - uid: 4042 components: - type: Transform - pos: -18.5,11.5 + pos: -0.5,48.5 parent: 2 - - uid: 4186 + - uid: 4043 components: - type: Transform - pos: -18.5,10.5 + pos: 0.5,48.5 parent: 2 - - uid: 4187 + - uid: 4044 components: - type: Transform - pos: -18.5,9.5 + pos: 1.5,48.5 parent: 2 - - uid: 4188 + - uid: 4045 components: - type: Transform - pos: -18.5,8.5 + pos: 2.5,48.5 parent: 2 - - uid: 4189 + - uid: 4046 components: - type: Transform - pos: -18.5,7.5 + pos: 3.5,48.5 parent: 2 - - uid: 4190 + - uid: 4047 components: - type: Transform - pos: -18.5,6.5 + pos: 4.5,48.5 parent: 2 - - uid: 4191 + - uid: 4048 components: - type: Transform - pos: -17.5,6.5 + pos: 5.5,48.5 parent: 2 - - uid: 4192 + - uid: 4049 components: - type: Transform - pos: -17.5,5.5 + pos: 5.5,49.5 parent: 2 - - uid: 4193 + - uid: 4050 components: - type: Transform - pos: -17.5,4.5 + pos: 5.5,50.5 parent: 2 - - uid: 4194 + - uid: 4051 components: - type: Transform - pos: -18.5,4.5 + pos: 5.5,51.5 parent: 2 - - uid: 4195 + - uid: 4052 components: - type: Transform - pos: -17.5,11.5 + pos: 5.5,52.5 parent: 2 - - uid: 4196 + - uid: 4053 components: - type: Transform - pos: -16.5,11.5 + pos: 5.5,53.5 parent: 2 - - uid: 4197 + - uid: 4054 components: - type: Transform - pos: -15.5,11.5 + pos: 5.5,54.5 parent: 2 - - uid: 4198 + - uid: 4055 components: - type: Transform - pos: -15.5,12.5 + pos: 5.5,55.5 parent: 2 - - uid: 4199 + - uid: 4056 components: - type: Transform - pos: -15.5,13.5 + pos: 5.5,56.5 parent: 2 - - uid: 4200 + - uid: 4057 components: - type: Transform - pos: -15.5,14.5 + pos: 5.5,57.5 parent: 2 - - uid: 4201 + - uid: 4058 components: - type: Transform - pos: -15.5,15.5 + pos: 5.5,58.5 parent: 2 - - uid: 4202 + - uid: 4059 components: - type: Transform - pos: -15.5,16.5 + pos: 5.5,59.5 parent: 2 - - uid: 4203 + - uid: 4060 components: - type: Transform - pos: -14.5,16.5 + pos: 5.5,60.5 parent: 2 - - uid: 4204 + - uid: 4061 components: - type: Transform - pos: -13.5,16.5 + pos: 5.5,61.5 parent: 2 - - uid: 4205 + - uid: 4062 components: - type: Transform - pos: -12.5,16.5 + pos: 5.5,62.5 parent: 2 - - uid: 4206 + - uid: 4063 components: - type: Transform - pos: -11.5,16.5 + pos: 5.5,63.5 parent: 2 - - uid: 4207 + - uid: 4064 components: - type: Transform - pos: -10.5,16.5 + pos: 4.5,63.5 parent: 2 - - uid: 4208 + - uid: 4065 components: - type: Transform - pos: -9.5,16.5 + pos: 3.5,63.5 parent: 2 - - uid: 4209 + - uid: 4066 components: - type: Transform - pos: -8.5,16.5 + pos: 2.5,63.5 parent: 2 - - uid: 4210 + - uid: 4067 components: - type: Transform - pos: -8.5,17.5 + pos: 1.5,63.5 parent: 2 - - uid: 4211 + - uid: 4068 components: - type: Transform - pos: -7.5,17.5 + pos: 0.5,63.5 parent: 2 - - uid: 4212 + - uid: 4069 components: - type: Transform - pos: -6.5,17.5 + pos: -0.5,63.5 parent: 2 - - uid: 4213 + - uid: 4070 components: - type: Transform - pos: -5.5,17.5 + pos: -1.5,63.5 parent: 2 - - uid: 4214 + - uid: 4071 components: - type: Transform - pos: -4.5,17.5 + pos: -2.5,63.5 parent: 2 - - uid: 4215 + - uid: 4072 components: - type: Transform - pos: -4.5,20.5 + pos: -3.5,63.5 parent: 2 - - uid: 4216 + - uid: 4073 components: - type: Transform - pos: -3.5,20.5 + pos: -3.5,64.5 parent: 2 - - uid: 4217 + - uid: 4074 components: - type: Transform - pos: -2.5,20.5 + pos: -3.5,65.5 parent: 2 - - uid: 4218 + - uid: 4075 components: - type: Transform - pos: -1.5,20.5 + pos: -3.5,66.5 parent: 2 - - uid: 4219 + - uid: 4076 components: - type: Transform - pos: -0.5,20.5 + pos: -3.5,67.5 parent: 2 - - uid: 4220 + - uid: 4077 components: - type: Transform - pos: 1.5,20.5 + pos: -3.5,68.5 parent: 2 - - uid: 4221 + - uid: 4078 components: - type: Transform - pos: 2.5,20.5 + pos: -2.5,68.5 parent: 2 - - uid: 4222 + - uid: 4079 components: - type: Transform - pos: 3.5,20.5 + pos: 5.5,64.5 parent: 2 - - uid: 4223 + - uid: 4080 components: - type: Transform - pos: 4.5,20.5 + pos: 6.5,64.5 parent: 2 - - uid: 4224 + - uid: 4081 components: - type: Transform - pos: 5.5,20.5 + pos: 7.5,64.5 parent: 2 - - uid: 4225 + - uid: 4082 components: - type: Transform - pos: 6.5,20.5 + pos: 8.5,64.5 parent: 2 - - uid: 4226 + - uid: 4083 components: - type: Transform - pos: 7.5,20.5 + pos: 9.5,64.5 parent: 2 - - uid: 4227 + - uid: 4084 components: - type: Transform - pos: 8.5,20.5 + pos: 10.5,64.5 parent: 2 - - uid: 4228 + - uid: 4085 components: - type: Transform - pos: 9.5,20.5 + pos: 11.5,64.5 parent: 2 - - uid: 4229 + - uid: 4086 components: - type: Transform - pos: 10.5,20.5 + pos: 12.5,64.5 parent: 2 - - uid: 4230 + - uid: 4087 components: - type: Transform - pos: 11.5,20.5 + pos: 13.5,64.5 parent: 2 - - uid: 4231 + - uid: 4088 components: - type: Transform - pos: 12.5,20.5 + pos: 13.5,65.5 parent: 2 - - uid: 4232 + - uid: 4089 components: - type: Transform - pos: 13.5,20.5 + pos: 14.5,65.5 parent: 2 - - uid: 4233 + - uid: 4090 components: - type: Transform - pos: 14.5,20.5 + pos: 15.5,65.5 parent: 2 - - uid: 4234 + - uid: 4091 components: - type: Transform - pos: 15.5,20.5 + pos: 16.5,65.5 parent: 2 - - uid: 4235 + - uid: 4092 components: - type: Transform - pos: 15.5,19.5 + pos: 17.5,65.5 parent: 2 - - uid: 4236 + - uid: 4093 components: - type: Transform - pos: 15.5,18.5 + pos: 18.5,65.5 parent: 2 - - uid: 4237 + - uid: 4094 components: - type: Transform - pos: 15.5,17.5 + pos: 19.5,65.5 parent: 2 - - uid: 4238 + - uid: 4095 components: - type: Transform - pos: 15.5,16.5 + pos: 20.5,65.5 parent: 2 - - uid: 4239 + - uid: 4096 components: - type: Transform - pos: 15.5,15.5 + pos: 21.5,65.5 parent: 2 - - uid: 4240 + - uid: 4097 components: - type: Transform - pos: 15.5,14.5 + pos: 22.5,65.5 parent: 2 - - uid: 4241 + - uid: 4098 components: - type: Transform - pos: 15.5,13.5 + pos: 23.5,65.5 parent: 2 - - uid: 4242 + - uid: 4099 components: - type: Transform - pos: 15.5,12.5 + pos: 24.5,65.5 parent: 2 - - uid: 4243 + - uid: 4100 components: - type: Transform - pos: 16.5,12.5 + pos: 24.5,64.5 parent: 2 - - uid: 4244 + - uid: 4101 components: - type: Transform - pos: 16.5,11.5 + pos: 24.5,63.5 parent: 2 - - uid: 4245 + - uid: 4102 components: - type: Transform - pos: 16.5,10.5 + pos: 24.5,62.5 parent: 2 - - uid: 4246 + - uid: 4103 components: - type: Transform - pos: 17.5,10.5 + pos: 24.5,61.5 parent: 2 - - uid: 4247 + - uid: 4104 components: - type: Transform - pos: 18.5,10.5 + pos: 24.5,60.5 parent: 2 - - uid: 4248 + - uid: 4105 components: - type: Transform - pos: 18.5,11.5 + pos: 25.5,60.5 parent: 2 - - uid: 4249 + - uid: 4106 components: - type: Transform - pos: 18.5,12.5 + pos: 26.5,60.5 parent: 2 - - uid: 4250 + - uid: 4107 components: - type: Transform - pos: 41.5,0.5 + pos: 27.5,60.5 parent: 2 - - uid: 4251 + - uid: 4108 components: - type: Transform - pos: 41.5,1.5 + pos: 28.5,60.5 parent: 2 - - uid: 4252 + - uid: 4109 components: - type: Transform - pos: 41.5,2.5 + pos: 29.5,60.5 parent: 2 - - uid: 4253 + - uid: 4110 components: - type: Transform - pos: 42.5,0.5 + pos: 30.5,60.5 parent: 2 - - uid: 4254 + - uid: 4111 components: - type: Transform - pos: 43.5,0.5 + pos: 31.5,60.5 parent: 2 - - uid: 4255 + - uid: 4112 components: - type: Transform - pos: 43.5,-0.5 + pos: 31.5,61.5 parent: 2 - - uid: 4256 + - uid: 4113 components: - type: Transform - pos: 43.5,-1.5 + pos: 32.5,61.5 parent: 2 - - uid: 4257 + - uid: 4114 components: - type: Transform - pos: 43.5,-2.5 + pos: 33.5,61.5 parent: 2 - - uid: 4258 + - uid: 4115 components: - type: Transform - pos: 43.5,-3.5 + pos: 35.5,61.5 parent: 2 - - uid: 4259 + - uid: 4116 components: - type: Transform - pos: 43.5,-4.5 + pos: 31.5,62.5 parent: 2 - - uid: 4260 + - uid: 4117 components: - type: Transform - pos: 43.5,-5.5 + pos: 35.5,63.5 parent: 2 - - uid: 4261 + - uid: 4118 components: - type: Transform - pos: 44.5,-5.5 + pos: 34.5,61.5 parent: 2 - - uid: 4262 + - uid: 4119 components: - type: Transform - pos: 45.5,-5.5 + pos: 33.5,65.5 parent: 2 - - uid: 4263 + - uid: 4120 components: - type: Transform - pos: 46.5,-5.5 + pos: 31.5,63.5 parent: 2 - - uid: 4264 + - uid: 4121 components: - type: Transform - pos: 47.5,-5.5 + pos: 31.5,64.5 parent: 2 - - uid: 4265 + - uid: 4122 components: - type: Transform - pos: 47.5,-6.5 + pos: 32.5,64.5 parent: 2 - - uid: 4266 + - uid: 4123 components: - type: Transform - pos: 47.5,-7.5 + pos: 33.5,64.5 parent: 2 - - uid: 4267 + - uid: 4124 components: - type: Transform - pos: 47.5,-8.5 + pos: 35.5,63.5 parent: 2 - - uid: 4268 + - uid: 4125 components: - type: Transform - pos: 47.5,-9.5 + pos: 33.5,67.5 parent: 2 - - uid: 4269 + - uid: 4126 components: - type: Transform - pos: 47.5,-10.5 + pos: 33.5,66.5 parent: 2 - - uid: 4270 + - uid: 4127 components: - type: Transform - pos: 49.5,-10.5 + pos: 33.5,68.5 parent: 2 - - uid: 4271 + - uid: 4128 components: - type: Transform - pos: 50.5,-10.5 + pos: 0.5,47.5 parent: 2 - - uid: 4272 + - uid: 4129 components: - type: Transform - pos: 51.5,-10.5 + pos: 0.5,46.5 parent: 2 - - uid: 4273 + - uid: 4130 components: - type: Transform - pos: 51.5,-11.5 + pos: 0.5,45.5 parent: 2 - - uid: 4274 + - uid: 4131 components: - type: Transform - pos: 18.5,9.5 + pos: 0.5,44.5 parent: 2 - - uid: 4275 + - uid: 4132 components: - type: Transform - pos: 18.5,8.5 + pos: 0.5,43.5 parent: 2 - - uid: 4276 + - uid: 4133 components: - type: Transform - pos: 18.5,7.5 + pos: 0.5,42.5 parent: 2 - - uid: 4277 + - uid: 4134 components: - type: Transform - pos: 18.5,6.5 + pos: 0.5,41.5 parent: 2 - - uid: 4278 + - uid: 4135 components: - type: Transform - pos: 19.5,6.5 + pos: 0.5,40.5 parent: 2 - - uid: 4279 + - uid: 4136 components: - type: Transform - pos: 20.5,6.5 + pos: 0.5,39.5 parent: 2 - - uid: 4280 + - uid: 4137 components: - type: Transform - pos: 21.5,6.5 + pos: 0.5,38.5 parent: 2 - - uid: 4281 + - uid: 4138 components: - type: Transform - pos: 22.5,6.5 + pos: 0.5,37.5 parent: 2 - - uid: 4282 + - uid: 4139 components: - type: Transform - pos: 23.5,6.5 + pos: 0.5,36.5 parent: 2 - - uid: 4283 + - uid: 4140 components: - type: Transform - pos: 24.5,6.5 + pos: 0.5,35.5 parent: 2 - - uid: 4284 + - uid: 4141 components: - type: Transform - pos: 25.5,6.5 + pos: 0.5,34.5 parent: 2 - - uid: 4285 + - uid: 4142 components: - type: Transform - pos: 25.5,7.5 + pos: 0.5,33.5 parent: 2 - - uid: 4286 + - uid: 4143 components: - type: Transform - pos: 26.5,7.5 + pos: 0.5,32.5 parent: 2 - - uid: 4287 + - uid: 4144 components: - type: Transform - pos: 27.5,7.5 + pos: 6.5,48.5 parent: 2 - - uid: 4288 + - uid: 4145 components: - type: Transform - pos: 28.5,7.5 + pos: 7.5,48.5 parent: 2 - - uid: 4289 + - uid: 4146 components: - type: Transform - pos: 29.5,7.5 + pos: 8.5,48.5 parent: 2 - - uid: 4290 + - uid: 4147 components: - type: Transform - pos: 30.5,7.5 + pos: 9.5,48.5 parent: 2 - - uid: 4291 + - uid: 4148 components: - type: Transform - pos: 31.5,7.5 + pos: 10.5,48.5 parent: 2 - - uid: 4292 + - uid: 4149 components: - type: Transform - pos: 31.5,6.5 + pos: 11.5,48.5 parent: 2 - - uid: 4293 + - uid: 4150 components: - type: Transform - pos: 31.5,5.5 + pos: 12.5,48.5 parent: 2 - - uid: 4294 + - uid: 4151 components: - type: Transform - pos: 31.5,4.5 + pos: 13.5,48.5 parent: 2 - - uid: 4295 + - uid: 4152 components: - type: Transform - pos: 32.5,4.5 + pos: 0.5,31.5 parent: 2 - - uid: 4296 + - uid: 4153 components: - type: Transform - pos: 33.5,4.5 + pos: 0.5,30.5 parent: 2 - - uid: 4297 + - uid: 4154 components: - type: Transform - pos: 34.5,4.5 + pos: 0.5,29.5 parent: 2 - - uid: 4298 + - uid: 4155 components: - type: Transform - pos: 35.5,4.5 + pos: 0.5,28.5 parent: 2 - - uid: 4299 + - uid: 4156 components: - type: Transform - pos: 36.5,4.5 + pos: 0.5,27.5 parent: 2 - - uid: 4300 + - uid: 4157 components: - type: Transform - pos: 37.5,4.5 + pos: 0.5,26.5 parent: 2 - - uid: 4301 + - uid: 4158 components: - type: Transform - pos: 38.5,4.5 + pos: 0.5,25.5 parent: 2 - - uid: 4302 + - uid: 4159 components: - type: Transform - pos: 39.5,4.5 + pos: 0.5,24.5 parent: 2 - - uid: 4303 + - uid: 4160 components: - type: Transform - pos: 40.5,4.5 + pos: 0.5,23.5 parent: 2 - - uid: 4304 + - uid: 4161 components: - type: Transform - pos: 41.5,4.5 + pos: 0.5,22.5 parent: 2 - - uid: 4305 + - uid: 4162 components: - type: Transform - pos: 42.5,4.5 + pos: 0.5,21.5 parent: 2 - - uid: 4306 + - uid: 4163 components: - type: Transform - pos: 42.5,3.5 + pos: 0.5,20.5 parent: 2 - - uid: 4307 + - uid: 4164 components: - type: Transform - pos: 42.5,2.5 + pos: -22.5,4.5 parent: 2 - - uid: 4308 + - uid: 4165 components: - type: Transform - pos: 43.5,4.5 + pos: -22.5,5.5 parent: 2 - - uid: 4309 + - uid: 4166 components: - type: Transform - pos: 43.5,5.5 + pos: -22.5,6.5 parent: 2 - - uid: 4310 + - uid: 4167 components: - type: Transform - pos: 43.5,6.5 + pos: -22.5,7.5 parent: 2 - - uid: 4311 + - uid: 4168 components: - type: Transform - pos: 43.5,7.5 + pos: -21.5,7.5 parent: 2 - - uid: 4312 + - uid: 4169 components: - type: Transform - pos: 43.5,8.5 + pos: -20.5,7.5 parent: 2 - - uid: 4313 + - uid: 4170 components: - type: Transform - pos: 43.5,9.5 + pos: -20.5,8.5 parent: 2 - - uid: 4314 + - uid: 4171 components: - type: Transform - pos: 43.5,10.5 + pos: -20.5,9.5 parent: 2 - - uid: 4315 + - uid: 4172 components: - type: Transform - pos: 44.5,10.5 + pos: -21.5,9.5 parent: 2 - - uid: 4316 + - uid: 4173 components: - type: Transform - pos: 45.5,10.5 + pos: -22.5,9.5 parent: 2 - - uid: 4317 + - uid: 4174 components: - type: Transform - pos: 46.5,10.5 + pos: -22.5,10.5 parent: 2 - - uid: 4318 + - uid: 4175 components: - type: Transform - pos: 47.5,10.5 + pos: -22.5,11.5 parent: 2 - - uid: 4319 + - uid: 4176 components: - type: Transform - pos: 48.5,10.5 + pos: -22.5,12.5 parent: 2 - - uid: 4320 + - uid: 4177 components: - type: Transform - pos: 49.5,10.5 + pos: -22.5,13.5 parent: 2 - - uid: 4321 + - uid: 4178 components: - type: Transform - pos: 50.5,10.5 + pos: -22.5,14.5 parent: 2 - - uid: 4322 + - uid: 4179 components: - type: Transform - pos: 51.5,10.5 + pos: -21.5,14.5 parent: 2 - - uid: 4323 + - uid: 4180 components: - type: Transform - pos: 52.5,10.5 + pos: -20.5,14.5 parent: 2 - - uid: 4324 + - uid: 4181 components: - type: Transform - pos: 52.5,11.5 + pos: -20.5,13.5 parent: 2 - - uid: 4325 + - uid: 4182 components: - type: Transform - pos: 53.5,11.5 + pos: -20.5,12.5 parent: 2 - - uid: 4326 + - uid: 4183 components: - type: Transform - pos: 54.5,11.5 + pos: -20.5,11.5 parent: 2 - - uid: 4327 + - uid: 4184 components: - type: Transform - pos: 55.5,11.5 + pos: -19.5,11.5 parent: 2 - - uid: 4328 + - uid: 4185 components: - type: Transform - pos: 55.5,12.5 + pos: -18.5,11.5 parent: 2 - - uid: 4329 + - uid: 4186 components: - type: Transform - pos: 55.5,13.5 + pos: -18.5,10.5 parent: 2 - - uid: 4330 + - uid: 4187 components: - type: Transform - pos: 56.5,13.5 + pos: -18.5,9.5 parent: 2 - - uid: 4331 + - uid: 4188 components: - type: Transform - pos: 57.5,13.5 + pos: -18.5,8.5 parent: 2 - - uid: 4332 + - uid: 4189 components: - type: Transform - pos: 58.5,13.5 + pos: -18.5,7.5 parent: 2 - - uid: 4333 + - uid: 4190 components: - type: Transform - pos: 59.5,13.5 + pos: -18.5,6.5 parent: 2 - - uid: 4334 + - uid: 4191 components: - type: Transform - pos: 60.5,13.5 + pos: -17.5,6.5 parent: 2 - - uid: 4335 + - uid: 4192 components: - type: Transform - pos: 61.5,13.5 + pos: -17.5,5.5 parent: 2 - - uid: 4336 + - uid: 4193 components: - type: Transform - pos: 61.5,14.5 + pos: -17.5,4.5 parent: 2 - - uid: 4337 + - uid: 4194 components: - type: Transform - pos: 61.5,15.5 + pos: -18.5,4.5 parent: 2 - - uid: 4338 + - uid: 4195 components: - type: Transform - pos: 61.5,16.5 + pos: -17.5,11.5 parent: 2 - - uid: 4339 + - uid: 4196 components: - type: Transform - pos: 61.5,17.5 + pos: -16.5,11.5 parent: 2 - - uid: 4340 + - uid: 4197 components: - type: Transform - pos: 61.5,18.5 + pos: -15.5,11.5 parent: 2 - - uid: 4341 + - uid: 4198 components: - type: Transform - pos: 62.5,18.5 + pos: -15.5,12.5 parent: 2 - - uid: 4342 + - uid: 4199 components: - type: Transform - pos: 63.5,18.5 + pos: -15.5,13.5 parent: 2 - - uid: 4343 + - uid: 4200 components: - type: Transform - pos: 64.5,18.5 + pos: -15.5,14.5 parent: 2 - - uid: 4344 + - uid: 4201 components: - type: Transform - pos: 65.5,18.5 + pos: -15.5,15.5 parent: 2 - - uid: 4345 + - uid: 4202 components: - type: Transform - pos: 65.5,19.5 + pos: -15.5,16.5 parent: 2 - - uid: 4346 + - uid: 4203 components: - type: Transform - pos: 65.5,20.5 + pos: -14.5,16.5 parent: 2 - - uid: 4347 + - uid: 4204 components: - type: Transform - pos: 65.5,21.5 + pos: -13.5,16.5 parent: 2 - - uid: 4348 + - uid: 4205 components: - type: Transform - pos: 65.5,22.5 + pos: -12.5,16.5 parent: 2 - - uid: 4349 + - uid: 4206 components: - type: Transform - pos: 65.5,23.5 + pos: -11.5,16.5 parent: 2 - - uid: 4350 + - uid: 4207 components: - type: Transform - pos: 65.5,24.5 + pos: -10.5,16.5 parent: 2 - - uid: 4351 + - uid: 4208 components: - type: Transform - pos: 65.5,25.5 + pos: -9.5,16.5 parent: 2 - - uid: 4352 + - uid: 4209 components: - type: Transform - pos: 65.5,26.5 + pos: -8.5,16.5 parent: 2 - - uid: 4353 + - uid: 4210 components: - type: Transform - pos: 65.5,27.5 + pos: -8.5,17.5 parent: 2 - - uid: 4354 + - uid: 4211 components: - type: Transform - pos: 65.5,28.5 + pos: -7.5,17.5 parent: 2 - - uid: 4355 + - uid: 4212 components: - type: Transform - pos: 65.5,29.5 + pos: -6.5,17.5 parent: 2 - - uid: 4356 + - uid: 4213 components: - type: Transform - pos: 65.5,30.5 + pos: -5.5,17.5 parent: 2 - - uid: 4357 + - uid: 4214 components: - type: Transform - pos: 65.5,31.5 + pos: -4.5,17.5 parent: 2 - - uid: 4358 + - uid: 4215 components: - type: Transform - pos: 65.5,32.5 + pos: -4.5,20.5 parent: 2 - - uid: 4359 + - uid: 4216 components: - type: Transform - pos: 65.5,33.5 + pos: -3.5,20.5 parent: 2 - - uid: 4360 + - uid: 4217 components: - type: Transform - pos: 66.5,18.5 + pos: -2.5,20.5 parent: 2 - - uid: 4361 + - uid: 4218 components: - type: Transform - pos: 67.5,18.5 + pos: -1.5,20.5 parent: 2 - - uid: 4362 + - uid: 4219 components: - type: Transform - pos: 68.5,18.5 + pos: -0.5,20.5 parent: 2 - - uid: 4363 + - uid: 4220 components: - type: Transform - pos: 69.5,18.5 + pos: 1.5,20.5 parent: 2 - - uid: 4364 + - uid: 4221 components: - type: Transform - pos: 70.5,18.5 + pos: 2.5,20.5 parent: 2 - - uid: 4365 + - uid: 4222 components: - type: Transform - pos: 71.5,18.5 + pos: 3.5,20.5 parent: 2 - - uid: 4366 + - uid: 4223 components: - type: Transform - pos: 72.5,18.5 + pos: 4.5,20.5 parent: 2 - - uid: 4367 + - uid: 4224 components: - type: Transform - pos: 73.5,18.5 + pos: 5.5,20.5 parent: 2 - - uid: 4368 + - uid: 4225 components: - type: Transform - pos: 74.5,18.5 + pos: 6.5,20.5 parent: 2 - - uid: 4369 + - uid: 4226 components: - type: Transform - pos: 74.5,17.5 + pos: 7.5,20.5 parent: 2 - - uid: 4370 + - uid: 4227 components: - type: Transform - pos: 75.5,17.5 + pos: 8.5,20.5 parent: 2 - - uid: 4371 + - uid: 4228 components: - type: Transform - pos: 75.5,16.5 + pos: 9.5,20.5 parent: 2 - - uid: 4372 + - uid: 4229 components: - type: Transform - pos: 75.5,15.5 + pos: 10.5,20.5 parent: 2 - - uid: 4373 + - uid: 4230 components: - type: Transform - pos: 75.5,14.5 + pos: 11.5,20.5 parent: 2 - - uid: 4374 + - uid: 4231 components: - type: Transform - pos: 75.5,13.5 + pos: 12.5,20.5 parent: 2 - - uid: 4375 + - uid: 4232 components: - type: Transform - pos: 76.5,13.5 + pos: 13.5,20.5 parent: 2 - - uid: 4376 + - uid: 4233 components: - type: Transform - pos: 65.5,34.5 + pos: 14.5,20.5 parent: 2 - - uid: 4377 + - uid: 4234 components: - type: Transform - pos: 65.5,35.5 + pos: 15.5,20.5 parent: 2 - - uid: 4378 + - uid: 4235 components: - type: Transform - pos: 65.5,36.5 + pos: 15.5,19.5 parent: 2 - - uid: 4379 + - uid: 4236 components: - type: Transform - pos: 65.5,37.5 + pos: 15.5,18.5 parent: 2 - - uid: 4380 + - uid: 4237 components: - type: Transform - pos: 65.5,38.5 + pos: 15.5,17.5 parent: 2 - - uid: 4381 + - uid: 4238 components: - type: Transform - pos: 65.5,39.5 + pos: 15.5,16.5 parent: 2 - - uid: 4382 + - uid: 4239 components: - type: Transform - pos: 65.5,40.5 + pos: 15.5,15.5 parent: 2 - - uid: 4383 + - uid: 4240 components: - type: Transform - pos: 65.5,41.5 + pos: 15.5,14.5 parent: 2 - - uid: 4384 + - uid: 4241 components: - type: Transform - pos: 65.5,42.5 + pos: 15.5,13.5 parent: 2 - - uid: 4385 + - uid: 4242 components: - type: Transform - pos: 65.5,43.5 + pos: 15.5,12.5 parent: 2 - - uid: 4386 + - uid: 4243 components: - type: Transform - pos: 65.5,44.5 + pos: 16.5,12.5 parent: 2 - - uid: 4387 + - uid: 4244 components: - type: Transform - pos: 65.5,45.5 + pos: 16.5,11.5 parent: 2 - - uid: 4388 + - uid: 4245 components: - type: Transform - pos: 65.5,52.5 + pos: 16.5,10.5 parent: 2 - - uid: 4389 + - uid: 4246 components: - type: Transform - pos: 65.5,53.5 + pos: 17.5,10.5 parent: 2 - - uid: 4390 + - uid: 4247 components: - type: Transform - pos: 65.5,54.5 + pos: 18.5,10.5 parent: 2 - - uid: 4391 + - uid: 4248 components: - type: Transform - pos: 65.5,55.5 + pos: 18.5,11.5 parent: 2 - - uid: 4393 + - uid: 4249 components: - type: Transform - pos: 66.5,55.5 + pos: 18.5,12.5 parent: 2 - - uid: 4394 + - uid: 4250 components: - type: Transform - pos: 67.5,55.5 + pos: 41.5,0.5 parent: 2 - - uid: 4395 + - uid: 4251 components: - type: Transform - pos: 68.5,55.5 + pos: 41.5,1.5 parent: 2 - - uid: 4396 + - uid: 4252 components: - type: Transform - pos: 68.5,54.5 + pos: 41.5,2.5 parent: 2 - - uid: 4397 + - uid: 4253 components: - type: Transform - pos: 69.5,54.5 + pos: 42.5,0.5 parent: 2 - - uid: 4398 + - uid: 4254 components: - type: Transform - pos: 70.5,54.5 + pos: 43.5,0.5 parent: 2 - - uid: 4399 + - uid: 4255 components: - type: Transform - pos: 71.5,54.5 + pos: 43.5,-0.5 parent: 2 - - uid: 4400 + - uid: 4256 components: - type: Transform - pos: 72.5,54.5 + pos: 43.5,-1.5 parent: 2 - - uid: 4401 + - uid: 4257 components: - type: Transform - pos: 73.5,54.5 + pos: 43.5,-2.5 parent: 2 - - uid: 4402 + - uid: 4258 components: - type: Transform - pos: 73.5,53.5 + pos: 43.5,-3.5 parent: 2 - - uid: 4403 + - uid: 4259 components: - type: Transform - pos: 74.5,53.5 + pos: 43.5,-4.5 parent: 2 - - uid: 4404 + - uid: 4260 components: - type: Transform - pos: 75.5,53.5 + pos: 43.5,-5.5 parent: 2 - - uid: 4414 + - uid: 4261 components: - type: Transform - pos: 80.5,47.5 + pos: 44.5,-5.5 parent: 2 - - uid: 4415 + - uid: 4262 components: - type: Transform - pos: 79.5,47.5 + pos: 45.5,-5.5 parent: 2 - - uid: 4416 + - uid: 4263 components: - type: Transform - pos: 81.5,47.5 + pos: 46.5,-5.5 parent: 2 - - uid: 4417 + - uid: 4264 components: - type: Transform - pos: 81.5,46.5 + pos: 47.5,-5.5 parent: 2 - - uid: 4418 + - uid: 4265 components: - type: Transform - pos: 82.5,46.5 + pos: 47.5,-6.5 parent: 2 - - uid: 4419 + - uid: 4266 components: - type: Transform - pos: 83.5,46.5 + pos: 47.5,-7.5 parent: 2 - - uid: 4420 + - uid: 4267 components: - type: Transform - pos: 35.5,60.5 + pos: 47.5,-8.5 parent: 2 - - uid: 4421 + - uid: 4268 components: - type: Transform - pos: 35.5,59.5 + pos: 47.5,-9.5 parent: 2 - - uid: 4422 + - uid: 4269 components: - type: Transform - pos: 36.5,59.5 + pos: 47.5,-10.5 parent: 2 - - uid: 4423 + - uid: 4270 components: - type: Transform - pos: 37.5,59.5 + pos: 49.5,-10.5 parent: 2 - - uid: 4424 + - uid: 4271 components: - type: Transform - pos: 38.5,59.5 + pos: 50.5,-10.5 parent: 2 - - uid: 4425 + - uid: 4272 components: - type: Transform - pos: 39.5,59.5 + pos: 51.5,-10.5 parent: 2 - - uid: 4426 + - uid: 4273 components: - type: Transform - pos: 39.5,58.5 + pos: 51.5,-11.5 parent: 2 - - uid: 4427 + - uid: 4274 components: - type: Transform - pos: 39.5,57.5 + pos: 18.5,9.5 parent: 2 - - uid: 4428 + - uid: 4275 components: - type: Transform - pos: 39.5,56.5 + pos: 18.5,8.5 parent: 2 - - uid: 4429 + - uid: 4276 components: - type: Transform - pos: 40.5,56.5 + pos: 18.5,7.5 parent: 2 - - uid: 4430 + - uid: 4277 components: - type: Transform - pos: 41.5,56.5 + pos: 18.5,6.5 parent: 2 - - uid: 4431 + - uid: 4278 components: - type: Transform - pos: 42.5,56.5 + pos: 19.5,6.5 parent: 2 - - uid: 4432 + - uid: 4279 components: - type: Transform - pos: 43.5,56.5 + pos: 20.5,6.5 parent: 2 - - uid: 4433 + - uid: 4280 components: - type: Transform - pos: 44.5,56.5 + pos: 21.5,6.5 parent: 2 - - uid: 4435 + - uid: 4281 components: - type: Transform - pos: 46.5,56.5 + pos: 22.5,6.5 parent: 2 - - uid: 4436 + - uid: 4282 components: - type: Transform - pos: 47.5,56.5 + pos: 23.5,6.5 parent: 2 - - uid: 4437 + - uid: 4283 components: - type: Transform - pos: 48.5,56.5 + pos: 24.5,6.5 parent: 2 - - uid: 4438 + - uid: 4284 components: - type: Transform - pos: 49.5,56.5 + pos: 25.5,6.5 parent: 2 - - uid: 4439 + - uid: 4285 components: - type: Transform - pos: 50.5,56.5 + pos: 25.5,7.5 parent: 2 - - uid: 4440 + - uid: 4286 components: - type: Transform - pos: 51.5,56.5 + pos: 26.5,7.5 parent: 2 - - uid: 4441 + - uid: 4287 components: - type: Transform - pos: 51.5,57.5 + pos: 27.5,7.5 parent: 2 - - uid: 4442 + - uid: 4288 components: - type: Transform - pos: 51.5,58.5 + pos: 28.5,7.5 parent: 2 - - uid: 4443 + - uid: 4289 components: - type: Transform - pos: 51.5,59.5 + pos: 29.5,7.5 parent: 2 - - uid: 4444 + - uid: 4290 components: - type: Transform - pos: 52.5,59.5 + pos: 30.5,7.5 parent: 2 - - uid: 4445 + - uid: 4291 components: - type: Transform - pos: 52.5,56.5 + pos: 31.5,7.5 parent: 2 - - uid: 4446 + - uid: 4292 components: - type: Transform - pos: 53.5,56.5 + pos: 31.5,6.5 parent: 2 - - uid: 4447 + - uid: 4293 components: - type: Transform - pos: 53.5,55.5 + pos: 31.5,5.5 parent: 2 - - uid: 4448 + - uid: 4294 components: - type: Transform - pos: 53.5,54.5 + pos: 31.5,4.5 parent: 2 - - uid: 4449 + - uid: 4295 components: - type: Transform - pos: 53.5,53.5 + pos: 32.5,4.5 parent: 2 - - uid: 4450 + - uid: 4296 components: - type: Transform - pos: 54.5,53.5 + pos: 33.5,4.5 parent: 2 - - uid: 4451 + - uid: 4297 components: - type: Transform - pos: 55.5,53.5 + pos: 34.5,4.5 parent: 2 - - uid: 4452 + - uid: 4298 components: - type: Transform - pos: 56.5,53.5 + pos: 35.5,4.5 parent: 2 - - uid: 4453 + - uid: 4299 components: - type: Transform - pos: 57.5,53.5 + pos: 36.5,4.5 parent: 2 - - uid: 4454 + - uid: 4300 components: - type: Transform - pos: 57.5,52.5 + pos: 37.5,4.5 parent: 2 - - uid: 4455 + - uid: 4301 components: - type: Transform - pos: 57.5,51.5 + pos: 38.5,4.5 parent: 2 - - uid: 4456 + - uid: 4302 components: - type: Transform - pos: 57.5,50.5 + pos: 39.5,4.5 parent: 2 - - uid: 4457 + - uid: 4303 components: - type: Transform - pos: 57.5,49.5 + pos: 40.5,4.5 parent: 2 - - uid: 4458 + - uid: 4304 components: - type: Transform - pos: 57.5,48.5 + pos: 41.5,4.5 parent: 2 - - uid: 4459 + - uid: 4305 components: - type: Transform - pos: 58.5,48.5 + pos: 42.5,4.5 parent: 2 - - uid: 4460 + - uid: 4306 components: - type: Transform - pos: 59.5,48.5 + pos: 42.5,3.5 parent: 2 - - uid: 4461 + - uid: 4307 components: - type: Transform - pos: 59.5,47.5 + pos: 42.5,2.5 parent: 2 - - uid: 4462 + - uid: 4308 components: - type: Transform - pos: 60.5,47.5 + pos: 43.5,4.5 parent: 2 - - uid: 4463 + - uid: 4309 components: - type: Transform - pos: 61.5,47.5 + pos: 43.5,5.5 parent: 2 - - uid: 4464 + - uid: 4310 components: - type: Transform - pos: 62.5,47.5 + pos: 43.5,6.5 parent: 2 - - uid: 4465 + - uid: 4311 components: - type: Transform - pos: 63.5,47.5 + pos: 43.5,7.5 parent: 2 - - uid: 4466 + - uid: 4312 components: - type: Transform - pos: 64.5,47.5 + pos: 43.5,8.5 parent: 2 - - uid: 4467 + - uid: 4313 components: - type: Transform - pos: 17.5,48.5 + pos: 43.5,9.5 parent: 2 - - uid: 4468 + - uid: 4314 components: - type: Transform - pos: 18.5,48.5 + pos: 43.5,10.5 parent: 2 - - uid: 4469 + - uid: 4315 components: - type: Transform - pos: 19.5,48.5 + pos: 44.5,10.5 parent: 2 - - uid: 4470 + - uid: 4316 components: - type: Transform - pos: 20.5,48.5 + pos: 45.5,10.5 parent: 2 - - uid: 4471 + - uid: 4317 components: - type: Transform - pos: 21.5,48.5 + pos: 46.5,10.5 parent: 2 - - uid: 4472 + - uid: 4318 components: - type: Transform - pos: 21.5,47.5 + pos: 47.5,10.5 parent: 2 - - uid: 4473 + - uid: 4319 components: - type: Transform - pos: 21.5,46.5 + pos: 48.5,10.5 parent: 2 - - uid: 4474 + - uid: 4320 components: - type: Transform - pos: 21.5,45.5 + pos: 49.5,10.5 parent: 2 - - uid: 4475 + - uid: 4321 components: - type: Transform - pos: 21.5,44.5 + pos: 50.5,10.5 parent: 2 - - uid: 4476 + - uid: 4322 components: - type: Transform - pos: 21.5,43.5 + pos: 51.5,10.5 parent: 2 - - uid: 4477 + - uid: 4323 components: - type: Transform - pos: 20.5,43.5 + pos: 52.5,10.5 parent: 2 - - uid: 4478 + - uid: 4324 components: - type: Transform - pos: 22.5,48.5 + pos: 52.5,11.5 parent: 2 - - uid: 4479 + - uid: 4325 components: - type: Transform - pos: 23.5,48.5 + pos: 53.5,11.5 parent: 2 - - uid: 4480 + - uid: 4326 components: - type: Transform - pos: 24.5,48.5 + pos: 54.5,11.5 parent: 2 - - uid: 4481 + - uid: 4327 components: - type: Transform - pos: 25.5,48.5 + pos: 55.5,11.5 parent: 2 - - uid: 4482 + - uid: 4328 components: - type: Transform - pos: 26.5,48.5 + pos: 55.5,12.5 parent: 2 - - uid: 4483 + - uid: 4329 components: - type: Transform - pos: 27.5,48.5 + pos: 55.5,13.5 parent: 2 - - uid: 4484 + - uid: 4330 components: - type: Transform - pos: 28.5,48.5 + pos: 56.5,13.5 parent: 2 - - uid: 4485 + - uid: 4331 components: - type: Transform - pos: 29.5,48.5 + pos: 57.5,13.5 parent: 2 - - uid: 4486 + - uid: 4332 components: - type: Transform - pos: 30.5,48.5 + pos: 58.5,13.5 parent: 2 - - uid: 4487 + - uid: 4333 components: - type: Transform - pos: 31.5,48.5 + pos: 59.5,13.5 parent: 2 - - uid: 4488 + - uid: 4334 components: - type: Transform - pos: 32.5,48.5 + pos: 60.5,13.5 parent: 2 - - uid: 4489 + - uid: 4335 components: - type: Transform - pos: 33.5,48.5 + pos: 61.5,13.5 parent: 2 - - uid: 4490 + - uid: 4336 components: - type: Transform - pos: 34.5,48.5 + pos: 61.5,14.5 parent: 2 - - uid: 4491 + - uid: 4337 components: - type: Transform - pos: 35.5,48.5 + pos: 61.5,15.5 parent: 2 - - uid: 4492 + - uid: 4338 components: - type: Transform - pos: 36.5,48.5 + pos: 61.5,16.5 parent: 2 - - uid: 4493 + - uid: 4339 components: - type: Transform - pos: 37.5,48.5 + pos: 61.5,17.5 parent: 2 - - uid: 4494 + - uid: 4340 components: - type: Transform - pos: 38.5,48.5 + pos: 61.5,18.5 parent: 2 - - uid: 4495 + - uid: 4341 components: - type: Transform - pos: 39.5,48.5 + pos: 62.5,18.5 parent: 2 - - uid: 4496 + - uid: 4342 components: - type: Transform - pos: 40.5,48.5 + pos: 63.5,18.5 parent: 2 - - uid: 4497 + - uid: 4343 components: - type: Transform - pos: 41.5,48.5 + pos: 64.5,18.5 parent: 2 - - uid: 4498 + - uid: 4344 components: - type: Transform - pos: 42.5,48.5 + pos: 65.5,18.5 parent: 2 - - uid: 4499 + - uid: 4345 components: - type: Transform - pos: 43.5,48.5 + pos: 65.5,19.5 parent: 2 - - uid: 4500 + - uid: 4346 components: - type: Transform - pos: 44.5,48.5 + pos: 65.5,20.5 parent: 2 - - uid: 4501 + - uid: 4347 components: - type: Transform - pos: 44.5,49.5 + pos: 65.5,21.5 parent: 2 - - uid: 4502 + - uid: 4348 components: - type: Transform - pos: 44.5,50.5 + pos: 65.5,22.5 parent: 2 - - uid: 4503 + - uid: 4349 components: - type: Transform - pos: 44.5,51.5 + pos: 65.5,23.5 parent: 2 - - uid: 4504 + - uid: 4350 components: - type: Transform - pos: 45.5,51.5 + pos: 65.5,24.5 parent: 2 - - uid: 4505 + - uid: 4351 components: - type: Transform - pos: 46.5,51.5 + pos: 65.5,25.5 parent: 2 - - uid: 4506 + - uid: 4352 components: - type: Transform - pos: 46.5,52.5 + pos: 65.5,26.5 parent: 2 - - uid: 4507 + - uid: 4353 components: - type: Transform - pos: 46.5,53.5 + pos: 65.5,27.5 parent: 2 - - uid: 4508 + - uid: 4354 components: - type: Transform - pos: 46.5,54.5 + pos: 65.5,28.5 parent: 2 - - uid: 4509 + - uid: 4355 components: - type: Transform - pos: 46.5,55.5 + pos: 65.5,29.5 parent: 2 - - uid: 4510 + - uid: 4356 components: - type: Transform - pos: 32.5,47.5 + pos: 65.5,30.5 parent: 2 - - uid: 4511 + - uid: 4357 components: - type: Transform - pos: 32.5,46.5 + pos: 65.5,31.5 parent: 2 - - uid: 4512 + - uid: 4358 components: - type: Transform - pos: 32.5,45.5 + pos: 65.5,32.5 parent: 2 - - uid: 4513 + - uid: 4359 components: - type: Transform - pos: 32.5,44.5 + pos: 65.5,33.5 parent: 2 - - uid: 4514 + - uid: 4360 components: - type: Transform - pos: 32.5,43.5 + pos: 66.5,18.5 parent: 2 - - uid: 4515 + - uid: 4361 components: - type: Transform - pos: 32.5,42.5 + pos: 67.5,18.5 parent: 2 - - uid: 4516 + - uid: 4362 components: - type: Transform - pos: 32.5,41.5 + pos: 68.5,18.5 parent: 2 - - uid: 4517 + - uid: 4363 components: - type: Transform - pos: 32.5,40.5 + pos: 69.5,18.5 parent: 2 - - uid: 4518 + - uid: 4364 components: - type: Transform - pos: 32.5,39.5 + pos: 70.5,18.5 parent: 2 - - uid: 4519 + - uid: 4365 components: - type: Transform - pos: 32.5,38.5 + pos: 71.5,18.5 parent: 2 - - uid: 4520 + - uid: 4366 components: - type: Transform - pos: 32.5,37.5 + pos: 72.5,18.5 parent: 2 - - uid: 4521 + - uid: 4367 components: - type: Transform - pos: 32.5,36.5 + pos: 73.5,18.5 parent: 2 - - uid: 4522 + - uid: 4368 components: - type: Transform - pos: 32.5,35.5 + pos: 74.5,18.5 parent: 2 - - uid: 4523 + - uid: 4369 components: - type: Transform - pos: 32.5,34.5 + pos: 74.5,17.5 parent: 2 - - uid: 4524 + - uid: 4370 components: - type: Transform - pos: 32.5,33.5 + pos: 75.5,17.5 parent: 2 - - uid: 4525 + - uid: 4371 components: - type: Transform - pos: 32.5,32.5 + pos: 75.5,16.5 parent: 2 - - uid: 4526 + - uid: 4372 components: - type: Transform - pos: 32.5,31.5 + pos: 75.5,15.5 parent: 2 - - uid: 4527 + - uid: 4373 components: - type: Transform - pos: 32.5,30.5 + pos: 75.5,14.5 parent: 2 - - uid: 4528 + - uid: 4374 components: - type: Transform - pos: 32.5,29.5 + pos: 75.5,13.5 parent: 2 - - uid: 4529 + - uid: 4375 components: - type: Transform - pos: 32.5,28.5 + pos: 76.5,13.5 parent: 2 - - uid: 4530 + - uid: 4376 components: - type: Transform - pos: 32.5,27.5 + pos: 65.5,34.5 parent: 2 - - uid: 4531 + - uid: 4377 components: - type: Transform - pos: 32.5,26.5 + pos: 65.5,35.5 parent: 2 - - uid: 4532 + - uid: 4378 components: - type: Transform - pos: 32.5,25.5 + pos: 65.5,36.5 parent: 2 - - uid: 4533 + - uid: 4379 components: - type: Transform - pos: 32.5,24.5 + pos: 65.5,37.5 parent: 2 - - uid: 4534 + - uid: 4380 components: - type: Transform - pos: 32.5,23.5 + pos: 65.5,38.5 parent: 2 - - uid: 4535 + - uid: 4381 components: - type: Transform - pos: 32.5,22.5 + pos: 65.5,39.5 parent: 2 - - uid: 4536 + - uid: 4382 components: - type: Transform - pos: 32.5,21.5 + pos: 65.5,40.5 parent: 2 - - uid: 4537 + - uid: 4383 components: - type: Transform - pos: 32.5,20.5 + pos: 65.5,41.5 parent: 2 - - uid: 4538 + - uid: 4384 components: - type: Transform - pos: 16.5,20.5 + pos: 65.5,42.5 parent: 2 - - uid: 4539 + - uid: 4385 components: - type: Transform - pos: 17.5,20.5 + pos: 65.5,43.5 parent: 2 - - uid: 4540 + - uid: 4386 components: - type: Transform - pos: 18.5,20.5 + pos: 65.5,44.5 parent: 2 - - uid: 4541 + - uid: 4387 components: - type: Transform - pos: 19.5,20.5 + pos: 65.5,45.5 parent: 2 - - uid: 4542 + - uid: 4388 components: - type: Transform - pos: 20.5,20.5 + pos: 65.5,52.5 parent: 2 - - uid: 4543 + - uid: 4389 components: - type: Transform - pos: 21.5,20.5 + pos: 65.5,53.5 parent: 2 - - uid: 4544 + - uid: 4390 components: - type: Transform - pos: 22.5,20.5 + pos: 65.5,54.5 parent: 2 - - uid: 4545 + - uid: 4391 components: - type: Transform - pos: 23.5,20.5 + pos: 65.5,55.5 parent: 2 - - uid: 4546 + - uid: 4393 components: - type: Transform - pos: 24.5,20.5 + pos: 66.5,55.5 parent: 2 - - uid: 4547 + - uid: 4394 components: - type: Transform - pos: 25.5,20.5 + pos: 67.5,55.5 parent: 2 - - uid: 4548 + - uid: 4395 components: - type: Transform - pos: 26.5,20.5 + pos: 68.5,55.5 parent: 2 - - uid: 4549 + - uid: 4396 components: - type: Transform - pos: 27.5,20.5 + pos: 68.5,54.5 parent: 2 - - uid: 4550 + - uid: 4397 components: - type: Transform - pos: 28.5,20.5 + pos: 69.5,54.5 parent: 2 - - uid: 4551 + - uid: 4398 components: - type: Transform - pos: 29.5,20.5 + pos: 70.5,54.5 parent: 2 - - uid: 4552 + - uid: 4399 components: - type: Transform - pos: 30.5,20.5 + pos: 71.5,54.5 parent: 2 - - uid: 4553 + - uid: 4400 components: - type: Transform - pos: 31.5,20.5 + pos: 72.5,54.5 parent: 2 - - uid: 4554 + - uid: 4401 components: - type: Transform - pos: 33.5,34.5 + pos: 73.5,54.5 parent: 2 - - uid: 4555 + - uid: 4402 components: - type: Transform - pos: 34.5,34.5 + pos: 73.5,53.5 parent: 2 - - uid: 4556 + - uid: 4403 components: - type: Transform - pos: 35.5,34.5 + pos: 74.5,53.5 parent: 2 - - uid: 4557 + - uid: 4404 components: - type: Transform - pos: 36.5,34.5 + pos: 75.5,53.5 parent: 2 - - uid: 4558 + - uid: 4414 components: - type: Transform - pos: 37.5,34.5 + pos: 80.5,47.5 parent: 2 - - uid: 4559 + - uid: 4415 components: - type: Transform - pos: 38.5,34.5 + pos: 79.5,47.5 parent: 2 - - uid: 4560 + - uid: 4416 components: - type: Transform - pos: 39.5,34.5 + pos: 81.5,47.5 parent: 2 - - uid: 4561 + - uid: 4417 components: - type: Transform - pos: 40.5,34.5 + pos: 81.5,46.5 parent: 2 - - uid: 4562 + - uid: 4418 components: - type: Transform - pos: 41.5,34.5 + pos: 82.5,46.5 parent: 2 - - uid: 4563 + - uid: 4419 components: - type: Transform - pos: 42.5,34.5 + pos: 83.5,46.5 parent: 2 - - uid: 4564 + - uid: 4420 components: - type: Transform - pos: 43.5,34.5 + pos: 35.5,60.5 parent: 2 - - uid: 4565 + - uid: 4421 components: - type: Transform - pos: 44.5,34.5 + pos: 35.5,59.5 parent: 2 - - uid: 4566 + - uid: 4422 components: - type: Transform - pos: 45.5,34.5 + pos: 36.5,59.5 parent: 2 - - uid: 4567 + - uid: 4423 components: - type: Transform - pos: 47.5,34.5 + pos: 37.5,59.5 parent: 2 - - uid: 4568 + - uid: 4424 components: - type: Transform - pos: 48.5,34.5 + pos: 38.5,59.5 parent: 2 - - uid: 4569 + - uid: 4425 components: - type: Transform - pos: 49.5,34.5 + pos: 39.5,59.5 parent: 2 - - uid: 4570 + - uid: 4426 components: - type: Transform - pos: 50.5,34.5 + pos: 39.5,58.5 parent: 2 - - uid: 4571 + - uid: 4427 components: - type: Transform - pos: 51.5,34.5 + pos: 39.5,57.5 parent: 2 - - uid: 4572 + - uid: 4428 components: - type: Transform - pos: 52.5,34.5 + pos: 39.5,56.5 parent: 2 - - uid: 4573 + - uid: 4429 components: - type: Transform - pos: 53.5,34.5 + pos: 40.5,56.5 parent: 2 - - uid: 4574 + - uid: 4430 components: - type: Transform - pos: 54.5,34.5 + pos: 41.5,56.5 parent: 2 - - uid: 4575 + - uid: 4431 components: - type: Transform - pos: 55.5,34.5 + pos: 42.5,56.5 parent: 2 - - uid: 4576 + - uid: 4432 components: - type: Transform - pos: 56.5,34.5 + pos: 43.5,56.5 parent: 2 - - uid: 4577 + - uid: 4433 components: - type: Transform - pos: 57.5,34.5 + pos: 44.5,56.5 parent: 2 - - uid: 4578 + - uid: 4435 components: - type: Transform - pos: 58.5,34.5 + pos: 46.5,56.5 parent: 2 - - uid: 4579 + - uid: 4436 components: - type: Transform - pos: 59.5,34.5 + pos: 47.5,56.5 parent: 2 - - uid: 4580 + - uid: 4437 components: - type: Transform - pos: 60.5,34.5 + pos: 48.5,56.5 parent: 2 - - uid: 4581 + - uid: 4438 components: - type: Transform - pos: 61.5,34.5 + pos: 49.5,56.5 parent: 2 - - uid: 4582 + - uid: 4439 components: - type: Transform - pos: 62.5,34.5 + pos: 50.5,56.5 parent: 2 - - uid: 4583 + - uid: 4440 components: - type: Transform - pos: 63.5,34.5 + pos: 51.5,56.5 parent: 2 - - uid: 4584 + - uid: 4441 components: - type: Transform - pos: 64.5,34.5 + pos: 51.5,57.5 parent: 2 - - uid: 4585 + - uid: 4442 components: - type: Transform - pos: -24.5,-15.5 + pos: 51.5,58.5 parent: 2 - - uid: 4586 + - uid: 4443 components: - type: Transform - pos: 33.5,69.5 + pos: 51.5,59.5 parent: 2 - - uid: 4587 + - uid: 4444 components: - type: Transform - pos: 33.5,80.5 + pos: 52.5,59.5 parent: 2 - - uid: 4588 + - uid: 4445 components: - type: Transform - pos: -43.5,26.5 + pos: 52.5,56.5 parent: 2 - - uid: 4589 + - uid: 4446 components: - type: Transform - pos: -30.5,27.5 + pos: 53.5,56.5 parent: 2 - - uid: 4590 + - uid: 4447 components: - type: Transform - pos: -29.5,27.5 + pos: 53.5,55.5 parent: 2 - - uid: 4591 + - uid: 4448 components: - type: Transform - pos: -5.5,20.5 + pos: 53.5,54.5 parent: 2 - - uid: 4592 + - uid: 4449 components: - type: Transform - pos: -6.5,20.5 + pos: 53.5,53.5 parent: 2 - - uid: 4593 + - uid: 4450 components: - type: Transform - pos: -7.5,20.5 + pos: 54.5,53.5 parent: 2 - - uid: 4594 + - uid: 4451 components: - type: Transform - pos: -8.5,20.5 + pos: 55.5,53.5 parent: 2 - - uid: 4595 + - uid: 4452 components: - type: Transform - pos: -9.5,20.5 + pos: 56.5,53.5 parent: 2 - - uid: 4596 + - uid: 4453 components: - type: Transform - pos: -10.5,20.5 + pos: 57.5,53.5 parent: 2 - - uid: 4597 + - uid: 4454 components: - type: Transform - pos: -11.5,20.5 + pos: 57.5,52.5 parent: 2 - - uid: 4598 + - uid: 4455 components: - type: Transform - pos: -11.5,19.5 + pos: 57.5,51.5 parent: 2 - - uid: 4599 + - uid: 4456 components: - type: Transform - pos: -12.5,19.5 + pos: 57.5,50.5 parent: 2 - - uid: 4600 + - uid: 4457 components: - type: Transform - pos: -13.5,19.5 + pos: 57.5,49.5 parent: 2 - - uid: 4601 + - uid: 4458 components: - type: Transform - pos: -14.5,19.5 + pos: 57.5,48.5 parent: 2 - - uid: 4602 + - uid: 4459 components: - type: Transform - pos: -15.5,19.5 + pos: 58.5,48.5 parent: 2 - - uid: 4603 + - uid: 4460 components: - type: Transform - pos: -16.5,19.5 + pos: 59.5,48.5 parent: 2 - - uid: 4604 + - uid: 4461 components: - type: Transform - pos: -17.5,19.5 + pos: 59.5,47.5 parent: 2 - - uid: 4605 + - uid: 4462 components: - type: Transform - pos: -18.5,19.5 + pos: 60.5,47.5 parent: 2 - - uid: 4606 + - uid: 4463 components: - type: Transform - pos: -19.5,19.5 + pos: 61.5,47.5 parent: 2 - - uid: 4607 + - uid: 4464 components: - type: Transform - pos: -19.5,18.5 + pos: 62.5,47.5 parent: 2 - - uid: 4608 + - uid: 4465 components: - type: Transform - pos: -20.5,18.5 + pos: 63.5,47.5 parent: 2 - - uid: 4609 + - uid: 4466 components: - type: Transform - pos: -21.5,18.5 + pos: 64.5,47.5 parent: 2 - - uid: 4610 + - uid: 4467 components: - type: Transform - pos: -22.5,18.5 + pos: 17.5,48.5 parent: 2 - - uid: 4611 + - uid: 4468 components: - type: Transform - pos: -22.5,19.5 + pos: 18.5,48.5 parent: 2 - - uid: 4612 + - uid: 4469 components: - type: Transform - pos: -22.5,20.5 + pos: 19.5,48.5 parent: 2 - - uid: 4613 + - uid: 4470 components: - type: Transform - pos: -22.5,21.5 + pos: 20.5,48.5 parent: 2 - - uid: 4614 + - uid: 4471 components: - type: Transform - pos: -22.5,22.5 + pos: 21.5,48.5 parent: 2 - - uid: 4615 + - uid: 4472 components: - type: Transform - pos: -23.5,22.5 + pos: 21.5,47.5 parent: 2 - - uid: 4616 + - uid: 4473 components: - type: Transform - pos: -24.5,22.5 + pos: 21.5,46.5 parent: 2 - - uid: 4617 + - uid: 4474 components: - type: Transform - pos: -23.5,23.5 + pos: 21.5,45.5 parent: 2 - - uid: 4618 + - uid: 4475 components: - type: Transform - pos: -23.5,24.5 + pos: 21.5,44.5 parent: 2 - - uid: 4619 + - uid: 4476 components: - type: Transform - pos: -18.5,31.5 + pos: 21.5,43.5 parent: 2 - - uid: 4620 + - uid: 4477 components: - type: Transform - pos: 31.5,1.5 + pos: 20.5,43.5 parent: 2 - - uid: 4621 + - uid: 4478 components: - type: Transform - pos: 31.5,3.5 + pos: 22.5,48.5 parent: 2 - - uid: 4622 + - uid: 4479 components: - type: Transform - pos: 31.5,2.5 + pos: 23.5,48.5 parent: 2 - - uid: 4623 + - uid: 4480 components: - type: Transform - pos: 31.5,0.5 + pos: 24.5,48.5 parent: 2 - - uid: 4624 + - uid: 4481 components: - type: Transform - pos: 31.5,-0.5 + pos: 25.5,48.5 parent: 2 - - uid: 4625 + - uid: 4482 components: - type: Transform - pos: 30.5,-0.5 + pos: 26.5,48.5 parent: 2 - - uid: 4626 + - uid: 4483 components: - type: Transform - pos: -11.5,43.5 + pos: 27.5,48.5 parent: 2 - - uid: 4627 + - uid: 4484 components: - type: Transform - pos: 35.5,62.5 + pos: 28.5,48.5 parent: 2 - - uid: 4628 + - uid: 4485 components: - type: Transform - pos: -26.5,-10.5 + pos: 29.5,48.5 parent: 2 - - uid: 4629 + - uid: 4486 components: - type: Transform - pos: -28.5,-3.5 + pos: 30.5,48.5 parent: 2 - - uid: 4630 + - uid: 4487 components: - type: Transform - pos: -23.5,-3.5 + pos: 31.5,48.5 parent: 2 - - uid: 4631 + - uid: 4488 components: - type: Transform - pos: -25.5,-10.5 + pos: 32.5,48.5 parent: 2 - - uid: 4632 + - uid: 4489 components: - type: Transform - pos: -22.5,3.5 + pos: 33.5,48.5 parent: 2 - - uid: 4633 + - uid: 4490 components: - type: Transform - pos: -22.5,2.5 + pos: 34.5,48.5 parent: 2 - - uid: 4634 + - uid: 4491 components: - type: Transform - pos: -28.5,-10.5 + pos: 35.5,48.5 parent: 2 - - uid: 4635 + - uid: 4492 components: - type: Transform - pos: -27.5,-10.5 + pos: 36.5,48.5 parent: 2 - - uid: 4636 + - uid: 4493 components: - type: Transform - pos: -29.5,-11.5 + pos: 37.5,48.5 parent: 2 - - uid: 4637 + - uid: 4494 components: - type: Transform - pos: -21.5,33.5 + pos: 38.5,48.5 parent: 2 - - uid: 4638 + - uid: 4495 components: - type: Transform - pos: -10.5,42.5 + pos: 39.5,48.5 parent: 2 - - uid: 4639 + - uid: 4496 components: - type: Transform - pos: -29.5,-10.5 + pos: 40.5,48.5 parent: 2 - - uid: 4640 + - uid: 4497 components: - type: Transform - pos: -15.5,42.5 + pos: 41.5,48.5 parent: 2 - - uid: 4641 + - uid: 4498 components: - type: Transform - pos: -10.5,43.5 + pos: 42.5,48.5 parent: 2 - - uid: 4642 + - uid: 4499 components: - type: Transform - pos: -30.5,36.5 + pos: 43.5,48.5 parent: 2 - - uid: 4643 + - uid: 4500 components: - type: Transform - pos: -30.5,37.5 + pos: 44.5,48.5 parent: 2 - - uid: 4644 + - uid: 4501 components: - type: Transform - pos: 65.5,46.5 + pos: 44.5,49.5 parent: 2 - - uid: 4645 + - uid: 4502 components: - type: Transform - pos: 65.5,48.5 + pos: 44.5,50.5 parent: 2 - - uid: 4646 + - uid: 4503 components: - type: Transform - pos: 65.5,50.5 + pos: 44.5,51.5 parent: 2 - - uid: 4647 + - uid: 4504 components: - type: Transform - pos: -18.5,32.5 + pos: 45.5,51.5 parent: 2 - - uid: 4648 + - uid: 4505 components: - type: Transform - pos: -14.5,46.5 + pos: 46.5,51.5 parent: 2 - - uid: 4649 + - uid: 4506 components: - type: Transform - pos: -10.5,40.5 + pos: 46.5,52.5 parent: 2 - - uid: 4650 + - uid: 4507 components: - type: Transform - pos: -21.5,35.5 + pos: 46.5,53.5 parent: 2 - - uid: 4651 + - uid: 4508 components: - type: Transform - pos: -22.5,35.5 + pos: 46.5,54.5 parent: 2 - - uid: 4652 + - uid: 4509 components: - type: Transform - pos: -10.5,38.5 + pos: 46.5,55.5 parent: 2 - - uid: 4653 + - uid: 4510 components: - type: Transform - pos: -16.5,42.5 + pos: 32.5,47.5 parent: 2 - - uid: 4654 + - uid: 4511 components: - type: Transform - pos: -14.5,43.5 + pos: 32.5,46.5 parent: 2 - - uid: 4655 + - uid: 4512 components: - type: Transform - pos: -10.5,36.5 + pos: 32.5,45.5 parent: 2 - - uid: 4656 + - uid: 4513 components: - type: Transform - pos: -14.5,36.5 + pos: 32.5,44.5 parent: 2 - - uid: 4657 + - uid: 4514 components: - type: Transform - pos: -10.5,39.5 + pos: 32.5,43.5 parent: 2 - - uid: 4658 + - uid: 4515 components: - type: Transform - pos: -12.5,46.5 + pos: 32.5,42.5 parent: 2 - - uid: 4659 + - uid: 4516 components: - type: Transform - pos: -13.5,36.5 + pos: 32.5,41.5 parent: 2 - - uid: 4660 + - uid: 4517 components: - type: Transform - pos: -10.5,37.5 + pos: 32.5,40.5 parent: 2 - - uid: 4661 + - uid: 4518 components: - type: Transform - pos: -12.5,43.5 + pos: 32.5,39.5 parent: 2 - - uid: 4662 + - uid: 4519 components: - type: Transform - pos: -18.5,36.5 + pos: 32.5,38.5 parent: 2 - - uid: 4663 + - uid: 4520 components: - type: Transform - pos: -20.5,37.5 + pos: 32.5,37.5 parent: 2 - - uid: 4664 + - uid: 4521 components: - type: Transform - pos: -21.5,32.5 + pos: 32.5,36.5 parent: 2 - - uid: 4665 + - uid: 4522 components: - type: Transform - pos: -21.5,36.5 + pos: 32.5,35.5 parent: 2 - - uid: 4666 + - uid: 4523 components: - type: Transform - pos: -21.5,34.5 + pos: 32.5,34.5 parent: 2 - - uid: 4667 + - uid: 4524 components: - type: Transform - pos: -20.5,36.5 + pos: 32.5,33.5 parent: 2 - - uid: 4668 + - uid: 4525 components: - type: Transform - pos: -19.5,32.5 + pos: 32.5,32.5 parent: 2 - - uid: 4669 + - uid: 4526 components: - type: Transform - pos: -18.5,37.5 + pos: 32.5,31.5 parent: 2 - - uid: 4670 + - uid: 4527 components: - type: Transform - pos: -10.5,41.5 + pos: 32.5,30.5 parent: 2 - - uid: 4671 + - uid: 4528 components: - type: Transform - pos: -16.5,36.5 + pos: 32.5,29.5 parent: 2 - - uid: 4672 + - uid: 4529 components: - type: Transform - pos: -15.5,36.5 + pos: 32.5,28.5 parent: 2 - - uid: 4673 + - uid: 4530 components: - type: Transform - pos: -14.5,42.5 + pos: 32.5,27.5 parent: 2 - - uid: 4674 + - uid: 4531 components: - type: Transform - pos: 46.5,34.5 + pos: 32.5,26.5 parent: 2 - - uid: 4675 + - uid: 4532 components: - type: Transform - pos: 84.5,44.5 + pos: 32.5,25.5 parent: 2 - - uid: 4676 + - uid: 4533 components: - type: Transform - pos: 84.5,46.5 + pos: 32.5,24.5 parent: 2 - - uid: 4677 + - uid: 4534 components: - type: Transform - pos: 84.5,45.5 + pos: 32.5,23.5 parent: 2 - - uid: 4678 + - uid: 4535 components: - type: Transform - pos: 84.5,43.5 + pos: 32.5,22.5 parent: 2 - - uid: 4679 + - uid: 4536 components: - type: Transform - pos: 84.5,42.5 + pos: 32.5,21.5 parent: 2 - - uid: 4680 + - uid: 4537 components: - type: Transform - pos: 84.5,41.5 + pos: 32.5,20.5 parent: 2 - - uid: 4681 + - uid: 4538 components: - type: Transform - pos: 83.5,41.5 + pos: 16.5,20.5 parent: 2 - - uid: 4682 + - uid: 4539 components: - type: Transform - pos: 83.5,40.5 + pos: 17.5,20.5 parent: 2 - - uid: 4683 + - uid: 4540 components: - type: Transform - pos: 83.5,39.5 + pos: 18.5,20.5 parent: 2 - - uid: 4684 + - uid: 4541 components: - type: Transform - pos: 84.5,39.5 + pos: 19.5,20.5 parent: 2 - - uid: 4685 + - uid: 4542 components: - type: Transform - pos: 85.5,39.5 + pos: 20.5,20.5 parent: 2 - - uid: 4686 + - uid: 4543 components: - type: Transform - pos: 86.5,39.5 + pos: 21.5,20.5 parent: 2 - - uid: 4687 + - uid: 4544 components: - type: Transform - pos: 87.5,39.5 + pos: 22.5,20.5 parent: 2 - - uid: 4688 + - uid: 4545 components: - type: Transform - pos: 87.5,38.5 + pos: 23.5,20.5 parent: 2 - - uid: 4689 + - uid: 4546 components: - type: Transform - pos: 88.5,38.5 + pos: 24.5,20.5 parent: 2 - - uid: 4690 + - uid: 4547 components: - type: Transform - pos: 88.5,37.5 + pos: 25.5,20.5 parent: 2 - - uid: 4691 + - uid: 4548 components: - type: Transform - pos: 88.5,36.5 + pos: 26.5,20.5 parent: 2 - - uid: 4692 + - uid: 4549 components: - type: Transform - pos: 88.5,35.5 + pos: 27.5,20.5 parent: 2 - - uid: 4693 + - uid: 4550 components: - type: Transform - pos: 88.5,34.5 + pos: 28.5,20.5 parent: 2 - - uid: 4694 + - uid: 4551 components: - type: Transform - pos: 88.5,33.5 + pos: 29.5,20.5 parent: 2 - - uid: 4695 + - uid: 4552 components: - type: Transform - pos: 88.5,32.5 + pos: 30.5,20.5 parent: 2 - - uid: 4696 + - uid: 4553 components: - type: Transform - pos: 88.5,31.5 + pos: 31.5,20.5 parent: 2 - - uid: 4697 + - uid: 4554 components: - type: Transform - pos: 88.5,30.5 + pos: 33.5,34.5 parent: 2 - - uid: 4698 + - uid: 4555 components: - type: Transform - pos: 87.5,30.5 + pos: 34.5,34.5 parent: 2 - - uid: 4699 + - uid: 4556 components: - type: Transform - pos: 87.5,29.5 + pos: 35.5,34.5 parent: 2 - - uid: 4700 + - uid: 4557 components: - type: Transform - pos: 86.5,29.5 + pos: 36.5,34.5 parent: 2 - - uid: 4701 + - uid: 4558 components: - type: Transform - pos: 85.5,29.5 + pos: 37.5,34.5 parent: 2 - - uid: 4702 + - uid: 4559 components: - type: Transform - pos: 84.5,29.5 + pos: 38.5,34.5 parent: 2 - - uid: 4703 + - uid: 4560 components: - type: Transform - pos: 83.5,29.5 + pos: 39.5,34.5 parent: 2 - - uid: 4704 + - uid: 4561 components: - type: Transform - pos: 83.5,28.5 + pos: 40.5,34.5 parent: 2 - - uid: 4705 + - uid: 4562 components: - type: Transform - pos: 83.5,27.5 + pos: 41.5,34.5 parent: 2 - - uid: 4706 + - uid: 4563 components: - type: Transform - pos: 84.5,27.5 + pos: 42.5,34.5 parent: 2 - - uid: 4707 + - uid: 4564 components: - type: Transform - pos: 84.5,26.5 + pos: 43.5,34.5 parent: 2 - - uid: 4708 + - uid: 4565 components: - type: Transform - pos: 84.5,25.5 + pos: 44.5,34.5 parent: 2 - - uid: 4709 + - uid: 4566 components: - type: Transform - pos: 84.5,24.5 + pos: 45.5,34.5 parent: 2 - - uid: 4710 + - uid: 4567 components: - type: Transform - pos: 84.5,23.5 + pos: 47.5,34.5 parent: 2 - - uid: 4711 + - uid: 4568 components: - type: Transform - pos: 84.5,22.5 + pos: 48.5,34.5 parent: 2 - - uid: 4712 + - uid: 4569 components: - type: Transform - pos: 84.5,21.5 + pos: 49.5,34.5 parent: 2 - - uid: 4713 + - uid: 4570 components: - type: Transform - pos: 65.5,51.5 + pos: 50.5,34.5 parent: 2 - - uid: 4714 + - uid: 4571 components: - type: Transform - pos: 65.5,49.5 + pos: 51.5,34.5 parent: 2 - - uid: 4715 + - uid: 4572 components: - type: Transform - pos: 65.5,47.5 + pos: 52.5,34.5 parent: 2 - - uid: 4716 + - uid: 4573 components: - type: Transform - pos: -31.5,35.5 + pos: 53.5,34.5 parent: 2 - - uid: 4717 + - uid: 4574 components: - type: Transform - pos: -31.5,36.5 + pos: 54.5,34.5 parent: 2 - - uid: 4718 + - uid: 4575 components: - type: Transform - pos: -31.5,28.5 + pos: 55.5,34.5 parent: 2 - - uid: 4719 + - uid: 4576 components: - type: Transform - pos: -31.5,29.5 + pos: 56.5,34.5 parent: 2 - - uid: 4720 + - uid: 4577 components: - type: Transform - pos: -31.5,30.5 + pos: 57.5,34.5 parent: 2 - - uid: 4721 + - uid: 4578 components: - type: Transform - pos: -31.5,31.5 + pos: 58.5,34.5 parent: 2 - - uid: 4722 + - uid: 4579 components: - type: Transform - pos: -31.5,32.5 + pos: 59.5,34.5 parent: 2 - - uid: 4723 + - uid: 4580 components: - type: Transform - pos: -31.5,33.5 + pos: 60.5,34.5 parent: 2 - - uid: 4724 + - uid: 4581 components: - type: Transform - pos: -31.5,34.5 + pos: 61.5,34.5 parent: 2 - - uid: 4728 + - uid: 4582 components: - type: Transform - pos: -13.5,23.5 + pos: 62.5,34.5 parent: 2 - - uid: 4729 + - uid: 4583 components: - type: Transform - pos: -14.5,23.5 + pos: 63.5,34.5 parent: 2 - - uid: 4731 + - uid: 4584 components: - type: Transform - pos: -13.5,25.5 + pos: 64.5,34.5 parent: 2 - - uid: 4732 + - uid: 4585 components: - type: Transform - pos: -14.5,26.5 + pos: -24.5,-15.5 parent: 2 - - uid: 4733 + - uid: 4586 components: - type: Transform - pos: -14.5,27.5 + pos: 33.5,69.5 parent: 2 - - uid: 4734 + - uid: 4587 components: - type: Transform - pos: -14.5,25.5 + pos: 33.5,80.5 parent: 2 - - uid: 4735 + - uid: 4588 components: - type: Transform - pos: -13.5,27.5 + pos: -43.5,26.5 parent: 2 - - uid: 4736 + - uid: 4591 components: - type: Transform - pos: -13.5,28.5 + pos: -5.5,20.5 parent: 2 - - uid: 4737 + - uid: 4592 components: - type: Transform - pos: -13.5,29.5 + pos: -6.5,20.5 parent: 2 - - uid: 4738 + - uid: 4593 components: - type: Transform - pos: -13.5,30.5 + pos: -7.5,20.5 parent: 2 - - uid: 4739 + - uid: 4594 components: - type: Transform - pos: -13.5,31.5 + pos: -8.5,20.5 parent: 2 - - uid: 4740 + - uid: 4595 components: - type: Transform - pos: -13.5,32.5 + pos: -9.5,20.5 parent: 2 - - uid: 4741 + - uid: 4596 components: - type: Transform - pos: -13.5,33.5 + pos: -10.5,20.5 parent: 2 - - uid: 4742 + - uid: 4597 components: - type: Transform - pos: -13.5,34.5 + pos: -11.5,20.5 parent: 2 - - uid: 4743 + - uid: 4598 components: - type: Transform - pos: -13.5,35.5 + pos: -11.5,19.5 parent: 2 - - uid: 4744 + - uid: 4599 components: - type: Transform - pos: -3.5,19.5 + pos: -12.5,19.5 parent: 2 - - uid: 4745 + - uid: 4600 components: - type: Transform - pos: -3.5,18.5 + pos: -13.5,19.5 parent: 2 - - uid: 4746 + - uid: 4601 components: - type: Transform - pos: 36.5,-9.5 + pos: -14.5,19.5 parent: 2 - - uid: 4747 + - uid: 4602 components: - type: Transform - pos: 36.5,-10.5 + pos: -15.5,19.5 parent: 2 - - uid: 4748 + - uid: 4603 components: - type: Transform - pos: 36.5,-11.5 + pos: -16.5,19.5 parent: 2 - - uid: 4749 + - uid: 4604 components: - type: Transform - pos: 36.5,-12.5 + pos: -17.5,19.5 parent: 2 - - uid: 4750 + - uid: 4605 components: - type: Transform - pos: 36.5,-13.5 + pos: -18.5,19.5 parent: 2 - - uid: 4751 + - uid: 4606 components: - type: Transform - pos: 37.5,-9.5 + pos: -19.5,19.5 parent: 2 - - uid: 4752 + - uid: 4607 components: - type: Transform - pos: 37.5,-10.5 + pos: -19.5,18.5 parent: 2 - - uid: 4753 + - uid: 4608 components: - type: Transform - pos: 37.5,-11.5 + pos: -20.5,18.5 parent: 2 - - uid: 4754 + - uid: 4609 components: - type: Transform - pos: 37.5,-12.5 + pos: -21.5,18.5 parent: 2 - - uid: 4755 + - uid: 4610 components: - type: Transform - pos: 37.5,-13.5 + pos: -22.5,18.5 parent: 2 - - uid: 4756 + - uid: 4611 components: - type: Transform - pos: 35.5,-11.5 + pos: -22.5,19.5 parent: 2 - - uid: 4757 + - uid: 4612 components: - type: Transform - pos: 34.5,-11.5 + pos: -22.5,20.5 parent: 2 - - uid: 4758 + - uid: 4613 components: - type: Transform - pos: 33.5,-11.5 + pos: -22.5,21.5 parent: 2 - - uid: 4759 + - uid: 4614 components: - type: Transform - pos: 32.5,-11.5 + pos: -22.5,22.5 parent: 2 - - uid: 4760 + - uid: 4615 components: - type: Transform - pos: 31.5,-11.5 + pos: -23.5,22.5 parent: 2 - - uid: 4761 + - uid: 4616 components: - type: Transform - pos: 30.5,-11.5 + pos: -24.5,22.5 parent: 2 - - uid: 4762 + - uid: 4617 components: - type: Transform - pos: 29.5,-11.5 + pos: -23.5,23.5 parent: 2 - - uid: 4763 + - uid: 4618 components: - type: Transform - pos: 28.5,-11.5 + pos: -23.5,24.5 parent: 2 - - uid: 4764 + - uid: 4619 components: - type: Transform - pos: 27.5,-11.5 + pos: -18.5,31.5 parent: 2 - - uid: 4765 + - uid: 4620 components: - type: Transform - pos: 26.5,-11.5 + pos: 31.5,1.5 parent: 2 - - uid: 4766 + - uid: 4621 components: - type: Transform - pos: 25.5,-11.5 + pos: 31.5,3.5 parent: 2 - - uid: 4767 + - uid: 4622 components: - type: Transform - pos: 24.5,-11.5 + pos: 31.5,2.5 parent: 2 - - uid: 4768 + - uid: 4623 components: - type: Transform - pos: 23.5,-12.5 + pos: 31.5,0.5 parent: 2 - - uid: 4769 + - uid: 4624 components: - type: Transform - pos: 23.5,-11.5 + pos: 31.5,-0.5 parent: 2 - - uid: 4770 + - uid: 4625 components: - type: Transform - pos: 23.5,-10.5 + pos: 30.5,-0.5 parent: 2 - - uid: 6323 + - uid: 4626 components: - type: Transform - pos: -14.5,24.5 + pos: -11.5,43.5 parent: 2 - - uid: 7021 + - uid: 4627 components: - type: Transform - pos: -13.5,24.5 + pos: 35.5,62.5 parent: 2 - - uid: 18778 + - uid: 4628 components: - type: Transform - pos: 75.5,52.5 + pos: -26.5,-10.5 parent: 2 - - uid: 18779 + - uid: 4629 components: - type: Transform - pos: 75.5,51.5 + pos: -28.5,-3.5 parent: 2 - - uid: 18780 + - uid: 4630 components: - type: Transform - pos: 75.5,50.5 + pos: -23.5,-3.5 parent: 2 - - uid: 18781 + - uid: 4631 components: - type: Transform - pos: 75.5,49.5 + pos: -25.5,-10.5 parent: 2 - - uid: 18782 + - uid: 4632 components: - type: Transform - pos: 75.5,48.5 + pos: -22.5,3.5 parent: 2 - - uid: 18783 + - uid: 4633 components: - type: Transform - pos: 75.5,47.5 + pos: -22.5,2.5 parent: 2 - - uid: 18784 + - uid: 4634 components: - type: Transform - pos: 76.5,47.5 + pos: -28.5,-10.5 parent: 2 - - uid: 18788 + - uid: 4635 components: - type: Transform - pos: 77.5,47.5 + pos: -27.5,-10.5 parent: 2 - - uid: 18789 + - uid: 4636 components: - type: Transform - pos: 78.5,47.5 + pos: -29.5,-11.5 parent: 2 -- proto: CableHVStack - entities: - - uid: 4771 + - uid: 4637 components: - type: Transform - pos: -7.609933,28.761845 + pos: -21.5,33.5 parent: 2 -- proto: CableMV - entities: - - uid: 1812 + - uid: 4638 components: - type: Transform - pos: -36.5,70.5 + pos: -10.5,42.5 parent: 2 - - uid: 1819 + - uid: 4639 components: - type: Transform - pos: -36.5,69.5 + pos: -29.5,-10.5 parent: 2 - - uid: 3236 + - uid: 4640 components: - type: Transform - pos: 69.5,32.5 + pos: -15.5,42.5 parent: 2 - - uid: 4772 + - uid: 4641 components: - type: Transform - pos: -19.5,41.5 + pos: -10.5,43.5 parent: 2 - - uid: 4773 + - uid: 4644 components: - type: Transform - pos: -13.5,36.5 + pos: 65.5,46.5 parent: 2 - - uid: 4774 + - uid: 4645 components: - type: Transform - pos: -13.5,36.5 + pos: 65.5,48.5 parent: 2 - - uid: 4775 + - uid: 4646 components: - type: Transform - pos: -13.5,36.5 + pos: 65.5,50.5 parent: 2 - - uid: 4776 + - uid: 4647 components: - type: Transform - pos: -13.5,39.5 + pos: -18.5,32.5 parent: 2 - - uid: 4777 + - uid: 4648 components: - type: Transform - pos: -13.5,40.5 + pos: -14.5,46.5 parent: 2 - - uid: 4778 + - uid: 4649 components: - type: Transform - pos: -13.5,41.5 + pos: -10.5,40.5 parent: 2 - - uid: 4779 + - uid: 4650 components: - type: Transform - pos: -20.5,41.5 + pos: -21.5,35.5 parent: 2 - - uid: 4780 + - uid: 4651 components: - type: Transform - pos: -21.5,41.5 + pos: -22.5,35.5 parent: 2 - - uid: 4781 + - uid: 4652 components: - type: Transform - pos: -12.5,68.5 + pos: -10.5,38.5 parent: 2 - - uid: 4782 + - uid: 4653 components: - type: Transform - pos: -19.5,36.5 + pos: -16.5,42.5 parent: 2 - - uid: 4783 + - uid: 4654 components: - type: Transform - pos: 32.5,57.5 + pos: -14.5,43.5 parent: 2 - - uid: 4784 + - uid: 4655 components: - type: Transform - pos: 33.5,57.5 + pos: -10.5,36.5 parent: 2 - - uid: 4785 + - uid: 4656 components: - type: Transform - pos: 33.5,56.5 + pos: -14.5,36.5 parent: 2 - - uid: 4786 + - uid: 4657 components: - type: Transform - pos: 34.5,56.5 + pos: -10.5,39.5 parent: 2 - - uid: 4787 + - uid: 4658 components: - type: Transform - pos: -34.5,24.5 + pos: -12.5,46.5 parent: 2 - - uid: 4788 + - uid: 4659 components: - type: Transform - pos: -3.5,66.5 + pos: -13.5,36.5 parent: 2 - - uid: 4789 + - uid: 4660 components: - type: Transform - pos: -3.5,65.5 + pos: -10.5,37.5 parent: 2 - - uid: 4790 + - uid: 4661 components: - type: Transform - pos: -16.5,36.5 + pos: -12.5,43.5 parent: 2 - - uid: 4791 + - uid: 4662 components: - type: Transform - pos: -21.5,35.5 + pos: -18.5,36.5 parent: 2 - - uid: 4792 + - uid: 4663 components: - type: Transform - pos: -14.5,36.5 + pos: -20.5,37.5 parent: 2 - - uid: 4793 + - uid: 4664 components: - type: Transform - pos: -17.5,36.5 + pos: -21.5,32.5 parent: 2 - - uid: 4794 + - uid: 4665 components: - type: Transform - pos: -15.5,36.5 + pos: -21.5,36.5 parent: 2 - - uid: 4795 + - uid: 4666 components: - type: Transform - pos: -20.5,36.5 + pos: -21.5,34.5 parent: 2 - - uid: 4796 + - uid: 4667 components: - type: Transform - pos: -18.5,36.5 + pos: -20.5,36.5 parent: 2 - - uid: 4797 + - uid: 4668 components: - type: Transform - pos: -21.5,36.5 + pos: -19.5,32.5 parent: 2 - - uid: 4798 + - uid: 4669 components: - type: Transform - pos: -34.5,25.5 + pos: -18.5,37.5 parent: 2 - - uid: 4799 + - uid: 4670 components: - type: Transform - pos: -16.5,43.5 + pos: -10.5,41.5 parent: 2 - - uid: 4800 + - uid: 4671 components: - type: Transform - pos: -15.5,43.5 + pos: -16.5,36.5 parent: 2 - - uid: 4801 + - uid: 4672 components: - type: Transform - pos: -14.5,43.5 + pos: -15.5,36.5 parent: 2 - - uid: 4802 + - uid: 4673 components: - type: Transform - pos: -13.5,43.5 + pos: -14.5,42.5 parent: 2 - - uid: 4803 + - uid: 4674 components: - type: Transform - pos: -12.5,43.5 + pos: 46.5,34.5 parent: 2 - - uid: 4804 + - uid: 4675 components: - type: Transform - pos: -11.5,43.5 + pos: 84.5,44.5 parent: 2 - - uid: 4805 + - uid: 4676 components: - type: Transform - pos: -10.5,43.5 + pos: 84.5,46.5 parent: 2 - - uid: 4806 + - uid: 4677 components: - type: Transform - pos: -10.5,44.5 + pos: 84.5,45.5 parent: 2 - - uid: 4807 + - uid: 4678 components: - type: Transform - pos: -10.5,45.5 + pos: 84.5,43.5 parent: 2 - - uid: 4808 + - uid: 4679 components: - type: Transform - pos: -10.5,46.5 + pos: 84.5,42.5 parent: 2 - - uid: 4809 + - uid: 4680 components: - type: Transform - pos: -14.5,42.5 + pos: 84.5,41.5 parent: 2 - - uid: 4810 + - uid: 4681 components: - type: Transform - pos: -25.5,41.5 + pos: 83.5,41.5 parent: 2 - - uid: 4811 + - uid: 4682 components: - type: Transform - pos: -25.5,42.5 + pos: 83.5,40.5 parent: 2 - - uid: 4812 + - uid: 4683 components: - type: Transform - pos: -25.5,43.5 + pos: 83.5,39.5 parent: 2 - - uid: 4813 + - uid: 4684 components: - type: Transform - pos: -25.5,44.5 + pos: 84.5,39.5 parent: 2 - - uid: 4814 + - uid: 4685 components: - type: Transform - pos: -25.5,45.5 + pos: 85.5,39.5 parent: 2 - - uid: 4815 + - uid: 4686 components: - type: Transform - pos: -25.5,46.5 + pos: 86.5,39.5 parent: 2 - - uid: 4816 + - uid: 4687 components: - type: Transform - pos: -24.5,46.5 + pos: 87.5,39.5 parent: 2 - - uid: 4817 + - uid: 4688 components: - type: Transform - pos: -24.5,47.5 + pos: 87.5,38.5 parent: 2 - - uid: 4818 + - uid: 4689 components: - type: Transform - pos: -18.5,42.5 + pos: 88.5,38.5 parent: 2 - - uid: 4819 + - uid: 4690 components: - type: Transform - pos: -18.5,43.5 + pos: 88.5,37.5 parent: 2 - - uid: 4820 + - uid: 4691 components: - type: Transform - pos: -19.5,43.5 + pos: 88.5,36.5 parent: 2 - - uid: 4821 + - uid: 4692 components: - type: Transform - pos: -20.5,43.5 + pos: 88.5,35.5 parent: 2 - - uid: 4822 + - uid: 4693 components: - type: Transform - pos: -21.5,43.5 + pos: 88.5,34.5 parent: 2 - - uid: 4823 + - uid: 4694 components: - type: Transform - pos: -22.5,43.5 + pos: 88.5,33.5 parent: 2 - - uid: 4824 + - uid: 4695 components: - type: Transform - pos: -22.5,44.5 + pos: 88.5,32.5 parent: 2 - - uid: 4825 + - uid: 4696 components: - type: Transform - pos: -22.5,45.5 + pos: 88.5,31.5 parent: 2 - - uid: 4826 + - uid: 4697 components: - type: Transform - pos: -22.5,46.5 + pos: 88.5,30.5 parent: 2 - - uid: 4827 + - uid: 4698 components: - type: Transform - pos: -12.5,36.5 + pos: 87.5,30.5 parent: 2 - - uid: 4828 + - uid: 4699 components: - type: Transform - pos: -11.5,36.5 + pos: 87.5,29.5 parent: 2 - - uid: 4829 + - uid: 4700 components: - type: Transform - pos: -10.5,36.5 + pos: 86.5,29.5 parent: 2 - - uid: 4830 + - uid: 4701 components: - type: Transform - pos: -9.5,36.5 + pos: 85.5,29.5 parent: 2 - - uid: 4831 + - uid: 4702 components: - type: Transform - pos: -8.5,36.5 + pos: 84.5,29.5 parent: 2 - - uid: 4832 + - uid: 4703 components: - type: Transform - pos: -7.5,36.5 + pos: 83.5,29.5 parent: 2 - - uid: 4833 + - uid: 4704 components: - type: Transform - pos: -6.5,36.5 + pos: 83.5,28.5 parent: 2 - - uid: 4834 + - uid: 4705 components: - type: Transform - pos: -5.5,36.5 + pos: 83.5,27.5 parent: 2 - - uid: 4835 + - uid: 4706 components: - type: Transform - pos: -4.5,36.5 + pos: 84.5,27.5 parent: 2 - - uid: 4836 + - uid: 4707 components: - type: Transform - pos: -3.5,36.5 + pos: 84.5,26.5 parent: 2 - - uid: 4837 + - uid: 4708 components: - type: Transform - pos: -2.5,36.5 + pos: 84.5,25.5 parent: 2 - - uid: 4838 + - uid: 4709 components: - type: Transform - pos: -2.5,37.5 + pos: 84.5,24.5 parent: 2 - - uid: 4839 + - uid: 4710 components: - type: Transform - pos: -10.5,21.5 + pos: 84.5,23.5 parent: 2 - - uid: 4840 + - uid: 4711 components: - type: Transform - pos: -9.5,21.5 + pos: 84.5,22.5 parent: 2 - - uid: 4841 + - uid: 4712 components: - type: Transform - pos: -9.5,22.5 + pos: 84.5,21.5 parent: 2 - - uid: 4842 + - uid: 4713 components: - type: Transform - pos: -9.5,23.5 + pos: 65.5,51.5 parent: 2 - - uid: 4843 + - uid: 4714 components: - type: Transform - pos: -9.5,24.5 + pos: 65.5,49.5 parent: 2 - - uid: 4844 + - uid: 4715 components: - type: Transform - pos: -9.5,25.5 + pos: 65.5,47.5 parent: 2 - - uid: 4845 + - uid: 4728 components: - type: Transform - pos: -9.5,26.5 + pos: -13.5,23.5 parent: 2 - - uid: 4846 + - uid: 4729 components: - type: Transform - pos: -9.5,27.5 + pos: -14.5,23.5 parent: 2 - - uid: 4847 + - uid: 4731 components: - type: Transform - pos: -8.5,27.5 + pos: -13.5,25.5 parent: 2 - - uid: 4848 + - uid: 4732 components: - type: Transform - pos: -7.5,27.5 + pos: -14.5,26.5 parent: 2 - - uid: 4849 + - uid: 4733 components: - type: Transform - pos: -6.5,27.5 + pos: -14.5,27.5 parent: 2 - - uid: 4850 + - uid: 4734 components: - type: Transform - pos: -5.5,27.5 + pos: -14.5,25.5 parent: 2 - - uid: 4851 + - uid: 4735 components: - type: Transform - pos: -4.5,27.5 + pos: -13.5,27.5 parent: 2 - - uid: 4852 + - uid: 4736 components: - type: Transform - pos: -3.5,27.5 + pos: -13.5,28.5 parent: 2 - - uid: 4853 + - uid: 4737 components: - type: Transform - pos: -3.5,28.5 + pos: -13.5,29.5 parent: 2 - - uid: 4854 + - uid: 4738 components: - type: Transform - pos: -11.5,20.5 + pos: -13.5,30.5 parent: 2 - - uid: 4855 + - uid: 4739 components: - type: Transform - pos: -11.5,21.5 + pos: -13.5,31.5 parent: 2 - - uid: 4856 + - uid: 4740 components: - type: Transform - pos: -11.5,19.5 + pos: -13.5,32.5 parent: 2 - - uid: 4857 + - uid: 4741 components: - type: Transform - pos: -12.5,19.5 + pos: -13.5,33.5 parent: 2 - - uid: 4858 + - uid: 4742 components: - type: Transform - pos: -13.5,19.5 + pos: -13.5,34.5 parent: 2 - - uid: 4859 + - uid: 4743 components: - type: Transform - pos: -14.5,19.5 + pos: -13.5,35.5 parent: 2 - - uid: 4860 + - uid: 4744 components: - type: Transform - pos: -15.5,19.5 + pos: -3.5,19.5 parent: 2 - - uid: 4861 + - uid: 4745 components: - type: Transform - pos: -16.5,19.5 + pos: -3.5,18.5 parent: 2 - - uid: 4862 + - uid: 6323 components: - type: Transform - pos: -17.5,19.5 + pos: -14.5,24.5 parent: 2 - - uid: 4863 + - uid: 7021 components: - type: Transform - pos: -18.5,19.5 + pos: -13.5,24.5 parent: 2 - - uid: 4864 + - uid: 13405 components: - type: Transform - pos: -18.5,18.5 + pos: 30.5,-30.5 parent: 2 - - uid: 4865 + - uid: 13722 components: - type: Transform - pos: -18.5,18.5 + pos: 32.5,-10.5 parent: 2 - - uid: 4866 + - uid: 14247 components: - type: Transform - pos: -19.5,18.5 + pos: 36.5,-10.5 parent: 2 - - uid: 4867 + - uid: 14248 components: - type: Transform - pos: -20.5,18.5 + pos: 34.5,-10.5 parent: 2 - - uid: 4868 + - uid: 14249 components: - type: Transform - pos: -21.5,18.5 + pos: 33.5,-8.5 parent: 2 - - uid: 4869 + - uid: 14250 components: - type: Transform - pos: -22.5,18.5 + pos: 35.5,-8.5 parent: 2 - - uid: 4870 + - uid: 14931 components: - type: Transform - pos: -23.5,18.5 + pos: 32.5,-8.5 parent: 2 - - uid: 4871 + - uid: 14932 components: - type: Transform - pos: -23.5,16.5 + pos: 34.5,-8.5 parent: 2 - - uid: 4872 + - uid: 14976 components: - type: Transform - pos: -23.5,16.5 + pos: 36.5,-8.5 parent: 2 - - uid: 4873 + - uid: 14978 components: - type: Transform - pos: -23.5,17.5 + pos: 35.5,-10.5 parent: 2 - - uid: 4874 + - uid: 14979 components: - type: Transform - pos: -23.5,15.5 + pos: 33.5,-10.5 parent: 2 - - uid: 4875 + - uid: 14980 components: - type: Transform - pos: -22.5,19.5 + pos: 32.5,-9.5 parent: 2 - - uid: 4876 + - uid: 15040 components: - type: Transform - pos: -22.5,20.5 + pos: 24.5,-8.5 parent: 2 - - uid: 4877 + - uid: 15285 components: - type: Transform - pos: -22.5,21.5 + pos: 24.5,-9.5 parent: 2 - - uid: 4878 + - uid: 15286 components: - type: Transform - pos: -22.5,22.5 + pos: 24.5,-10.5 parent: 2 - - uid: 4879 + - uid: 15410 components: - type: Transform - pos: -23.5,24.5 + pos: 28.5,-8.5 parent: 2 - - uid: 4880 + - uid: 15441 components: - type: Transform - pos: -23.5,23.5 + pos: 26.5,-10.5 parent: 2 - - uid: 4881 + - uid: 15452 components: - type: Transform - pos: -23.5,22.5 + pos: 36.5,-9.5 parent: 2 - - uid: 4882 + - uid: 15467 components: - type: Transform - pos: -24.5,22.5 + pos: 31.5,-9.5 parent: 2 - - uid: 4883 + - uid: 15498 components: - type: Transform - pos: -9.5,45.5 + pos: 25.5,-10.5 parent: 2 - - uid: 4884 + - uid: 15511 components: - type: Transform - pos: -8.5,45.5 + pos: 27.5,-8.5 parent: 2 - - uid: 4885 + - uid: 17111 components: - type: Transform - pos: -8.5,46.5 + pos: 27.5,-10.5 parent: 2 - - uid: 4886 + - uid: 17112 components: - type: Transform - pos: -20.5,9.5 + pos: 28.5,-9.5 parent: 2 - - uid: 4887 + - uid: 17113 components: - type: Transform - pos: -21.5,9.5 + pos: 30.5,-9.5 parent: 2 - - uid: 4888 + - uid: 17114 components: - type: Transform - pos: -21.5,8.5 + pos: 29.5,-9.5 parent: 2 - - uid: 4889 + - uid: 17115 components: - type: Transform - pos: -21.5,7.5 + pos: 26.5,-8.5 parent: 2 - - uid: 4890 + - uid: 17116 components: - type: Transform - pos: -21.5,6.5 + pos: 25.5,-8.5 parent: 2 - - uid: 4891 + - uid: 17117 components: - type: Transform - pos: -18.5,4.5 + pos: 28.5,-10.5 parent: 2 - - uid: 4892 + - uid: 17118 components: - type: Transform - pos: -17.5,4.5 + pos: 30.5,-6.5 parent: 2 - - uid: 4893 + - uid: 17119 components: - type: Transform - pos: -17.5,5.5 + pos: 30.5,-8.5 parent: 2 - - uid: 4894 + - uid: 17121 components: - type: Transform - pos: -17.5,6.5 + pos: 30.5,-7.5 parent: 2 - - uid: 4895 + - uid: 17149 components: - type: Transform - pos: -17.5,7.5 + pos: 30.5,-35.5 parent: 2 - - uid: 4896 + - uid: 17150 components: - type: Transform - pos: -17.5,8.5 + pos: 30.5,-34.5 parent: 2 - - uid: 4897 + - uid: 17151 components: - type: Transform - pos: -16.5,8.5 + pos: 30.5,-33.5 parent: 2 - - uid: 4898 + - uid: 17152 components: - type: Transform - pos: -15.5,8.5 + pos: 30.5,-32.5 parent: 2 - - uid: 4899 + - uid: 17153 components: - type: Transform - pos: -14.5,8.5 + pos: 30.5,-31.5 parent: 2 - - uid: 4900 + - uid: 17171 components: - type: Transform - pos: -13.5,8.5 + pos: 36.5,-34.5 parent: 2 - - uid: 4901 + - uid: 17172 components: - type: Transform - pos: -13.5,7.5 + pos: 36.5,-35.5 parent: 2 - - uid: 4902 + - uid: 17174 components: - type: Transform - pos: -13.5,7.5 + pos: 30.5,-36.5 parent: 2 - - uid: 4903 + - uid: 17175 components: - type: Transform - pos: -12.5,7.5 + pos: 29.5,-45.5 parent: 2 - - uid: 4904 + - uid: 17176 components: - type: Transform - pos: -11.5,7.5 + pos: 30.5,-41.5 parent: 2 - - uid: 4905 + - uid: 17177 components: - type: Transform - pos: -11.5,8.5 + pos: 30.5,-42.5 parent: 2 - - uid: 4906 + - uid: 17183 components: - type: Transform - pos: -11.5,9.5 + pos: 32.5,-37.5 parent: 2 - - uid: 4907 + - uid: 17184 components: - type: Transform - pos: -11.5,10.5 + pos: 36.5,-21.5 parent: 2 - - uid: 4908 + - uid: 17194 components: - type: Transform - pos: -10.5,10.5 + pos: 30.5,-45.5 parent: 2 - - uid: 4909 + - uid: 17208 components: - type: Transform - pos: -9.5,10.5 + pos: 30.5,-47.5 parent: 2 - - uid: 4910 + - uid: 17210 components: - type: Transform - pos: -8.5,10.5 + pos: 30.5,-39.5 parent: 2 - - uid: 4911 + - uid: 17211 components: - type: Transform - pos: -7.5,10.5 + pos: 30.5,-43.5 parent: 2 - - uid: 4912 + - uid: 17214 components: - type: Transform - pos: -6.5,10.5 + pos: 30.5,-48.5 parent: 2 - - uid: 4913 + - uid: 17215 components: - type: Transform - pos: -5.5,10.5 + pos: 30.5,-46.5 parent: 2 - - uid: 4914 + - uid: 17216 components: - type: Transform - pos: -5.5,10.5 + pos: 30.5,-40.5 parent: 2 - - uid: 4915 + - uid: 17217 components: - type: Transform - pos: -5.5,11.5 + pos: 30.5,-44.5 parent: 2 - - uid: 4916 + - uid: 17219 components: - type: Transform - pos: -5.5,12.5 + pos: 34.5,-13.5 parent: 2 - - uid: 4917 + - uid: 17220 components: - type: Transform - pos: -5.5,13.5 + pos: 35.5,-14.5 parent: 2 - - uid: 4918 + - uid: 17225 components: - type: Transform - pos: -5.5,14.5 + pos: 36.5,-31.5 parent: 2 - - uid: 4919 + - uid: 17226 components: - type: Transform - pos: -5.5,15.5 + pos: 33.5,-12.5 parent: 2 - - uid: 4920 + - uid: 17228 components: - type: Transform - pos: -5.5,16.5 + pos: 36.5,-32.5 parent: 2 - - uid: 4921 + - uid: 17229 components: - type: Transform - pos: -4.5,10.5 + pos: 36.5,-29.5 parent: 2 - - uid: 4922 + - uid: 17231 components: - type: Transform - pos: -3.5,10.5 + pos: 34.5,-31.5 parent: 2 - - uid: 4923 + - uid: 17232 components: - type: Transform - pos: -2.5,10.5 + pos: 36.5,-23.5 parent: 2 - - uid: 4924 + - uid: 17233 components: - type: Transform - pos: -1.5,10.5 + pos: 36.5,-26.5 parent: 2 - - uid: 4925 + - uid: 17234 components: - type: Transform - pos: -0.5,10.5 + pos: 36.5,-25.5 parent: 2 - - uid: 4926 + - uid: 17235 components: - type: Transform - pos: 0.5,10.5 + pos: 35.5,-21.5 parent: 2 - - uid: 4927 + - uid: 17236 components: - type: Transform - pos: 1.5,10.5 + pos: 31.5,-37.5 parent: 2 - - uid: 4928 + - uid: 17237 components: - type: Transform - pos: 2.5,10.5 + pos: 35.5,-20.5 parent: 2 - - uid: 4929 + - uid: 17238 components: - type: Transform - pos: 3.5,10.5 + pos: 36.5,-36.5 parent: 2 - - uid: 4930 + - uid: 17888 components: - type: Transform - pos: 4.5,10.5 + pos: 30.5,-10.5 parent: 2 - - uid: 4931 + - uid: 17890 components: - type: Transform - pos: 4.5,11.5 + pos: 30.5,-11.5 parent: 2 - - uid: 4932 + - uid: 17891 components: - type: Transform - pos: 4.5,12.5 + pos: 30.5,-12.5 parent: 2 - - uid: 4933 + - uid: 18134 components: - type: Transform - pos: 4.5,12.5 + pos: 32.5,-12.5 parent: 2 - - uid: 4934 + - uid: 18192 components: - type: Transform - pos: 5.5,12.5 + pos: 31.5,-12.5 parent: 2 - - uid: 4935 + - uid: 18391 components: - type: Transform - pos: 6.5,12.5 + pos: 35.5,-36.5 parent: 2 - - uid: 4936 + - uid: 18392 components: - type: Transform - pos: 7.5,12.5 + pos: 30.5,-37.5 parent: 2 - - uid: 4937 + - uid: 18393 components: - type: Transform - pos: 8.5,12.5 + pos: 30.5,-38.5 parent: 2 - - uid: 4938 + - uid: 18394 components: - type: Transform - pos: 9.5,12.5 + pos: 36.5,-22.5 parent: 2 - - uid: 4939 + - uid: 18395 components: - type: Transform - pos: 10.5,12.5 + pos: 36.5,-28.5 parent: 2 - - uid: 4940 + - uid: 18396 components: - type: Transform - pos: 11.5,12.5 + pos: 36.5,-27.5 parent: 2 - - uid: 4941 + - uid: 18397 components: - type: Transform - pos: 11.5,13.5 + pos: 36.5,-24.5 parent: 2 - - uid: 4942 + - uid: 18399 components: - type: Transform - pos: 12.5,13.5 + pos: 36.5,-33.5 parent: 2 - - uid: 4943 + - uid: 18400 components: - type: Transform - pos: 13.5,13.5 + pos: 36.5,-30.5 parent: 2 - - uid: 4944 + - uid: 18401 components: - type: Transform - pos: 4.5,13.5 + pos: 35.5,-31.5 parent: 2 - - uid: 4945 + - uid: 18402 components: - type: Transform - pos: 4.5,14.5 + pos: 35.5,-18.5 parent: 2 - - uid: 4946 + - uid: 18403 components: - type: Transform - pos: 4.5,15.5 + pos: 34.5,-12.5 parent: 2 - - uid: 4947 + - uid: 18404 components: - type: Transform - pos: 4.5,16.5 + pos: 35.5,-15.5 parent: 2 - - uid: 4948 + - uid: 18405 components: - type: Transform - pos: 3.5,16.5 + pos: 35.5,-19.5 parent: 2 - - uid: 4949 + - uid: 18406 components: - type: Transform - pos: 2.5,16.5 + pos: 35.5,-16.5 parent: 2 - - uid: 4950 + - uid: 18407 components: - type: Transform - pos: 1.5,16.5 + pos: 35.5,-17.5 parent: 2 - - uid: 4951 + - uid: 18408 components: - type: Transform - pos: 0.5,16.5 + pos: 35.5,-13.5 parent: 2 - - uid: 4952 + - uid: 18409 components: - type: Transform - pos: -0.5,16.5 + pos: 35.5,-37.5 parent: 2 - - uid: 4953 + - uid: 18410 components: - type: Transform - pos: -0.5,17.5 + pos: 34.5,-37.5 parent: 2 - - uid: 4954 + - uid: 18411 components: - type: Transform - pos: -0.5,18.5 + pos: 33.5,-37.5 parent: 2 - - uid: 4955 + - uid: 18412 components: - type: Transform - pos: 5.5,10.5 + pos: 31.5,-45.5 parent: 2 - - uid: 4956 + - uid: 18414 components: - type: Transform - pos: 6.5,10.5 + pos: 30.5,-29.5 parent: 2 - - uid: 4957 + - uid: 18415 components: - type: Transform - pos: 7.5,10.5 + pos: 30.5,-28.5 parent: 2 - - uid: 4958 + - uid: 18416 components: - type: Transform - pos: 7.5,9.5 + pos: 30.5,-27.5 parent: 2 - - uid: 4959 + - uid: 18417 components: - type: Transform - pos: 7.5,8.5 + pos: 30.5,-26.5 parent: 2 - - uid: 4960 + - uid: 18418 components: - type: Transform - pos: 7.5,7.5 + pos: 30.5,-25.5 parent: 2 - - uid: 4961 + - uid: 18419 components: - type: Transform - pos: 7.5,6.5 + pos: 30.5,-24.5 parent: 2 - - uid: 4962 + - uid: 18420 components: - type: Transform - pos: 2.5,17.5 + pos: 30.5,-23.5 parent: 2 - - uid: 4963 + - uid: 18421 components: - type: Transform - pos: 2.5,15.5 + pos: 30.5,-22.5 parent: 2 - - uid: 4964 + - uid: 18422 components: - type: Transform - pos: 2.5,14.5 + pos: 30.5,-21.5 parent: 2 - - uid: 4965 + - uid: 18423 components: - type: Transform - pos: 2.5,13.5 + pos: 30.5,-20.5 parent: 2 - - uid: 4966 + - uid: 18424 components: - type: Transform - pos: 1.5,13.5 + pos: 30.5,-19.5 parent: 2 - - uid: 4967 + - uid: 18425 components: - type: Transform - pos: 0.5,13.5 + pos: 30.5,-18.5 parent: 2 - - uid: 4968 + - uid: 18426 components: - type: Transform - pos: -0.5,13.5 + pos: 30.5,-17.5 parent: 2 - - uid: 4969 + - uid: 18427 components: - type: Transform - pos: -2.5,68.5 + pos: 30.5,-16.5 parent: 2 - - uid: 4970 + - uid: 18428 components: - type: Transform - pos: -3.5,68.5 + pos: 30.5,-15.5 parent: 2 - - uid: 4971 + - uid: 18429 components: - type: Transform - pos: -3.5,69.5 + pos: 30.5,-14.5 parent: 2 - - uid: 4972 + - uid: 18778 components: - type: Transform - pos: -3.5,67.5 + pos: 75.5,52.5 parent: 2 - - uid: 4973 + - uid: 18779 components: - type: Transform - pos: -4.5,67.5 + pos: 75.5,51.5 parent: 2 - - uid: 4974 + - uid: 18780 components: - type: Transform - pos: -5.5,67.5 + pos: 75.5,50.5 parent: 2 - - uid: 4975 + - uid: 18781 components: - type: Transform - pos: -6.5,67.5 + pos: 75.5,49.5 parent: 2 - - uid: 4976 + - uid: 18782 components: - type: Transform - pos: -7.5,67.5 + pos: 75.5,48.5 parent: 2 - - uid: 4977 + - uid: 18783 components: - type: Transform - pos: -8.5,67.5 + pos: 75.5,47.5 parent: 2 - - uid: 4978 + - uid: 18784 components: - type: Transform - pos: -9.5,67.5 + pos: 76.5,47.5 parent: 2 - - uid: 4979 + - uid: 18788 components: - type: Transform - pos: -10.5,67.5 + pos: 77.5,47.5 parent: 2 - - uid: 4980 + - uid: 18789 components: - type: Transform - pos: -11.5,67.5 + pos: 78.5,47.5 parent: 2 - - uid: 4981 +- proto: CableHVStack + entities: + - uid: 4771 components: - type: Transform - pos: -11.5,66.5 + pos: -7.609933,28.761845 parent: 2 - - uid: 4982 +- proto: CableMV + entities: + - uid: 1812 components: - type: Transform - pos: -11.5,65.5 + pos: -36.5,70.5 parent: 2 - - uid: 4983 + - uid: 1819 components: - type: Transform - pos: -11.5,64.5 + pos: -36.5,69.5 parent: 2 - - uid: 4984 + - uid: 3236 components: - type: Transform - pos: -11.5,63.5 + pos: 69.5,32.5 parent: 2 - - uid: 4985 + - uid: 4772 components: - type: Transform - pos: -11.5,62.5 + pos: -19.5,41.5 parent: 2 - - uid: 4986 + - uid: 4773 components: - type: Transform - pos: -11.5,61.5 + pos: -13.5,36.5 parent: 2 - - uid: 4987 + - uid: 4774 components: - type: Transform - pos: -11.5,60.5 + pos: -13.5,36.5 parent: 2 - - uid: 4988 + - uid: 4775 components: - type: Transform - pos: -11.5,59.5 + pos: -13.5,36.5 parent: 2 - - uid: 4989 + - uid: 4776 components: - type: Transform - pos: -11.5,58.5 + pos: -13.5,39.5 parent: 2 - - uid: 4990 + - uid: 4777 components: - type: Transform - pos: -12.5,64.5 + pos: -13.5,40.5 parent: 2 - - uid: 4991 + - uid: 4778 components: - type: Transform - pos: -13.5,64.5 + pos: -13.5,41.5 parent: 2 - - uid: 4992 + - uid: 4779 components: - type: Transform - pos: -14.5,64.5 + pos: -20.5,41.5 parent: 2 - - uid: 4993 + - uid: 4780 components: - type: Transform - pos: -14.5,65.5 + pos: -21.5,41.5 parent: 2 - - uid: 4994 + - uid: 4781 components: - type: Transform - pos: -15.5,66.5 + pos: -12.5,68.5 parent: 2 - - uid: 4995 + - uid: 4782 components: - type: Transform - pos: -14.5,66.5 + pos: -19.5,36.5 parent: 2 - - uid: 4996 + - uid: 4783 components: - type: Transform - pos: -16.5,66.5 + pos: 32.5,57.5 parent: 2 - - uid: 4997 + - uid: 4784 components: - type: Transform - pos: -17.5,66.5 + pos: 33.5,57.5 parent: 2 - - uid: 4998 + - uid: 4785 components: - type: Transform - pos: -17.5,67.5 + pos: 33.5,56.5 parent: 2 - - uid: 4999 + - uid: 4786 components: - type: Transform - pos: -17.5,68.5 + pos: 34.5,56.5 parent: 2 - - uid: 5000 + - uid: 4787 components: - type: Transform - pos: -17.5,69.5 + pos: -34.5,24.5 parent: 2 - - uid: 5001 + - uid: 4788 components: - type: Transform - pos: -17.5,70.5 + pos: -3.5,66.5 parent: 2 - - uid: 5002 + - uid: 4789 components: - type: Transform - pos: -17.5,71.5 + pos: -3.5,65.5 parent: 2 - - uid: 5003 + - uid: 4790 components: - type: Transform - pos: -12.5,58.5 + pos: -16.5,36.5 parent: 2 - - uid: 5004 + - uid: 4791 components: - type: Transform - pos: -13.5,58.5 + pos: -21.5,35.5 parent: 2 - - uid: 5005 + - uid: 4792 components: - type: Transform - pos: -14.5,58.5 + pos: -14.5,36.5 parent: 2 - - uid: 5006 + - uid: 4793 components: - type: Transform - pos: -15.5,58.5 + pos: -17.5,36.5 parent: 2 - - uid: 5007 + - uid: 4794 components: - type: Transform - pos: -16.5,58.5 + pos: -15.5,36.5 parent: 2 - - uid: 5008 + - uid: 4795 components: - type: Transform - pos: -17.5,58.5 + pos: -20.5,36.5 parent: 2 - - uid: 5009 + - uid: 4796 components: - type: Transform - pos: -18.5,58.5 + pos: -18.5,36.5 parent: 2 - - uid: 5010 + - uid: 4797 components: - type: Transform - pos: -19.5,58.5 + pos: -21.5,36.5 parent: 2 - - uid: 5011 + - uid: 4798 components: - type: Transform - pos: -17.5,57.5 + pos: -34.5,25.5 parent: 2 - - uid: 5012 + - uid: 4799 components: - type: Transform - pos: -17.5,56.5 + pos: -16.5,43.5 parent: 2 - - uid: 5013 + - uid: 4800 components: - type: Transform - pos: -20.5,58.5 + pos: -15.5,43.5 parent: 2 - - uid: 5014 + - uid: 4801 components: - type: Transform - pos: -21.5,58.5 + pos: -14.5,43.5 parent: 2 - - uid: 5015 + - uid: 4802 components: - type: Transform - pos: -22.5,58.5 + pos: -13.5,43.5 parent: 2 - - uid: 5016 + - uid: 4803 components: - type: Transform - pos: -23.5,58.5 + pos: -12.5,43.5 parent: 2 - - uid: 5017 + - uid: 4804 components: - type: Transform - pos: -24.5,58.5 + pos: -11.5,43.5 parent: 2 - - uid: 5018 + - uid: 4805 components: - type: Transform - pos: -25.5,58.5 + pos: -10.5,43.5 parent: 2 - - uid: 5019 + - uid: 4806 components: - type: Transform - pos: -23.5,59.5 + pos: -10.5,44.5 parent: 2 - - uid: 5020 + - uid: 4807 components: - type: Transform - pos: -23.5,60.5 + pos: -10.5,45.5 parent: 2 - - uid: 5021 + - uid: 4808 components: - type: Transform - pos: -23.5,61.5 + pos: -10.5,46.5 parent: 2 - - uid: 5022 + - uid: 4809 components: - type: Transform - pos: -23.5,62.5 + pos: -14.5,42.5 parent: 2 - - uid: 5023 + - uid: 4810 components: - type: Transform - pos: -23.5,63.5 + pos: -25.5,41.5 parent: 2 - - uid: 5024 + - uid: 4811 components: - type: Transform - pos: -23.5,64.5 + pos: -25.5,42.5 parent: 2 - - uid: 5025 + - uid: 4812 components: - type: Transform - pos: -23.5,65.5 + pos: -25.5,43.5 parent: 2 - - uid: 5026 + - uid: 4813 components: - type: Transform - pos: -23.5,66.5 + pos: -25.5,44.5 parent: 2 - - uid: 5027 + - uid: 4814 components: - type: Transform - pos: -23.5,67.5 + pos: -25.5,45.5 parent: 2 - - uid: 5028 + - uid: 4815 components: - type: Transform - pos: -23.5,68.5 + pos: -25.5,46.5 parent: 2 - - uid: 5029 + - uid: 4816 components: - type: Transform - pos: -24.5,68.5 + pos: -24.5,46.5 parent: 2 - - uid: 5030 + - uid: 4817 components: - type: Transform - pos: -25.5,68.5 + pos: -24.5,47.5 parent: 2 - - uid: 5031 + - uid: 4818 components: - type: Transform - pos: -25.5,69.5 + pos: -18.5,42.5 parent: 2 - - uid: 5032 + - uid: 4819 components: - type: Transform - pos: -25.5,70.5 + pos: -18.5,43.5 parent: 2 - - uid: 5033 + - uid: 4820 components: - type: Transform - pos: -25.5,71.5 + pos: -19.5,43.5 parent: 2 - - uid: 5034 + - uid: 4821 components: - type: Transform - pos: -25.5,72.5 + pos: -20.5,43.5 parent: 2 - - uid: 5035 + - uid: 4822 components: - type: Transform - pos: -26.5,58.5 + pos: -21.5,43.5 parent: 2 - - uid: 5036 + - uid: 4823 components: - type: Transform - pos: -27.5,58.5 + pos: -22.5,43.5 parent: 2 - - uid: 5037 + - uid: 4824 components: - type: Transform - pos: -27.5,57.5 + pos: -22.5,44.5 parent: 2 - - uid: 5038 + - uid: 4825 components: - type: Transform - pos: -27.5,56.5 + pos: -22.5,45.5 parent: 2 - - uid: 5039 + - uid: 4826 components: - type: Transform - pos: -27.5,55.5 + pos: -22.5,46.5 parent: 2 - - uid: 5040 + - uid: 4827 components: - type: Transform - pos: -27.5,54.5 + pos: -12.5,36.5 parent: 2 - - uid: 5041 + - uid: 4828 components: - type: Transform - pos: -27.5,53.5 + pos: -11.5,36.5 parent: 2 - - uid: 5042 + - uid: 4829 components: - type: Transform - pos: -27.5,52.5 + pos: -10.5,36.5 parent: 2 - - uid: 5043 + - uid: 4830 components: - type: Transform - pos: -28.5,52.5 + pos: -9.5,36.5 parent: 2 - - uid: 5044 + - uid: 4831 components: - type: Transform - pos: -29.5,52.5 + pos: -8.5,36.5 parent: 2 - - uid: 5045 + - uid: 4832 components: - type: Transform - pos: -30.5,52.5 + pos: -7.5,36.5 parent: 2 - - uid: 5046 + - uid: 4833 components: - type: Transform - pos: -31.5,52.5 + pos: -6.5,36.5 parent: 2 - - uid: 5047 + - uid: 4834 components: - type: Transform - pos: -31.5,53.5 + pos: -5.5,36.5 parent: 2 - - uid: 5048 + - uid: 4835 components: - type: Transform - pos: -31.5,54.5 + pos: -4.5,36.5 parent: 2 - - uid: 5049 + - uid: 4836 components: - type: Transform - pos: -28.5,58.5 + pos: -3.5,36.5 parent: 2 - - uid: 5050 + - uid: 4837 components: - type: Transform - pos: -29.5,58.5 + pos: -2.5,36.5 parent: 2 - - uid: 5051 + - uid: 4838 components: - type: Transform - pos: -30.5,58.5 + pos: -2.5,37.5 parent: 2 - - uid: 5052 + - uid: 4839 components: - type: Transform - pos: -30.5,59.5 + pos: -10.5,21.5 parent: 2 - - uid: 5053 + - uid: 4840 components: - type: Transform - pos: -30.5,59.5 + pos: -9.5,21.5 parent: 2 - - uid: 5054 + - uid: 4841 components: - type: Transform - pos: -30.5,60.5 + pos: -9.5,22.5 parent: 2 - - uid: 5055 + - uid: 4842 components: - type: Transform - pos: -30.5,61.5 + pos: -9.5,23.5 parent: 2 - - uid: 5056 + - uid: 4843 components: - type: Transform - pos: -30.5,62.5 + pos: -9.5,24.5 parent: 2 - - uid: 5057 + - uid: 4844 components: - type: Transform - pos: -30.5,63.5 + pos: -9.5,25.5 parent: 2 - - uid: 5058 + - uid: 4845 components: - type: Transform - pos: -30.5,64.5 + pos: -9.5,26.5 parent: 2 - - uid: 5059 + - uid: 4846 components: - type: Transform - pos: -30.5,65.5 + pos: -9.5,27.5 parent: 2 - - uid: 5060 + - uid: 4847 components: - type: Transform - pos: -30.5,66.5 + pos: -8.5,27.5 parent: 2 - - uid: 5061 + - uid: 4848 components: - type: Transform - pos: -30.5,67.5 + pos: -7.5,27.5 parent: 2 - - uid: 5062 + - uid: 4849 components: - type: Transform - pos: -30.5,68.5 + pos: -6.5,27.5 parent: 2 - - uid: 5063 + - uid: 4850 components: - type: Transform - pos: -34.5,68.5 + pos: -5.5,27.5 parent: 2 - - uid: 5067 + - uid: 4851 components: - type: Transform - pos: -22.5,75.5 + pos: -4.5,27.5 parent: 2 - - uid: 5070 + - uid: 4852 components: - type: Transform - pos: -32.5,68.5 + pos: -3.5,27.5 parent: 2 - - uid: 5071 + - uid: 4853 components: - type: Transform - pos: -33.5,68.5 + pos: -3.5,28.5 parent: 2 - - uid: 5072 + - uid: 4854 components: - type: Transform - pos: -35.5,68.5 + pos: -11.5,20.5 parent: 2 - - uid: 5073 + - uid: 4855 components: - type: Transform - pos: -36.5,68.5 + pos: -11.5,21.5 parent: 2 - - uid: 5074 + - uid: 4856 components: - type: Transform - pos: -36.5,67.5 + pos: -11.5,19.5 parent: 2 - - uid: 5075 + - uid: 4857 components: - type: Transform - pos: -24.5,72.5 + pos: -12.5,19.5 parent: 2 - - uid: 5076 + - uid: 4858 components: - type: Transform - pos: -23.5,72.5 + pos: -13.5,19.5 parent: 2 - - uid: 5077 + - uid: 4859 components: - type: Transform - pos: -22.5,72.5 + pos: -14.5,19.5 parent: 2 - - uid: 5078 + - uid: 4860 components: - type: Transform - pos: -11.5,68.5 + pos: -15.5,19.5 parent: 2 - - uid: 5079 + - uid: 4861 components: - type: Transform - pos: -11.5,69.5 + pos: -16.5,19.5 parent: 2 - - uid: 5081 + - uid: 4862 components: - type: Transform - pos: -11.5,71.5 + pos: -17.5,19.5 parent: 2 - - uid: 5083 + - uid: 4863 components: - type: Transform - pos: -10.5,71.5 + pos: -18.5,19.5 parent: 2 - - uid: 5084 + - uid: 4864 components: - type: Transform - pos: -9.5,71.5 + pos: -18.5,18.5 parent: 2 - - uid: 5085 + - uid: 4865 components: - type: Transform - pos: -8.5,71.5 + pos: -18.5,18.5 parent: 2 - - uid: 5086 + - uid: 4866 components: - type: Transform - pos: -7.5,71.5 + pos: -19.5,18.5 parent: 2 - - uid: 5087 + - uid: 4867 components: - type: Transform - pos: -6.5,71.5 + pos: -20.5,18.5 parent: 2 - - uid: 5088 + - uid: 4868 components: - type: Transform - pos: -5.5,71.5 + pos: -21.5,18.5 parent: 2 - - uid: 5089 + - uid: 4869 components: - type: Transform - pos: -5.5,70.5 + pos: -22.5,18.5 parent: 2 - - uid: 5090 + - uid: 4870 components: - type: Transform - pos: -5.5,69.5 + pos: -23.5,18.5 parent: 2 - - uid: 5091 + - uid: 4871 components: - type: Transform - pos: -14.5,63.5 + pos: -23.5,16.5 parent: 2 - - uid: 5092 + - uid: 4872 components: - type: Transform - pos: -13.5,63.5 + pos: -23.5,16.5 parent: 2 - - uid: 5093 + - uid: 4873 components: - type: Transform - pos: -13.5,62.5 + pos: -23.5,17.5 parent: 2 - - uid: 5094 + - uid: 4874 components: - type: Transform - pos: -13.5,61.5 + pos: -23.5,15.5 parent: 2 - - uid: 5095 + - uid: 4875 components: - type: Transform - pos: -13.5,60.5 + pos: -22.5,19.5 parent: 2 - - uid: 5096 + - uid: 4876 components: - type: Transform - pos: -13.5,59.5 + pos: -22.5,20.5 parent: 2 - - uid: 5097 + - uid: 4877 components: - type: Transform - pos: -14.5,59.5 + pos: -22.5,21.5 parent: 2 - - uid: 5098 + - uid: 4878 components: - type: Transform - pos: -16.5,59.5 + pos: -22.5,22.5 parent: 2 - - uid: 5099 + - uid: 4879 components: - type: Transform - pos: -18.5,59.5 + pos: -23.5,24.5 parent: 2 - - uid: 5100 + - uid: 4880 components: - type: Transform - pos: -17.5,65.5 + pos: -23.5,23.5 parent: 2 - - uid: 5101 + - uid: 4881 components: - type: Transform - pos: -18.5,65.5 + pos: -23.5,22.5 parent: 2 - - uid: 5102 + - uid: 4882 components: - type: Transform - pos: -19.5,65.5 + pos: -24.5,22.5 parent: 2 - - uid: 5103 + - uid: 4883 components: - type: Transform - pos: -16.5,56.5 + pos: -9.5,45.5 parent: 2 - - uid: 5104 + - uid: 4884 components: - type: Transform - pos: -16.5,55.5 + pos: -8.5,45.5 parent: 2 - - uid: 5105 + - uid: 4885 components: - type: Transform - pos: -16.5,54.5 + pos: -8.5,46.5 parent: 2 - - uid: 5106 + - uid: 4886 components: - type: Transform - pos: -20.5,57.5 + pos: -20.5,9.5 parent: 2 - - uid: 5107 + - uid: 4887 components: - type: Transform - pos: -20.5,56.5 + pos: -21.5,9.5 parent: 2 - - uid: 5108 + - uid: 4888 components: - type: Transform - pos: -17.5,55.5 + pos: -21.5,8.5 parent: 2 - - uid: 5109 + - uid: 4889 components: - type: Transform - pos: -17.5,54.5 + pos: -21.5,7.5 parent: 2 - - uid: 5110 + - uid: 4890 components: - type: Transform - pos: -17.5,53.5 + pos: -21.5,6.5 parent: 2 - - uid: 5111 + - uid: 4891 components: - type: Transform - pos: -17.5,52.5 + pos: -18.5,4.5 parent: 2 - - uid: 5112 + - uid: 4892 components: - type: Transform - pos: -17.5,51.5 + pos: -17.5,4.5 parent: 2 - - uid: 5113 + - uid: 4893 components: - type: Transform - pos: -17.5,50.5 + pos: -17.5,5.5 parent: 2 - - uid: 5114 + - uid: 4894 components: - type: Transform - pos: -18.5,50.5 + pos: -17.5,6.5 parent: 2 - - uid: 5115 + - uid: 4895 components: - type: Transform - pos: -19.5,50.5 + pos: -17.5,7.5 parent: 2 - - uid: 5116 + - uid: 4896 components: - type: Transform - pos: -20.5,50.5 + pos: -17.5,8.5 parent: 2 - - uid: 5117 + - uid: 4897 components: - type: Transform - pos: -21.5,50.5 + pos: -16.5,8.5 parent: 2 - - uid: 5118 + - uid: 4898 components: - type: Transform - pos: -22.5,50.5 + pos: -15.5,8.5 parent: 2 - - uid: 5119 + - uid: 4899 components: - type: Transform - pos: -23.5,50.5 + pos: -14.5,8.5 parent: 2 - - uid: 5120 + - uid: 4900 components: - type: Transform - pos: -24.5,50.5 + pos: -13.5,8.5 parent: 2 - - uid: 5121 + - uid: 4901 components: - type: Transform - pos: -32.5,52.5 + pos: -13.5,7.5 parent: 2 - - uid: 5122 + - uid: 4902 components: - type: Transform - pos: -33.5,52.5 + pos: -13.5,7.5 parent: 2 - - uid: 5123 + - uid: 4903 components: - type: Transform - pos: -31.5,58.5 + pos: -12.5,7.5 parent: 2 - - uid: 5124 + - uid: 4904 components: - type: Transform - pos: -32.5,58.5 + pos: -11.5,7.5 parent: 2 - - uid: 5125 + - uid: 4905 components: - type: Transform - pos: -33.5,58.5 + pos: -11.5,8.5 parent: 2 - - uid: 5126 + - uid: 4906 components: - type: Transform - pos: -34.5,58.5 + pos: -11.5,9.5 parent: 2 - - uid: 5127 + - uid: 4907 components: - type: Transform - pos: -35.5,58.5 + pos: -11.5,10.5 parent: 2 - - uid: 5128 + - uid: 4908 components: - type: Transform - pos: -35.5,57.5 + pos: -10.5,10.5 parent: 2 - - uid: 5129 + - uid: 4909 components: - type: Transform - pos: -35.5,56.5 + pos: -9.5,10.5 parent: 2 - - uid: 5130 + - uid: 4910 components: - type: Transform - pos: -35.5,55.5 + pos: -8.5,10.5 parent: 2 - - uid: 5131 + - uid: 4911 components: - type: Transform - pos: 30.5,-0.5 + pos: -7.5,10.5 parent: 2 - - uid: 5132 + - uid: 4912 components: - type: Transform - pos: 29.5,1.5 + pos: -6.5,10.5 parent: 2 - - uid: 5133 + - uid: 4913 components: - type: Transform - pos: 29.5,2.5 + pos: -5.5,10.5 parent: 2 - - uid: 5134 + - uid: 4914 components: - type: Transform - pos: 29.5,0.5 + pos: -5.5,10.5 parent: 2 - - uid: 5135 + - uid: 4915 components: - type: Transform - pos: 29.5,-0.5 + pos: -5.5,11.5 parent: 2 - - uid: 5136 + - uid: 4916 components: - type: Transform - pos: 29.5,-1.5 + pos: -5.5,12.5 parent: 2 - - uid: 5137 + - uid: 4917 components: - type: Transform - pos: 30.5,-1.5 + pos: -5.5,13.5 parent: 2 - - uid: 5138 + - uid: 4918 components: - type: Transform - pos: 41.5,2.5 + pos: -5.5,14.5 parent: 2 - - uid: 5139 + - uid: 4919 components: - type: Transform - pos: 42.5,2.5 + pos: -5.5,15.5 parent: 2 - - uid: 5140 + - uid: 4920 components: - type: Transform - pos: 42.5,3.5 + pos: -5.5,16.5 parent: 2 - - uid: 5141 + - uid: 4921 components: - type: Transform - pos: 42.5,4.5 + pos: -4.5,10.5 parent: 2 - - uid: 5142 + - uid: 4922 components: - type: Transform - pos: 41.5,4.5 + pos: -3.5,10.5 parent: 2 - - uid: 5143 + - uid: 4923 components: - type: Transform - pos: 40.5,4.5 + pos: -2.5,10.5 parent: 2 - - uid: 5144 + - uid: 4924 components: - type: Transform - pos: 39.5,4.5 + pos: -1.5,10.5 parent: 2 - - uid: 5145 + - uid: 4925 components: - type: Transform - pos: 38.5,4.5 + pos: -0.5,10.5 parent: 2 - - uid: 5146 + - uid: 4926 components: - type: Transform - pos: 37.5,4.5 + pos: 0.5,10.5 parent: 2 - - uid: 5147 + - uid: 4927 components: - type: Transform - pos: 36.5,4.5 + pos: 1.5,10.5 parent: 2 - - uid: 5148 + - uid: 4928 components: - type: Transform - pos: 35.5,4.5 + pos: 2.5,10.5 parent: 2 - - uid: 5149 + - uid: 4929 components: - type: Transform - pos: 35.5,5.5 + pos: 3.5,10.5 parent: 2 - - uid: 5150 + - uid: 4930 components: - type: Transform - pos: 35.5,6.5 + pos: 4.5,10.5 parent: 2 - - uid: 5151 + - uid: 4931 components: - type: Transform - pos: 35.5,7.5 + pos: 4.5,11.5 parent: 2 - - uid: 5152 + - uid: 4932 components: - type: Transform - pos: 35.5,8.5 + pos: 4.5,12.5 parent: 2 - - uid: 5153 + - uid: 4933 components: - type: Transform - pos: 34.5,8.5 + pos: 4.5,12.5 parent: 2 - - uid: 5154 + - uid: 4934 components: - type: Transform - pos: 39.5,9.5 + pos: 5.5,12.5 parent: 2 - - uid: 5155 + - uid: 4935 components: - type: Transform - pos: 39.5,8.5 + pos: 6.5,12.5 parent: 2 - - uid: 5156 + - uid: 4936 components: - type: Transform - pos: 38.5,8.5 + pos: 7.5,12.5 parent: 2 - - uid: 5157 + - uid: 4937 components: - type: Transform - pos: 37.5,8.5 + pos: 8.5,12.5 parent: 2 - - uid: 5158 + - uid: 4938 components: - type: Transform - pos: 36.5,8.5 + pos: 9.5,12.5 parent: 2 - - uid: 5159 + - uid: 4939 components: - type: Transform - pos: 39.5,10.5 + pos: 10.5,12.5 parent: 2 - - uid: 5160 + - uid: 4940 components: - type: Transform - pos: 39.5,11.5 + pos: 11.5,12.5 parent: 2 - - uid: 5161 + - uid: 4941 components: - type: Transform - pos: 39.5,12.5 + pos: 11.5,13.5 parent: 2 - - uid: 5162 + - uid: 4942 components: - type: Transform - pos: 39.5,13.5 + pos: 12.5,13.5 parent: 2 - - uid: 5163 + - uid: 4943 components: - type: Transform - pos: 39.5,14.5 + pos: 13.5,13.5 parent: 2 - - uid: 5164 + - uid: 4944 components: - type: Transform - pos: 39.5,15.5 + pos: 4.5,13.5 parent: 2 - - uid: 5165 + - uid: 4945 components: - type: Transform - pos: 38.5,15.5 + pos: 4.5,14.5 parent: 2 - - uid: 5166 + - uid: 4946 components: - type: Transform - pos: 37.5,15.5 + pos: 4.5,15.5 parent: 2 - - uid: 5167 + - uid: 4947 components: - type: Transform - pos: 43.5,4.5 + pos: 4.5,16.5 parent: 2 - - uid: 5168 + - uid: 4948 components: - type: Transform - pos: 43.5,5.5 + pos: 3.5,16.5 parent: 2 - - uid: 5169 + - uid: 4949 components: - type: Transform - pos: 43.5,6.5 + pos: 2.5,16.5 parent: 2 - - uid: 5170 + - uid: 4950 components: - type: Transform - pos: 43.5,7.5 + pos: 1.5,16.5 parent: 2 - - uid: 5171 + - uid: 4951 components: - type: Transform - pos: 43.5,8.5 + pos: 0.5,16.5 parent: 2 - - uid: 5172 + - uid: 4952 components: - type: Transform - pos: 43.5,9.5 + pos: -0.5,16.5 parent: 2 - - uid: 5173 + - uid: 4953 components: - type: Transform - pos: 43.5,10.5 + pos: -0.5,17.5 parent: 2 - - uid: 5174 + - uid: 4954 components: - type: Transform - pos: 44.5,10.5 + pos: -0.5,18.5 parent: 2 - - uid: 5175 + - uid: 4955 components: - type: Transform - pos: 44.5,11.5 + pos: 5.5,10.5 parent: 2 - - uid: 5176 + - uid: 4956 components: - type: Transform - pos: 40.5,15.5 + pos: 6.5,10.5 parent: 2 - - uid: 5177 + - uid: 4957 components: - type: Transform - pos: 41.5,15.5 + pos: 7.5,10.5 parent: 2 - - uid: 5178 + - uid: 4958 components: - type: Transform - pos: 41.5,16.5 + pos: 7.5,9.5 parent: 2 - - uid: 5179 + - uid: 4959 components: - type: Transform - pos: 41.5,17.5 + pos: 7.5,8.5 parent: 2 - - uid: 5180 + - uid: 4960 components: - type: Transform - pos: 42.5,17.5 + pos: 7.5,7.5 parent: 2 - - uid: 5181 + - uid: 4961 components: - type: Transform - pos: 43.5,17.5 + pos: 7.5,6.5 parent: 2 - - uid: 5182 + - uid: 4962 components: - type: Transform - pos: 43.5,18.5 + pos: 2.5,17.5 parent: 2 - - uid: 5183 + - uid: 4963 components: - type: Transform - pos: 41.5,18.5 + pos: 2.5,15.5 parent: 2 - - uid: 5184 + - uid: 4964 components: - type: Transform - pos: 41.5,19.5 + pos: 2.5,14.5 parent: 2 - - uid: 5185 + - uid: 4965 components: - type: Transform - pos: 41.5,20.5 + pos: 2.5,13.5 parent: 2 - - uid: 5186 + - uid: 4966 components: - type: Transform - pos: 42.5,20.5 + pos: 1.5,13.5 parent: 2 - - uid: 5187 + - uid: 4967 components: - type: Transform - pos: 42.5,21.5 + pos: 0.5,13.5 parent: 2 - - uid: 5188 + - uid: 4968 components: - type: Transform - pos: 42.5,22.5 + pos: -0.5,13.5 parent: 2 - - uid: 5189 + - uid: 4969 components: - type: Transform - pos: 45.5,10.5 + pos: -2.5,68.5 parent: 2 - - uid: 5190 + - uid: 4970 components: - type: Transform - pos: 46.5,10.5 + pos: -3.5,68.5 parent: 2 - - uid: 5191 + - uid: 4971 components: - type: Transform - pos: 47.5,10.5 + pos: -3.5,69.5 parent: 2 - - uid: 5192 + - uid: 4972 components: - type: Transform - pos: 48.5,10.5 + pos: -3.5,67.5 parent: 2 - - uid: 5193 + - uid: 4973 components: - type: Transform - pos: 49.5,10.5 + pos: -4.5,67.5 parent: 2 - - uid: 5194 + - uid: 4974 components: - type: Transform - pos: 49.5,9.5 + pos: -5.5,67.5 parent: 2 - - uid: 5195 + - uid: 4975 components: - type: Transform - pos: 49.5,8.5 + pos: -6.5,67.5 parent: 2 - - uid: 5196 + - uid: 4976 components: - type: Transform - pos: 49.5,7.5 + pos: -7.5,67.5 parent: 2 - - uid: 5197 + - uid: 4977 components: - type: Transform - pos: 49.5,6.5 + pos: -8.5,67.5 parent: 2 - - uid: 5198 + - uid: 4978 components: - type: Transform - pos: 50.5,6.5 + pos: -9.5,67.5 parent: 2 - - uid: 5199 + - uid: 4979 components: - type: Transform - pos: 51.5,6.5 + pos: -10.5,67.5 parent: 2 - - uid: 5200 + - uid: 4980 components: - type: Transform - pos: 51.5,5.5 + pos: -11.5,67.5 parent: 2 - - uid: 5201 + - uid: 4981 components: - type: Transform - pos: 51.5,4.5 + pos: -11.5,66.5 parent: 2 - - uid: 5202 + - uid: 4982 components: - type: Transform - pos: 52.5,4.5 + pos: -11.5,65.5 parent: 2 - - uid: 5203 + - uid: 4983 components: - type: Transform - pos: 53.5,4.5 + pos: -11.5,64.5 parent: 2 - - uid: 5204 + - uid: 4984 components: - type: Transform - pos: 54.5,4.5 + pos: -11.5,63.5 parent: 2 - - uid: 5205 + - uid: 4985 components: - type: Transform - pos: 54.5,5.5 + pos: -11.5,62.5 parent: 2 - - uid: 5207 + - uid: 4986 components: - type: Transform - pos: -32.5,26.5 + pos: -11.5,61.5 parent: 2 - - uid: 5208 + - uid: 4987 components: - type: Transform - pos: -30.5,26.5 + pos: -11.5,60.5 parent: 2 - - uid: 5209 + - uid: 4988 components: - type: Transform - pos: -29.5,26.5 + pos: -11.5,59.5 parent: 2 - - uid: 5210 + - uid: 4989 components: - type: Transform - pos: -31.5,26.5 + pos: -11.5,58.5 parent: 2 - - uid: 5211 + - uid: 4990 components: - type: Transform - pos: -33.5,26.5 + pos: -12.5,64.5 parent: 2 - - uid: 5212 + - uid: 4991 components: - type: Transform - pos: -34.5,26.5 + pos: -13.5,64.5 parent: 2 - - uid: 5213 + - uid: 4992 components: - type: Transform - pos: -28.5,26.5 + pos: -14.5,64.5 parent: 2 - - uid: 5214 + - uid: 4993 components: - type: Transform - pos: -26.5,26.5 + pos: -14.5,65.5 parent: 2 - - uid: 5215 + - uid: 4994 components: - type: Transform - pos: -25.5,26.5 + pos: -15.5,66.5 parent: 2 - - uid: 5216 + - uid: 4995 components: - type: Transform - pos: -25.5,25.5 + pos: -14.5,66.5 parent: 2 - - uid: 5217 + - uid: 4996 components: - type: Transform - pos: -13.5,38.5 + pos: -16.5,66.5 parent: 2 - - uid: 5218 + - uid: 4997 components: - type: Transform - pos: -12.5,38.5 + pos: -17.5,66.5 parent: 2 - - uid: 5219 + - uid: 4998 components: - type: Transform - pos: -21.5,33.5 + pos: -17.5,67.5 parent: 2 - - uid: 5220 + - uid: 4999 components: - type: Transform - pos: -27.5,26.5 + pos: -17.5,68.5 parent: 2 - - uid: 5221 + - uid: 5000 components: - type: Transform - pos: -25.5,24.5 + pos: -17.5,69.5 parent: 2 - - uid: 5222 + - uid: 5001 components: - type: Transform - pos: -20.5,32.5 + pos: -17.5,70.5 parent: 2 - - uid: 5223 + - uid: 5002 components: - type: Transform - pos: -21.5,34.5 + pos: -17.5,71.5 parent: 2 - - uid: 5224 + - uid: 5003 components: - type: Transform - pos: -19.5,32.5 + pos: -12.5,58.5 parent: 2 - - uid: 5225 + - uid: 5004 components: - type: Transform - pos: -17.5,32.5 + pos: -13.5,58.5 parent: 2 - - uid: 5226 + - uid: 5005 components: - type: Transform - pos: -24.5,24.5 + pos: -14.5,58.5 parent: 2 - - uid: 5227 + - uid: 5006 components: - type: Transform - pos: -18.5,32.5 + pos: -15.5,58.5 parent: 2 - - uid: 5228 + - uid: 5007 components: - type: Transform - pos: -21.5,32.5 + pos: -16.5,58.5 parent: 2 - - uid: 5229 + - uid: 5008 components: - type: Transform - pos: -14.5,41.5 + pos: -17.5,58.5 parent: 2 - - uid: 5230 + - uid: 5009 components: - type: Transform - pos: 49.5,11.5 + pos: -18.5,58.5 parent: 2 - - uid: 5231 + - uid: 5010 components: - type: Transform - pos: 49.5,12.5 + pos: -19.5,58.5 parent: 2 - - uid: 5232 + - uid: 5011 components: - type: Transform - pos: 49.5,13.5 + pos: -17.5,57.5 parent: 2 - - uid: 5233 + - uid: 5012 components: - type: Transform - pos: 50.5,13.5 + pos: -17.5,56.5 parent: 2 - - uid: 5234 + - uid: 5013 components: - type: Transform - pos: 51.5,13.5 + pos: -20.5,58.5 parent: 2 - - uid: 5235 + - uid: 5014 components: - type: Transform - pos: 52.5,13.5 + pos: -21.5,58.5 parent: 2 - - uid: 5236 + - uid: 5015 components: - type: Transform - pos: 53.5,13.5 + pos: -22.5,58.5 parent: 2 - - uid: 5237 + - uid: 5016 components: - type: Transform - pos: 54.5,13.5 + pos: -23.5,58.5 parent: 2 - - uid: 5238 + - uid: 5017 components: - type: Transform - pos: 55.5,13.5 + pos: -24.5,58.5 parent: 2 - - uid: 5239 + - uid: 5018 components: - type: Transform - pos: 55.5,14.5 + pos: -25.5,58.5 parent: 2 - - uid: 5240 + - uid: 5019 components: - type: Transform - pos: 55.5,15.5 + pos: -23.5,59.5 parent: 2 - - uid: 5241 + - uid: 5020 components: - type: Transform - pos: 55.5,16.5 + pos: -23.5,60.5 parent: 2 - - uid: 5242 + - uid: 5021 components: - type: Transform - pos: 55.5,17.5 + pos: -23.5,61.5 parent: 2 - - uid: 5243 + - uid: 5022 components: - type: Transform - pos: 55.5,18.5 + pos: -23.5,62.5 parent: 2 - - uid: 5244 + - uid: 5023 components: - type: Transform - pos: 54.5,18.5 + pos: -23.5,63.5 parent: 2 - - uid: 5245 + - uid: 5024 components: - type: Transform - pos: 18.5,12.5 + pos: -23.5,64.5 parent: 2 - - uid: 5246 + - uid: 5025 components: - type: Transform - pos: 18.5,11.5 + pos: -23.5,65.5 parent: 2 - - uid: 5247 + - uid: 5026 components: - type: Transform - pos: 18.5,10.5 + pos: -23.5,66.5 parent: 2 - - uid: 5248 + - uid: 5027 components: - type: Transform - pos: 18.5,9.5 + pos: -23.5,67.5 parent: 2 - - uid: 5249 + - uid: 5028 components: - type: Transform - pos: 18.5,8.5 + pos: -23.5,68.5 parent: 2 - - uid: 5250 + - uid: 5029 components: - type: Transform - pos: 18.5,7.5 + pos: -24.5,68.5 parent: 2 - - uid: 5251 + - uid: 5030 components: - type: Transform - pos: 18.5,6.5 + pos: -25.5,68.5 parent: 2 - - uid: 5252 + - uid: 5031 components: - type: Transform - pos: 19.5,6.5 + pos: -25.5,69.5 parent: 2 - - uid: 5253 + - uid: 5032 components: - type: Transform - pos: 20.5,6.5 + pos: -25.5,70.5 parent: 2 - - uid: 5254 + - uid: 5033 components: - type: Transform - pos: 21.5,6.5 + pos: -25.5,71.5 parent: 2 - - uid: 5255 + - uid: 5034 components: - type: Transform - pos: 22.5,6.5 + pos: -25.5,72.5 parent: 2 - - uid: 5256 + - uid: 5035 components: - type: Transform - pos: 23.5,6.5 + pos: -26.5,58.5 parent: 2 - - uid: 5257 + - uid: 5036 components: - type: Transform - pos: 24.5,6.5 + pos: -27.5,58.5 parent: 2 - - uid: 5258 + - uid: 5037 components: - type: Transform - pos: 25.5,6.5 + pos: -27.5,57.5 parent: 2 - - uid: 5259 + - uid: 5038 components: - type: Transform - pos: 25.5,7.5 + pos: -27.5,56.5 parent: 2 - - uid: 5260 + - uid: 5039 components: - type: Transform - pos: 25.5,8.5 + pos: -27.5,55.5 parent: 2 - - uid: 5261 + - uid: 5040 components: - type: Transform - pos: 25.5,9.5 + pos: -27.5,54.5 parent: 2 - - uid: 5262 + - uid: 5041 components: - type: Transform - pos: 25.5,10.5 + pos: -27.5,53.5 parent: 2 - - uid: 5263 + - uid: 5042 components: - type: Transform - pos: 25.5,11.5 + pos: -27.5,52.5 parent: 2 - - uid: 5264 + - uid: 5043 components: - type: Transform - pos: 25.5,12.5 + pos: -28.5,52.5 parent: 2 - - uid: 5265 + - uid: 5044 components: - type: Transform - pos: 25.5,13.5 + pos: -29.5,52.5 parent: 2 - - uid: 5266 + - uid: 5045 components: - type: Transform - pos: 25.5,14.5 + pos: -30.5,52.5 parent: 2 - - uid: 5267 + - uid: 5046 components: - type: Transform - pos: 25.5,15.5 + pos: -31.5,52.5 parent: 2 - - uid: 5268 + - uid: 5047 components: - type: Transform - pos: 25.5,16.5 + pos: -31.5,53.5 parent: 2 - - uid: 5269 + - uid: 5048 components: - type: Transform - pos: 26.5,16.5 + pos: -31.5,54.5 parent: 2 - - uid: 5270 + - uid: 5049 components: - type: Transform - pos: 24.5,18.5 + pos: -28.5,58.5 parent: 2 - - uid: 5271 + - uid: 5050 components: - type: Transform - pos: 26.5,18.5 + pos: -29.5,58.5 parent: 2 - - uid: 5272 + - uid: 5051 components: - type: Transform - pos: 26.5,17.5 + pos: -30.5,58.5 parent: 2 - - uid: 5273 + - uid: 5052 components: - type: Transform - pos: -11.5,57.5 + pos: -30.5,59.5 parent: 2 - - uid: 5274 + - uid: 5053 components: - type: Transform - pos: -11.5,56.5 + pos: -30.5,59.5 parent: 2 - - uid: 5275 + - uid: 5054 components: - type: Transform - pos: -10.5,56.5 + pos: -30.5,60.5 parent: 2 - - uid: 5276 + - uid: 5055 components: - type: Transform - pos: -9.5,56.5 + pos: -30.5,61.5 parent: 2 - - uid: 5277 + - uid: 5056 components: - type: Transform - pos: -8.5,56.5 + pos: -30.5,62.5 parent: 2 - - uid: 5278 + - uid: 5057 components: - type: Transform - pos: -8.5,57.5 + pos: -30.5,63.5 parent: 2 - - uid: 5279 + - uid: 5058 components: - type: Transform - pos: -7.5,56.5 + pos: -30.5,64.5 parent: 2 - - uid: 5280 + - uid: 5059 components: - type: Transform - pos: -6.5,56.5 + pos: -30.5,65.5 parent: 2 - - uid: 5281 + - uid: 5060 components: - type: Transform - pos: -5.5,56.5 + pos: -30.5,66.5 parent: 2 - - uid: 5282 + - uid: 5061 components: - type: Transform - pos: -4.5,56.5 + pos: -30.5,67.5 parent: 2 - - uid: 5283 + - uid: 5062 components: - type: Transform - pos: -3.5,56.5 + pos: -30.5,68.5 parent: 2 - - uid: 5284 + - uid: 5063 components: - type: Transform - pos: -2.5,56.5 + pos: -34.5,68.5 parent: 2 - - uid: 5285 + - uid: 5067 components: - type: Transform - pos: -1.5,56.5 + pos: -22.5,75.5 parent: 2 - - uid: 5286 + - uid: 5070 components: - type: Transform - pos: -0.5,56.5 + pos: -32.5,68.5 parent: 2 - - uid: 5287 + - uid: 5071 components: - type: Transform - pos: -0.5,57.5 + pos: -33.5,68.5 parent: 2 - - uid: 5288 + - uid: 5072 components: - type: Transform - pos: -0.5,58.5 + pos: -35.5,68.5 parent: 2 - - uid: 5289 + - uid: 5073 components: - type: Transform - pos: -0.5,59.5 + pos: -36.5,68.5 parent: 2 - - uid: 5290 + - uid: 5074 components: - type: Transform - pos: -1.5,59.5 + pos: -36.5,67.5 parent: 2 - - uid: 5291 + - uid: 5075 components: - type: Transform - pos: -2.5,59.5 + pos: -24.5,72.5 parent: 2 - - uid: 5292 + - uid: 5076 components: - type: Transform - pos: -3.5,64.5 + pos: -23.5,72.5 parent: 2 - - uid: 5293 + - uid: 5077 components: - type: Transform - pos: -3.5,63.5 + pos: -22.5,72.5 parent: 2 - - uid: 5294 + - uid: 5078 components: - type: Transform - pos: -2.5,63.5 + pos: -11.5,68.5 parent: 2 - - uid: 5295 + - uid: 5079 components: - type: Transform - pos: -1.5,63.5 + pos: -11.5,69.5 parent: 2 - - uid: 5296 + - uid: 5081 components: - type: Transform - pos: -0.5,63.5 + pos: -11.5,71.5 parent: 2 - - uid: 5297 + - uid: 5083 components: - type: Transform - pos: 0.5,63.5 + pos: -10.5,71.5 parent: 2 - - uid: 5298 + - uid: 5084 components: - type: Transform - pos: 1.5,63.5 + pos: -9.5,71.5 parent: 2 - - uid: 5299 + - uid: 5085 components: - type: Transform - pos: 2.5,63.5 + pos: -8.5,71.5 parent: 2 - - uid: 5300 + - uid: 5086 components: - type: Transform - pos: 3.5,63.5 + pos: -7.5,71.5 parent: 2 - - uid: 5301 + - uid: 5087 components: - type: Transform - pos: 3.5,65.5 + pos: -6.5,71.5 parent: 2 - - uid: 5302 + - uid: 5088 components: - type: Transform - pos: 3.5,64.5 + pos: -5.5,71.5 parent: 2 - - uid: 5303 + - uid: 5089 components: - type: Transform - pos: 3.5,65.5 + pos: -5.5,70.5 parent: 2 - - uid: 5304 + - uid: 5090 components: - type: Transform - pos: 4.5,64.5 + pos: -5.5,69.5 parent: 2 - - uid: 5305 + - uid: 5091 components: - type: Transform - pos: 5.5,64.5 + pos: -14.5,63.5 parent: 2 - - uid: 5306 + - uid: 5092 components: - type: Transform - pos: 6.5,64.5 + pos: -13.5,63.5 parent: 2 - - uid: 5307 + - uid: 5093 components: - type: Transform - pos: 7.5,64.5 + pos: -13.5,62.5 parent: 2 - - uid: 5308 + - uid: 5094 components: - type: Transform - pos: 8.5,64.5 + pos: -13.5,61.5 parent: 2 - - uid: 5309 + - uid: 5095 components: - type: Transform - pos: 9.5,64.5 + pos: -13.5,60.5 parent: 2 - - uid: 5310 + - uid: 5096 components: - type: Transform - pos: 10.5,64.5 + pos: -13.5,59.5 parent: 2 - - uid: 5311 + - uid: 5097 components: - type: Transform - pos: 11.5,64.5 + pos: -14.5,59.5 parent: 2 - - uid: 5312 + - uid: 5098 components: - type: Transform - pos: 12.5,64.5 + pos: -16.5,59.5 parent: 2 - - uid: 5313 + - uid: 5099 components: - type: Transform - pos: 13.5,64.5 + pos: -18.5,59.5 parent: 2 - - uid: 5314 + - uid: 5100 components: - type: Transform - pos: 13.5,65.5 + pos: -17.5,65.5 parent: 2 - - uid: 5315 + - uid: 5101 components: - type: Transform - pos: 13.5,66.5 + pos: -18.5,65.5 parent: 2 - - uid: 5316 + - uid: 5102 components: - type: Transform - pos: 13.5,67.5 + pos: -19.5,65.5 parent: 2 - - uid: 5317 + - uid: 5103 components: - type: Transform - pos: 13.5,68.5 + pos: -16.5,56.5 parent: 2 - - uid: 5318 + - uid: 5104 components: - type: Transform - pos: 14.5,68.5 + pos: -16.5,55.5 parent: 2 - - uid: 5319 + - uid: 5105 components: - type: Transform - pos: 14.5,69.5 + pos: -16.5,54.5 parent: 2 - - uid: 5320 + - uid: 5106 components: - type: Transform - pos: 14.5,70.5 + pos: -20.5,57.5 parent: 2 - - uid: 5321 + - uid: 5107 components: - type: Transform - pos: 14.5,71.5 + pos: -20.5,56.5 parent: 2 - - uid: 5322 + - uid: 5108 components: - type: Transform - pos: 14.5,72.5 + pos: -17.5,55.5 parent: 2 - - uid: 5323 + - uid: 5109 components: - type: Transform - pos: 14.5,73.5 + pos: -17.5,54.5 parent: 2 - - uid: 5324 + - uid: 5110 components: - type: Transform - pos: 14.5,74.5 + pos: -17.5,53.5 parent: 2 - - uid: 5325 + - uid: 5111 components: - type: Transform - pos: 13.5,74.5 + pos: -17.5,52.5 parent: 2 - - uid: 5326 + - uid: 5112 components: - type: Transform - pos: 12.5,74.5 + pos: -17.5,51.5 parent: 2 - - uid: 5327 + - uid: 5113 components: - type: Transform - pos: 11.5,74.5 + pos: -17.5,50.5 parent: 2 - - uid: 5328 + - uid: 5114 components: - type: Transform - pos: 11.5,75.5 + pos: -18.5,50.5 parent: 2 - - uid: 5329 + - uid: 5115 components: - type: Transform - pos: 11.5,76.5 + pos: -19.5,50.5 parent: 2 - - uid: 5330 + - uid: 5116 components: - type: Transform - pos: 13.5,63.5 + pos: -20.5,50.5 parent: 2 - - uid: 5331 + - uid: 5117 components: - type: Transform - pos: 18.5,60.5 + pos: -21.5,50.5 parent: 2 - - uid: 5332 + - uid: 5118 components: - type: Transform - pos: 19.5,60.5 + pos: -22.5,50.5 parent: 2 - - uid: 5333 + - uid: 5119 components: - type: Transform - pos: 20.5,60.5 + pos: -23.5,50.5 parent: 2 - - uid: 5334 + - uid: 5120 components: - type: Transform - pos: 21.5,60.5 + pos: -24.5,50.5 parent: 2 - - uid: 5335 + - uid: 5121 components: - type: Transform - pos: 22.5,60.5 + pos: -32.5,52.5 parent: 2 - - uid: 5336 + - uid: 5122 components: - type: Transform - pos: 23.5,60.5 + pos: -33.5,52.5 parent: 2 - - uid: 5337 + - uid: 5123 components: - type: Transform - pos: 24.5,60.5 + pos: -31.5,58.5 parent: 2 - - uid: 5338 + - uid: 5124 components: - type: Transform - pos: 25.5,60.5 + pos: -32.5,58.5 parent: 2 - - uid: 5339 + - uid: 5125 components: - type: Transform - pos: 26.5,60.5 + pos: -33.5,58.5 parent: 2 - - uid: 5340 + - uid: 5126 components: - type: Transform - pos: 27.5,60.5 + pos: -34.5,58.5 parent: 2 - - uid: 5341 + - uid: 5127 components: - type: Transform - pos: 28.5,60.5 + pos: -35.5,58.5 parent: 2 - - uid: 5342 + - uid: 5128 components: - type: Transform - pos: 29.5,60.5 + pos: -35.5,57.5 parent: 2 - - uid: 5343 + - uid: 5129 components: - type: Transform - pos: 30.5,60.5 + pos: -35.5,56.5 parent: 2 - - uid: 5344 + - uid: 5130 components: - type: Transform - pos: 31.5,60.5 + pos: -35.5,55.5 parent: 2 - - uid: 5345 + - uid: 5131 components: - type: Transform - pos: 31.5,61.5 + pos: 30.5,-0.5 parent: 2 - - uid: 5346 + - uid: 5132 components: - type: Transform - pos: 32.5,61.5 + pos: 29.5,1.5 parent: 2 - - uid: 5347 + - uid: 5133 components: - type: Transform - pos: 33.5,61.5 + pos: 29.5,2.5 parent: 2 - - uid: 5348 + - uid: 5134 components: - type: Transform - pos: 33.5,62.5 + pos: 29.5,0.5 parent: 2 - - uid: 5349 + - uid: 5135 components: - type: Transform - pos: 33.5,63.5 + pos: 29.5,-0.5 parent: 2 - - uid: 5350 + - uid: 5136 components: - type: Transform - pos: 34.5,63.5 + pos: 29.5,-1.5 parent: 2 - - uid: 5351 + - uid: 5137 components: - type: Transform - pos: 35.5,63.5 + pos: 30.5,-1.5 parent: 2 - - uid: 5352 + - uid: 5138 components: - type: Transform - pos: 44.5,17.5 + pos: 41.5,2.5 parent: 2 - - uid: 5353 + - uid: 5139 components: - type: Transform - pos: 45.5,17.5 + pos: 42.5,2.5 parent: 2 - - uid: 5354 + - uid: 5140 components: - type: Transform - pos: 46.5,17.5 + pos: 42.5,3.5 parent: 2 - - uid: 5355 + - uid: 5141 components: - type: Transform - pos: 47.5,17.5 + pos: 42.5,4.5 parent: 2 - - uid: 5356 + - uid: 5142 components: - type: Transform - pos: 47.5,18.5 + pos: 41.5,4.5 parent: 2 - - uid: 5357 + - uid: 5143 components: - type: Transform - pos: 47.5,19.5 + pos: 40.5,4.5 parent: 2 - - uid: 5358 + - uid: 5144 components: - type: Transform - pos: 47.5,20.5 + pos: 39.5,4.5 parent: 2 - - uid: 5359 + - uid: 5145 components: - type: Transform - pos: 47.5,21.5 + pos: 38.5,4.5 parent: 2 - - uid: 5360 + - uid: 5146 components: - type: Transform - pos: 47.5,22.5 + pos: 37.5,4.5 parent: 2 - - uid: 5361 + - uid: 5147 components: - type: Transform - pos: 47.5,23.5 + pos: 36.5,4.5 parent: 2 - - uid: 5362 + - uid: 5148 components: - type: Transform - pos: 47.5,24.5 + pos: 35.5,4.5 parent: 2 - - uid: 5363 + - uid: 5149 components: - type: Transform - pos: 47.5,25.5 + pos: 35.5,5.5 parent: 2 - - uid: 5364 + - uid: 5150 components: - type: Transform - pos: 47.5,26.5 + pos: 35.5,6.5 parent: 2 - - uid: 5365 + - uid: 5151 components: - type: Transform - pos: 47.5,27.5 + pos: 35.5,7.5 parent: 2 - - uid: 5366 + - uid: 5152 components: - type: Transform - pos: 47.5,28.5 + pos: 35.5,8.5 parent: 2 - - uid: 5367 + - uid: 5153 components: - type: Transform - pos: 47.5,29.5 + pos: 34.5,8.5 parent: 2 - - uid: 5368 + - uid: 5154 components: - type: Transform - pos: 46.5,29.5 + pos: 39.5,9.5 parent: 2 - - uid: 5369 + - uid: 5155 components: - type: Transform - pos: 45.5,29.5 + pos: 39.5,8.5 parent: 2 - - uid: 5370 + - uid: 5156 components: - type: Transform - pos: 56.5,13.5 + pos: 38.5,8.5 parent: 2 - - uid: 5371 + - uid: 5157 components: - type: Transform - pos: 57.5,13.5 + pos: 37.5,8.5 parent: 2 - - uid: 5372 + - uid: 5158 components: - type: Transform - pos: 58.5,13.5 + pos: 36.5,8.5 parent: 2 - - uid: 5373 + - uid: 5159 components: - type: Transform - pos: 59.5,13.5 + pos: 39.5,10.5 parent: 2 - - uid: 5374 + - uid: 5160 components: - type: Transform - pos: 60.5,13.5 + pos: 39.5,11.5 parent: 2 - - uid: 5375 + - uid: 5161 components: - type: Transform - pos: 61.5,13.5 + pos: 39.5,12.5 parent: 2 - - uid: 5376 + - uid: 5162 components: - type: Transform - pos: 61.5,14.5 + pos: 39.5,13.5 parent: 2 - - uid: 5377 + - uid: 5163 components: - type: Transform - pos: 61.5,15.5 + pos: 39.5,14.5 parent: 2 - - uid: 5378 + - uid: 5164 components: - type: Transform - pos: 61.5,16.5 + pos: 39.5,15.5 parent: 2 - - uid: 5379 + - uid: 5165 components: - type: Transform - pos: 61.5,17.5 + pos: 38.5,15.5 parent: 2 - - uid: 5380 + - uid: 5166 components: - type: Transform - pos: 61.5,18.5 + pos: 37.5,15.5 parent: 2 - - uid: 5381 + - uid: 5167 components: - type: Transform - pos: 62.5,18.5 + pos: 43.5,4.5 parent: 2 - - uid: 5382 + - uid: 5168 components: - type: Transform - pos: 62.5,19.5 + pos: 43.5,5.5 parent: 2 - - uid: 5383 + - uid: 5169 components: - type: Transform - pos: 62.5,20.5 + pos: 43.5,6.5 parent: 2 - - uid: 5384 + - uid: 5170 components: - type: Transform - pos: 62.5,21.5 + pos: 43.5,7.5 parent: 2 - - uid: 5385 + - uid: 5171 components: - type: Transform - pos: 62.5,22.5 + pos: 43.5,8.5 parent: 2 - - uid: 5386 + - uid: 5172 components: - type: Transform - pos: 62.5,23.5 + pos: 43.5,9.5 parent: 2 - - uid: 5387 + - uid: 5173 components: - type: Transform - pos: 62.5,24.5 + pos: 43.5,10.5 parent: 2 - - uid: 5388 + - uid: 5174 components: - type: Transform - pos: 62.5,25.5 + pos: 44.5,10.5 parent: 2 - - uid: 5389 + - uid: 5175 components: - type: Transform - pos: 61.5,25.5 + pos: 44.5,11.5 parent: 2 - - uid: 5390 + - uid: 5176 components: - type: Transform - pos: 60.5,25.5 + pos: 40.5,15.5 parent: 2 - - uid: 5391 + - uid: 5177 components: - type: Transform - pos: 60.5,26.5 + pos: 41.5,15.5 parent: 2 - - uid: 5392 + - uid: 5178 components: - type: Transform - pos: 60.5,27.5 + pos: 41.5,16.5 parent: 2 - - uid: 5393 + - uid: 5179 components: - type: Transform - pos: 43.5,3.5 + pos: 41.5,17.5 parent: 2 - - uid: 5394 + - uid: 5180 components: - type: Transform - pos: 52.5,59.5 + pos: 42.5,17.5 parent: 2 - - uid: 5395 + - uid: 5181 components: - type: Transform - pos: 51.5,59.5 + pos: 43.5,17.5 parent: 2 - - uid: 5396 + - uid: 5182 components: - type: Transform - pos: 51.5,58.5 + pos: 43.5,18.5 parent: 2 - - uid: 5397 + - uid: 5183 components: - type: Transform - pos: 51.5,57.5 + pos: 41.5,18.5 parent: 2 - - uid: 5398 + - uid: 5184 components: - type: Transform - pos: 51.5,56.5 + pos: 41.5,19.5 parent: 2 - - uid: 5399 + - uid: 5185 components: - type: Transform - pos: 50.5,56.5 + pos: 41.5,20.5 parent: 2 - - uid: 5400 + - uid: 5186 components: - type: Transform - pos: 49.5,56.5 + pos: 42.5,20.5 parent: 2 - - uid: 5401 + - uid: 5187 components: - type: Transform - pos: 48.5,56.5 + pos: 42.5,21.5 parent: 2 - - uid: 5402 + - uid: 5188 components: - type: Transform - pos: 47.5,56.5 + pos: 42.5,22.5 parent: 2 - - uid: 5403 + - uid: 5189 components: - type: Transform - pos: 46.5,56.5 + pos: 45.5,10.5 parent: 2 - - uid: 5404 + - uid: 5190 components: - type: Transform - pos: 46.5,55.5 + pos: 46.5,10.5 parent: 2 - - uid: 5405 + - uid: 5191 components: - type: Transform - pos: 46.5,54.5 + pos: 47.5,10.5 parent: 2 - - uid: 5406 + - uid: 5192 components: - type: Transform - pos: 46.5,53.5 + pos: 48.5,10.5 parent: 2 - - uid: 5407 + - uid: 5193 components: - type: Transform - pos: 46.5,52.5 + pos: 49.5,10.5 parent: 2 - - uid: 5408 + - uid: 5194 components: - type: Transform - pos: 46.5,51.5 + pos: 49.5,9.5 parent: 2 - - uid: 5409 + - uid: 5195 components: - type: Transform - pos: 47.5,51.5 + pos: 49.5,8.5 parent: 2 - - uid: 5410 + - uid: 5196 components: - type: Transform - pos: 47.5,50.5 + pos: 49.5,7.5 parent: 2 - - uid: 5411 + - uid: 5197 components: - type: Transform - pos: 47.5,49.5 + pos: 49.5,6.5 parent: 2 - - uid: 5412 + - uid: 5198 components: - type: Transform - pos: 47.5,48.5 + pos: 50.5,6.5 parent: 2 - - uid: 5413 + - uid: 5199 components: - type: Transform - pos: 48.5,48.5 + pos: 51.5,6.5 parent: 2 - - uid: 5414 + - uid: 5200 components: - type: Transform - pos: 49.5,48.5 + pos: 51.5,5.5 parent: 2 - - uid: 5415 + - uid: 5201 components: - type: Transform - pos: 49.5,49.5 + pos: 51.5,4.5 parent: 2 - - uid: 5416 + - uid: 5202 components: - type: Transform - pos: 47.5,52.5 + pos: 52.5,4.5 parent: 2 - - uid: 5417 + - uid: 5203 components: - type: Transform - pos: 48.5,52.5 + pos: 53.5,4.5 parent: 2 - - uid: 5418 + - uid: 5204 components: - type: Transform - pos: 49.5,52.5 + pos: 54.5,4.5 parent: 2 - - uid: 5419 + - uid: 5205 components: - type: Transform - pos: 50.5,52.5 + pos: 54.5,5.5 parent: 2 - - uid: 5420 + - uid: 5207 components: - type: Transform - pos: 51.5,52.5 + pos: -32.5,26.5 parent: 2 - - uid: 5421 + - uid: 5208 components: - type: Transform - pos: 51.5,51.5 + pos: -30.5,26.5 parent: 2 - - uid: 5422 + - uid: 5209 components: - type: Transform - pos: 52.5,56.5 + pos: -29.5,26.5 parent: 2 - - uid: 5423 + - uid: 5210 components: - type: Transform - pos: 53.5,56.5 + pos: -31.5,26.5 parent: 2 - - uid: 5424 + - uid: 5211 components: - type: Transform - pos: 53.5,55.5 + pos: -33.5,26.5 parent: 2 - - uid: 5425 + - uid: 5212 components: - type: Transform - pos: 53.5,54.5 + pos: -34.5,26.5 parent: 2 - - uid: 5426 + - uid: 5213 components: - type: Transform - pos: 53.5,53.5 + pos: -28.5,26.5 parent: 2 - - uid: 5427 + - uid: 5214 components: - type: Transform - pos: 54.5,53.5 + pos: -26.5,26.5 parent: 2 - - uid: 5428 + - uid: 5215 components: - type: Transform - pos: 54.5,52.5 + pos: -25.5,26.5 parent: 2 - - uid: 5429 + - uid: 5216 components: - type: Transform - pos: 55.5,53.5 + pos: -25.5,25.5 parent: 2 - - uid: 5430 + - uid: 5217 components: - type: Transform - pos: 56.5,53.5 + pos: -13.5,38.5 parent: 2 - - uid: 5431 + - uid: 5218 components: - type: Transform - pos: 57.5,53.5 + pos: -12.5,38.5 parent: 2 - - uid: 5432 + - uid: 5219 components: - type: Transform - pos: 57.5,52.5 + pos: -21.5,33.5 parent: 2 - - uid: 5433 + - uid: 5220 components: - type: Transform - pos: 57.5,51.5 + pos: -27.5,26.5 parent: 2 - - uid: 5434 + - uid: 5221 components: - type: Transform - pos: 57.5,50.5 + pos: -25.5,24.5 parent: 2 - - uid: 5435 + - uid: 5222 components: - type: Transform - pos: 57.5,49.5 + pos: -20.5,32.5 parent: 2 - - uid: 5436 + - uid: 5223 components: - type: Transform - pos: 57.5,48.5 + pos: -21.5,34.5 parent: 2 - - uid: 5437 + - uid: 5224 components: - type: Transform - pos: 58.5,48.5 + pos: -19.5,32.5 parent: 2 - - uid: 5438 + - uid: 5225 components: - type: Transform - pos: 59.5,48.5 + pos: -17.5,32.5 parent: 2 - - uid: 5439 + - uid: 5226 components: - type: Transform - pos: 59.5,47.5 + pos: -24.5,24.5 parent: 2 - - uid: 5440 + - uid: 5227 components: - type: Transform - pos: 60.5,47.5 + pos: -18.5,32.5 parent: 2 - - uid: 5441 + - uid: 5228 components: - type: Transform - pos: 60.5,46.5 + pos: -21.5,32.5 parent: 2 - - uid: 5442 + - uid: 5229 components: - type: Transform - pos: 60.5,45.5 + pos: -14.5,41.5 parent: 2 - - uid: 5443 + - uid: 5230 components: - type: Transform - pos: 60.5,44.5 + pos: 49.5,11.5 parent: 2 - - uid: 5444 + - uid: 5231 components: - type: Transform - pos: 60.5,43.5 + pos: 49.5,12.5 parent: 2 - - uid: 5445 + - uid: 5232 components: - type: Transform - pos: 61.5,43.5 + pos: 49.5,13.5 parent: 2 - - uid: 5446 + - uid: 5233 components: - type: Transform - pos: 62.5,43.5 + pos: 50.5,13.5 parent: 2 - - uid: 5447 + - uid: 5234 components: - type: Transform - pos: 63.5,43.5 + pos: 51.5,13.5 parent: 2 - - uid: 5448 + - uid: 5235 components: - type: Transform - pos: 45.5,53.5 + pos: 52.5,13.5 parent: 2 - - uid: 5449 + - uid: 5236 components: - type: Transform - pos: 35.5,64.5 + pos: 53.5,13.5 parent: 2 - - uid: 5450 + - uid: 5237 components: - type: Transform - pos: 36.5,64.5 + pos: 54.5,13.5 parent: 2 - - uid: 5451 + - uid: 5238 components: - type: Transform - pos: 31.5,59.5 + pos: 55.5,13.5 parent: 2 - - uid: 5452 + - uid: 5239 components: - type: Transform - pos: 31.5,58.5 + pos: 55.5,14.5 parent: 2 - - uid: 5453 + - uid: 5240 components: - type: Transform - pos: 31.5,57.5 + pos: 55.5,15.5 parent: 2 - - uid: 5454 + - uid: 5241 components: - type: Transform - pos: 30.5,59.5 + pos: 55.5,16.5 parent: 2 - - uid: 5455 + - uid: 5242 components: - type: Transform - pos: 29.5,59.5 + pos: 55.5,17.5 parent: 2 - - uid: 5456 + - uid: 5243 components: - type: Transform - pos: 34.5,61.5 + pos: 55.5,18.5 parent: 2 - - uid: 5457 + - uid: 5244 components: - type: Transform - pos: 35.5,61.5 + pos: 54.5,18.5 parent: 2 - - uid: 5458 + - uid: 5245 components: - type: Transform - pos: 35.5,60.5 + pos: 18.5,12.5 parent: 2 - - uid: 5459 + - uid: 5246 components: - type: Transform - pos: 35.5,59.5 + pos: 18.5,11.5 parent: 2 - - uid: 5460 + - uid: 5247 components: - type: Transform - pos: 35.5,58.5 + pos: 18.5,10.5 parent: 2 - - uid: 5461 + - uid: 5248 components: - type: Transform - pos: 36.5,58.5 + pos: 18.5,9.5 parent: 2 - - uid: 5462 + - uid: 5249 components: - type: Transform - pos: 37.5,58.5 + pos: 18.5,8.5 parent: 2 - - uid: 5463 + - uid: 5250 components: - type: Transform - pos: 35.5,50.5 + pos: 18.5,7.5 parent: 2 - - uid: 5464 + - uid: 5251 components: - type: Transform - pos: 36.5,50.5 + pos: 18.5,6.5 parent: 2 - - uid: 5465 + - uid: 5252 components: - type: Transform - pos: 37.5,50.5 + pos: 19.5,6.5 parent: 2 - - uid: 5466 + - uid: 5253 components: - type: Transform - pos: 34.5,50.5 + pos: 20.5,6.5 parent: 2 - - uid: 5467 + - uid: 5254 components: - type: Transform - pos: 33.5,50.5 + pos: 21.5,6.5 parent: 2 - - uid: 5468 + - uid: 5255 components: - type: Transform - pos: 32.5,50.5 + pos: 22.5,6.5 parent: 2 - - uid: 5469 + - uid: 5256 components: - type: Transform - pos: 31.5,50.5 + pos: 23.5,6.5 parent: 2 - - uid: 5470 + - uid: 5257 components: - type: Transform - pos: 31.5,51.5 + pos: 24.5,6.5 parent: 2 - - uid: 5471 + - uid: 5258 components: - type: Transform - pos: 30.5,50.5 + pos: 25.5,6.5 parent: 2 - - uid: 5472 + - uid: 5259 components: - type: Transform - pos: 29.5,50.5 + pos: 25.5,7.5 parent: 2 - - uid: 5473 + - uid: 5260 components: - type: Transform - pos: 27.5,50.5 + pos: 25.5,8.5 parent: 2 - - uid: 5474 + - uid: 5261 components: - type: Transform - pos: 28.5,50.5 + pos: 25.5,9.5 parent: 2 - - uid: 5475 + - uid: 5262 components: - type: Transform - pos: 29.5,51.5 + pos: 25.5,10.5 parent: 2 - - uid: 5476 + - uid: 5263 components: - type: Transform - pos: 45.5,51.5 + pos: 25.5,11.5 parent: 2 - - uid: 5477 + - uid: 5264 components: - type: Transform - pos: 44.5,51.5 + pos: 25.5,12.5 parent: 2 - - uid: 5478 + - uid: 5265 components: - type: Transform - pos: 44.5,50.5 + pos: 25.5,13.5 parent: 2 - - uid: 5479 + - uid: 5266 components: - type: Transform - pos: 44.5,49.5 + pos: 25.5,14.5 parent: 2 - - uid: 5480 + - uid: 5267 components: - type: Transform - pos: 44.5,48.5 + pos: 25.5,15.5 parent: 2 - - uid: 5481 + - uid: 5268 components: - type: Transform - pos: 43.5,48.5 + pos: 25.5,16.5 parent: 2 - - uid: 5482 + - uid: 5269 components: - type: Transform - pos: 42.5,48.5 + pos: 26.5,16.5 parent: 2 - - uid: 5483 + - uid: 5270 components: - type: Transform - pos: 41.5,48.5 + pos: 24.5,18.5 parent: 2 - - uid: 5484 + - uid: 5271 components: - type: Transform - pos: 40.5,48.5 + pos: 26.5,18.5 parent: 2 - - uid: 5485 + - uid: 5272 components: - type: Transform - pos: 39.5,48.5 + pos: 26.5,17.5 parent: 2 - - uid: 5486 + - uid: 5273 components: - type: Transform - pos: 38.5,48.5 + pos: -11.5,57.5 parent: 2 - - uid: 5487 + - uid: 5274 components: - type: Transform - pos: 37.5,48.5 + pos: -11.5,56.5 parent: 2 - - uid: 5488 + - uid: 5275 components: - type: Transform - pos: 37.5,42.5 + pos: -10.5,56.5 parent: 2 - - uid: 5489 + - uid: 5276 components: - type: Transform - pos: 37.5,43.5 + pos: -9.5,56.5 parent: 2 - - uid: 5490 + - uid: 5277 components: - type: Transform - pos: 37.5,46.5 + pos: -8.5,56.5 parent: 2 - - uid: 5491 + - uid: 5278 components: - type: Transform - pos: 37.5,45.5 + pos: -8.5,57.5 parent: 2 - - uid: 5492 + - uid: 5279 components: - type: Transform - pos: 37.5,47.5 + pos: -7.5,56.5 parent: 2 - - uid: 5493 + - uid: 5280 components: - type: Transform - pos: 37.5,44.5 + pos: -6.5,56.5 parent: 2 - - uid: 5494 + - uid: 5281 components: - type: Transform - pos: 45.5,56.5 + pos: -5.5,56.5 parent: 2 - - uid: 5495 + - uid: 5282 components: - type: Transform - pos: 44.5,56.5 + pos: -4.5,56.5 parent: 2 - - uid: 5496 + - uid: 5283 components: - type: Transform - pos: 43.5,56.5 + pos: -3.5,56.5 parent: 2 - - uid: 5497 + - uid: 5284 components: - type: Transform - pos: 42.5,56.5 + pos: -2.5,56.5 parent: 2 - - uid: 5498 + - uid: 5285 components: - type: Transform - pos: 41.5,56.5 + pos: -1.5,56.5 parent: 2 - - uid: 5499 + - uid: 5286 components: - type: Transform - pos: 40.5,56.5 + pos: -0.5,56.5 parent: 2 - - uid: 5500 + - uid: 5287 components: - type: Transform - pos: 39.5,56.5 + pos: -0.5,57.5 parent: 2 - - uid: 5501 + - uid: 5288 components: - type: Transform - pos: 39.5,55.5 + pos: -0.5,58.5 parent: 2 - - uid: 5502 + - uid: 5289 components: - type: Transform - pos: 42.5,23.5 + pos: -0.5,59.5 parent: 2 - - uid: 5503 + - uid: 5290 components: - type: Transform - pos: 41.5,23.5 + pos: -1.5,59.5 parent: 2 - - uid: 5504 + - uid: 5291 components: - type: Transform - pos: 40.5,23.5 + pos: -2.5,59.5 parent: 2 - - uid: 5505 + - uid: 5292 components: - type: Transform - pos: 40.5,24.5 + pos: -3.5,64.5 parent: 2 - - uid: 5506 + - uid: 5293 components: - type: Transform - pos: 40.5,25.5 + pos: -3.5,63.5 parent: 2 - - uid: 5507 + - uid: 5294 components: - type: Transform - pos: 39.5,24.5 + pos: -2.5,63.5 parent: 2 - - uid: 5508 + - uid: 5295 components: - type: Transform - pos: 41.5,24.5 + pos: -1.5,63.5 parent: 2 - - uid: 5509 + - uid: 5296 components: - type: Transform - pos: 40.5,26.5 + pos: -0.5,63.5 parent: 2 - - uid: 5510 + - uid: 5297 components: - type: Transform - pos: 40.5,27.5 + pos: 0.5,63.5 parent: 2 - - uid: 5511 + - uid: 5298 components: - type: Transform - pos: 40.5,28.5 + pos: 1.5,63.5 parent: 2 - - uid: 5512 + - uid: 5299 components: - type: Transform - pos: 40.5,29.5 + pos: 2.5,63.5 parent: 2 - - uid: 5513 + - uid: 5300 components: - type: Transform - pos: 40.5,30.5 + pos: 3.5,63.5 parent: 2 - - uid: 5514 + - uid: 5301 components: - type: Transform - pos: 40.5,31.5 + pos: 3.5,65.5 parent: 2 - - uid: 5515 + - uid: 5302 components: - type: Transform - pos: 41.5,31.5 + pos: 3.5,64.5 parent: 2 - - uid: 5516 + - uid: 5303 components: - type: Transform - pos: 42.5,31.5 + pos: 3.5,65.5 parent: 2 - - uid: 5517 + - uid: 5304 components: - type: Transform - pos: 43.5,31.5 + pos: 4.5,64.5 parent: 2 - - uid: 5518 + - uid: 5305 components: - type: Transform - pos: 39.5,30.5 + pos: 5.5,64.5 parent: 2 - - uid: 5519 + - uid: 5306 components: - type: Transform - pos: 38.5,30.5 + pos: 6.5,64.5 parent: 2 - - uid: 5520 + - uid: 5307 components: - type: Transform - pos: 38.5,31.5 + pos: 7.5,64.5 parent: 2 - - uid: 5521 + - uid: 5308 components: - type: Transform - pos: 20.5,43.5 + pos: 8.5,64.5 parent: 2 - - uid: 5522 + - uid: 5309 components: - type: Transform - pos: 21.5,43.5 + pos: 9.5,64.5 parent: 2 - - uid: 5523 + - uid: 5310 components: - type: Transform - pos: 21.5,44.5 + pos: 10.5,64.5 parent: 2 - - uid: 5524 + - uid: 5311 components: - type: Transform - pos: 22.5,44.5 + pos: 11.5,64.5 parent: 2 - - uid: 5525 + - uid: 5312 components: - type: Transform - pos: 23.5,44.5 + pos: 12.5,64.5 parent: 2 - - uid: 5526 + - uid: 5313 components: - type: Transform - pos: 23.5,43.5 + pos: 13.5,64.5 parent: 2 - - uid: 5527 + - uid: 5314 components: - type: Transform - pos: 23.5,42.5 + pos: 13.5,65.5 parent: 2 - - uid: 5528 + - uid: 5315 components: - type: Transform - pos: 23.5,41.5 + pos: 13.5,66.5 parent: 2 - - uid: 5529 + - uid: 5316 components: - type: Transform - pos: 23.5,40.5 + pos: 13.5,67.5 parent: 2 - - uid: 5530 + - uid: 5317 components: - type: Transform - pos: 23.5,39.5 + pos: 13.5,68.5 parent: 2 - - uid: 5531 + - uid: 5318 components: - type: Transform - pos: 23.5,38.5 + pos: 14.5,68.5 parent: 2 - - uid: 5532 + - uid: 5319 components: - type: Transform - pos: 23.5,37.5 + pos: 14.5,69.5 parent: 2 - - uid: 5533 + - uid: 5320 components: - type: Transform - pos: 23.5,36.5 + pos: 14.5,70.5 parent: 2 - - uid: 5534 + - uid: 5321 components: - type: Transform - pos: 23.5,35.5 + pos: 14.5,71.5 parent: 2 - - uid: 5535 + - uid: 5322 components: - type: Transform - pos: 23.5,34.5 + pos: 14.5,72.5 parent: 2 - - uid: 5536 + - uid: 5323 components: - type: Transform - pos: 23.5,33.5 + pos: 14.5,73.5 parent: 2 - - uid: 5537 + - uid: 5324 components: - type: Transform - pos: 22.5,33.5 + pos: 14.5,74.5 parent: 2 - - uid: 5538 + - uid: 5325 components: - type: Transform - pos: 21.5,33.5 + pos: 13.5,74.5 parent: 2 - - uid: 5539 + - uid: 5326 components: - type: Transform - pos: 20.5,33.5 + pos: 12.5,74.5 parent: 2 - - uid: 5540 + - uid: 5327 components: - type: Transform - pos: 19.5,33.5 + pos: 11.5,74.5 parent: 2 - - uid: 5541 + - uid: 5328 components: - type: Transform - pos: 18.5,33.5 + pos: 11.5,75.5 parent: 2 - - uid: 5542 + - uid: 5329 components: - type: Transform - pos: 18.5,34.5 + pos: 11.5,76.5 parent: 2 - - uid: 5543 + - uid: 5330 components: - type: Transform - pos: 18.5,35.5 + pos: 13.5,63.5 parent: 2 - - uid: 5544 + - uid: 5331 components: - type: Transform - pos: 18.5,36.5 + pos: 18.5,60.5 parent: 2 - - uid: 5545 + - uid: 5332 components: - type: Transform - pos: 18.5,37.5 + pos: 19.5,60.5 parent: 2 - - uid: 5546 + - uid: 5333 components: - type: Transform - pos: 18.5,38.5 + pos: 20.5,60.5 parent: 2 - - uid: 5547 + - uid: 5334 components: - type: Transform - pos: 19.5,38.5 + pos: 21.5,60.5 parent: 2 - - uid: 5548 + - uid: 5335 components: - type: Transform - pos: 19.5,39.5 + pos: 22.5,60.5 parent: 2 - - uid: 5549 + - uid: 5336 components: - type: Transform - pos: 19.5,40.5 + pos: 23.5,60.5 parent: 2 - - uid: 5550 + - uid: 5337 components: - type: Transform - pos: 19.5,41.5 + pos: 24.5,60.5 parent: 2 - - uid: 5551 + - uid: 5338 components: - type: Transform - pos: 20.5,44.5 + pos: 25.5,60.5 parent: 2 - - uid: 5552 + - uid: 5339 components: - type: Transform - pos: 19.5,44.5 + pos: 26.5,60.5 parent: 2 - - uid: 5553 + - uid: 5340 components: - type: Transform - pos: 17.5,35.5 + pos: 27.5,60.5 parent: 2 - - uid: 5554 + - uid: 5341 components: - type: Transform - pos: 16.5,35.5 + pos: 28.5,60.5 parent: 2 - - uid: 5555 + - uid: 5342 components: - type: Transform - pos: 15.5,35.5 + pos: 29.5,60.5 parent: 2 - - uid: 5556 + - uid: 5343 components: - type: Transform - pos: 14.5,35.5 + pos: 30.5,60.5 parent: 2 - - uid: 5557 + - uid: 5344 components: - type: Transform - pos: 14.5,36.5 + pos: 31.5,60.5 parent: 2 - - uid: 5558 + - uid: 5345 components: - type: Transform - pos: 14.5,37.5 + pos: 31.5,61.5 parent: 2 - - uid: 5559 + - uid: 5346 components: - type: Transform - pos: 14.5,38.5 + pos: 32.5,61.5 parent: 2 - - uid: 5560 + - uid: 5347 components: - type: Transform - pos: 14.5,39.5 + pos: 33.5,61.5 parent: 2 - - uid: 5561 + - uid: 5348 components: - type: Transform - pos: 14.5,40.5 + pos: 33.5,62.5 parent: 2 - - uid: 5562 + - uid: 5349 components: - type: Transform - pos: 14.5,41.5 + pos: 33.5,63.5 parent: 2 - - uid: 5563 + - uid: 5350 components: - type: Transform - pos: 15.5,41.5 + pos: 34.5,63.5 parent: 2 - - uid: 5564 + - uid: 5351 components: - type: Transform - pos: 15.5,42.5 + pos: 35.5,63.5 parent: 2 - - uid: 5565 + - uid: 5352 components: - type: Transform - pos: 15.5,38.5 + pos: 44.5,17.5 parent: 2 - - uid: 5566 + - uid: 5353 components: - type: Transform - pos: 14.5,34.5 + pos: 45.5,17.5 parent: 2 - - uid: 5567 + - uid: 5354 components: - type: Transform - pos: 24.5,36.5 + pos: 46.5,17.5 parent: 2 - - uid: 5568 + - uid: 5355 components: - type: Transform - pos: 25.5,36.5 + pos: 47.5,17.5 parent: 2 - - uid: 5569 + - uid: 5356 components: - type: Transform - pos: 26.5,36.5 + pos: 47.5,18.5 parent: 2 - - uid: 5570 + - uid: 5357 components: - type: Transform - pos: 26.5,37.5 + pos: 47.5,19.5 parent: 2 - - uid: 5571 + - uid: 5358 components: - type: Transform - pos: 13.5,40.5 + pos: 47.5,20.5 parent: 2 - - uid: 5572 + - uid: 5359 components: - type: Transform - pos: 12.5,40.5 + pos: 47.5,21.5 parent: 2 - - uid: 5573 + - uid: 5360 components: - type: Transform - pos: 11.5,40.5 + pos: 47.5,22.5 parent: 2 - - uid: 5574 + - uid: 5361 components: - type: Transform - pos: 10.5,40.5 + pos: 47.5,23.5 parent: 2 - - uid: 5575 + - uid: 5362 components: - type: Transform - pos: 14.5,34.5 + pos: 47.5,24.5 parent: 2 - - uid: 5576 + - uid: 5363 components: - type: Transform - pos: 13.5,34.5 + pos: 47.5,25.5 parent: 2 - - uid: 5577 + - uid: 5364 components: - type: Transform - pos: 12.5,34.5 + pos: 47.5,26.5 parent: 2 - - uid: 5578 + - uid: 5365 components: - type: Transform - pos: 11.5,34.5 + pos: 47.5,27.5 parent: 2 - - uid: 5579 + - uid: 5366 components: - type: Transform - pos: 10.5,34.5 + pos: 47.5,28.5 parent: 2 - - uid: 5580 + - uid: 5367 components: - type: Transform - pos: 9.5,34.5 + pos: 47.5,29.5 parent: 2 - - uid: 5581 + - uid: 5368 components: - type: Transform - pos: 8.5,34.5 + pos: 46.5,29.5 parent: 2 - - uid: 5582 + - uid: 5369 components: - type: Transform - pos: 8.5,33.5 + pos: 45.5,29.5 parent: 2 - - uid: 5583 + - uid: 5370 components: - type: Transform - pos: 8.5,32.5 + pos: 56.5,13.5 parent: 2 - - uid: 5584 + - uid: 5371 components: - type: Transform - pos: 8.5,31.5 + pos: 57.5,13.5 parent: 2 - - uid: 5585 + - uid: 5372 components: - type: Transform - pos: 8.5,30.5 + pos: 58.5,13.5 parent: 2 - - uid: 5586 + - uid: 5373 components: - type: Transform - pos: 8.5,29.5 + pos: 59.5,13.5 parent: 2 - - uid: 5587 + - uid: 5374 components: - type: Transform - pos: 7.5,29.5 + pos: 60.5,13.5 parent: 2 - - uid: 5588 + - uid: 5375 components: - type: Transform - pos: 6.5,29.5 + pos: 61.5,13.5 parent: 2 - - uid: 5589 + - uid: 5376 components: - type: Transform - pos: 6.5,30.5 + pos: 61.5,14.5 parent: 2 - - uid: 5590 + - uid: 5377 components: - type: Transform - pos: 8.5,31.5 + pos: 61.5,15.5 parent: 2 - - uid: 5591 + - uid: 5378 components: - type: Transform - pos: 9.5,31.5 + pos: 61.5,16.5 parent: 2 - - uid: 5592 + - uid: 5379 components: - type: Transform - pos: 10.5,31.5 + pos: 61.5,17.5 parent: 2 - - uid: 5593 + - uid: 5380 components: - type: Transform - pos: 11.5,31.5 + pos: 61.5,18.5 parent: 2 - - uid: 5594 + - uid: 5381 components: - type: Transform - pos: 12.5,31.5 + pos: 62.5,18.5 parent: 2 - - uid: 5595 + - uid: 5382 components: - type: Transform - pos: 13.5,31.5 + pos: 62.5,19.5 parent: 2 - - uid: 5596 + - uid: 5383 components: - type: Transform - pos: 13.5,30.5 + pos: 62.5,20.5 parent: 2 - - uid: 5597 + - uid: 5384 components: - type: Transform - pos: 13.5,29.5 + pos: 62.5,21.5 parent: 2 - - uid: 5598 + - uid: 5385 components: - type: Transform - pos: 13.5,28.5 + pos: 62.5,22.5 parent: 2 - - uid: 5599 + - uid: 5386 components: - type: Transform - pos: 13.5,27.5 + pos: 62.5,23.5 parent: 2 - - uid: 5600 + - uid: 5387 components: - type: Transform - pos: 14.5,27.5 + pos: 62.5,24.5 parent: 2 - - uid: 5601 + - uid: 5388 components: - type: Transform - pos: 83.5,46.5 + pos: 62.5,25.5 parent: 2 - - uid: 5602 + - uid: 5389 components: - type: Transform - pos: 82.5,46.5 + pos: 61.5,25.5 parent: 2 - - uid: 5603 + - uid: 5390 components: - type: Transform - pos: 81.5,46.5 + pos: 60.5,25.5 parent: 2 - - uid: 5604 + - uid: 5391 components: - type: Transform - pos: 81.5,47.5 + pos: 60.5,26.5 parent: 2 - - uid: 5605 + - uid: 5392 components: - type: Transform - pos: 80.5,47.5 + pos: 60.5,27.5 parent: 2 - - uid: 5606 + - uid: 5393 components: - type: Transform - pos: 79.5,47.5 + pos: 43.5,3.5 parent: 2 - - uid: 5607 + - uid: 5394 components: - type: Transform - pos: 78.5,47.5 + pos: 52.5,59.5 parent: 2 - - uid: 5608 + - uid: 5395 components: - type: Transform - pos: 77.5,47.5 + pos: 51.5,59.5 parent: 2 - - uid: 5609 + - uid: 5396 components: - type: Transform - pos: 77.5,46.5 + pos: 51.5,58.5 parent: 2 - - uid: 5610 + - uid: 5397 components: - type: Transform - pos: 81.5,45.5 + pos: 51.5,57.5 parent: 2 - - uid: 5611 + - uid: 5398 components: - type: Transform - pos: 81.5,44.5 + pos: 51.5,56.5 parent: 2 - - uid: 5612 + - uid: 5399 components: - type: Transform - pos: 81.5,43.5 + pos: 50.5,56.5 parent: 2 - - uid: 5613 + - uid: 5400 components: - type: Transform - pos: 81.5,42.5 + pos: 49.5,56.5 parent: 2 - - uid: 5614 + - uid: 5401 components: - type: Transform - pos: 81.5,41.5 + pos: 48.5,56.5 parent: 2 - - uid: 5615 + - uid: 5402 components: - type: Transform - pos: 81.5,40.5 + pos: 47.5,56.5 parent: 2 - - uid: 5616 + - uid: 5403 components: - type: Transform - pos: 81.5,39.5 + pos: 46.5,56.5 parent: 2 - - uid: 5617 + - uid: 5404 components: - type: Transform - pos: 80.5,39.5 + pos: 46.5,55.5 parent: 2 - - uid: 5618 + - uid: 5405 components: - type: Transform - pos: 79.5,39.5 + pos: 46.5,54.5 parent: 2 - - uid: 5619 + - uid: 5406 components: - type: Transform - pos: 81.5,38.5 + pos: 46.5,53.5 parent: 2 - - uid: 5620 + - uid: 5407 components: - type: Transform - pos: 81.5,37.5 + pos: 46.5,52.5 parent: 2 - - uid: 5621 + - uid: 5408 components: - type: Transform - pos: 81.5,36.5 + pos: 46.5,51.5 parent: 2 - - uid: 5622 + - uid: 5409 components: - type: Transform - pos: 80.5,36.5 + pos: 47.5,51.5 parent: 2 - - uid: 5623 + - uid: 5410 components: - type: Transform - pos: 79.5,36.5 + pos: 47.5,50.5 parent: 2 - - uid: 5624 + - uid: 5411 components: - type: Transform - pos: 78.5,36.5 + pos: 47.5,49.5 parent: 2 - - uid: 5625 + - uid: 5412 components: - type: Transform - pos: 78.5,35.5 + pos: 47.5,48.5 parent: 2 - - uid: 5626 + - uid: 5413 components: - type: Transform - pos: 78.5,34.5 + pos: 48.5,48.5 parent: 2 - - uid: 5627 + - uid: 5414 components: - type: Transform - pos: 78.5,33.5 + pos: 49.5,48.5 parent: 2 - - uid: 5628 + - uid: 5415 components: - type: Transform - pos: 77.5,34.5 + pos: 49.5,49.5 parent: 2 - - uid: 5629 + - uid: 5416 components: - type: Transform - pos: 76.5,34.5 + pos: 47.5,52.5 parent: 2 - - uid: 5630 + - uid: 5417 components: - type: Transform - pos: 75.5,34.5 + pos: 48.5,52.5 parent: 2 - - uid: 5631 + - uid: 5418 components: - type: Transform - pos: 74.5,34.5 + pos: 49.5,52.5 parent: 2 - - uid: 5632 + - uid: 5419 components: - type: Transform - pos: 74.5,35.5 + pos: 50.5,52.5 parent: 2 - - uid: 5633 + - uid: 5420 components: - type: Transform - pos: 74.5,33.5 + pos: 51.5,52.5 parent: 2 - - uid: 5634 + - uid: 5421 components: - type: Transform - pos: 81.5,35.5 + pos: 51.5,51.5 parent: 2 - - uid: 5635 + - uid: 5422 components: - type: Transform - pos: 81.5,34.5 + pos: 52.5,56.5 parent: 2 - - uid: 5636 + - uid: 5423 components: - type: Transform - pos: 81.5,33.5 + pos: 53.5,56.5 parent: 2 - - uid: 5637 + - uid: 5424 components: - type: Transform - pos: 81.5,32.5 + pos: 53.5,55.5 parent: 2 - - uid: 5638 + - uid: 5425 components: - type: Transform - pos: 81.5,31.5 + pos: 53.5,54.5 parent: 2 - - uid: 5639 + - uid: 5426 components: - type: Transform - pos: 81.5,30.5 + pos: 53.5,53.5 parent: 2 - - uid: 5640 + - uid: 5427 components: - type: Transform - pos: 81.5,29.5 + pos: 54.5,53.5 parent: 2 - - uid: 5641 + - uid: 5428 components: - type: Transform - pos: 81.5,28.5 + pos: 54.5,52.5 parent: 2 - - uid: 5642 + - uid: 5429 components: - type: Transform - pos: 81.5,27.5 + pos: 55.5,53.5 parent: 2 - - uid: 5643 + - uid: 5430 components: - type: Transform - pos: 81.5,26.5 + pos: 56.5,53.5 parent: 2 - - uid: 5644 + - uid: 5431 components: - type: Transform - pos: 81.5,25.5 + pos: 57.5,53.5 parent: 2 - - uid: 5645 + - uid: 5432 components: - type: Transform - pos: 81.5,24.5 + pos: 57.5,52.5 parent: 2 - - uid: 5646 + - uid: 5433 components: - type: Transform - pos: 80.5,24.5 + pos: 57.5,51.5 parent: 2 - - uid: 5647 + - uid: 5434 components: - type: Transform - pos: 79.5,24.5 + pos: 57.5,50.5 parent: 2 - - uid: 5648 + - uid: 5435 components: - type: Transform - pos: 80.5,30.5 + pos: 57.5,49.5 parent: 2 - - uid: 5649 + - uid: 5436 components: - type: Transform - pos: 79.5,30.5 + pos: 57.5,48.5 parent: 2 - - uid: 5650 + - uid: 5437 components: - type: Transform - pos: 78.5,30.5 + pos: 58.5,48.5 parent: 2 - - uid: 5651 + - uid: 5438 components: - type: Transform - pos: 77.5,30.5 + pos: 59.5,48.5 parent: 2 - - uid: 5652 + - uid: 5439 components: - type: Transform - pos: 76.5,30.5 + pos: 59.5,47.5 parent: 2 - - uid: 5653 + - uid: 5440 components: - type: Transform - pos: 75.5,30.5 + pos: 60.5,47.5 parent: 2 - - uid: 5654 + - uid: 5441 components: - type: Transform - pos: 75.5,31.5 + pos: 60.5,46.5 parent: 2 - - uid: 5655 + - uid: 5442 components: - type: Transform - pos: 75.5,32.5 + pos: 60.5,45.5 parent: 2 - - uid: 5656 + - uid: 5443 components: - type: Transform - pos: 78.5,29.5 + pos: 60.5,44.5 parent: 2 - - uid: 5657 + - uid: 5444 components: - type: Transform - pos: 78.5,28.5 + pos: 60.5,43.5 parent: 2 - - uid: 5658 + - uid: 5445 components: - type: Transform - pos: 78.5,27.5 + pos: 61.5,43.5 parent: 2 - - uid: 5659 + - uid: 5446 components: - type: Transform - pos: 74.5,31.5 + pos: 62.5,43.5 parent: 2 - - uid: 5660 + - uid: 5447 components: - type: Transform - pos: 73.5,31.5 + pos: 63.5,43.5 parent: 2 - - uid: 5661 + - uid: 5448 components: - type: Transform - pos: 72.5,31.5 + pos: 45.5,53.5 parent: 2 - - uid: 5662 + - uid: 5449 components: - type: Transform - pos: 71.5,31.5 + pos: 35.5,64.5 parent: 2 - - uid: 5663 + - uid: 5450 components: - type: Transform - pos: 70.5,31.5 + pos: 36.5,64.5 parent: 2 - - uid: 5664 + - uid: 5451 components: - type: Transform - pos: 69.5,31.5 + pos: 31.5,59.5 parent: 2 - - uid: 5666 + - uid: 5452 components: - type: Transform - pos: 79.5,23.5 + pos: 31.5,58.5 parent: 2 - - uid: 5667 + - uid: 5453 components: - type: Transform - pos: 78.5,23.5 + pos: 31.5,57.5 parent: 2 - - uid: 5668 + - uid: 5454 components: - type: Transform - pos: 77.5,23.5 + pos: 30.5,59.5 parent: 2 - - uid: 5669 + - uid: 5455 components: - type: Transform - pos: 53.5,57.5 + pos: 29.5,59.5 parent: 2 - - uid: 5670 + - uid: 5456 components: - type: Transform - pos: 54.5,57.5 + pos: 34.5,61.5 parent: 2 - - uid: 5671 + - uid: 5457 components: - type: Transform - pos: 55.5,57.5 + pos: 35.5,61.5 parent: 2 - - uid: 5672 + - uid: 5458 components: - type: Transform - pos: 56.5,57.5 + pos: 35.5,60.5 parent: 2 - - uid: 5673 + - uid: 5459 components: - type: Transform - pos: 57.5,57.5 + pos: 35.5,59.5 parent: 2 - - uid: 5674 + - uid: 5460 components: - type: Transform - pos: 58.5,57.5 + pos: 35.5,58.5 parent: 2 - - uid: 5675 + - uid: 5461 components: - type: Transform - pos: 59.5,57.5 + pos: 36.5,58.5 parent: 2 - - uid: 5676 + - uid: 5462 components: - type: Transform - pos: 59.5,58.5 + pos: 37.5,58.5 parent: 2 - - uid: 5677 + - uid: 5463 components: - type: Transform - pos: 76.5,13.5 + pos: 35.5,50.5 parent: 2 - - uid: 5678 + - uid: 5464 components: - type: Transform - pos: 75.5,13.5 + pos: 36.5,50.5 parent: 2 - - uid: 5679 + - uid: 5465 components: - type: Transform - pos: 75.5,14.5 + pos: 37.5,50.5 parent: 2 - - uid: 5680 + - uid: 5466 components: - type: Transform - pos: 75.5,15.5 + pos: 34.5,50.5 parent: 2 - - uid: 5681 + - uid: 5467 components: - type: Transform - pos: 75.5,16.5 + pos: 33.5,50.5 parent: 2 - - uid: 5682 + - uid: 5468 components: - type: Transform - pos: 75.5,17.5 + pos: 32.5,50.5 parent: 2 - - uid: 5683 + - uid: 5469 components: - type: Transform - pos: 74.5,17.5 + pos: 31.5,50.5 parent: 2 - - uid: 5684 + - uid: 5470 components: - type: Transform - pos: 74.5,18.5 + pos: 31.5,51.5 parent: 2 - - uid: 5685 + - uid: 5471 components: - type: Transform - pos: 73.5,18.5 + pos: 30.5,50.5 parent: 2 - - uid: 5686 + - uid: 5472 components: - type: Transform - pos: 72.5,18.5 + pos: 29.5,50.5 parent: 2 - - uid: 5687 + - uid: 5473 components: - type: Transform - pos: 70.5,18.5 + pos: 27.5,50.5 parent: 2 - - uid: 5688 + - uid: 5474 components: - type: Transform - pos: 71.5,18.5 + pos: 28.5,50.5 parent: 2 - - uid: 5689 + - uid: 5475 components: - type: Transform - pos: 70.5,19.5 + pos: 29.5,51.5 parent: 2 - - uid: 5690 + - uid: 5476 components: - type: Transform - pos: 70.5,20.5 + pos: 45.5,51.5 parent: 2 - - uid: 5691 + - uid: 5477 components: - type: Transform - pos: 70.5,21.5 + pos: 44.5,51.5 parent: 2 - - uid: 5692 + - uid: 5478 components: - type: Transform - pos: 70.5,22.5 + pos: 44.5,50.5 parent: 2 - - uid: 5693 + - uid: 5479 components: - type: Transform - pos: 74.5,16.5 + pos: 44.5,49.5 parent: 2 - - uid: 5694 + - uid: 5480 components: - type: Transform - pos: 73.5,16.5 + pos: 44.5,48.5 parent: 2 - - uid: 5695 + - uid: 5481 components: - type: Transform - pos: 69.5,18.5 + pos: 43.5,48.5 parent: 2 - - uid: 5696 + - uid: 5482 components: - type: Transform - pos: 68.5,18.5 + pos: 42.5,48.5 parent: 2 - - uid: 5697 + - uid: 5483 components: - type: Transform - pos: 67.5,18.5 + pos: 41.5,48.5 parent: 2 - - uid: 5698 + - uid: 5484 components: - type: Transform - pos: 66.5,18.5 + pos: 40.5,48.5 parent: 2 - - uid: 5699 + - uid: 5485 components: - type: Transform - pos: 65.5,18.5 + pos: 39.5,48.5 parent: 2 - - uid: 5700 + - uid: 5486 components: - type: Transform - pos: 65.5,17.5 + pos: 38.5,48.5 parent: 2 - - uid: 5701 + - uid: 5487 components: - type: Transform - pos: 65.5,16.5 + pos: 37.5,48.5 parent: 2 - - uid: 5702 + - uid: 5488 components: - type: Transform - pos: 65.5,15.5 + pos: 37.5,42.5 parent: 2 - - uid: 5703 + - uid: 5489 components: - type: Transform - pos: 65.5,14.5 + pos: 37.5,43.5 parent: 2 - - uid: 5704 + - uid: 5490 components: - type: Transform - pos: 65.5,13.5 + pos: 37.5,46.5 parent: 2 - - uid: 5705 + - uid: 5491 components: - type: Transform - pos: 65.5,12.5 + pos: 37.5,45.5 parent: 2 - - uid: 5706 + - uid: 5492 components: - type: Transform - pos: 65.5,11.5 + pos: 37.5,47.5 parent: 2 - - uid: 5707 + - uid: 5493 components: - type: Transform - pos: 65.5,10.5 + pos: 37.5,44.5 parent: 2 - - uid: 5708 + - uid: 5494 components: - type: Transform - pos: 65.5,9.5 + pos: 45.5,56.5 parent: 2 - - uid: 5709 + - uid: 5495 components: - type: Transform - pos: 65.5,8.5 + pos: 44.5,56.5 parent: 2 - - uid: 5710 + - uid: 5496 components: - type: Transform - pos: 65.5,7.5 + pos: 43.5,56.5 parent: 2 - - uid: 5711 + - uid: 5497 components: - type: Transform - pos: 65.5,6.5 + pos: 42.5,56.5 parent: 2 - - uid: 5712 + - uid: 5498 components: - type: Transform - pos: 64.5,6.5 + pos: 41.5,56.5 parent: 2 - - uid: 5713 + - uid: 5499 components: - type: Transform - pos: 63.5,6.5 + pos: 40.5,56.5 parent: 2 - - uid: 5714 + - uid: 5500 components: - type: Transform - pos: 62.5,6.5 + pos: 39.5,56.5 parent: 2 - - uid: 5715 + - uid: 5501 components: - type: Transform - pos: 15.5,30.5 + pos: 39.5,55.5 parent: 2 - - uid: 5716 + - uid: 5502 components: - type: Transform - pos: 14.5,30.5 + pos: 42.5,23.5 parent: 2 - - uid: 5717 + - uid: 5503 components: - type: Transform - pos: 16.5,30.5 + pos: 41.5,23.5 parent: 2 - - uid: 5718 + - uid: 5504 components: - type: Transform - pos: 17.5,30.5 + pos: 40.5,23.5 parent: 2 - - uid: 5719 + - uid: 5505 components: - type: Transform - pos: 17.5,29.5 + pos: 40.5,24.5 parent: 2 - - uid: 5720 + - uid: 5506 components: - type: Transform - pos: 17.5,28.5 + pos: 40.5,25.5 parent: 2 - - uid: 5721 + - uid: 5507 components: - type: Transform - pos: 17.5,27.5 + pos: 39.5,24.5 parent: 2 - - uid: 5722 + - uid: 5508 components: - type: Transform - pos: 17.5,26.5 + pos: 41.5,24.5 parent: 2 - - uid: 5723 + - uid: 5509 components: - type: Transform - pos: 17.5,25.5 + pos: 40.5,26.5 parent: 2 - - uid: 5724 + - uid: 5510 components: - type: Transform - pos: 17.5,24.5 + pos: 40.5,27.5 parent: 2 - - uid: 5725 + - uid: 5511 components: - type: Transform - pos: 18.5,24.5 + pos: 40.5,28.5 parent: 2 - - uid: 5726 + - uid: 5512 components: - type: Transform - pos: 19.5,24.5 + pos: 40.5,29.5 parent: 2 - - uid: 5727 + - uid: 5513 components: - type: Transform - pos: 20.5,24.5 + pos: 40.5,30.5 parent: 2 - - uid: 5728 + - uid: 5514 components: - type: Transform - pos: 21.5,24.5 + pos: 40.5,31.5 parent: 2 - - uid: 5729 + - uid: 5515 components: - type: Transform - pos: 22.5,24.5 + pos: 41.5,31.5 parent: 2 - - uid: 5730 + - uid: 5516 components: - type: Transform - pos: 22.5,25.5 + pos: 42.5,31.5 parent: 2 - - uid: 5731 + - uid: 5517 components: - type: Transform - pos: 22.5,26.5 + pos: 43.5,31.5 parent: 2 - - uid: 5732 + - uid: 5518 components: - type: Transform - pos: 22.5,27.5 + pos: 39.5,30.5 parent: 2 - - uid: 5733 + - uid: 5519 components: - type: Transform - pos: 23.5,27.5 + pos: 38.5,30.5 parent: 2 - - uid: 5734 + - uid: 5520 components: - type: Transform - pos: 24.5,27.5 + pos: 38.5,31.5 parent: 2 - - uid: 5735 + - uid: 5521 components: - type: Transform - pos: -30.5,37.5 + pos: 20.5,43.5 parent: 2 - - uid: 5736 + - uid: 5522 components: - type: Transform - pos: -31.5,37.5 + pos: 21.5,43.5 parent: 2 - - uid: 5737 + - uid: 5523 components: - type: Transform - pos: -32.5,37.5 + pos: 21.5,44.5 parent: 2 - - uid: 5738 + - uid: 5524 components: - type: Transform - pos: -32.5,38.5 + pos: 22.5,44.5 parent: 2 - - uid: 5739 + - uid: 5525 components: - type: Transform - pos: -32.5,39.5 + pos: 23.5,44.5 parent: 2 - - uid: 5740 + - uid: 5526 components: - type: Transform - pos: -32.5,40.5 + pos: 23.5,43.5 parent: 2 - - uid: 5741 + - uid: 5527 components: - type: Transform - pos: -17.5,72.5 + pos: 23.5,42.5 parent: 2 - - uid: 5742 + - uid: 5528 components: - type: Transform - pos: -22.5,41.5 + pos: 23.5,41.5 parent: 2 - - uid: 5743 + - uid: 5529 components: - type: Transform - pos: -16.5,41.5 + pos: 23.5,40.5 parent: 2 - - uid: 5744 + - uid: 5530 components: - type: Transform - pos: -15.5,41.5 + pos: 23.5,39.5 parent: 2 - - uid: 5745 + - uid: 5531 components: - type: Transform - pos: -18.5,41.5 + pos: 23.5,38.5 parent: 2 - - uid: 5746 + - uid: 5532 components: - type: Transform - pos: -17.5,41.5 + pos: 23.5,37.5 parent: 2 - - uid: 5747 + - uid: 5533 components: - type: Transform - pos: -23.5,41.5 + pos: 23.5,36.5 parent: 2 - - uid: 5748 + - uid: 5534 components: - type: Transform - pos: -24.5,41.5 + pos: 23.5,35.5 parent: 2 - - uid: 5749 + - uid: 5535 components: - type: Transform - pos: -24.5,41.5 + pos: 23.5,34.5 parent: 2 - - uid: 5757 + - uid: 5536 components: - type: Transform - pos: -17.5,73.5 + pos: 23.5,33.5 parent: 2 - - uid: 5760 + - uid: 5537 components: - type: Transform - pos: -19.5,74.5 + pos: 22.5,33.5 parent: 2 - - uid: 5761 + - uid: 5538 components: - type: Transform - pos: -18.5,74.5 + pos: 21.5,33.5 parent: 2 - - uid: 5762 + - uid: 5539 components: - type: Transform - pos: -17.5,74.5 + pos: 20.5,33.5 parent: 2 - - uid: 5763 + - uid: 5540 components: - type: Transform - pos: -16.5,74.5 + pos: 19.5,33.5 parent: 2 - - uid: 5764 + - uid: 5541 components: - type: Transform - pos: -15.5,74.5 + pos: 18.5,33.5 parent: 2 - - uid: 5765 + - uid: 5542 components: - type: Transform - pos: -14.5,74.5 + pos: 18.5,34.5 parent: 2 - - uid: 5766 + - uid: 5543 components: - type: Transform - pos: -13.5,74.5 + pos: 18.5,35.5 parent: 2 - - uid: 5767 + - uid: 5544 components: - type: Transform - pos: -13.5,76.5 + pos: 18.5,36.5 parent: 2 - - uid: 5768 + - uid: 5545 components: - type: Transform - pos: -14.5,76.5 + pos: 18.5,37.5 parent: 2 - - uid: 5769 + - uid: 5546 components: - type: Transform - pos: -15.5,76.5 + pos: 18.5,38.5 parent: 2 - - uid: 5770 + - uid: 5547 components: - type: Transform - pos: -16.5,76.5 + pos: 19.5,38.5 parent: 2 - - uid: 5771 + - uid: 5548 components: - type: Transform - pos: -17.5,76.5 + pos: 19.5,39.5 parent: 2 - - uid: 5772 + - uid: 5549 components: - type: Transform - pos: -18.5,76.5 + pos: 19.5,40.5 parent: 2 - - uid: 5773 + - uid: 5550 components: - type: Transform - pos: -19.5,76.5 + pos: 19.5,41.5 parent: 2 - - uid: 5774 + - uid: 5551 components: - type: Transform - pos: -20.5,76.5 + pos: 20.5,44.5 parent: 2 - - uid: 5775 + - uid: 5552 components: - type: Transform - pos: -21.5,76.5 + pos: 19.5,44.5 parent: 2 - - uid: 5776 + - uid: 5553 components: - type: Transform - pos: -17.5,75.5 + pos: 17.5,35.5 parent: 2 - - uid: 5777 + - uid: 5554 components: - type: Transform - pos: -12.5,37.5 + pos: 16.5,35.5 parent: 2 - - uid: 5778 + - uid: 5555 components: - type: Transform - pos: -6.5,16.5 + pos: 15.5,35.5 parent: 2 - - uid: 5779 + - uid: 5556 components: - type: Transform - pos: -6.5,17.5 + pos: 14.5,35.5 parent: 2 - - uid: 5780 + - uid: 5557 components: - type: Transform - pos: -6.5,18.5 + pos: 14.5,36.5 parent: 2 - - uid: 5781 + - uid: 5558 components: - type: Transform - pos: 13.5,32.5 + pos: 14.5,37.5 parent: 2 - - uid: 5782 + - uid: 5559 components: - type: Transform - pos: 36.5,59.5 + pos: 14.5,38.5 parent: 2 - - uid: 5783 + - uid: 5560 components: - type: Transform - pos: 37.5,59.5 + pos: 14.5,39.5 parent: 2 - - uid: 5784 + - uid: 5561 components: - type: Transform - pos: 38.5,59.5 + pos: 14.5,40.5 parent: 2 - - uid: 5785 + - uid: 5562 components: - type: Transform - pos: 39.5,59.5 + pos: 14.5,41.5 parent: 2 - - uid: 5786 + - uid: 5563 components: - type: Transform - pos: 39.5,58.5 + pos: 15.5,41.5 parent: 2 - - uid: 5787 + - uid: 5564 components: - type: Transform - pos: 39.5,57.5 + pos: 15.5,42.5 parent: 2 - - uid: 5788 + - uid: 5565 components: - type: Transform - pos: 23.5,-12.5 + pos: 15.5,38.5 parent: 2 - - uid: 5789 + - uid: 5566 components: - type: Transform - pos: 23.5,-11.5 + pos: 14.5,34.5 parent: 2 - - uid: 5790 + - uid: 5567 components: - type: Transform - pos: 23.5,-10.5 + pos: 24.5,36.5 parent: 2 - - uid: 5791 + - uid: 5568 components: - type: Transform - pos: 24.5,-10.5 + pos: 25.5,36.5 parent: 2 - - uid: 5792 + - uid: 5569 components: - type: Transform - pos: 24.5,-12.5 + pos: 26.5,36.5 parent: 2 - - uid: 5793 + - uid: 5570 components: - type: Transform - pos: 25.5,-12.5 + pos: 26.5,37.5 parent: 2 - - uid: 5794 + - uid: 5571 components: - type: Transform - pos: 25.5,-10.5 + pos: 13.5,40.5 parent: 2 - - uid: 5795 + - uid: 5572 components: - type: Transform - pos: 26.5,-10.5 + pos: 12.5,40.5 parent: 2 - - uid: 5796 + - uid: 5573 components: - type: Transform - pos: 26.5,-12.5 + pos: 11.5,40.5 parent: 2 - - uid: 5797 + - uid: 5574 components: - type: Transform - pos: 27.5,-10.5 + pos: 10.5,40.5 parent: 2 - - uid: 5798 + - uid: 5575 components: - type: Transform - pos: 27.5,-11.5 + pos: 14.5,34.5 parent: 2 - - uid: 5799 + - uid: 5576 components: - type: Transform - pos: 27.5,-12.5 + pos: 13.5,34.5 parent: 2 - - uid: 6656 + - uid: 5577 components: - type: Transform - pos: -24.5,75.5 + pos: 12.5,34.5 parent: 2 - - uid: 6657 + - uid: 5578 components: - type: Transform - pos: -23.5,74.5 + pos: 11.5,34.5 parent: 2 - - uid: 12073 + - uid: 5579 components: - type: Transform - pos: -31.5,68.5 + pos: 10.5,34.5 parent: 2 - - uid: 12538 + - uid: 5580 components: - type: Transform - pos: -11.5,70.5 + pos: 9.5,34.5 parent: 2 - - uid: 13971 + - uid: 5581 components: - type: Transform - pos: -23.5,75.5 + pos: 8.5,34.5 parent: 2 - - uid: 15141 + - uid: 5582 components: - type: Transform - pos: -23.5,73.5 + pos: 8.5,33.5 parent: 2 - - uid: 19420 + - uid: 5583 components: - type: Transform - pos: -36.5,71.5 + pos: 8.5,32.5 parent: 2 - - uid: 19421 + - uid: 5584 components: - type: Transform - pos: -35.5,71.5 + pos: 8.5,31.5 parent: 2 - - uid: 19422 + - uid: 5585 components: - type: Transform - pos: -35.5,72.5 + pos: 8.5,30.5 parent: 2 - - uid: 19423 + - uid: 5586 components: - type: Transform - pos: -35.5,73.5 + pos: 8.5,29.5 parent: 2 - - uid: 19424 + - uid: 5587 components: - type: Transform - pos: -35.5,74.5 + pos: 7.5,29.5 parent: 2 - - uid: 19425 + - uid: 5588 components: - type: Transform - pos: -35.5,75.5 + pos: 6.5,29.5 parent: 2 - - uid: 19426 + - uid: 5589 components: - type: Transform - pos: -35.5,76.5 + pos: 6.5,30.5 parent: 2 - - uid: 19427 + - uid: 5590 components: - type: Transform - pos: -34.5,76.5 + pos: 8.5,31.5 parent: 2 - - uid: 19428 + - uid: 5591 components: - type: Transform - pos: -34.5,77.5 + pos: 9.5,31.5 parent: 2 - - uid: 19429 + - uid: 5592 components: - type: Transform - pos: -33.5,77.5 + pos: 10.5,31.5 parent: 2 - - uid: 19430 + - uid: 5593 components: - type: Transform - pos: -33.5,78.5 + pos: 11.5,31.5 parent: 2 - - uid: 19432 + - uid: 5594 components: - type: Transform - pos: -32.5,78.5 + pos: 12.5,31.5 parent: 2 - - uid: 19433 + - uid: 5595 components: - type: Transform - pos: -32.5,78.5 + pos: 13.5,31.5 parent: 2 - - uid: 19434 + - uid: 5596 components: - type: Transform - pos: -31.5,78.5 + pos: 13.5,30.5 parent: 2 - - uid: 19435 + - uid: 5597 components: - type: Transform - pos: -30.5,78.5 + pos: 13.5,29.5 parent: 2 - - uid: 19436 + - uid: 5598 components: - type: Transform - pos: -29.5,78.5 + pos: 13.5,28.5 parent: 2 - - uid: 19437 + - uid: 5599 components: - type: Transform - pos: -29.5,77.5 + pos: 13.5,27.5 parent: 2 - - uid: 19438 + - uid: 5600 components: - type: Transform - pos: -28.5,77.5 + pos: 14.5,27.5 parent: 2 - - uid: 19439 + - uid: 5601 components: - type: Transform - pos: -28.5,76.5 + pos: 83.5,46.5 parent: 2 - - uid: 19440 + - uid: 5602 components: - type: Transform - pos: -27.5,76.5 + pos: 82.5,46.5 parent: 2 - - uid: 19441 + - uid: 5603 components: - type: Transform - pos: -27.5,75.5 + pos: 81.5,46.5 parent: 2 -- proto: CableMVStack - entities: - - uid: 5800 + - uid: 5604 components: - type: Transform - pos: -7.483595,28.481287 + pos: 81.5,47.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 5801 + - uid: 5605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,44.5 + pos: 80.5,47.5 parent: 2 - - uid: 5802 + - uid: 5606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,44.5 + pos: 79.5,47.5 parent: 2 - - uid: 5803 + - uid: 5607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,44.5 + pos: 78.5,47.5 parent: 2 - - uid: 5804 + - uid: 5608 components: - type: Transform - pos: 31.5,64.5 + pos: 77.5,47.5 parent: 2 - - uid: 5805 + - uid: 5609 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,7.5 + pos: 77.5,46.5 parent: 2 - - uid: 5806 + - uid: 5610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,0.5 + pos: 81.5,45.5 parent: 2 - - uid: 5807 + - uid: 5611 components: - type: Transform - pos: 31.5,0.5 + pos: 81.5,44.5 parent: 2 - - uid: 5808 + - uid: 5612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,36.5 + pos: 81.5,43.5 parent: 2 - - uid: 5809 + - uid: 5613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 + pos: 81.5,42.5 parent: 2 -- proto: CandleBlueInfinite - entities: - - uid: 4413 + - uid: 5614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.57869,50.655235 + pos: 81.5,41.5 parent: 2 - - uid: 4725 + - uid: 5615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.43365,50.747536 + pos: 81.5,40.5 parent: 2 -- proto: CandleBlueSmallInfinite - entities: - - uid: 4412 + - uid: 5616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.48639,50.61568 + pos: 81.5,39.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 13976 + - uid: 5617 components: - type: Transform - pos: -33.485596,76.50455 + pos: 80.5,39.5 parent: 2 - - uid: 13977 + - uid: 5618 components: - type: Transform - pos: -32.479267,77.51087 + pos: 79.5,39.5 parent: 2 - - uid: 17246 + - uid: 5619 components: - type: Transform - pos: -32.498253,76.50455 + pos: 81.5,38.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 5812 + - uid: 5620 components: - type: Transform - pos: 36.5,14.5 + pos: 81.5,37.5 parent: 2 - - uid: 5813 + - uid: 5621 components: - type: Transform - pos: 36.5,13.5 + pos: 81.5,36.5 parent: 2 - - uid: 5814 + - uid: 5622 components: - type: Transform - pos: -38.5,8.5 + pos: 80.5,36.5 parent: 2 - - uid: 14284 + - uid: 5623 components: - type: Transform - pos: -19.5,21.5 + pos: 79.5,36.5 parent: 2 - - uid: 14285 + - uid: 5624 components: - type: Transform - pos: -20.5,21.5 + pos: 78.5,36.5 parent: 2 -- proto: CargoBountyComputerCircuitboard - entities: - - uid: 5815 + - uid: 5625 components: - type: Transform - pos: -8.2761965,43.516277 + pos: 78.5,35.5 parent: 2 -- proto: CargoRequestComputerCircuitboard - entities: - - uid: 5816 + - uid: 5626 components: - type: Transform - pos: -8.570984,43.670586 + pos: 78.5,34.5 parent: 2 -- proto: CargoShuttleConsoleCircuitboard - entities: - - uid: 5817 + - uid: 5627 components: - type: Transform - pos: -8.613097,43.404053 + pos: 78.5,33.5 parent: 2 -- proto: Carpet - entities: - - uid: 5818 + - uid: 5628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,53.5 + pos: 77.5,34.5 parent: 2 - - uid: 5819 + - uid: 5629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,52.5 + pos: 76.5,34.5 parent: 2 - - uid: 5820 + - uid: 5630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,51.5 + pos: 75.5,34.5 parent: 2 - - uid: 5821 + - uid: 5631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,53.5 + pos: 74.5,34.5 parent: 2 - - uid: 5822 + - uid: 5632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,52.5 + pos: 74.5,35.5 parent: 2 - - uid: 5823 + - uid: 5633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,51.5 + pos: 74.5,33.5 parent: 2 - - uid: 5824 + - uid: 5634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,53.5 + pos: 81.5,35.5 parent: 2 - - uid: 5825 + - uid: 5635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,52.5 + pos: 81.5,34.5 parent: 2 - - uid: 5826 + - uid: 5636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,51.5 + pos: 81.5,33.5 parent: 2 - - uid: 5827 + - uid: 5637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,53.5 + pos: 81.5,32.5 parent: 2 - - uid: 5828 + - uid: 5638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,52.5 + pos: 81.5,31.5 parent: 2 - - uid: 5829 + - uid: 5639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,51.5 + pos: 81.5,30.5 parent: 2 - - uid: 5830 + - uid: 5640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,59.5 + pos: 81.5,29.5 parent: 2 - - uid: 5831 + - uid: 5641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,60.5 + pos: 81.5,28.5 parent: 2 - - uid: 5832 + - uid: 5642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,59.5 + pos: 81.5,27.5 parent: 2 - - uid: 5833 + - uid: 5643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,60.5 + pos: 81.5,26.5 parent: 2 - - uid: 5834 + - uid: 5644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,59.5 + pos: 81.5,25.5 parent: 2 - - uid: 5835 + - uid: 5645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,60.5 + pos: 81.5,24.5 parent: 2 - - uid: 5836 + - uid: 5646 components: - type: Transform - pos: 16.5,52.5 + pos: 80.5,24.5 parent: 2 - - uid: 5837 + - uid: 5647 components: - type: Transform - pos: 17.5,53.5 + pos: 79.5,24.5 parent: 2 - - uid: 5838 + - uid: 5648 components: - type: Transform - pos: 17.5,52.5 + pos: 80.5,30.5 parent: 2 - - uid: 5839 + - uid: 5649 components: - type: Transform - pos: 16.5,53.5 + pos: 79.5,30.5 parent: 2 - - uid: 5840 + - uid: 5650 components: - type: Transform - pos: 18.5,53.5 + pos: 78.5,30.5 parent: 2 - - uid: 5841 + - uid: 5651 components: - type: Transform - pos: 18.5,52.5 + pos: 77.5,30.5 parent: 2 - - uid: 5842 + - uid: 5652 components: - type: Transform - pos: 19.5,53.5 + pos: 76.5,30.5 parent: 2 - - uid: 5843 + - uid: 5653 components: - type: Transform - pos: 19.5,52.5 + pos: 75.5,30.5 parent: 2 - - uid: 5844 + - uid: 5654 components: - type: Transform - pos: 20.5,53.5 + pos: 75.5,31.5 parent: 2 - - uid: 5845 + - uid: 5655 components: - type: Transform - pos: 20.5,52.5 + pos: 75.5,32.5 parent: 2 - - uid: 5846 + - uid: 5656 components: - type: Transform - pos: 21.5,53.5 + pos: 78.5,29.5 parent: 2 - - uid: 5847 + - uid: 5657 components: - type: Transform - pos: 21.5,52.5 + pos: 78.5,28.5 parent: 2 - - uid: 5848 + - uid: 5658 components: - type: Transform - pos: 22.5,53.5 + pos: 78.5,27.5 parent: 2 - - uid: 5849 + - uid: 5659 components: - type: Transform - pos: 22.5,52.5 + pos: 74.5,31.5 parent: 2 - - uid: 5850 + - uid: 5660 components: - type: Transform - pos: 23.5,53.5 + pos: 73.5,31.5 parent: 2 - - uid: 5851 + - uid: 5661 components: - type: Transform - pos: 23.5,52.5 + pos: 72.5,31.5 parent: 2 - - uid: 5852 + - uid: 5662 components: - type: Transform - pos: 24.5,53.5 + pos: 71.5,31.5 parent: 2 - - uid: 5853 + - uid: 5663 components: - type: Transform - pos: 24.5,52.5 + pos: 70.5,31.5 parent: 2 - - uid: 5854 + - uid: 5664 components: - type: Transform - pos: 25.5,53.5 + pos: 69.5,31.5 parent: 2 - - uid: 5855 + - uid: 5666 components: - type: Transform - pos: 25.5,52.5 + pos: 79.5,23.5 parent: 2 - - uid: 5856 + - uid: 5667 components: - type: Transform - pos: 23.5,51.5 + pos: 78.5,23.5 parent: 2 - - uid: 5857 + - uid: 5668 components: - type: Transform - pos: 24.5,51.5 + pos: 77.5,23.5 parent: 2 - - uid: 5858 + - uid: 5669 components: - type: Transform - pos: 24.5,50.5 + pos: 53.5,57.5 parent: 2 - - uid: 5859 + - uid: 5670 components: - type: Transform - pos: 23.5,50.5 + pos: 54.5,57.5 parent: 2 - - uid: 5860 + - uid: 5671 components: - type: Transform - pos: 21.5,54.5 + pos: 55.5,57.5 parent: 2 - - uid: 5861 + - uid: 5672 components: - type: Transform - pos: 21.5,55.5 + pos: 56.5,57.5 parent: 2 - - uid: 5862 + - uid: 5673 components: - type: Transform - pos: 21.5,56.5 + pos: 57.5,57.5 parent: 2 - - uid: 5863 + - uid: 5674 components: - type: Transform - pos: 21.5,57.5 + pos: 58.5,57.5 parent: 2 - - uid: 5864 + - uid: 5675 components: - type: Transform - pos: 22.5,54.5 + pos: 59.5,57.5 parent: 2 - - uid: 5865 + - uid: 5676 components: - type: Transform - pos: 22.5,55.5 + pos: 59.5,58.5 parent: 2 - - uid: 5866 + - uid: 5677 components: - type: Transform - pos: 22.5,56.5 + pos: 76.5,13.5 parent: 2 - - uid: 5867 + - uid: 5678 components: - type: Transform - pos: 22.5,57.5 + pos: 75.5,13.5 parent: 2 - - uid: 5868 + - uid: 5679 components: - type: Transform - pos: 23.5,54.5 + pos: 75.5,14.5 parent: 2 - - uid: 5869 + - uid: 5680 components: - type: Transform - pos: 23.5,55.5 + pos: 75.5,15.5 parent: 2 - - uid: 5870 + - uid: 5681 components: - type: Transform - pos: 23.5,56.5 + pos: 75.5,16.5 parent: 2 - - uid: 5871 + - uid: 5682 components: - type: Transform - pos: 23.5,57.5 + pos: 75.5,17.5 parent: 2 - - uid: 5872 + - uid: 5683 components: - type: Transform - pos: 24.5,54.5 + pos: 74.5,17.5 parent: 2 - - uid: 5873 + - uid: 5684 components: - type: Transform - pos: 24.5,55.5 + pos: 74.5,18.5 parent: 2 - - uid: 5874 + - uid: 5685 components: - type: Transform - pos: 24.5,56.5 + pos: 73.5,18.5 parent: 2 - - uid: 5875 + - uid: 5686 components: - type: Transform - pos: 24.5,57.5 + pos: 72.5,18.5 parent: 2 - - uid: 5876 + - uid: 5687 components: - type: Transform - pos: 25.5,54.5 + pos: 70.5,18.5 parent: 2 - - uid: 5877 + - uid: 5688 components: - type: Transform - pos: 25.5,55.5 + pos: 71.5,18.5 parent: 2 - - uid: 5878 + - uid: 5689 components: - type: Transform - pos: 25.5,56.5 + pos: 70.5,19.5 parent: 2 - - uid: 5879 + - uid: 5690 components: - type: Transform - pos: 25.5,57.5 + pos: 70.5,20.5 parent: 2 - - uid: 5880 + - uid: 5691 components: - type: Transform - pos: 63.5,13.5 + pos: 70.5,21.5 parent: 2 - - uid: 5881 + - uid: 5692 components: - type: Transform - pos: 63.5,14.5 + pos: 70.5,22.5 parent: 2 - - uid: 5882 + - uid: 5693 components: - type: Transform - pos: 63.5,15.5 + pos: 74.5,16.5 parent: 2 - - uid: 5883 + - uid: 5694 components: - type: Transform - pos: 63.5,16.5 + pos: 73.5,16.5 parent: 2 -- proto: CarpetBlack - entities: - - uid: 740 + - uid: 5695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,30.5 + pos: 69.5,18.5 parent: 2 - - uid: 5884 + - uid: 5696 components: - type: Transform - pos: 74.5,31.5 + pos: 68.5,18.5 parent: 2 - - uid: 5885 + - uid: 5697 components: - type: Transform - pos: 74.5,30.5 + pos: 67.5,18.5 parent: 2 - - uid: 5886 + - uid: 5698 components: - type: Transform - pos: 75.5,31.5 + pos: 66.5,18.5 parent: 2 - - uid: 5887 + - uid: 5699 components: - type: Transform - pos: 75.5,30.5 + pos: 65.5,18.5 parent: 2 - - uid: 5888 + - uid: 5700 components: - type: Transform - pos: 76.5,31.5 + pos: 65.5,17.5 parent: 2 - - uid: 5889 + - uid: 5701 components: - type: Transform - pos: 76.5,30.5 + pos: 65.5,16.5 parent: 2 - - uid: 8449 + - uid: 5702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,31.5 + pos: 65.5,15.5 parent: 2 - - uid: 8587 + - uid: 5703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,30.5 + pos: 65.5,14.5 parent: 2 - - uid: 12650 + - uid: 5704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,31.5 + pos: 65.5,13.5 parent: 2 - - uid: 12991 + - uid: 5705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,29.5 + pos: 65.5,12.5 parent: 2 - - uid: 13130 + - uid: 5706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,28.5 + pos: 65.5,11.5 parent: 2 - - uid: 13682 + - uid: 5707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,31.5 + pos: 65.5,10.5 parent: 2 - - uid: 16997 + - uid: 5708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,30.5 + pos: 65.5,9.5 parent: 2 - - uid: 17003 + - uid: 5709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,28.5 + pos: 65.5,8.5 parent: 2 - - uid: 17004 + - uid: 5710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,27.5 + pos: 65.5,7.5 parent: 2 - - uid: 17005 + - uid: 5711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,29.5 + pos: 65.5,6.5 parent: 2 - - uid: 17006 + - uid: 5712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,27.5 + pos: 64.5,6.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 5890 + - uid: 5713 components: - type: Transform - pos: 74.5,40.5 + pos: 63.5,6.5 parent: 2 - - uid: 5891 + - uid: 5714 components: - type: Transform - pos: 74.5,39.5 + pos: 62.5,6.5 parent: 2 - - uid: 5892 + - uid: 5715 components: - type: Transform - pos: 74.5,38.5 + pos: 15.5,30.5 parent: 2 - - uid: 5893 + - uid: 5716 components: - type: Transform - pos: 74.5,37.5 + pos: 14.5,30.5 parent: 2 - - uid: 5894 + - uid: 5717 components: - type: Transform - pos: 75.5,40.5 + pos: 16.5,30.5 parent: 2 - - uid: 5895 + - uid: 5718 components: - type: Transform - pos: 75.5,39.5 + pos: 17.5,30.5 parent: 2 - - uid: 5896 + - uid: 5719 components: - type: Transform - pos: 75.5,38.5 + pos: 17.5,29.5 parent: 2 - - uid: 5897 + - uid: 5720 components: - type: Transform - pos: 75.5,37.5 + pos: 17.5,28.5 parent: 2 -- proto: CarpetChapel - entities: - - uid: 5898 + - uid: 5721 components: - type: Transform - pos: 8.5,54.5 + pos: 17.5,27.5 parent: 2 - - uid: 5899 + - uid: 5722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,54.5 + pos: 17.5,26.5 parent: 2 - - uid: 5900 + - uid: 5723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,55.5 + pos: 17.5,25.5 parent: 2 - - uid: 5901 + - uid: 5724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,55.5 + pos: 17.5,24.5 parent: 2 - - uid: 5902 + - uid: 5725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,57.5 + pos: 18.5,24.5 parent: 2 - - uid: 5903 + - uid: 5726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,57.5 + pos: 19.5,24.5 parent: 2 - - uid: 5904 + - uid: 5727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,55.5 + pos: 20.5,24.5 parent: 2 - - uid: 5905 + - uid: 5728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,56.5 + pos: 21.5,24.5 parent: 2 - - uid: 5906 + - uid: 5729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,56.5 + pos: 22.5,24.5 parent: 2 - - uid: 5907 + - uid: 5730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,54.5 + pos: 22.5,25.5 parent: 2 - - uid: 5908 + - uid: 5731 components: - type: Transform - pos: 11.5,54.5 + pos: 22.5,26.5 parent: 2 - - uid: 5909 + - uid: 5732 components: - type: Transform - pos: 8.5,56.5 + pos: 22.5,27.5 parent: 2 - - uid: 5910 + - uid: 5733 components: - type: Transform - pos: 11.5,56.5 + pos: 23.5,27.5 parent: 2 - - uid: 5911 + - uid: 5734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,55.5 + pos: 24.5,27.5 parent: 2 - - uid: 5912 + - uid: 5741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,57.5 + pos: -17.5,72.5 parent: 2 - - uid: 5913 + - uid: 5742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,57.5 + pos: -22.5,41.5 parent: 2 -- proto: CarpetCyan - entities: - - uid: 8591 + - uid: 5743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,23.5 + pos: -16.5,41.5 parent: 2 - - uid: 8985 + - uid: 5744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,24.5 + pos: -15.5,41.5 parent: 2 - - uid: 13665 + - uid: 5745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,25.5 + pos: -18.5,41.5 parent: 2 -- proto: CarpetOrange - entities: - - uid: 5914 + - uid: 5746 components: - type: Transform - pos: -3.5,24.5 + pos: -17.5,41.5 parent: 2 - - uid: 5915 + - uid: 5747 components: - type: Transform - pos: -3.5,25.5 + pos: -23.5,41.5 parent: 2 - - uid: 5916 + - uid: 5748 components: - type: Transform - pos: -4.5,24.5 + pos: -24.5,41.5 parent: 2 - - uid: 5917 + - uid: 5749 components: - type: Transform - pos: -4.5,25.5 + pos: -24.5,41.5 parent: 2 - - uid: 5918 + - uid: 5757 components: - type: Transform - pos: -5.5,24.5 + pos: -17.5,73.5 parent: 2 - - uid: 5919 + - uid: 5760 components: - type: Transform - pos: -5.5,25.5 + pos: -19.5,74.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5920 + - uid: 5761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,53.5 + pos: -18.5,74.5 parent: 2 - - uid: 5921 + - uid: 5762 components: - type: Transform - pos: 53.5,16.5 + pos: -17.5,74.5 parent: 2 - - uid: 5922 + - uid: 5763 components: - type: Transform - pos: 53.5,15.5 + pos: -16.5,74.5 parent: 2 - - uid: 5923 + - uid: 5764 components: - type: Transform - pos: 53.5,14.5 + pos: -15.5,74.5 parent: 2 - - uid: 5924 + - uid: 5765 components: - type: Transform - pos: 52.5,16.5 + pos: -14.5,74.5 parent: 2 - - uid: 5925 + - uid: 5766 components: - type: Transform - pos: 52.5,15.5 + pos: -13.5,74.5 parent: 2 - - uid: 5926 + - uid: 5767 components: - type: Transform - pos: 52.5,14.5 + pos: -13.5,76.5 parent: 2 - - uid: 5927 + - uid: 5768 components: - type: Transform - pos: 10.5,57.5 + pos: -14.5,76.5 parent: 2 - - uid: 5928 + - uid: 5769 components: - type: Transform - pos: 10.5,56.5 + pos: -15.5,76.5 parent: 2 - - uid: 5929 + - uid: 5770 components: - type: Transform - pos: 10.5,55.5 + pos: -16.5,76.5 parent: 2 - - uid: 5930 + - uid: 5771 components: - type: Transform - pos: 10.5,54.5 + pos: -17.5,76.5 parent: 2 - - uid: 5931 + - uid: 5772 components: - type: Transform - pos: 10.5,53.5 + pos: -18.5,76.5 parent: 2 - - uid: 5932 + - uid: 5773 components: - type: Transform - pos: 10.5,51.5 + pos: -19.5,76.5 parent: 2 - - uid: 5933 + - uid: 5774 components: - type: Transform - pos: 7.5,52.5 + pos: -20.5,76.5 parent: 2 - - uid: 5934 + - uid: 5775 components: - type: Transform - pos: 8.5,52.5 + pos: -21.5,76.5 parent: 2 - - uid: 5935 + - uid: 5776 components: - type: Transform - pos: 9.5,52.5 + pos: -17.5,75.5 parent: 2 - - uid: 5936 + - uid: 5777 components: - type: Transform - pos: 11.5,51.5 + pos: -12.5,37.5 parent: 2 - - uid: 5937 + - uid: 5778 components: - type: Transform - pos: 12.5,51.5 + pos: -6.5,16.5 parent: 2 - - uid: 5938 + - uid: 5779 components: - type: Transform - pos: 11.5,53.5 + pos: -6.5,17.5 parent: 2 - - uid: 5939 + - uid: 5780 components: - type: Transform - pos: 11.5,52.5 + pos: -6.5,18.5 parent: 2 - - uid: 5940 + - uid: 5781 components: - type: Transform - pos: 12.5,53.5 + pos: 13.5,32.5 parent: 2 - - uid: 5941 + - uid: 5782 components: - type: Transform - pos: 12.5,52.5 + pos: 36.5,59.5 parent: 2 - - uid: 5942 + - uid: 5783 components: - type: Transform - pos: 13.5,53.5 + pos: 37.5,59.5 parent: 2 - - uid: 5943 + - uid: 5784 components: - type: Transform - pos: 13.5,52.5 + pos: 38.5,59.5 parent: 2 - - uid: 5944 + - uid: 5785 components: - type: Transform - pos: 14.5,53.5 + pos: 39.5,59.5 parent: 2 - - uid: 5945 + - uid: 5786 components: - type: Transform - pos: 14.5,52.5 + pos: 39.5,58.5 parent: 2 - - uid: 5946 + - uid: 5787 components: - type: Transform - pos: 15.5,53.5 + pos: 39.5,57.5 parent: 2 - - uid: 5947 + - uid: 6656 components: - type: Transform - pos: 15.5,52.5 + pos: -24.5,75.5 parent: 2 - - uid: 5948 + - uid: 6657 components: - type: Transform - pos: 8.5,51.5 + pos: -23.5,74.5 parent: 2 - - uid: 5949 + - uid: 12073 components: - type: Transform - pos: 9.5,51.5 + pos: -31.5,68.5 parent: 2 - - uid: 5950 + - uid: 12538 components: - type: Transform - pos: 13.5,51.5 + pos: -11.5,70.5 parent: 2 - - uid: 5951 + - uid: 13971 components: - type: Transform - pos: 14.5,51.5 + pos: -23.5,75.5 parent: 2 - - uid: 5952 + - uid: 15141 components: - type: Transform - pos: 10.5,50.5 + pos: -23.5,73.5 parent: 2 - - uid: 5953 + - uid: 19420 components: - type: Transform - pos: 9.5,50.5 + pos: -36.5,71.5 parent: 2 - - uid: 5954 + - uid: 19421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,53.5 + pos: -35.5,71.5 parent: 2 - - uid: 5955 + - uid: 19422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,53.5 + pos: -35.5,72.5 parent: 2 - - uid: 5956 + - uid: 19423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,52.5 + pos: -35.5,73.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 5958 + - uid: 19424 components: - type: Transform - pos: 18.5,39.5 + pos: -35.5,74.5 parent: 2 - - uid: 5959 + - uid: 19425 components: - type: Transform - pos: 18.5,38.5 + pos: -35.5,75.5 parent: 2 - - uid: 5960 + - uid: 19426 components: - type: Transform - pos: 19.5,39.5 + pos: -35.5,76.5 parent: 2 - - uid: 5961 + - uid: 19427 components: - type: Transform - pos: 19.5,38.5 + pos: -34.5,76.5 parent: 2 - - uid: 5962 + - uid: 19428 components: - type: Transform - pos: 20.5,39.5 + pos: -34.5,77.5 parent: 2 - - uid: 5963 + - uid: 19429 components: - type: Transform - pos: 20.5,38.5 + pos: -33.5,77.5 parent: 2 - - uid: 5964 + - uid: 19430 components: - type: Transform - pos: 77.5,27.5 + pos: -33.5,78.5 parent: 2 - - uid: 5965 + - uid: 19432 components: - type: Transform - pos: 76.5,26.5 + pos: -32.5,78.5 parent: 2 - - uid: 5966 + - uid: 19433 components: - type: Transform - pos: 76.5,25.5 + pos: -32.5,78.5 parent: 2 - - uid: 5967 + - uid: 19434 components: - type: Transform - pos: 76.5,24.5 + pos: -31.5,78.5 parent: 2 - - uid: 5968 + - uid: 19435 components: - type: Transform - pos: 77.5,26.5 + pos: -30.5,78.5 parent: 2 - - uid: 5969 + - uid: 19436 components: - type: Transform - pos: 77.5,25.5 + pos: -29.5,78.5 parent: 2 - - uid: 5970 + - uid: 19437 components: - type: Transform - pos: 77.5,24.5 + pos: -29.5,77.5 parent: 2 - - uid: 5971 + - uid: 19438 components: - type: Transform - pos: 78.5,26.5 + pos: -28.5,77.5 parent: 2 - - uid: 5972 + - uid: 19439 components: - type: Transform - pos: 78.5,25.5 + pos: -28.5,76.5 parent: 2 - - uid: 5973 + - uid: 19440 components: - type: Transform - pos: 78.5,24.5 + pos: -27.5,76.5 parent: 2 - - uid: 5974 + - uid: 19441 components: - type: Transform - pos: 83.5,25.5 + pos: -27.5,75.5 parent: 2 - - uid: 5975 + - uid: 19822 components: - type: Transform - pos: 83.5,24.5 + pos: 34.5,-18.5 parent: 2 - - uid: 5976 + - uid: 19823 components: - type: Transform - pos: 83.5,23.5 + pos: 33.5,-18.5 parent: 2 - - uid: 5977 + - uid: 19824 components: - type: Transform - pos: 83.5,22.5 + pos: 32.5,-18.5 parent: 2 - - uid: 5978 + - uid: 19825 components: - type: Transform - pos: 82.5,25.5 + pos: 31.5,-18.5 parent: 2 - - uid: 5979 + - uid: 19826 components: - type: Transform - pos: 82.5,24.5 + pos: 30.5,-18.5 parent: 2 - - uid: 5980 + - uid: 19827 components: - type: Transform - pos: 82.5,23.5 + pos: 30.5,-17.5 parent: 2 - - uid: 5981 + - uid: 19828 components: - type: Transform - pos: 82.5,22.5 + pos: 30.5,-16.5 parent: 2 - - uid: 5982 + - uid: 19829 components: - type: Transform - pos: 81.5,25.5 + pos: 30.5,-15.5 parent: 2 - - uid: 5983 + - uid: 19830 components: - type: Transform - pos: 81.5,24.5 + pos: 30.5,-14.5 parent: 2 - - uid: 5984 + - uid: 19831 components: - type: Transform - pos: 81.5,23.5 + pos: 30.5,-19.5 parent: 2 - - uid: 5985 + - uid: 19832 components: - type: Transform - pos: 81.5,22.5 + pos: 30.5,-20.5 parent: 2 -- proto: Catwalk - entities: - - uid: 4406 + - uid: 19833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,53.5 + pos: 30.5,-21.5 parent: 2 - - uid: 4407 + - uid: 19834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,53.5 + pos: 30.5,-22.5 parent: 2 - - uid: 4434 + - uid: 19835 components: - type: Transform - pos: 45.5,56.5 + pos: 30.5,-23.5 parent: 2 - - uid: 4726 + - uid: 19836 components: - type: Transform - pos: -15.5,23.5 + pos: 30.5,-24.5 parent: 2 - - uid: 4727 + - uid: 19837 components: - type: Transform - pos: -12.5,24.5 + pos: 31.5,-24.5 parent: 2 - - uid: 4730 + - uid: 19838 components: - type: Transform - pos: -12.5,23.5 + pos: 32.5,-24.5 parent: 2 - - uid: 5068 + - uid: 19839 components: - type: Transform - pos: 7.5,0.5 + pos: 33.5,-24.5 parent: 2 - - uid: 5989 + - uid: 19840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 + pos: 34.5,-24.5 parent: 2 - - uid: 5990 + - uid: 19841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,30.5 + pos: 34.5,-25.5 parent: 2 - - uid: 5991 + - uid: 19842 components: - type: Transform - pos: -24.5,-11.5 + pos: 34.5,-26.5 parent: 2 - - uid: 5992 + - uid: 19843 components: - type: Transform - pos: -25.5,-11.5 + pos: 30.5,-48.5 parent: 2 - - uid: 5993 + - uid: 19844 components: - type: Transform - pos: -22.5,-1.5 + pos: 30.5,-47.5 parent: 2 - - uid: 5995 + - uid: 19845 components: - type: Transform - pos: -22.5,-2.5 + pos: 30.5,-46.5 parent: 2 - - uid: 5996 + - uid: 19846 components: - type: Transform - pos: -26.5,-11.5 + pos: 30.5,-45.5 parent: 2 - - uid: 6003 + - uid: 19847 components: - type: Transform - pos: -24.5,-3.5 + pos: 30.5,-44.5 parent: 2 - - uid: 6004 + - uid: 19848 components: - type: Transform - pos: -23.5,-13.5 + pos: 30.5,-43.5 parent: 2 - - uid: 6005 + - uid: 19849 components: - type: Transform - pos: -22.5,-10.5 + pos: 30.5,-42.5 parent: 2 - - uid: 6006 + - uid: 19850 components: - type: Transform - pos: -22.5,-11.5 + pos: 29.5,-42.5 parent: 2 - - uid: 6007 + - uid: 19851 components: - type: Transform - pos: -22.5,-6.5 + pos: 28.5,-42.5 parent: 2 - - uid: 6008 + - uid: 19852 components: - type: Transform - pos: -22.5,-7.5 + pos: 27.5,-42.5 parent: 2 - - uid: 6009 + - uid: 19853 components: - type: Transform - pos: -22.5,-8.5 + pos: 30.5,-41.5 parent: 2 - - uid: 6010 + - uid: 19854 components: - type: Transform - pos: -22.5,-9.5 + pos: 30.5,-40.5 parent: 2 - - uid: 6011 + - uid: 19855 components: - type: Transform - pos: -23.5,-3.5 + pos: 30.5,-39.5 parent: 2 - - uid: 6012 + - uid: 19856 components: - type: Transform - pos: -23.5,-11.5 + pos: 30.5,-38.5 parent: 2 - - uid: 6013 + - uid: 19857 components: - type: Transform - pos: -23.5,-12.5 + pos: 30.5,-37.5 parent: 2 - - uid: 6017 + - uid: 19858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,25.5 + pos: 30.5,-36.5 parent: 2 - - uid: 6018 + - uid: 19859 components: - type: Transform - pos: -27.5,-11.5 + pos: 30.5,-35.5 parent: 2 - - uid: 6019 + - uid: 19860 components: - type: Transform - pos: 33.5,79.5 + pos: 30.5,-34.5 parent: 2 - - uid: 6020 + - uid: 19861 components: - type: Transform - pos: -29.5,-11.5 + pos: 29.5,-34.5 parent: 2 - - uid: 6021 +- proto: CableMVStack + entities: + - uid: 5800 components: - type: Transform - pos: -28.5,-11.5 + pos: -7.483595,28.481287 parent: 2 - - uid: 6022 +- proto: CableTerminal + entities: + - uid: 5801 components: - type: Transform - pos: 33.5,77.5 + rot: 3.141592653589793 rad + pos: -14.5,44.5 parent: 2 - - uid: 6023 + - uid: 5802 components: - type: Transform - pos: -26.5,21.5 + rot: 3.141592653589793 rad + pos: -13.5,44.5 parent: 2 - - uid: 6024 + - uid: 5803 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,21.5 + pos: -12.5,44.5 parent: 2 - - uid: 6025 + - uid: 5804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,19.5 + pos: 31.5,64.5 parent: 2 - - uid: 6026 + - uid: 5805 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,17.5 + pos: -20.5,7.5 parent: 2 - - uid: 6027 + - uid: 5806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,15.5 + rot: -1.5707963267948966 rad + pos: 42.5,0.5 parent: 2 - - uid: 6028 + - uid: 5807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,13.5 + pos: 31.5,0.5 parent: 2 - - uid: 6029 + - uid: 18398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,11.5 + pos: 36.5,-31.5 parent: 2 - - uid: 6030 +- proto: CandleBlueInfinite + entities: + - uid: 4413 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,9.5 + pos: 80.57869,50.655235 parent: 2 - - uid: 6031 + - uid: 4725 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,7.5 + pos: 80.43365,50.747536 parent: 2 - - uid: 6032 +- proto: CandleBlueSmallInfinite + entities: + - uid: 4412 components: - type: Transform - pos: -33.5,5.5 + rot: 3.141592653589793 rad + pos: 80.48639,50.61568 parent: 2 - - uid: 6033 +- proto: CannabisSeeds + entities: + - uid: 13976 components: - type: Transform - pos: -31.5,5.5 + pos: -33.485596,76.50455 parent: 2 - - uid: 6034 + - uid: 13977 components: - type: Transform - pos: -29.5,5.5 + pos: -32.479267,77.51087 parent: 2 - - uid: 6035 + - uid: 17246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,3.5 + pos: -32.498253,76.50455 parent: 2 - - uid: 6036 +- proto: CarbonDioxideCanister + entities: + - uid: 5812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,2.5 + pos: 36.5,14.5 parent: 2 - - uid: 6037 + - uid: 5813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,3.5 + pos: 36.5,13.5 parent: 2 - - uid: 6038 + - uid: 5814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,2.5 + pos: -38.5,8.5 parent: 2 - - uid: 6039 + - uid: 14284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,48.5 + pos: -19.5,21.5 parent: 2 - - uid: 6040 + - uid: 14285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,52.5 + pos: -20.5,21.5 parent: 2 - - uid: 6041 +- proto: CargoBountyComputerCircuitboard + entities: + - uid: 5815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,51.5 + pos: -8.2761965,43.516277 parent: 2 - - uid: 6042 +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 5816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,52.5 + pos: -8.570984,43.670586 parent: 2 - - uid: 6043 +- proto: CargoShuttleConsoleCircuitboard + entities: + - uid: 5817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,51.5 + pos: -8.613097,43.404053 parent: 2 - - uid: 6044 +- proto: Carpet + entities: + - uid: 5818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,52.5 + rot: 3.141592653589793 rad + pos: -20.5,53.5 parent: 2 - - uid: 6045 + - uid: 5819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,51.5 + rot: 3.141592653589793 rad + pos: -20.5,52.5 parent: 2 - - uid: 6046 + - uid: 5820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,50.5 + rot: 3.141592653589793 rad + pos: -20.5,51.5 parent: 2 - - uid: 6055 + - uid: 5821 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,71.5 + pos: -19.5,53.5 parent: 2 - - uid: 6057 + - uid: 5822 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,71.5 + pos: -19.5,52.5 parent: 2 - - uid: 6058 + - uid: 5823 components: - type: Transform - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: -19.5,51.5 parent: 2 - - uid: 6059 + - uid: 5824 components: - type: Transform - pos: 5.5,0.5 + rot: 3.141592653589793 rad + pos: -18.5,53.5 parent: 2 - - uid: 6060 + - uid: 5825 components: - type: Transform - pos: 6.5,0.5 + rot: 3.141592653589793 rad + pos: -18.5,52.5 parent: 2 - - uid: 6063 + - uid: 5826 components: - type: Transform - pos: 7.5,-0.5 + rot: 3.141592653589793 rad + pos: -18.5,51.5 parent: 2 - - uid: 6064 + - uid: 5827 components: - type: Transform - pos: 8.5,-0.5 + rot: 3.141592653589793 rad + pos: -17.5,53.5 parent: 2 - - uid: 6065 + - uid: 5828 components: - type: Transform - pos: 9.5,-0.5 + rot: 3.141592653589793 rad + pos: -17.5,52.5 parent: 2 - - uid: 6066 + - uid: 5829 components: - type: Transform - pos: 10.5,-0.5 + rot: 3.141592653589793 rad + pos: -17.5,51.5 parent: 2 - - uid: 6067 + - uid: 5830 components: - type: Transform - pos: 11.5,-0.5 + rot: -1.5707963267948966 rad + pos: 0.5,59.5 parent: 2 - - uid: 6068 + - uid: 5831 components: - type: Transform - pos: 12.5,-0.5 + rot: -1.5707963267948966 rad + pos: 0.5,60.5 parent: 2 - - uid: 6069 + - uid: 5832 components: - type: Transform - pos: 13.5,-0.5 + rot: -1.5707963267948966 rad + pos: -0.5,59.5 parent: 2 - - uid: 6070 + - uid: 5833 components: - type: Transform - pos: 13.5,-1.5 + rot: -1.5707963267948966 rad + pos: -0.5,60.5 parent: 2 - - uid: 6071 + - uid: 5834 components: - type: Transform - pos: 12.5,-1.5 + rot: -1.5707963267948966 rad + pos: -1.5,59.5 parent: 2 - - uid: 6072 + - uid: 5835 components: - type: Transform - pos: 11.5,-1.5 + rot: -1.5707963267948966 rad + pos: -1.5,60.5 parent: 2 - - uid: 6074 + - uid: 5836 components: - type: Transform - pos: 16.5,-2.5 + pos: 16.5,52.5 parent: 2 - - uid: 6075 + - uid: 5837 components: - type: Transform - pos: 18.5,-4.5 + pos: 17.5,53.5 parent: 2 - - uid: 6076 + - uid: 5838 components: - type: Transform - pos: 20.5,-5.5 + pos: 17.5,52.5 parent: 2 - - uid: 6077 + - uid: 5839 components: - type: Transform - pos: 57.5,8.5 + pos: 16.5,53.5 parent: 2 - - uid: 6078 + - uid: 5840 components: - type: Transform - pos: 58.5,8.5 + pos: 18.5,53.5 parent: 2 - - uid: 6079 + - uid: 5841 components: - type: Transform - pos: 59.5,8.5 + pos: 18.5,52.5 parent: 2 - - uid: 6080 + - uid: 5842 components: - type: Transform - pos: 59.5,7.5 + pos: 19.5,53.5 parent: 2 - - uid: 6081 + - uid: 5843 components: - type: Transform - pos: 59.5,6.5 + pos: 19.5,52.5 parent: 2 - - uid: 6082 + - uid: 5844 components: - type: Transform - pos: 59.5,5.5 + pos: 20.5,53.5 parent: 2 - - uid: 6083 + - uid: 5845 components: - type: Transform - pos: 59.5,4.5 + pos: 20.5,52.5 parent: 2 - - uid: 6084 + - uid: 5846 components: - type: Transform - pos: 59.5,3.5 + pos: 21.5,53.5 parent: 2 - - uid: 6085 + - uid: 5847 components: - type: Transform - pos: 59.5,2.5 + pos: 21.5,52.5 parent: 2 - - uid: 6086 + - uid: 5848 components: - type: Transform - pos: 59.5,1.5 + pos: 22.5,53.5 parent: 2 - - uid: 6087 + - uid: 5849 components: - type: Transform - pos: 59.5,0.5 + pos: 22.5,52.5 parent: 2 - - uid: 6088 + - uid: 5850 components: - type: Transform - pos: 59.5,-0.5 + pos: 23.5,53.5 parent: 2 - - uid: 6089 + - uid: 5851 components: - type: Transform - pos: 59.5,-1.5 + pos: 23.5,52.5 parent: 2 - - uid: 6090 + - uid: 5852 components: - type: Transform - pos: 59.5,-3.5 + pos: 24.5,53.5 parent: 2 - - uid: 6091 + - uid: 5853 components: - type: Transform - pos: 59.5,-4.5 + pos: 24.5,52.5 parent: 2 - - uid: 6092 + - uid: 5854 components: - type: Transform - pos: 59.5,-5.5 + pos: 25.5,53.5 parent: 2 - - uid: 6093 + - uid: 5855 components: - type: Transform - pos: 58.5,-5.5 + pos: 25.5,52.5 parent: 2 - - uid: 6094 + - uid: 5856 components: - type: Transform - pos: 57.5,-5.5 + pos: 23.5,51.5 parent: 2 - - uid: 6095 + - uid: 5857 components: - type: Transform - pos: 55.5,-7.5 + pos: 24.5,51.5 parent: 2 - - uid: 6096 + - uid: 5858 components: - type: Transform - pos: 55.5,-8.5 + pos: 24.5,50.5 parent: 2 - - uid: 6097 + - uid: 5859 components: - type: Transform - pos: 55.5,-9.5 + pos: 23.5,50.5 parent: 2 - - uid: 6098 + - uid: 5860 components: - type: Transform - pos: 55.5,-10.5 + pos: 21.5,54.5 parent: 2 - - uid: 6099 + - uid: 5861 components: - type: Transform - pos: 54.5,-10.5 + pos: 21.5,55.5 parent: 2 - - uid: 6100 + - uid: 5862 components: - type: Transform - pos: 53.5,-10.5 + pos: 21.5,56.5 parent: 2 - - uid: 6101 + - uid: 5863 components: - type: Transform - pos: 52.5,-10.5 + pos: 21.5,57.5 parent: 2 - - uid: 6102 + - uid: 5864 components: - type: Transform - pos: 51.5,-10.5 + pos: 22.5,54.5 parent: 2 - - uid: 6103 + - uid: 5865 components: - type: Transform - pos: 50.5,-10.5 + pos: 22.5,55.5 parent: 2 - - uid: 6104 + - uid: 5866 components: - type: Transform - pos: 49.5,-10.5 + pos: 22.5,56.5 parent: 2 - - uid: 6105 + - uid: 5867 components: - type: Transform - pos: 48.5,-10.5 + pos: 22.5,57.5 parent: 2 - - uid: 6106 + - uid: 5868 components: - type: Transform - pos: 47.5,-10.5 + pos: 23.5,54.5 parent: 2 - - uid: 6107 + - uid: 5869 components: - type: Transform - pos: 47.5,-9.5 + pos: 23.5,55.5 parent: 2 - - uid: 6108 + - uid: 5870 components: - type: Transform - pos: 47.5,-8.5 + pos: 23.5,56.5 parent: 2 - - uid: 6109 + - uid: 5871 components: - type: Transform - pos: 47.5,-7.5 + pos: 23.5,57.5 parent: 2 - - uid: 6110 + - uid: 5872 components: - type: Transform - pos: 47.5,-6.5 + pos: 24.5,54.5 parent: 2 - - uid: 6111 + - uid: 5873 components: - type: Transform - pos: 47.5,-5.5 + pos: 24.5,55.5 parent: 2 - - uid: 6112 + - uid: 5874 components: - type: Transform - pos: 46.5,-5.5 + pos: 24.5,56.5 parent: 2 - - uid: 6113 + - uid: 5875 components: - type: Transform - pos: 45.5,-5.5 + pos: 24.5,57.5 parent: 2 - - uid: 6114 + - uid: 5876 components: - type: Transform - pos: 44.5,-5.5 + pos: 25.5,54.5 parent: 2 - - uid: 6115 + - uid: 5877 components: - type: Transform - pos: 43.5,-5.5 + pos: 25.5,55.5 parent: 2 - - uid: 6116 + - uid: 5878 components: - type: Transform - pos: 42.5,-5.5 + pos: 25.5,56.5 parent: 2 - - uid: 6117 + - uid: 5879 components: - type: Transform - pos: 43.5,-4.5 + pos: 25.5,57.5 parent: 2 - - uid: 6118 + - uid: 5880 components: - type: Transform - pos: 43.5,-3.5 + pos: 63.5,13.5 parent: 2 - - uid: 6119 + - uid: 5881 components: - type: Transform - pos: 42.5,-3.5 + pos: 63.5,14.5 parent: 2 - - uid: 6120 + - uid: 5882 components: - type: Transform - pos: 42.5,-4.5 + pos: 63.5,15.5 parent: 2 - - uid: 6121 + - uid: 5883 components: - type: Transform - pos: 52.5,-13.5 + pos: 63.5,16.5 parent: 2 - - uid: 6122 +- proto: CarpetBlack + entities: + - uid: 740 components: - type: Transform - pos: 51.5,-11.5 + rot: 3.141592653589793 rad + pos: 70.5,30.5 parent: 2 - - uid: 6123 + - uid: 5884 components: - type: Transform - pos: 51.5,-22.5 + pos: 74.5,31.5 parent: 2 - - uid: 6124 + - uid: 5885 components: - type: Transform - pos: 51.5,-21.5 + pos: 74.5,30.5 parent: 2 - - uid: 6125 + - uid: 5886 components: - type: Transform - pos: 51.5,-20.5 + pos: 75.5,31.5 parent: 2 - - uid: 6126 + - uid: 5887 components: - type: Transform - pos: 51.5,-19.5 + pos: 75.5,30.5 parent: 2 - - uid: 6127 + - uid: 5888 components: - type: Transform - pos: 51.5,-18.5 + pos: 76.5,31.5 parent: 2 - - uid: 6128 + - uid: 5889 components: - type: Transform - pos: 51.5,-17.5 + pos: 76.5,30.5 parent: 2 - - uid: 6129 + - uid: 8449 components: - type: Transform - pos: 51.5,-16.5 + rot: 3.141592653589793 rad + pos: 69.5,31.5 parent: 2 - - uid: 6130 + - uid: 8587 components: - type: Transform - pos: 51.5,-15.5 + rot: 3.141592653589793 rad + pos: 68.5,30.5 parent: 2 - - uid: 6131 + - uid: 12650 components: - type: Transform - pos: 51.5,-13.5 + rot: 3.141592653589793 rad + pos: 70.5,31.5 parent: 2 - - uid: 6132 + - uid: 12991 components: - type: Transform - pos: 51.5,-12.5 + rot: 3.141592653589793 rad + pos: 71.5,29.5 parent: 2 - - uid: 6133 + - uid: 13130 components: - type: Transform - pos: 51.5,-14.5 + rot: 3.141592653589793 rad + pos: 71.5,28.5 parent: 2 - - uid: 6134 + - uid: 13682 components: - type: Transform - pos: 51.5,-23.5 + rot: 3.141592653589793 rad + pos: 68.5,31.5 parent: 2 - - uid: 6135 + - uid: 16997 components: - type: Transform - pos: 50.5,-21.5 + rot: 3.141592653589793 rad + pos: 69.5,30.5 parent: 2 - - uid: 6136 + - uid: 17003 components: - type: Transform - pos: 49.5,-21.5 + rot: 3.141592653589793 rad + pos: 72.5,28.5 parent: 2 - - uid: 6137 + - uid: 17004 components: - type: Transform - pos: 48.5,-21.5 + rot: 3.141592653589793 rad + pos: 71.5,27.5 parent: 2 - - uid: 6138 + - uid: 17005 components: - type: Transform - pos: 47.5,-21.5 + rot: 3.141592653589793 rad + pos: 72.5,29.5 parent: 2 - - uid: 6139 + - uid: 17006 components: - type: Transform - pos: 46.5,-21.5 + rot: 3.141592653589793 rad + pos: 72.5,27.5 parent: 2 - - uid: 6140 +- proto: CarpetBlue + entities: + - uid: 5890 components: - type: Transform - pos: 45.5,-21.5 + pos: 74.5,40.5 parent: 2 - - uid: 6141 + - uid: 5891 components: - type: Transform - pos: 52.5,-21.5 + pos: 74.5,39.5 parent: 2 - - uid: 6142 + - uid: 5892 components: - type: Transform - pos: 53.5,-21.5 + pos: 74.5,38.5 parent: 2 - - uid: 6143 + - uid: 5893 components: - type: Transform - pos: 54.5,-21.5 + pos: 74.5,37.5 parent: 2 - - uid: 6144 + - uid: 5894 components: - type: Transform - pos: 55.5,-21.5 + pos: 75.5,40.5 parent: 2 - - uid: 6145 + - uid: 5895 components: - type: Transform - pos: 56.5,-21.5 + pos: 75.5,39.5 parent: 2 - - uid: 6146 + - uid: 5896 components: - type: Transform - pos: 57.5,-21.5 + pos: 75.5,38.5 parent: 2 - - uid: 6147 + - uid: 5897 components: - type: Transform - pos: 52.5,-17.5 + pos: 75.5,37.5 parent: 2 - - uid: 6148 +- proto: CarpetChapel + entities: + - uid: 5898 components: - type: Transform - pos: 53.5,-17.5 + pos: 8.5,54.5 parent: 2 - - uid: 6149 + - uid: 5899 components: - type: Transform - pos: 54.5,-17.5 + rot: 1.5707963267948966 rad + pos: 9.5,54.5 parent: 2 - - uid: 6150 + - uid: 5900 components: - type: Transform - pos: 55.5,-17.5 + rot: -1.5707963267948966 rad + pos: 8.5,55.5 parent: 2 - - uid: 6151 + - uid: 5901 components: - type: Transform - pos: 56.5,-17.5 + rot: 3.141592653589793 rad + pos: 9.5,55.5 parent: 2 - - uid: 6152 + - uid: 5902 components: - type: Transform - pos: 57.5,-17.5 + rot: 3.141592653589793 rad + pos: 9.5,57.5 parent: 2 - - uid: 6153 + - uid: 5903 components: - type: Transform - pos: 50.5,-17.5 + rot: 3.141592653589793 rad + pos: 12.5,57.5 parent: 2 - - uid: 6154 + - uid: 5904 components: - type: Transform - pos: 49.5,-17.5 + rot: 3.141592653589793 rad + pos: 12.5,55.5 parent: 2 - - uid: 6155 + - uid: 5905 components: - type: Transform - pos: 48.5,-17.5 + rot: 1.5707963267948966 rad + pos: 9.5,56.5 parent: 2 - - uid: 6156 + - uid: 5906 components: - type: Transform - pos: 47.5,-17.5 + rot: 1.5707963267948966 rad + pos: 12.5,56.5 parent: 2 - - uid: 6157 + - uid: 5907 components: - type: Transform - pos: 46.5,-17.5 + rot: 1.5707963267948966 rad + pos: 12.5,54.5 parent: 2 - - uid: 6158 + - uid: 5908 components: - type: Transform - pos: 45.5,-17.5 + pos: 11.5,54.5 parent: 2 - - uid: 6159 + - uid: 5909 components: - type: Transform - pos: 53.5,-13.5 + pos: 8.5,56.5 parent: 2 - - uid: 6160 + - uid: 5910 components: - type: Transform - pos: 54.5,-13.5 + pos: 11.5,56.5 parent: 2 - - uid: 6161 + - uid: 5911 components: - type: Transform - pos: 55.5,-13.5 + rot: -1.5707963267948966 rad + pos: 11.5,55.5 parent: 2 - - uid: 6162 + - uid: 5912 components: - type: Transform - pos: 56.5,-13.5 + rot: -1.5707963267948966 rad + pos: 11.5,57.5 parent: 2 - - uid: 6163 + - uid: 5913 components: - type: Transform - pos: 57.5,-13.5 + rot: -1.5707963267948966 rad + pos: 8.5,57.5 parent: 2 - - uid: 6164 +- proto: CarpetCyan + entities: + - uid: 8591 components: - type: Transform - pos: 50.5,-13.5 + rot: 3.141592653589793 rad + pos: 72.5,23.5 parent: 2 - - uid: 6165 + - uid: 8985 components: - type: Transform - pos: 49.5,-13.5 + rot: 3.141592653589793 rad + pos: 72.5,24.5 parent: 2 - - uid: 6166 + - uid: 13665 components: - type: Transform - pos: 48.5,-13.5 + rot: 3.141592653589793 rad + pos: 72.5,25.5 parent: 2 - - uid: 6167 +- proto: CarpetOrange + entities: + - uid: 5914 components: - type: Transform - pos: 47.5,-13.5 + pos: -3.5,24.5 parent: 2 - - uid: 6168 + - uid: 5915 components: - type: Transform - pos: 46.5,-13.5 + pos: -3.5,25.5 parent: 2 - - uid: 6169 + - uid: 5916 components: - type: Transform - pos: 45.5,-13.5 + pos: -4.5,24.5 parent: 2 - - uid: 6170 + - uid: 5917 components: - type: Transform - pos: 61.5,-2.5 + pos: -4.5,25.5 parent: 2 - - uid: 6171 + - uid: 5918 components: - type: Transform - pos: 62.5,-2.5 + pos: -5.5,24.5 parent: 2 - - uid: 6172 + - uid: 5919 components: - type: Transform - pos: 63.5,-2.5 + pos: -5.5,25.5 parent: 2 - - uid: 6173 +- proto: CarpetPurple + entities: + - uid: 5920 components: - type: Transform - pos: 64.5,-2.5 + rot: 1.5707963267948966 rad + pos: 7.5,53.5 parent: 2 - - uid: 6174 + - uid: 5921 components: - type: Transform - pos: 65.5,-2.5 + pos: 53.5,16.5 parent: 2 - - uid: 6175 + - uid: 5922 components: - type: Transform - pos: 66.5,-2.5 + pos: 53.5,15.5 parent: 2 - - uid: 6176 + - uid: 5923 components: - type: Transform - pos: 67.5,-2.5 + pos: 53.5,14.5 parent: 2 - - uid: 6177 + - uid: 5924 components: - type: Transform - pos: 68.5,-2.5 + pos: 52.5,16.5 parent: 2 - - uid: 6178 + - uid: 5925 components: - type: Transform - pos: 69.5,-2.5 + pos: 52.5,15.5 parent: 2 - - uid: 6179 + - uid: 5926 components: - type: Transform - pos: 70.5,-2.5 + pos: 52.5,14.5 parent: 2 - - uid: 6180 + - uid: 5927 components: - type: Transform - pos: -24.5,-15.5 + pos: 10.5,57.5 parent: 2 - - uid: 6181 + - uid: 5928 components: - type: Transform - pos: -22.5,3.5 + pos: 10.5,56.5 parent: 2 - - uid: 6182 + - uid: 5929 components: - type: Transform - pos: -22.5,-0.5 + pos: 10.5,55.5 parent: 2 - - uid: 6183 + - uid: 5930 components: - type: Transform - pos: -22.5,0.5 + pos: 10.5,54.5 parent: 2 - - uid: 6184 + - uid: 5931 components: - type: Transform - pos: -22.5,1.5 + pos: 10.5,53.5 parent: 2 - - uid: 6185 + - uid: 5932 components: - type: Transform - pos: -22.5,2.5 + pos: 10.5,51.5 parent: 2 - - uid: 6186 + - uid: 5933 components: - type: Transform - pos: -23.5,-7.5 + pos: 7.5,52.5 parent: 2 - - uid: 6187 + - uid: 5934 components: - type: Transform - pos: -24.5,-7.5 + pos: 8.5,52.5 parent: 2 - - uid: 6188 + - uid: 5935 components: - type: Transform - pos: -25.5,-7.5 + pos: 9.5,52.5 parent: 2 - - uid: 6189 + - uid: 5936 components: - type: Transform - pos: -26.5,-7.5 + pos: 11.5,51.5 parent: 2 - - uid: 6190 + - uid: 5937 components: - type: Transform - pos: -27.5,-7.5 + pos: 12.5,51.5 parent: 2 - - uid: 6191 + - uid: 5938 components: - type: Transform - pos: -28.5,-7.5 + pos: 11.5,53.5 parent: 2 - - uid: 6194 + - uid: 5939 components: - type: Transform - pos: -22.5,-5.5 + pos: 11.5,52.5 parent: 2 - - uid: 6195 + - uid: 5940 components: - type: Transform - pos: -25.5,-3.5 + pos: 12.5,53.5 parent: 2 - - uid: 6196 + - uid: 5941 components: - type: Transform - pos: -26.5,-3.5 + pos: 12.5,52.5 parent: 2 - - uid: 6197 + - uid: 5942 components: - type: Transform - pos: -27.5,-3.5 + pos: 13.5,53.5 parent: 2 - - uid: 6198 + - uid: 5943 components: - type: Transform - pos: -28.5,-3.5 + pos: 13.5,52.5 parent: 2 - - uid: 6199 + - uid: 5944 components: - type: Transform - pos: -22.5,-4.5 + pos: 14.5,53.5 parent: 2 - - uid: 6200 + - uid: 5945 components: - type: Transform - pos: -25.5,-15.5 + pos: 14.5,52.5 parent: 2 - - uid: 6201 + - uid: 5946 components: - type: Transform - pos: -26.5,-15.5 + pos: 15.5,53.5 parent: 2 - - uid: 6202 + - uid: 5947 components: - type: Transform - pos: -27.5,-15.5 + pos: 15.5,52.5 parent: 2 - - uid: 6203 + - uid: 5948 components: - type: Transform - pos: -28.5,-15.5 + pos: 8.5,51.5 parent: 2 - - uid: 6204 + - uid: 5949 components: - type: Transform - pos: -29.5,-15.5 + pos: 9.5,51.5 parent: 2 - - uid: 6205 + - uid: 5950 components: - type: Transform - pos: -30.5,-15.5 + pos: 13.5,51.5 parent: 2 - - uid: 6206 + - uid: 5951 components: - type: Transform - pos: 33.5,80.5 + pos: 14.5,51.5 parent: 2 - - uid: 6207 + - uid: 5952 components: - type: Transform - pos: -23.5,-17.5 + pos: 10.5,50.5 parent: 2 - - uid: 6208 + - uid: 5953 components: - type: Transform - pos: 33.5,68.5 + pos: 9.5,50.5 parent: 2 - - uid: 6209 + - uid: 5954 components: - type: Transform - pos: 33.5,78.5 + rot: 1.5707963267948966 rad + pos: 8.5,53.5 parent: 2 - - uid: 6210 + - uid: 5955 components: - type: Transform - pos: 33.5,69.5 + rot: 1.5707963267948966 rad + pos: 9.5,53.5 parent: 2 - - uid: 6211 + - uid: 5956 components: - type: Transform - pos: 33.5,76.5 + rot: 1.5707963267948966 rad + pos: 10.5,52.5 parent: 2 - - uid: 6212 +- proto: CarpetSBlue + entities: + - uid: 5958 components: - type: Transform - pos: 33.5,75.5 + pos: 18.5,39.5 parent: 2 - - uid: 6213 + - uid: 5959 components: - type: Transform - pos: 33.5,74.5 + pos: 18.5,38.5 parent: 2 - - uid: 6214 + - uid: 5960 components: - type: Transform - pos: 33.5,73.5 + pos: 19.5,39.5 parent: 2 - - uid: 6215 + - uid: 5961 components: - type: Transform - pos: 33.5,72.5 + pos: 19.5,38.5 parent: 2 - - uid: 6216 + - uid: 5962 components: - type: Transform - pos: 33.5,71.5 + pos: 20.5,39.5 parent: 2 - - uid: 6217 + - uid: 5963 components: - type: Transform - pos: 33.5,70.5 + pos: 20.5,38.5 parent: 2 - - uid: 6218 + - uid: 5964 components: - type: Transform - pos: 27.5,78.5 + pos: 77.5,27.5 parent: 2 - - uid: 6219 + - uid: 5965 components: - type: Transform - pos: 28.5,78.5 + pos: 76.5,26.5 parent: 2 - - uid: 6220 + - uid: 5966 components: - type: Transform - pos: 29.5,78.5 + pos: 76.5,25.5 parent: 2 - - uid: 6221 + - uid: 5967 components: - type: Transform - pos: 30.5,78.5 + pos: 76.5,24.5 parent: 2 - - uid: 6222 + - uid: 5968 components: - type: Transform - pos: 31.5,78.5 + pos: 77.5,26.5 parent: 2 - - uid: 6223 + - uid: 5969 components: - type: Transform - pos: 32.5,78.5 + pos: 77.5,25.5 parent: 2 - - uid: 6224 + - uid: 5970 components: - type: Transform - pos: 34.5,78.5 + pos: 77.5,24.5 parent: 2 - - uid: 6225 + - uid: 5971 components: - type: Transform - pos: 35.5,78.5 + pos: 78.5,26.5 parent: 2 - - uid: 6226 + - uid: 5972 components: - type: Transform - pos: 36.5,78.5 + pos: 78.5,25.5 parent: 2 - - uid: 6227 + - uid: 5973 components: - type: Transform - pos: 37.5,78.5 + pos: 78.5,24.5 parent: 2 - - uid: 6228 + - uid: 5974 components: - type: Transform - pos: 38.5,78.5 + pos: 83.5,25.5 parent: 2 - - uid: 6229 + - uid: 5975 components: - type: Transform - pos: 39.5,78.5 + pos: 83.5,24.5 parent: 2 - - uid: 6230 + - uid: 5976 components: - type: Transform - pos: 27.5,74.5 + pos: 83.5,23.5 parent: 2 - - uid: 6231 + - uid: 5977 components: - type: Transform - pos: 28.5,74.5 + pos: 83.5,22.5 parent: 2 - - uid: 6232 + - uid: 5978 components: - type: Transform - pos: 29.5,74.5 + pos: 82.5,25.5 parent: 2 - - uid: 6233 + - uid: 5979 components: - type: Transform - pos: 30.5,74.5 + pos: 82.5,24.5 parent: 2 - - uid: 6234 + - uid: 5980 components: - type: Transform - pos: 31.5,74.5 + pos: 82.5,23.5 parent: 2 - - uid: 6235 + - uid: 5981 components: - type: Transform - pos: 32.5,74.5 + pos: 82.5,22.5 parent: 2 - - uid: 6236 + - uid: 5982 components: - type: Transform - pos: 32.5,70.5 + pos: 81.5,25.5 parent: 2 - - uid: 6237 + - uid: 5983 components: - type: Transform - pos: 34.5,74.5 + pos: 81.5,24.5 parent: 2 - - uid: 6238 + - uid: 5984 components: - type: Transform - pos: 35.5,74.5 + pos: 81.5,23.5 parent: 2 - - uid: 6239 + - uid: 5985 components: - type: Transform - pos: 36.5,74.5 + pos: 81.5,22.5 parent: 2 - - uid: 6240 +- proto: Catwalk + entities: + - uid: 47 components: - type: Transform - pos: 37.5,74.5 + rot: 1.5707963267948966 rad + pos: -39.5,40.5 parent: 2 - - uid: 6241 + - uid: 83 components: - type: Transform - pos: 38.5,74.5 + pos: 36.5,-9.5 parent: 2 - - uid: 6242 + - uid: 310 components: - type: Transform - pos: 39.5,74.5 + rot: 1.5707963267948966 rad + pos: -31.5,34.5 parent: 2 - - uid: 6243 + - uid: 473 components: - type: Transform - pos: 31.5,70.5 + rot: 1.5707963267948966 rad + pos: -31.5,40.5 parent: 2 - - uid: 6244 + - uid: 572 components: - type: Transform - pos: 30.5,70.5 + pos: 26.5,-12.5 parent: 2 - - uid: 6245 + - uid: 861 components: - type: Transform - pos: 29.5,70.5 + rot: 1.5707963267948966 rad + pos: -31.5,35.5 parent: 2 - - uid: 6246 + - uid: 3451 components: - type: Transform - pos: 28.5,70.5 + rot: 1.5707963267948966 rad + pos: -31.5,36.5 parent: 2 - - uid: 6247 + - uid: 3459 components: - type: Transform - pos: 27.5,70.5 + rot: 1.5707963267948966 rad + pos: -32.5,37.5 parent: 2 - - uid: 6248 + - uid: 3460 components: - type: Transform - pos: 34.5,70.5 + rot: 1.5707963267948966 rad + pos: -29.5,39.5 parent: 2 - - uid: 6249 + - uid: 3461 components: - type: Transform - pos: 35.5,70.5 + rot: 1.5707963267948966 rad + pos: -28.5,38.5 parent: 2 - - uid: 6250 + - uid: 3466 components: - type: Transform - pos: 36.5,70.5 + rot: 3.141592653589793 rad + pos: 37.5,-24.5 parent: 2 - - uid: 6251 + - uid: 3469 components: - type: Transform - pos: 37.5,70.5 + pos: 23.5,-44.5 parent: 2 - - uid: 6252 + - uid: 3470 components: - type: Transform - pos: 38.5,70.5 + pos: 24.5,-26.5 parent: 2 - - uid: 6253 + - uid: 3471 components: - type: Transform - pos: 39.5,70.5 + pos: 24.5,-28.5 parent: 2 - - uid: 6254 + - uid: 3485 components: - type: Transform - pos: 32.5,68.5 + pos: 22.5,-38.5 parent: 2 - - uid: 6255 + - uid: 3680 components: - type: Transform - pos: 34.5,68.5 + pos: 36.5,-52.5 parent: 2 - - uid: 6256 + - uid: 3681 components: - type: Transform - pos: 34.5,69.5 + pos: 37.5,-50.5 parent: 2 - - uid: 6257 + - uid: 3682 components: - type: Transform - pos: 32.5,69.5 + pos: 25.5,-21.5 parent: 2 - - uid: 6258 + - uid: 3702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + pos: 37.5,-51.5 parent: 2 - - uid: 6259 + - uid: 3703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-3.5 + pos: 37.5,-48.5 parent: 2 - - uid: 6260 + - uid: 3704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-2.5 + pos: 37.5,-47.5 parent: 2 - - uid: 6261 + - uid: 3705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-1.5 + pos: 37.5,-46.5 parent: 2 - - uid: 6262 + - uid: 3706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-4.5 + pos: 37.5,-45.5 parent: 2 - - uid: 6263 + - uid: 3707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-5.5 + pos: 23.5,-46.5 parent: 2 - - uid: 6264 + - uid: 3708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-3.5 + pos: 23.5,-47.5 parent: 2 - - uid: 6265 + - uid: 3709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-4.5 + pos: 23.5,-48.5 parent: 2 - - uid: 6266 + - uid: 3710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-4.5 + pos: 23.5,-49.5 parent: 2 - - uid: 6267 + - uid: 3711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-6.5 + pos: 23.5,-50.5 parent: 2 - - uid: 6268 + - uid: 3712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-5.5 + pos: 23.5,-51.5 parent: 2 - - uid: 6269 + - uid: 3713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-6.5 + pos: 24.5,-51.5 parent: 2 - - uid: 6270 + - uid: 3714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-8.5 + pos: 24.5,-52.5 parent: 2 - - uid: 6271 + - uid: 3715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-8.5 + pos: 27.5,-52.5 parent: 2 - - uid: 6272 + - uid: 3716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-11.5 + pos: 28.5,-52.5 parent: 2 - - uid: 6273 + - uid: 3717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-11.5 + pos: 25.5,-52.5 parent: 2 - - uid: 6274 + - uid: 3718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-15.5 + pos: 26.5,-52.5 parent: 2 - - uid: 6275 + - uid: 3719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-15.5 + pos: 29.5,-52.5 parent: 2 - - uid: 6276 + - uid: 3720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,44.5 + pos: 30.5,-52.5 parent: 2 - - uid: 6277 + - uid: 3721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 + pos: 31.5,-52.5 parent: 2 - - uid: 6278 + - uid: 3722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,44.5 + pos: 32.5,-52.5 parent: 2 - - uid: 6279 + - uid: 3755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,45.5 + rot: 1.5707963267948966 rad + pos: -29.5,37.5 parent: 2 - - uid: 6280 + - uid: 3756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,45.5 + rot: 1.5707963267948966 rad + pos: -29.5,38.5 parent: 2 - - uid: 6281 + - uid: 3757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 + rot: 1.5707963267948966 rad + pos: -33.5,37.5 parent: 2 - - uid: 6282 + - uid: 3759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,45.5 + pos: 26.5,-13.5 parent: 2 - - uid: 6283 + - uid: 3760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,25.5 + pos: 37.5,-49.5 parent: 2 - - uid: 6284 + - uid: 3761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,27.5 + pos: 24.5,-22.5 parent: 2 - - uid: 6285 + - uid: 3762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,28.5 + pos: 24.5,-24.5 parent: 2 - - uid: 6286 + - uid: 3764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 + pos: 25.5,-13.5 parent: 2 - - uid: 6287 + - uid: 3765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,25.5 + pos: 24.5,-21.5 parent: 2 - - uid: 6288 + - uid: 3766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,24.5 + pos: 24.5,-23.5 parent: 2 - - uid: 6289 + - uid: 3767 components: - type: Transform - pos: -23.5,-15.5 + pos: 24.5,-25.5 parent: 2 - - uid: 6290 + - uid: 3768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,26.5 + pos: 36.5,-51.5 parent: 2 - - uid: 6291 + - uid: 3769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,27.5 + pos: 25.5,-14.5 parent: 2 - - uid: 6292 + - uid: 3770 components: - type: Transform - pos: -23.5,-14.5 + pos: 25.5,-18.5 parent: 2 - - uid: 6293 + - uid: 3803 components: - type: Transform - pos: -23.5,-16.5 + pos: 25.5,-16.5 parent: 2 - - uid: 6294 + - uid: 4406 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,29.5 + pos: 76.5,53.5 parent: 2 - - uid: 6295 + - uid: 4407 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,29.5 + pos: 78.5,53.5 parent: 2 - - uid: 6296 + - uid: 4434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-2.5 + pos: 45.5,56.5 parent: 2 - - uid: 6297 + - uid: 4589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 + pos: 25.5,-17.5 parent: 2 - - uid: 6298 + - uid: 4590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 + pos: 23.5,-29.5 parent: 2 - - uid: 6299 + - uid: 4642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-6.5 + pos: 22.5,-29.5 parent: 2 - - uid: 6300 + - uid: 4643 components: - type: Transform - pos: -22.5,-3.5 + pos: 22.5,-30.5 parent: 2 - - uid: 6301 + - uid: 4716 components: - type: Transform - pos: -31.5,30.5 + pos: 23.5,-43.5 parent: 2 - - uid: 6302 + - uid: 4717 components: - type: Transform - pos: 74.5,18.5 + pos: 24.5,-27.5 parent: 2 - - uid: 6303 + - uid: 4718 components: - type: Transform - pos: 74.5,17.5 + pos: 24.5,-29.5 parent: 2 - - uid: 6304 + - uid: 4719 components: - type: Transform - pos: 75.5,17.5 + pos: 22.5,-31.5 parent: 2 - - uid: 6305 + - uid: 4726 components: - type: Transform - pos: 75.5,16.5 + pos: -15.5,23.5 parent: 2 - - uid: 6306 + - uid: 4727 components: - type: Transform - pos: 75.5,15.5 + pos: -12.5,24.5 parent: 2 - - uid: 6307 + - uid: 4730 components: - type: Transform - pos: 74.5,19.5 + pos: -12.5,23.5 parent: 2 - - uid: 6308 + - uid: 4747 components: - type: Transform - pos: 74.5,20.5 + pos: 23.5,-38.5 parent: 2 - - uid: 6309 + - uid: 4748 components: - type: Transform - pos: 75.5,20.5 + pos: 22.5,-32.5 parent: 2 - - uid: 6310 + - uid: 4749 components: - type: Transform - pos: 76.5,20.5 + pos: 22.5,-33.5 parent: 2 - - uid: 6311 + - uid: 4750 components: - type: Transform - pos: 77.5,20.5 + pos: 23.5,-39.5 parent: 2 - - uid: 6312 + - uid: 4751 components: - type: Transform - pos: 78.5,20.5 + pos: 23.5,-40.5 parent: 2 - - uid: 6313 + - uid: 4752 components: - type: Transform - pos: 78.5,19.5 + pos: 22.5,-35.5 parent: 2 - - uid: 6314 + - uid: 4753 components: - type: Transform - pos: 79.5,19.5 + pos: 23.5,-42.5 parent: 2 - - uid: 6315 + - uid: 4754 components: - type: Transform - pos: 80.5,19.5 + pos: 23.5,-45.5 parent: 2 - - uid: 6316 + - uid: 4755 components: - type: Transform - pos: 81.5,19.5 + pos: 22.5,-36.5 parent: 2 - - uid: 6317 + - uid: 4756 components: - type: Transform - pos: 81.5,46.5 + rot: 1.5707963267948966 rad + pos: -35.5,40.5 parent: 2 - - uid: 6318 + - uid: 4757 components: - type: Transform - pos: 76.5,47.5 + pos: 27.5,-12.5 parent: 2 - - uid: 6319 + - uid: 4760 components: - type: Transform - pos: 74.5,47.5 + rot: 1.5707963267948966 rad + pos: -28.5,39.5 parent: 2 - - uid: 6320 + - uid: 4761 components: - type: Transform - pos: 75.5,47.5 + rot: 1.5707963267948966 rad + pos: -34.5,37.5 parent: 2 - - uid: 6321 + - uid: 4762 components: - type: Transform - pos: 78.5,47.5 + rot: 1.5707963267948966 rad + pos: -30.5,37.5 parent: 2 - - uid: 6322 + - uid: 4764 components: - type: Transform - pos: 77.5,47.5 + rot: 1.5707963267948966 rad + pos: -31.5,37.5 parent: 2 - - uid: 6326 + - uid: 4765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,53.5 + pos: 28.5,-12.5 parent: 2 - - uid: 6327 + - uid: 5068 components: - type: Transform - pos: 75.5,53.5 + pos: 7.5,0.5 parent: 2 - - uid: 6328 + - uid: 5736 components: - type: Transform - pos: 74.5,53.5 + pos: 30.5,-7.5 parent: 2 - - uid: 6329 + - uid: 5737 components: - type: Transform - pos: 73.5,53.5 + pos: 30.5,-8.5 parent: 2 - - uid: 6330 + - uid: 5789 components: - type: Transform - pos: 73.5,54.5 + pos: 30.5,-9.5 parent: 2 - - uid: 6332 + - uid: 5790 components: - type: Transform - pos: 62.5,26.5 + pos: 30.5,-10.5 parent: 2 - - uid: 6333 + - uid: 5793 components: - type: Transform - pos: 62.5,25.5 + pos: 30.5,-11.5 parent: 2 - - uid: 6334 + - uid: 5794 components: - type: Transform - pos: 62.5,24.5 + pos: 29.5,-9.5 parent: 2 - - uid: 6335 + - uid: 5798 components: - type: Transform - pos: 62.5,23.5 + pos: 28.5,-9.5 parent: 2 - - uid: 6336 + - uid: 5799 components: - type: Transform - pos: 62.5,22.5 + pos: 27.5,-9.5 parent: 2 - - uid: 6337 + - uid: 5808 components: - type: Transform - pos: 62.5,21.5 + pos: 24.5,-9.5 parent: 2 - - uid: 6338 + - uid: 5809 components: - type: Transform - pos: 62.5,20.5 + pos: 32.5,-9.5 parent: 2 - - uid: 6339 + - uid: 5989 components: - type: Transform - pos: 62.5,19.5 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 parent: 2 - - uid: 6340 + - uid: 5990 components: - type: Transform - pos: 62.5,18.5 + rot: 3.141592653589793 rad + pos: -40.5,30.5 parent: 2 - - uid: 6341 + - uid: 5991 components: - type: Transform - pos: 61.5,18.5 + pos: -24.5,-11.5 parent: 2 - - uid: 6342 + - uid: 5992 components: - type: Transform - pos: 61.5,17.5 + pos: -25.5,-11.5 parent: 2 - - uid: 6343 + - uid: 5993 components: - type: Transform - pos: 61.5,16.5 + pos: -22.5,-1.5 parent: 2 - - uid: 6344 + - uid: 5995 components: - type: Transform - pos: 61.5,15.5 + pos: -22.5,-2.5 parent: 2 - - uid: 6345 + - uid: 5996 components: - type: Transform - pos: 61.5,14.5 + pos: -26.5,-11.5 parent: 2 - - uid: 6346 + - uid: 6003 components: - type: Transform - pos: 61.5,13.5 + pos: -24.5,-3.5 parent: 2 - - uid: 6347 + - uid: 6004 components: - type: Transform - pos: 60.5,13.5 + pos: -23.5,-13.5 parent: 2 - - uid: 6348 + - uid: 6005 components: - type: Transform - pos: 59.5,13.5 + pos: -22.5,-10.5 parent: 2 - - uid: 6349 + - uid: 6006 components: - type: Transform - pos: 58.5,13.5 + pos: -22.5,-11.5 parent: 2 - - uid: 6350 + - uid: 6007 components: - type: Transform - pos: 57.5,13.5 + pos: -22.5,-6.5 parent: 2 - - uid: 6351 + - uid: 6008 components: - type: Transform - pos: 56.5,13.5 + pos: -22.5,-7.5 parent: 2 - - uid: 6352 + - uid: 6009 components: - type: Transform - pos: 55.5,13.5 + pos: -22.5,-8.5 parent: 2 - - uid: 6353 + - uid: 6010 components: - type: Transform - pos: 55.5,12.5 + pos: -22.5,-9.5 parent: 2 - - uid: 6354 + - uid: 6011 components: - type: Transform - pos: 55.5,11.5 + pos: -23.5,-3.5 parent: 2 - - uid: 6355 + - uid: 6012 components: - type: Transform - pos: 54.5,11.5 + pos: -23.5,-11.5 parent: 2 - - uid: 6356 + - uid: 6013 components: - type: Transform - pos: 53.5,11.5 + pos: -23.5,-12.5 parent: 2 - - uid: 6357 + - uid: 6017 components: - type: Transform - pos: 52.5,11.5 + rot: -1.5707963267948966 rad + pos: -42.5,25.5 parent: 2 - - uid: 6358 + - uid: 6018 components: - type: Transform - pos: 52.5,10.5 + pos: -27.5,-11.5 parent: 2 - - uid: 6359 + - uid: 6019 components: - type: Transform - pos: 57.5,12.5 + pos: 33.5,79.5 parent: 2 - - uid: 6360 + - uid: 6020 components: - type: Transform - pos: 46.5,10.5 + pos: -29.5,-11.5 parent: 2 - - uid: 6361 + - uid: 6021 components: - type: Transform - pos: 45.5,10.5 + pos: -28.5,-11.5 parent: 2 - - uid: 6362 + - uid: 6022 components: - type: Transform - pos: 44.5,10.5 + pos: 33.5,77.5 parent: 2 - - uid: 6363 + - uid: 6023 components: - type: Transform - pos: 43.5,10.5 + pos: -26.5,21.5 parent: 2 - - uid: 6364 + - uid: 6024 components: - type: Transform - pos: 43.5,9.5 + rot: 3.141592653589793 rad + pos: -35.5,21.5 parent: 2 - - uid: 6365 + - uid: 6025 components: - type: Transform - pos: 43.5,8.5 + rot: 3.141592653589793 rad + pos: -35.5,19.5 parent: 2 - - uid: 6366 + - uid: 6026 components: - type: Transform - pos: 43.5,7.5 + rot: 3.141592653589793 rad + pos: -35.5,17.5 parent: 2 - - uid: 6367 + - uid: 6027 components: - type: Transform - pos: 43.5,6.5 + rot: 3.141592653589793 rad + pos: -35.5,15.5 parent: 2 - - uid: 6368 + - uid: 6028 components: - type: Transform - pos: 43.5,5.5 + rot: 3.141592653589793 rad + pos: -35.5,13.5 parent: 2 - - uid: 6369 + - uid: 6029 components: - type: Transform - pos: 43.5,4.5 + rot: 3.141592653589793 rad + pos: -35.5,11.5 parent: 2 - - uid: 6370 + - uid: 6030 components: - type: Transform - pos: 44.5,7.5 + rot: 3.141592653589793 rad + pos: -35.5,9.5 parent: 2 - - uid: 6371 + - uid: 6031 components: - type: Transform - pos: 42.5,4.5 + rot: 3.141592653589793 rad + pos: -35.5,7.5 parent: 2 - - uid: 6372 + - uid: 6032 components: - type: Transform - pos: 41.5,4.5 + pos: -33.5,5.5 parent: 2 - - uid: 6373 + - uid: 6033 components: - type: Transform - pos: 40.5,4.5 + pos: -31.5,5.5 parent: 2 - - uid: 6374 + - uid: 6034 components: - type: Transform - pos: 39.5,4.5 + pos: -29.5,5.5 parent: 2 - - uid: 6375 + - uid: 6035 components: - type: Transform - pos: 38.5,4.5 + rot: 1.5707963267948966 rad + pos: -23.5,3.5 parent: 2 - - uid: 6376 + - uid: 6036 components: - type: Transform - pos: 32.5,7.5 + rot: 1.5707963267948966 rad + pos: -23.5,2.5 parent: 2 - - uid: 6377 + - uid: 6037 components: - type: Transform - pos: 31.5,7.5 + rot: 1.5707963267948966 rad + pos: -21.5,3.5 parent: 2 - - uid: 6378 + - uid: 6038 components: - type: Transform - pos: 30.5,7.5 + rot: 1.5707963267948966 rad + pos: -21.5,2.5 parent: 2 - - uid: 6379 + - uid: 6039 components: - type: Transform - pos: 29.5,7.5 + rot: 1.5707963267948966 rad + pos: -29.5,48.5 parent: 2 - - uid: 6380 + - uid: 6040 components: - type: Transform - pos: 28.5,7.5 + rot: -1.5707963267948966 rad + pos: -38.5,52.5 parent: 2 - - uid: 6381 + - uid: 6041 components: - type: Transform - pos: 27.5,7.5 + rot: -1.5707963267948966 rad + pos: -38.5,51.5 parent: 2 - - uid: 6382 + - uid: 6042 components: - type: Transform - pos: 26.5,7.5 + rot: -1.5707963267948966 rad + pos: -37.5,52.5 parent: 2 - - uid: 6383 + - uid: 6043 components: - type: Transform - pos: 25.5,7.5 + rot: -1.5707963267948966 rad + pos: -37.5,51.5 parent: 2 - - uid: 6384 + - uid: 6044 components: - type: Transform - pos: 27.5,6.5 + rot: -1.5707963267948966 rad + pos: -36.5,52.5 parent: 2 - - uid: 6385 + - uid: 6045 components: - type: Transform - pos: 25.5,6.5 + rot: -1.5707963267948966 rad + pos: -36.5,51.5 parent: 2 - - uid: 6386 + - uid: 6046 components: - type: Transform - pos: 24.5,6.5 + rot: -1.5707963267948966 rad + pos: -37.5,50.5 parent: 2 - - uid: 6387 + - uid: 6055 components: - type: Transform - pos: 23.5,6.5 + rot: 3.141592653589793 rad + pos: -3.5,71.5 parent: 2 - - uid: 6388 + - uid: 6057 components: - type: Transform - pos: 22.5,6.5 + rot: 3.141592653589793 rad + pos: -8.5,71.5 parent: 2 - - uid: 6389 + - uid: 6058 components: - type: Transform - pos: 20.5,6.5 + pos: 4.5,0.5 parent: 2 - - uid: 6390 + - uid: 6059 components: - type: Transform - pos: 19.5,6.5 + pos: 5.5,0.5 parent: 2 - - uid: 6391 + - uid: 6060 components: - type: Transform - pos: 18.5,6.5 + pos: 6.5,0.5 parent: 2 - - uid: 6392 + - uid: 6063 components: - type: Transform - pos: 19.5,5.5 + pos: 7.5,-0.5 parent: 2 - - uid: 6393 + - uid: 6064 components: - type: Transform - pos: 19.5,4.5 + pos: 8.5,-0.5 parent: 2 - - uid: 6394 + - uid: 6065 components: - type: Transform - pos: 17.5,6.5 + pos: 9.5,-0.5 parent: 2 - - uid: 6395 + - uid: 6066 components: - type: Transform - pos: 16.5,6.5 + pos: 10.5,-0.5 parent: 2 - - uid: 6396 + - uid: 6067 components: - type: Transform - pos: 15.5,6.5 + pos: 11.5,-0.5 parent: 2 - - uid: 6397 + - uid: 6068 components: - type: Transform - pos: 15.5,5.5 + pos: 12.5,-0.5 parent: 2 - - uid: 6398 + - uid: 6069 components: - type: Transform - pos: 15.5,7.5 + pos: 13.5,-0.5 parent: 2 - - uid: 6399 + - uid: 6070 components: - type: Transform - pos: 15.5,8.5 + pos: 13.5,-1.5 parent: 2 - - uid: 6400 + - uid: 6071 components: - type: Transform - pos: 15.5,9.5 + pos: 12.5,-1.5 parent: 2 - - uid: 6401 + - uid: 6072 components: - type: Transform - pos: 15.5,10.5 + pos: 11.5,-1.5 parent: 2 - - uid: 6402 + - uid: 6074 components: - type: Transform - pos: 16.5,10.5 + pos: 16.5,-2.5 parent: 2 - - uid: 6403 + - uid: 6075 components: - type: Transform - pos: 17.5,10.5 + pos: 33.5,-9.5 parent: 2 - - uid: 6404 + - uid: 6076 components: - type: Transform - pos: 18.5,10.5 + pos: 26.5,-9.5 parent: 2 - - uid: 6405 + - uid: 6077 components: - type: Transform - pos: 18.5,9.5 + pos: 57.5,8.5 parent: 2 - - uid: 6406 + - uid: 6078 components: - type: Transform - pos: 18.5,8.5 + pos: 58.5,8.5 parent: 2 - - uid: 6407 + - uid: 6079 components: - type: Transform - pos: 16.5,11.5 + pos: 59.5,8.5 parent: 2 - - uid: 6408 + - uid: 6080 components: - type: Transform - pos: 16.5,12.5 + pos: 59.5,7.5 parent: 2 - - uid: 6409 + - uid: 6081 components: - type: Transform - pos: 15.5,11.5 + pos: 59.5,6.5 parent: 2 - - uid: 6410 + - uid: 6082 components: - type: Transform - pos: 15.5,12.5 + pos: 59.5,5.5 parent: 2 - - uid: 6411 + - uid: 6083 components: - type: Transform - pos: 15.5,13.5 + pos: 59.5,4.5 parent: 2 - - uid: 6412 + - uid: 6084 components: - type: Transform - pos: 15.5,14.5 + pos: 59.5,3.5 parent: 2 - - uid: 6413 + - uid: 6085 components: - type: Transform - pos: 15.5,15.5 + pos: 59.5,2.5 parent: 2 - - uid: 6414 + - uid: 6086 components: - type: Transform - pos: 7.5,7.5 + pos: 59.5,1.5 parent: 2 - - uid: 6415 + - uid: 6087 components: - type: Transform - pos: 8.5,7.5 + pos: 59.5,0.5 parent: 2 - - uid: 6416 + - uid: 6088 components: - type: Transform - pos: 9.5,7.5 + pos: 59.5,-0.5 parent: 2 - - uid: 6417 + - uid: 6089 components: - type: Transform - pos: 10.5,7.5 + pos: 59.5,-1.5 parent: 2 - - uid: 6418 + - uid: 6090 components: - type: Transform - pos: 11.5,7.5 + pos: 59.5,-3.5 parent: 2 - - uid: 6419 + - uid: 6091 components: - type: Transform - pos: 12.5,7.5 + pos: 59.5,-4.5 parent: 2 - - uid: 6420 + - uid: 6092 components: - type: Transform - pos: 13.5,7.5 + pos: 59.5,-5.5 parent: 2 - - uid: 6421 + - uid: 6093 components: - type: Transform - pos: 14.5,7.5 + pos: 58.5,-5.5 parent: 2 - - uid: 6422 + - uid: 6094 components: - type: Transform - pos: 12.5,6.5 + pos: 57.5,-5.5 parent: 2 - - uid: 6423 + - uid: 6095 components: - type: Transform - pos: 12.5,5.5 + pos: 55.5,-7.5 parent: 2 - - uid: 6424 + - uid: 6096 components: - type: Transform - pos: 12.5,4.5 + pos: 55.5,-8.5 parent: 2 - - uid: 6425 + - uid: 6097 components: - type: Transform - pos: 12.5,3.5 + pos: 55.5,-9.5 parent: 2 - - uid: 6426 + - uid: 6098 components: - type: Transform - pos: -18.5,8.5 + pos: 55.5,-10.5 parent: 2 - - uid: 6427 + - uid: 6099 components: - type: Transform - pos: -18.5,7.5 + pos: 54.5,-10.5 parent: 2 - - uid: 6428 + - uid: 6100 components: - type: Transform - pos: -18.5,6.5 + pos: 53.5,-10.5 parent: 2 - - uid: 6429 + - uid: 6101 components: - type: Transform - pos: -17.5,6.5 + pos: 52.5,-10.5 parent: 2 - - uid: 6430 + - uid: 6102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,10.5 + pos: 51.5,-10.5 parent: 2 - - uid: 6431 + - uid: 6103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,11.5 + pos: 50.5,-10.5 parent: 2 - - uid: 6432 + - uid: 6104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,11.5 + pos: 49.5,-10.5 parent: 2 - - uid: 6433 + - uid: 6105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,11.5 + pos: 48.5,-10.5 parent: 2 - - uid: 6434 + - uid: 6106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,11.5 + pos: 47.5,-10.5 parent: 2 - - uid: 6435 + - uid: 6107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,11.5 + pos: 47.5,-9.5 parent: 2 - - uid: 6436 + - uid: 6108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 + pos: 47.5,-8.5 parent: 2 - - uid: 6437 + - uid: 6109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,14.5 + pos: 47.5,-7.5 parent: 2 - - uid: 6438 + - uid: 6110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,14.5 + pos: 47.5,-6.5 parent: 2 - - uid: 6439 + - uid: 6111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,13.5 + pos: 47.5,-5.5 parent: 2 - - uid: 6440 + - uid: 6112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,12.5 + pos: 46.5,-5.5 parent: 2 - - uid: 6441 + - uid: 6113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,15.5 + pos: 45.5,-5.5 parent: 2 - - uid: 6442 + - uid: 6114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,15.5 + pos: 44.5,-5.5 parent: 2 - - uid: 6443 + - uid: 6115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,14.5 + pos: 43.5,-5.5 parent: 2 - - uid: 6444 + - uid: 6116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,14.5 + pos: 42.5,-5.5 parent: 2 - - uid: 6445 + - uid: 6117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,13.5 + pos: 43.5,-4.5 parent: 2 - - uid: 6446 + - uid: 6118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,12.5 + pos: 43.5,-3.5 parent: 2 - - uid: 6447 + - uid: 6119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,11.5 + pos: 42.5,-3.5 parent: 2 - - uid: 6448 + - uid: 6120 components: - type: Transform - pos: -15.5,12.5 + pos: 42.5,-4.5 parent: 2 - - uid: 6449 + - uid: 6121 components: - type: Transform - pos: -15.5,13.5 + pos: 52.5,-13.5 parent: 2 - - uid: 6450 + - uid: 6122 components: - type: Transform - pos: -15.5,14.5 + pos: 51.5,-11.5 parent: 2 - - uid: 6451 + - uid: 6123 components: - type: Transform - pos: -15.5,15.5 + pos: 51.5,-22.5 parent: 2 - - uid: 6452 + - uid: 6124 components: - type: Transform - pos: -15.5,16.5 + pos: 51.5,-21.5 parent: 2 - - uid: 6453 + - uid: 6125 components: - type: Transform - pos: -14.5,16.5 + pos: 51.5,-20.5 parent: 2 - - uid: 6454 + - uid: 6126 components: - type: Transform - pos: -13.5,16.5 + pos: 51.5,-19.5 parent: 2 - - uid: 6455 + - uid: 6127 components: - type: Transform - pos: -12.5,16.5 + pos: 51.5,-18.5 parent: 2 - - uid: 6456 + - uid: 6128 components: - type: Transform - pos: -11.5,16.5 + pos: 51.5,-17.5 parent: 2 - - uid: 6457 + - uid: 6129 components: - type: Transform - pos: -10.5,16.5 + pos: 51.5,-16.5 parent: 2 - - uid: 6458 + - uid: 6130 components: - type: Transform - pos: -9.5,16.5 + pos: 51.5,-15.5 parent: 2 - - uid: 6459 + - uid: 6131 components: - type: Transform - pos: -8.5,16.5 + pos: 51.5,-13.5 parent: 2 - - uid: 6460 + - uid: 6132 components: - type: Transform - pos: -8.5,17.5 + pos: 51.5,-12.5 parent: 2 - - uid: 6462 + - uid: 6133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,69.5 + pos: 51.5,-14.5 parent: 2 - - uid: 6463 + - uid: 6134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,68.5 + pos: 51.5,-23.5 parent: 2 - - uid: 6464 + - uid: 6135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,67.5 + pos: 50.5,-21.5 parent: 2 - - uid: 6465 + - uid: 6136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,66.5 + pos: 49.5,-21.5 parent: 2 - - uid: 6466 + - uid: 6137 components: - type: Transform - pos: 8.5,64.5 + pos: 48.5,-21.5 parent: 2 - - uid: 6467 + - uid: 6138 components: - type: Transform - pos: 9.5,64.5 + pos: 47.5,-21.5 parent: 2 - - uid: 6468 + - uid: 6139 components: - type: Transform - pos: 10.5,64.5 + pos: 46.5,-21.5 parent: 2 - - uid: 6469 + - uid: 6140 components: - type: Transform - pos: 11.5,64.5 + pos: 45.5,-21.5 parent: 2 - - uid: 6470 + - uid: 6141 components: - type: Transform - pos: 12.5,64.5 + pos: 52.5,-21.5 parent: 2 - - uid: 6471 + - uid: 6142 components: - type: Transform - pos: 13.5,64.5 + pos: 53.5,-21.5 parent: 2 - - uid: 6472 + - uid: 6143 components: - type: Transform - pos: 13.5,65.5 + pos: 54.5,-21.5 parent: 2 - - uid: 6473 + - uid: 6144 components: - type: Transform - pos: 13.5,66.5 + pos: 55.5,-21.5 parent: 2 - - uid: 6474 + - uid: 6145 components: - type: Transform - pos: 13.5,67.5 + pos: 56.5,-21.5 parent: 2 - - uid: 6475 + - uid: 6146 components: - type: Transform - pos: 13.5,68.5 + pos: 57.5,-21.5 parent: 2 - - uid: 6476 + - uid: 6147 components: - type: Transform - pos: 14.5,65.5 + pos: 52.5,-17.5 parent: 2 - - uid: 6477 + - uid: 6148 components: - type: Transform - pos: 15.5,65.5 + pos: 53.5,-17.5 parent: 2 - - uid: 6478 + - uid: 6149 components: - type: Transform - pos: 16.5,65.5 + pos: 54.5,-17.5 parent: 2 - - uid: 6479 + - uid: 6150 components: - type: Transform - pos: 17.5,65.5 + pos: 55.5,-17.5 parent: 2 - - uid: 6480 + - uid: 6151 components: - type: Transform - pos: 18.5,65.5 + pos: 56.5,-17.5 parent: 2 - - uid: 6481 + - uid: 6152 components: - type: Transform - pos: 14.5,68.5 + pos: 57.5,-17.5 parent: 2 - - uid: 6482 + - uid: 6153 components: - type: Transform - pos: 14.5,69.5 + pos: 50.5,-17.5 parent: 2 - - uid: 6483 + - uid: 6154 components: - type: Transform - pos: 14.5,70.5 + pos: 49.5,-17.5 parent: 2 - - uid: 6484 + - uid: 6155 components: - type: Transform - pos: 14.5,71.5 + pos: 48.5,-17.5 parent: 2 - - uid: 6485 + - uid: 6156 components: - type: Transform - pos: 14.5,72.5 + pos: 47.5,-17.5 parent: 2 - - uid: 6486 + - uid: 6157 components: - type: Transform - pos: 14.5,73.5 + pos: 46.5,-17.5 parent: 2 - - uid: 6487 + - uid: 6158 components: - type: Transform - pos: 14.5,74.5 + pos: 45.5,-17.5 parent: 2 - - uid: 6488 + - uid: 6159 components: - type: Transform - pos: 20.5,62.5 + pos: 53.5,-13.5 parent: 2 - - uid: 6489 + - uid: 6160 components: - type: Transform - pos: 20.5,63.5 + pos: 54.5,-13.5 parent: 2 - - uid: 6490 + - uid: 6161 components: - type: Transform - pos: 24.5,65.5 + pos: 55.5,-13.5 parent: 2 - - uid: 6491 + - uid: 6162 components: - type: Transform - pos: 24.5,64.5 + pos: 56.5,-13.5 parent: 2 - - uid: 6492 + - uid: 6163 components: - type: Transform - pos: 24.5,63.5 + pos: 57.5,-13.5 parent: 2 - - uid: 6493 + - uid: 6164 components: - type: Transform - pos: 24.5,62.5 + pos: 50.5,-13.5 parent: 2 - - uid: 6494 + - uid: 6165 components: - type: Transform - pos: 24.5,61.5 + pos: 49.5,-13.5 parent: 2 - - uid: 6495 + - uid: 6166 components: - type: Transform - pos: 24.5,60.5 + pos: 48.5,-13.5 parent: 2 - - uid: 6496 + - uid: 6167 components: - type: Transform - pos: 23.5,60.5 + pos: 47.5,-13.5 parent: 2 - - uid: 6497 + - uid: 6168 components: - type: Transform - pos: 22.5,60.5 + pos: 46.5,-13.5 parent: 2 - - uid: 6498 + - uid: 6169 components: - type: Transform - pos: 21.5,60.5 + pos: 45.5,-13.5 parent: 2 - - uid: 6499 + - uid: 6170 components: - type: Transform - pos: 20.5,60.5 + pos: 61.5,-2.5 parent: 2 - - uid: 6500 + - uid: 6171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,60.5 + pos: 62.5,-2.5 parent: 2 - - uid: 6501 + - uid: 6172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,60.5 + pos: 63.5,-2.5 parent: 2 - - uid: 6502 + - uid: 6173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,60.5 + pos: 64.5,-2.5 parent: 2 - - uid: 6503 + - uid: 6174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,60.5 + pos: 65.5,-2.5 parent: 2 - - uid: 6504 + - uid: 6175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,60.5 + pos: 66.5,-2.5 parent: 2 - - uid: 6505 + - uid: 6176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,60.5 + pos: 67.5,-2.5 parent: 2 - - uid: 6506 + - uid: 6177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,60.5 + pos: 68.5,-2.5 parent: 2 - - uid: 6507 + - uid: 6178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,61.5 + pos: 69.5,-2.5 parent: 2 - - uid: 6508 + - uid: 6179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,61.5 + pos: 70.5,-2.5 parent: 2 - - uid: 6509 + - uid: 6180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,61.5 + pos: -24.5,-15.5 parent: 2 - - uid: 6510 + - uid: 6181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,61.5 + pos: -22.5,3.5 parent: 2 - - uid: 6511 + - uid: 6182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,61.5 + pos: -22.5,-0.5 parent: 2 - - uid: 6512 + - uid: 6183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,60.5 + pos: -22.5,0.5 parent: 2 - - uid: 6513 + - uid: 6184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,59.5 + pos: -22.5,1.5 parent: 2 - - uid: 6514 + - uid: 6185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,59.5 + pos: -22.5,2.5 parent: 2 - - uid: 6515 + - uid: 6186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,59.5 + pos: -23.5,-7.5 parent: 2 - - uid: 6516 + - uid: 6187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,59.5 + pos: -24.5,-7.5 parent: 2 - - uid: 6517 + - uid: 6188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,59.5 + pos: -25.5,-7.5 parent: 2 - - uid: 6518 + - uid: 6189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,58.5 + pos: -26.5,-7.5 parent: 2 - - uid: 6519 + - uid: 6190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,57.5 + pos: -27.5,-7.5 parent: 2 - - uid: 6520 + - uid: 6191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,56.5 + pos: -28.5,-7.5 parent: 2 - - uid: 6521 + - uid: 6194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,56.5 + pos: -22.5,-5.5 parent: 2 - - uid: 6522 + - uid: 6195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,56.5 + pos: -25.5,-3.5 parent: 2 - - uid: 6523 + - uid: 6196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,56.5 + pos: -26.5,-3.5 parent: 2 - - uid: 6524 + - uid: 6197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,56.5 + pos: -27.5,-3.5 parent: 2 - - uid: 6525 + - uid: 6198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,56.5 + pos: -28.5,-3.5 parent: 2 - - uid: 6526 + - uid: 6199 components: - type: Transform - pos: 46.5,56.5 + pos: -22.5,-4.5 parent: 2 - - uid: 6528 + - uid: 6200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,55.5 + pos: -25.5,-15.5 parent: 2 - - uid: 6529 + - uid: 6201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,54.5 + pos: -26.5,-15.5 parent: 2 - - uid: 6530 + - uid: 6202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,53.5 + pos: -27.5,-15.5 parent: 2 - - uid: 6531 + - uid: 6203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,52.5 + pos: -28.5,-15.5 parent: 2 - - uid: 6532 + - uid: 6204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,51.5 + pos: -29.5,-15.5 parent: 2 - - uid: 6533 + - uid: 6205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,52.5 + pos: -30.5,-15.5 parent: 2 - - uid: 6534 + - uid: 6206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,51.5 + pos: 33.5,80.5 parent: 2 - - uid: 6535 + - uid: 6207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,50.5 + pos: -23.5,-17.5 parent: 2 - - uid: 6536 + - uid: 6208 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,51.5 + pos: 33.5,68.5 parent: 2 - - uid: 6537 + - uid: 6209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,51.5 + pos: 33.5,78.5 parent: 2 - - uid: 6538 + - uid: 6210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,50.5 + pos: 33.5,69.5 parent: 2 - - uid: 6539 + - uid: 6211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,49.5 + pos: 33.5,76.5 parent: 2 - - uid: 6540 + - uid: 6212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,48.5 + pos: 33.5,75.5 parent: 2 - - uid: 6541 + - uid: 6213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,56.5 + pos: 33.5,74.5 parent: 2 - - uid: 6542 + - uid: 6214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,56.5 + pos: 33.5,73.5 parent: 2 - - uid: 6543 + - uid: 6215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,56.5 + pos: 33.5,72.5 parent: 2 - - uid: 6544 + - uid: 6216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,56.5 + pos: 33.5,71.5 parent: 2 - - uid: 6545 + - uid: 6217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,56.5 + pos: 33.5,70.5 parent: 2 - - uid: 6546 + - uid: 6218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,57.5 + pos: 27.5,78.5 parent: 2 - - uid: 6547 + - uid: 6219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,56.5 + pos: 28.5,78.5 parent: 2 - - uid: 6548 + - uid: 6220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,56.5 + pos: 29.5,78.5 parent: 2 - - uid: 6549 + - uid: 6221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,55.5 + pos: 30.5,78.5 parent: 2 - - uid: 6550 + - uid: 6222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,54.5 + pos: 31.5,78.5 parent: 2 - - uid: 6551 + - uid: 6223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,53.5 + pos: 32.5,78.5 parent: 2 - - uid: 6552 + - uid: 6224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,53.5 + pos: 34.5,78.5 parent: 2 - - uid: 6553 + - uid: 6225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,53.5 + pos: 35.5,78.5 parent: 2 - - uid: 6554 + - uid: 6226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,53.5 + pos: 36.5,78.5 parent: 2 - - uid: 6555 + - uid: 6227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,53.5 + pos: 37.5,78.5 parent: 2 - - uid: 6556 + - uid: 6228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,57.5 + pos: 38.5,78.5 parent: 2 - - uid: 6557 + - uid: 6229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,57.5 + pos: 39.5,78.5 parent: 2 - - uid: 6558 + - uid: 6230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,57.5 + pos: 27.5,74.5 parent: 2 - - uid: 6559 + - uid: 6231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,57.5 + pos: 28.5,74.5 parent: 2 - - uid: 6560 + - uid: 6232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,57.5 + pos: 29.5,74.5 parent: 2 - - uid: 6561 + - uid: 6233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,52.5 + pos: 30.5,74.5 parent: 2 - - uid: 6562 + - uid: 6234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 + pos: 31.5,74.5 parent: 2 - - uid: 6563 + - uid: 6235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,50.5 + pos: 32.5,74.5 parent: 2 - - uid: 6564 + - uid: 6236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,49.5 + pos: 32.5,70.5 parent: 2 - - uid: 6565 + - uid: 6237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,48.5 + pos: 34.5,74.5 parent: 2 - - uid: 6566 + - uid: 6238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,48.5 + pos: 35.5,74.5 parent: 2 - - uid: 6567 + - uid: 6239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,47.5 + pos: 36.5,74.5 parent: 2 - - uid: 6568 + - uid: 6240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,48.5 + pos: 37.5,74.5 parent: 2 - - uid: 6569 + - uid: 6241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,47.5 + pos: 38.5,74.5 parent: 2 - - uid: 6570 + - uid: 6242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,47.5 + pos: 39.5,74.5 parent: 2 - - uid: 6571 + - uid: 6243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,47.5 + pos: 31.5,70.5 parent: 2 - - uid: 6572 + - uid: 6244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,46.5 + pos: 30.5,70.5 parent: 2 - - uid: 6573 + - uid: 6245 components: - type: Transform - pos: 33.5,63.5 + pos: 29.5,70.5 parent: 2 - - uid: 6574 + - uid: 6246 components: - type: Transform - pos: 34.5,63.5 + pos: 28.5,70.5 parent: 2 - - uid: 6575 + - uid: 6247 components: - type: Transform - pos: 35.5,64.5 + pos: 27.5,70.5 parent: 2 - - uid: 6576 + - uid: 6248 components: - type: Transform - pos: -31.5,33.5 + pos: 34.5,70.5 parent: 2 - - uid: 6577 + - uid: 6249 components: - type: Transform - pos: -31.5,31.5 + pos: 35.5,70.5 parent: 2 - - uid: 6578 + - uid: 6250 components: - type: Transform - pos: -31.5,29.5 + pos: 36.5,70.5 parent: 2 - - uid: 6579 + - uid: 6251 components: - type: Transform - pos: -31.5,32.5 + pos: 37.5,70.5 parent: 2 - - uid: 6580 + - uid: 6252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 + pos: 38.5,70.5 parent: 2 - - uid: 6581 + - uid: 6253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,20.5 + pos: 39.5,70.5 parent: 2 - - uid: 6582 + - uid: 6254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: 32.5,68.5 parent: 2 - - uid: 6583 + - uid: 6255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,22.5 + pos: 34.5,68.5 parent: 2 - - uid: 6584 + - uid: 6256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,23.5 + pos: 34.5,69.5 parent: 2 - - uid: 6585 + - uid: 6257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,20.5 + pos: 32.5,69.5 parent: 2 - - uid: 6586 + - uid: 6258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,20.5 + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 parent: 2 - - uid: 6587 + - uid: 6259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,20.5 + rot: 1.5707963267948966 rad + pos: 76.5,-3.5 parent: 2 - - uid: 6588 + - uid: 6260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,23.5 + rot: 1.5707963267948966 rad + pos: 76.5,-2.5 parent: 2 - - uid: 6589 + - uid: 6261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,23.5 + rot: 1.5707963267948966 rad + pos: 76.5,-1.5 parent: 2 - - uid: 6590 + - uid: 6262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,23.5 + rot: 1.5707963267948966 rad + pos: 76.5,-4.5 parent: 2 - - uid: 6591 + - uid: 6263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,23.5 + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 parent: 2 - - uid: 6592 + - uid: 6264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,23.5 + rot: 1.5707963267948966 rad + pos: 70.5,-3.5 parent: 2 - - uid: 6593 + - uid: 6265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 parent: 2 - - uid: 6594 + - uid: 6266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 parent: 2 - - uid: 6595 + - uid: 6267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 + rot: 1.5707963267948966 rad + pos: 70.5,-6.5 parent: 2 - - uid: 6596 + - uid: 6268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,25.5 + rot: 1.5707963267948966 rad + pos: 76.5,-5.5 parent: 2 - - uid: 6597 + - uid: 6269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,68.5 + rot: 1.5707963267948966 rad + pos: 76.5,-6.5 parent: 2 - - uid: 6598 + - uid: 6270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,67.5 + rot: 1.5707963267948966 rad + pos: 70.5,-8.5 parent: 2 - - uid: 6599 + - uid: 6271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,66.5 + rot: 1.5707963267948966 rad + pos: 76.5,-8.5 parent: 2 - - uid: 6600 + - uid: 6272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,53.5 + rot: 1.5707963267948966 rad + pos: 70.5,-11.5 parent: 2 - - uid: 6601 + - uid: 6273 components: - type: Transform - pos: -15.5,25.5 + rot: 1.5707963267948966 rad + pos: 76.5,-11.5 parent: 2 - - uid: 6602 + - uid: 6274 components: - type: Transform - pos: -12.5,25.5 + rot: 1.5707963267948966 rad + pos: 76.5,-15.5 parent: 2 - - uid: 6603 + - uid: 6275 components: - type: Transform - pos: -15.5,24.5 + rot: 1.5707963267948966 rad + pos: 70.5,-15.5 parent: 2 - - uid: 6604 + - uid: 6276 components: - type: Transform - pos: -13.5,25.5 + rot: -1.5707963267948966 rad + pos: -15.5,44.5 parent: 2 - - uid: 6605 + - uid: 6277 components: - type: Transform - pos: -12.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,45.5 parent: 2 - - uid: 6606 + - uid: 6278 components: - type: Transform - pos: -14.5,25.5 + rot: -1.5707963267948966 rad + pos: -16.5,44.5 parent: 2 - - uid: 6607 + - uid: 6279 components: - type: Transform - pos: -14.5,22.5 + rot: -1.5707963267948966 rad + pos: -16.5,45.5 parent: 2 - - uid: 6608 + - uid: 6280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,1.5 + pos: -14.5,45.5 parent: 2 - - uid: 6609 + - uid: 6281 components: - type: Transform - pos: -13.5,22.5 + rot: -1.5707963267948966 rad + pos: -13.5,45.5 parent: 2 - - uid: 6610 + - uid: 6282 components: - type: Transform - pos: -15.5,22.5 + rot: -1.5707963267948966 rad + pos: -12.5,45.5 parent: 2 - - uid: 6611 + - uid: 6283 components: - type: Transform - pos: -18.5,-9.5 + rot: -1.5707963267948966 rad + pos: -41.5,25.5 parent: 2 - - uid: 6612 + - uid: 6284 components: - type: Transform - pos: -18.5,-10.5 + rot: -1.5707963267948966 rad + pos: -41.5,27.5 parent: 2 - - uid: 6613 + - uid: 6285 components: - type: Transform - pos: -18.5,-11.5 + rot: -1.5707963267948966 rad + pos: -41.5,28.5 parent: 2 - - uid: 6614 + - uid: 6286 components: - type: Transform - pos: -18.5,-12.5 + rot: -1.5707963267948966 rad + pos: -42.5,27.5 parent: 2 - - uid: 6615 + - uid: 6287 components: - type: Transform - pos: -17.5,-9.5 + rot: -1.5707963267948966 rad + pos: -43.5,25.5 parent: 2 - - uid: 6616 + - uid: 6288 components: - type: Transform - pos: -17.5,-10.5 + rot: -1.5707963267948966 rad + pos: -41.5,24.5 parent: 2 - - uid: 6617 + - uid: 6289 components: - type: Transform - pos: -17.5,-11.5 + pos: -23.5,-15.5 parent: 2 - - uid: 6618 + - uid: 6290 components: - type: Transform - pos: -17.5,-12.5 + rot: -1.5707963267948966 rad + pos: -43.5,26.5 parent: 2 - - uid: 6619 + - uid: 6291 components: - type: Transform - pos: -16.5,-10.5 + rot: -1.5707963267948966 rad + pos: -43.5,27.5 parent: 2 - - uid: 6620 + - uid: 6292 components: - type: Transform - pos: -16.5,-11.5 + pos: -23.5,-14.5 parent: 2 - - uid: 6621 + - uid: 6293 components: - type: Transform - pos: -16.5,-12.5 + pos: -23.5,-16.5 parent: 2 - - uid: 6622 + - uid: 6294 components: - type: Transform - pos: -15.5,-10.5 + rot: 3.141592653589793 rad + pos: -41.5,29.5 parent: 2 - - uid: 6623 + - uid: 6295 components: - type: Transform - pos: -15.5,-11.5 + rot: 3.141592653589793 rad + pos: -40.5,29.5 parent: 2 - - uid: 6624 + - uid: 6296 components: - type: Transform - pos: -15.5,-12.5 + rot: 3.141592653589793 rad + pos: 59.5,-2.5 parent: 2 - - uid: 6625 + - uid: 6297 components: - type: Transform - pos: -14.5,-9.5 + rot: 3.141592653589793 rad + pos: 56.5,-5.5 parent: 2 - - uid: 6626 + - uid: 6298 components: - type: Transform - pos: -14.5,-10.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 6627 + - uid: 6299 components: - type: Transform - pos: -14.5,-11.5 + rot: 3.141592653589793 rad + pos: 55.5,-6.5 parent: 2 - - uid: 6628 + - uid: 6300 components: - type: Transform - pos: -14.5,-12.5 + pos: -22.5,-3.5 parent: 2 - - uid: 6629 + - uid: 6301 components: - type: Transform - pos: -13.5,-9.5 + pos: 25.5,-9.5 parent: 2 - - uid: 6630 + - uid: 6302 components: - type: Transform - pos: -13.5,-10.5 + pos: 74.5,18.5 parent: 2 - - uid: 6631 + - uid: 6303 components: - type: Transform - pos: -13.5,-11.5 + pos: 74.5,17.5 parent: 2 - - uid: 6632 + - uid: 6304 components: - type: Transform - pos: -13.5,-12.5 + pos: 75.5,17.5 parent: 2 - - uid: 6633 + - uid: 6305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: 75.5,16.5 parent: 2 - - uid: 6634 + - uid: 6306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,1.5 + pos: 75.5,15.5 parent: 2 - - uid: 6635 + - uid: 6307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 + pos: 74.5,19.5 parent: 2 - - uid: 6636 + - uid: 6308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,1.5 + pos: 74.5,20.5 parent: 2 - - uid: 6637 + - uid: 6309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 + pos: 75.5,20.5 parent: 2 - - uid: 6638 + - uid: 6310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 + pos: 76.5,20.5 parent: 2 - - uid: 6639 + - uid: 6311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,1.5 + pos: 77.5,20.5 parent: 2 - - uid: 6640 + - uid: 6312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,2.5 + pos: 78.5,20.5 parent: 2 - - uid: 6641 + - uid: 6313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 + pos: 78.5,19.5 parent: 2 - - uid: 6642 + - uid: 6314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,2.5 + pos: 79.5,19.5 parent: 2 - - uid: 6643 + - uid: 6315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,1.5 + pos: 80.5,19.5 parent: 2 - - uid: 6644 + - uid: 6316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,0.5 + pos: 81.5,19.5 parent: 2 - - uid: 6645 + - uid: 6317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 + pos: 81.5,46.5 parent: 2 - - uid: 6646 + - uid: 6318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 + pos: 76.5,47.5 parent: 2 - - uid: 6647 + - uid: 6319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 + pos: 74.5,47.5 parent: 2 - - uid: 6648 + - uid: 6320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 + pos: 75.5,47.5 parent: 2 - - uid: 6649 + - uid: 6321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 + pos: 78.5,47.5 parent: 2 - - uid: 6650 + - uid: 6322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 + pos: 77.5,47.5 parent: 2 - - uid: 6651 + - uid: 6326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 + rot: 3.141592653589793 rad + pos: 79.5,53.5 parent: 2 - - uid: 6652 + - uid: 6327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-6.5 + pos: 75.5,53.5 parent: 2 - - uid: 6653 + - uid: 6328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-7.5 + pos: 74.5,53.5 parent: 2 - - uid: 6654 + - uid: 6329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-8.5 + pos: 73.5,53.5 parent: 2 - - uid: 6658 + - uid: 6330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,76.5 + pos: 73.5,54.5 parent: 2 - - uid: 6659 + - uid: 6332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,77.5 + pos: 62.5,26.5 parent: 2 - - uid: 6660 + - uid: 6333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,77.5 + pos: 62.5,25.5 parent: 2 - - uid: 6661 + - uid: 6334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,77.5 + pos: 62.5,24.5 parent: 2 - - uid: 6662 + - uid: 6335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,77.5 + pos: 62.5,23.5 parent: 2 - - uid: 6663 + - uid: 6336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,77.5 + pos: 62.5,22.5 parent: 2 - - uid: 6664 + - uid: 6337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,77.5 + pos: 62.5,21.5 parent: 2 - - uid: 6665 + - uid: 6338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,77.5 + pos: 62.5,20.5 parent: 2 - - uid: 6666 + - uid: 6339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,77.5 + pos: 62.5,19.5 parent: 2 - - uid: 6667 + - uid: 6340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,77.5 + pos: 62.5,18.5 parent: 2 - - uid: 6668 + - uid: 6341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,77.5 + pos: 61.5,18.5 parent: 2 - - uid: 6669 + - uid: 6342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,21.5 + pos: 61.5,17.5 parent: 2 - - uid: 6670 + - uid: 6343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 + pos: 61.5,16.5 parent: 2 - - uid: 6671 + - uid: 6344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-9.5 + pos: 61.5,15.5 parent: 2 - - uid: 6672 + - uid: 6345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-9.5 + pos: 61.5,14.5 parent: 2 - - uid: 6673 + - uid: 6346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 + pos: 61.5,13.5 parent: 2 - - uid: 6674 + - uid: 6347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 60.5,13.5 parent: 2 - - uid: 6675 + - uid: 6348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 + pos: 59.5,13.5 parent: 2 - - uid: 6676 + - uid: 6349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-11.5 + pos: 58.5,13.5 parent: 2 - - uid: 6677 + - uid: 6350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 + pos: 57.5,13.5 parent: 2 - - uid: 6678 + - uid: 6351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-13.5 + pos: 56.5,13.5 parent: 2 - - uid: 6679 + - uid: 6352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-13.5 + pos: 55.5,13.5 parent: 2 - - uid: 6680 + - uid: 6353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-13.5 + pos: 55.5,12.5 parent: 2 - - uid: 6681 + - uid: 6354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-13.5 + pos: 55.5,11.5 parent: 2 - - uid: 6682 + - uid: 6355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-13.5 + pos: 54.5,11.5 parent: 2 - - uid: 6683 + - uid: 6356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 + pos: 53.5,11.5 parent: 2 - - uid: 6684 + - uid: 6357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 + pos: 52.5,11.5 parent: 2 - - uid: 6685 + - uid: 6358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-11.5 + pos: 52.5,10.5 parent: 2 - - uid: 6686 + - uid: 6359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-11.5 + pos: 57.5,12.5 parent: 2 - - uid: 6687 + - uid: 6360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-9.5 + pos: 46.5,10.5 parent: 2 - - uid: 6688 + - uid: 6361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 + pos: 45.5,10.5 parent: 2 - - uid: 6689 + - uid: 6362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-11.5 + pos: 44.5,10.5 parent: 2 - - uid: 6690 + - uid: 6363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-12.5 + pos: 43.5,10.5 parent: 2 - - uid: 6691 + - uid: 6364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-13.5 + pos: 43.5,9.5 parent: 2 - - uid: 6692 + - uid: 6365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 43.5,8.5 parent: 2 - - uid: 6693 + - uid: 6366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-10.5 + pos: 43.5,7.5 parent: 2 - - uid: 6694 + - uid: 6367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-11.5 + pos: 43.5,6.5 parent: 2 - - uid: 6695 + - uid: 6368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 43.5,5.5 parent: 2 - - uid: 6696 + - uid: 6369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-13.5 + pos: 43.5,4.5 parent: 2 - - uid: 6697 + - uid: 6370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-9.5 + pos: 44.5,7.5 parent: 2 - - uid: 6698 + - uid: 6371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-10.5 + pos: 42.5,4.5 parent: 2 - - uid: 6699 + - uid: 6372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 + pos: 41.5,4.5 parent: 2 - - uid: 6700 + - uid: 6373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-12.5 + pos: 40.5,4.5 parent: 2 - - uid: 6701 + - uid: 6374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + pos: 39.5,4.5 parent: 2 - - uid: 6702 + - uid: 6375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-6.5 + pos: 38.5,4.5 parent: 2 - - uid: 6703 + - uid: 6376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 + pos: 32.5,7.5 parent: 2 - - uid: 6704 + - uid: 6377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 + pos: 31.5,7.5 parent: 2 - - uid: 6705 + - uid: 6378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 + pos: 30.5,7.5 parent: 2 - - uid: 6706 + - uid: 6379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 + pos: 29.5,7.5 parent: 2 - - uid: 6707 + - uid: 6380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 + pos: 28.5,7.5 parent: 2 - - uid: 6708 + - uid: 6381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 27.5,7.5 parent: 2 - - uid: 6709 + - uid: 6382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 + pos: 26.5,7.5 parent: 2 - - uid: 6710 + - uid: 6383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 + pos: 25.5,7.5 parent: 2 - - uid: 6711 + - uid: 6384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 + pos: 27.5,6.5 parent: 2 - - uid: 6712 + - uid: 6385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-19.5 + pos: 25.5,6.5 parent: 2 - - uid: 6713 + - uid: 6386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-19.5 + pos: 24.5,6.5 parent: 2 - - uid: 6714 + - uid: 6387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-20.5 + pos: 23.5,6.5 parent: 2 - - uid: 6715 + - uid: 6388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-21.5 + pos: 22.5,6.5 parent: 2 - - uid: 6716 + - uid: 6389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-20.5 + pos: 20.5,6.5 parent: 2 - - uid: 6717 + - uid: 6390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-19.5 + pos: 19.5,6.5 parent: 2 - - uid: 6718 + - uid: 6391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-18.5 + pos: 18.5,6.5 parent: 2 - - uid: 6719 + - uid: 6392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 + pos: 19.5,5.5 parent: 2 - - uid: 6720 + - uid: 6393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-19.5 + pos: 19.5,4.5 parent: 2 - - uid: 6721 + - uid: 6394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + pos: 17.5,6.5 parent: 2 - - uid: 6722 + - uid: 6395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 + pos: 16.5,6.5 parent: 2 - - uid: 6723 + - uid: 6396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-7.5 + pos: 15.5,6.5 parent: 2 - - uid: 6724 + - uid: 6397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 + pos: 15.5,5.5 parent: 2 - - uid: 6725 + - uid: 6398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 15.5,7.5 parent: 2 - - uid: 6726 + - uid: 6399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + pos: 15.5,8.5 parent: 2 - - uid: 6727 + - uid: 6400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 15.5,9.5 parent: 2 - - uid: 6728 + - uid: 6401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 + pos: 15.5,10.5 parent: 2 - - uid: 6729 + - uid: 6402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-13.5 + pos: 16.5,10.5 parent: 2 - - uid: 6730 + - uid: 6403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-14.5 + pos: 17.5,10.5 parent: 2 - - uid: 6731 + - uid: 6404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 + pos: 18.5,10.5 parent: 2 - - uid: 6732 + - uid: 6405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 + pos: 18.5,9.5 parent: 2 - - uid: 6733 + - uid: 6406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-17.5 + pos: 18.5,8.5 parent: 2 - - uid: 6734 + - uid: 6407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 + pos: 16.5,11.5 parent: 2 - - uid: 6735 + - uid: 6408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 + pos: 16.5,12.5 parent: 2 - - uid: 6736 + - uid: 6409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 + pos: 15.5,11.5 parent: 2 - - uid: 6737 + - uid: 6410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 + pos: 15.5,12.5 parent: 2 - - uid: 6738 + - uid: 6411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 + pos: 15.5,13.5 parent: 2 - - uid: 6739 + - uid: 6412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 + pos: 15.5,14.5 parent: 2 - - uid: 6740 + - uid: 6413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-18.5 + pos: 15.5,15.5 parent: 2 - - uid: 6741 + - uid: 6414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + pos: 7.5,7.5 parent: 2 - - uid: 6742 + - uid: 6415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-18.5 + pos: 8.5,7.5 parent: 2 - - uid: 6743 + - uid: 6416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-18.5 + pos: 9.5,7.5 parent: 2 - - uid: 6744 + - uid: 6417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-18.5 + pos: 10.5,7.5 parent: 2 - - uid: 6745 + - uid: 6418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-18.5 + pos: 11.5,7.5 parent: 2 - - uid: 6746 + - uid: 6419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-18.5 + pos: 12.5,7.5 parent: 2 - - uid: 6747 + - uid: 6420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 + pos: 13.5,7.5 parent: 2 - - uid: 6748 + - uid: 6421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 + pos: 14.5,7.5 parent: 2 - - uid: 6749 + - uid: 6422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 + pos: 12.5,6.5 parent: 2 - - uid: 6750 + - uid: 6423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-17.5 + pos: 12.5,5.5 parent: 2 - - uid: 6751 + - uid: 6424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 + pos: 12.5,4.5 parent: 2 - - uid: 6752 + - uid: 6425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 + pos: 12.5,3.5 parent: 2 - - uid: 6753 + - uid: 6426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 + pos: -18.5,8.5 parent: 2 - - uid: 6754 + - uid: 6427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-17.5 + pos: -18.5,7.5 parent: 2 - - uid: 6755 + - uid: 6428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 + pos: -18.5,6.5 parent: 2 - - uid: 6756 + - uid: 6429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-17.5 + pos: -17.5,6.5 parent: 2 - - uid: 6757 + - uid: 6430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-16.5 + rot: 3.141592653589793 rad + pos: -18.5,10.5 parent: 2 - - uid: 6758 + - uid: 6431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-16.5 + rot: 3.141592653589793 rad + pos: -20.5,11.5 parent: 2 - - uid: 6759 + - uid: 6432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-15.5 + rot: 3.141592653589793 rad + pos: -19.5,11.5 parent: 2 - - uid: 6760 + - uid: 6433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-14.5 + rot: 3.141592653589793 rad + pos: -18.5,11.5 parent: 2 - - uid: 6761 + - uid: 6434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 + rot: 3.141592653589793 rad + pos: -17.5,11.5 parent: 2 - - uid: 6762 + - uid: 6435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 + rot: 3.141592653589793 rad + pos: -16.5,11.5 parent: 2 - - uid: 6763 + - uid: 6436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-11.5 + rot: 3.141592653589793 rad + pos: -15.5,11.5 parent: 2 - - uid: 6764 + - uid: 6437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 + rot: 3.141592653589793 rad + pos: -19.5,14.5 parent: 2 - - uid: 6765 + - uid: 6438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 + rot: 3.141592653589793 rad + pos: -20.5,14.5 parent: 2 - - uid: 6766 + - uid: 6439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-8.5 + rot: 3.141592653589793 rad + pos: -20.5,13.5 parent: 2 - - uid: 6767 + - uid: 6440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 + rot: 3.141592653589793 rad + pos: -20.5,12.5 parent: 2 - - uid: 6768 + - uid: 6441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-4.5 + rot: 3.141592653589793 rad + pos: -19.5,15.5 parent: 2 - - uid: 6769 + - uid: 6442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 + rot: 3.141592653589793 rad + pos: -18.5,15.5 parent: 2 - - uid: 6770 + - uid: 6443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: -21.5,14.5 parent: 2 - - uid: 6771 + - uid: 6444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 + rot: 3.141592653589793 rad + pos: -22.5,14.5 parent: 2 - - uid: 6772 + - uid: 6445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 + rot: 3.141592653589793 rad + pos: -22.5,13.5 parent: 2 - - uid: 6773 + - uid: 6446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 + rot: 3.141592653589793 rad + pos: -22.5,12.5 parent: 2 - - uid: 6774 + - uid: 6447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-4.5 + rot: 3.141592653589793 rad + pos: -22.5,11.5 parent: 2 - - uid: 6775 + - uid: 6448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 + pos: -15.5,12.5 parent: 2 - - uid: 6776 + - uid: 6449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 + pos: -15.5,13.5 parent: 2 - - uid: 6777 + - uid: 6450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 + pos: -15.5,14.5 parent: 2 - - uid: 6778 + - uid: 6451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-4.5 + pos: -15.5,15.5 parent: 2 - - uid: 6779 + - uid: 6452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-4.5 + pos: -15.5,16.5 parent: 2 - - uid: 6780 + - uid: 6453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 + pos: -14.5,16.5 parent: 2 - - uid: 6781 + - uid: 6454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 + pos: -13.5,16.5 parent: 2 - - uid: 6782 + - uid: 6455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-4.5 + pos: -12.5,16.5 parent: 2 - - uid: 6783 + - uid: 6456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-4.5 + pos: -11.5,16.5 parent: 2 - - uid: 6784 + - uid: 6457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 + pos: -10.5,16.5 parent: 2 - - uid: 6785 + - uid: 6458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 + pos: -9.5,16.5 parent: 2 - - uid: 6786 + - uid: 6459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-5.5 + pos: -8.5,16.5 parent: 2 - - uid: 6787 + - uid: 6460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-5.5 + pos: -8.5,17.5 parent: 2 - - uid: 6788 + - uid: 6462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 + rot: 3.141592653589793 rad + pos: -37.5,69.5 parent: 2 - - uid: 6789 + - uid: 6463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-5.5 + rot: 3.141592653589793 rad + pos: -37.5,68.5 parent: 2 - - uid: 6790 + - uid: 6464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 + rot: 3.141592653589793 rad + pos: -37.5,67.5 parent: 2 - - uid: 6791 + - uid: 6465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 + rot: 3.141592653589793 rad + pos: -37.5,66.5 parent: 2 - - uid: 6792 + - uid: 6466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-3.5 + pos: 8.5,64.5 parent: 2 - - uid: 6793 + - uid: 6467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-3.5 + pos: 9.5,64.5 parent: 2 - - uid: 6794 + - uid: 6468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 + pos: 10.5,64.5 parent: 2 - - uid: 6795 + - uid: 6469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 + pos: 11.5,64.5 parent: 2 - - uid: 6796 + - uid: 6470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 + pos: 12.5,64.5 parent: 2 - - uid: 12071 + - uid: 6471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,75.5 + pos: 13.5,64.5 parent: 2 - - uid: 18574 + - uid: 6472 components: - type: Transform - pos: 86.5,17.5 + pos: 13.5,65.5 parent: 2 - - uid: 18575 + - uid: 6473 components: - type: Transform - pos: 86.5,15.5 + pos: 13.5,66.5 parent: 2 - - uid: 18578 + - uid: 6474 components: - type: Transform - pos: 83.5,19.5 + pos: 13.5,67.5 parent: 2 - - uid: 18579 + - uid: 6475 components: - type: Transform - pos: 83.5,18.5 + pos: 13.5,68.5 parent: 2 - - uid: 18580 + - uid: 6476 components: - type: Transform - pos: 83.5,14.5 + pos: 14.5,65.5 parent: 2 - - uid: 18582 + - uid: 6477 components: - type: Transform - pos: 90.5,14.5 + pos: 15.5,65.5 parent: 2 - - uid: 18583 + - uid: 6478 components: - type: Transform - pos: 90.5,12.5 + pos: 16.5,65.5 parent: 2 - - uid: 18584 + - uid: 6479 components: - type: Transform - pos: 89.5,10.5 + pos: 17.5,65.5 parent: 2 - - uid: 18585 + - uid: 6480 components: - type: Transform - pos: 89.5,8.5 + pos: 18.5,65.5 parent: 2 - - uid: 18589 + - uid: 6481 components: - type: Transform - pos: 89.5,-0.5 + pos: 14.5,68.5 parent: 2 - - uid: 18590 + - uid: 6482 components: - type: Transform - pos: 89.5,-2.5 + pos: 14.5,69.5 parent: 2 - - uid: 18591 + - uid: 6483 components: - type: Transform - pos: 90.5,-4.5 + pos: 14.5,70.5 parent: 2 - - uid: 18592 + - uid: 6484 components: - type: Transform - pos: 90.5,-6.5 + pos: 14.5,71.5 parent: 2 - - uid: 18593 + - uid: 6485 components: - type: Transform - pos: 87.5,-9.5 + pos: 14.5,72.5 parent: 2 - - uid: 18599 + - uid: 6486 components: - type: Transform - pos: 88.5,-7.5 + pos: 14.5,73.5 parent: 2 - - uid: 18600 + - uid: 6487 components: - type: Transform - pos: 89.5,-6.5 + pos: 14.5,74.5 parent: 2 - - uid: 18601 + - uid: 6488 components: - type: Transform - pos: 87.5,-8.5 + pos: 20.5,62.5 parent: 2 - - uid: 18604 + - uid: 6489 components: - type: Transform - pos: 87.5,-2.5 + pos: 20.5,63.5 parent: 2 - - uid: 18605 + - uid: 6490 components: - type: Transform - pos: 87.5,0.5 + pos: 24.5,65.5 parent: 2 - - uid: 18606 + - uid: 6491 components: - type: Transform - pos: 87.5,1.5 + pos: 24.5,64.5 parent: 2 - - uid: 18607 + - uid: 6492 components: - type: Transform - pos: 87.5,5.5 + pos: 24.5,63.5 parent: 2 - - uid: 18608 + - uid: 6493 components: - type: Transform - pos: 87.5,6.5 + pos: 24.5,62.5 parent: 2 - - uid: 18609 + - uid: 6494 components: - type: Transform - pos: 87.5,9.5 + pos: 24.5,61.5 parent: 2 - - uid: 18610 + - uid: 6495 components: - type: Transform - pos: 87.5,10.5 + pos: 24.5,60.5 parent: 2 - - uid: 18611 + - uid: 6496 components: - type: Transform - pos: 87.5,14.5 + pos: 23.5,60.5 parent: 2 - - uid: 18785 + - uid: 6497 components: - type: Transform - pos: 79.5,47.5 + pos: 22.5,60.5 parent: 2 - - uid: 18786 + - uid: 6498 components: - type: Transform - pos: 80.5,47.5 + pos: 21.5,60.5 parent: 2 - - uid: 18787 + - uid: 6499 components: - type: Transform - pos: 81.5,47.5 + pos: 20.5,60.5 parent: 2 - - uid: 18790 + - uid: 6500 components: - type: Transform - pos: 72.5,48.5 + rot: 3.141592653589793 rad + pos: 25.5,60.5 parent: 2 - - uid: 18791 + - uid: 6501 components: - type: Transform - pos: 72.5,49.5 + rot: 3.141592653589793 rad + pos: 26.5,60.5 parent: 2 - - uid: 18792 + - uid: 6502 components: - type: Transform - pos: 75.5,52.5 + rot: 3.141592653589793 rad + pos: 27.5,60.5 parent: 2 - - uid: 18793 + - uid: 6503 components: - type: Transform - pos: 75.5,51.5 + rot: 3.141592653589793 rad + pos: 28.5,60.5 parent: 2 - - uid: 18835 + - uid: 6504 components: - type: Transform - pos: 75.5,54.5 + rot: 3.141592653589793 rad + pos: 29.5,60.5 parent: 2 - - uid: 18836 + - uid: 6505 components: - type: Transform - pos: 75.5,55.5 + rot: 3.141592653589793 rad + pos: 30.5,60.5 parent: 2 - - uid: 18837 + - uid: 6506 components: - type: Transform - pos: 75.5,56.5 + rot: 3.141592653589793 rad + pos: 31.5,60.5 parent: 2 - - uid: 18838 + - uid: 6507 components: - type: Transform - pos: 75.5,57.5 + rot: 3.141592653589793 rad + pos: 31.5,61.5 parent: 2 - - uid: 18849 + - uid: 6508 components: - type: Transform - pos: 87.5,21.5 + rot: 3.141592653589793 rad + pos: 32.5,61.5 parent: 2 - - uid: 18850 + - uid: 6509 components: - type: Transform - pos: 87.5,20.5 + rot: 3.141592653589793 rad + pos: 33.5,61.5 parent: 2 - - uid: 18851 + - uid: 6510 components: - type: Transform - pos: 87.5,19.5 + rot: 3.141592653589793 rad + pos: 34.5,61.5 parent: 2 - - uid: 18852 + - uid: 6511 components: - type: Transform - pos: 87.5,18.5 + rot: 3.141592653589793 rad + pos: 35.5,61.5 parent: 2 - - uid: 18853 + - uid: 6512 components: - type: Transform - pos: 87.5,17.5 + rot: 3.141592653589793 rad + pos: 35.5,60.5 parent: 2 - - uid: 18854 + - uid: 6513 components: - type: Transform - pos: 87.5,16.5 + rot: 3.141592653589793 rad + pos: 35.5,59.5 parent: 2 - - uid: 18855 + - uid: 6514 components: - type: Transform - pos: 87.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,59.5 parent: 2 - - uid: 18856 + - uid: 6515 components: - type: Transform - pos: 86.5,20.5 + rot: 1.5707963267948966 rad + pos: 37.5,59.5 parent: 2 - - uid: 18857 + - uid: 6516 components: - type: Transform - pos: 85.5,20.5 + rot: 1.5707963267948966 rad + pos: 38.5,59.5 parent: 2 - - uid: 18858 + - uid: 6517 components: - type: Transform - pos: 85.5,21.5 + rot: 1.5707963267948966 rad + pos: 39.5,59.5 parent: 2 - - uid: 18859 + - uid: 6518 components: - type: Transform - pos: 85.5,22.5 + rot: 1.5707963267948966 rad + pos: 39.5,58.5 parent: 2 - - uid: 18860 + - uid: 6519 components: - type: Transform - pos: 85.5,23.5 + rot: 1.5707963267948966 rad + pos: 39.5,57.5 parent: 2 - - uid: 18861 + - uid: 6520 components: - type: Transform - pos: 85.5,24.5 + rot: 1.5707963267948966 rad + pos: 39.5,56.5 parent: 2 - - uid: 18862 + - uid: 6521 components: - type: Transform - pos: 85.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,56.5 parent: 2 - - uid: 18863 + - uid: 6522 components: - type: Transform - pos: 85.5,26.5 + rot: 3.141592653589793 rad + pos: 41.5,56.5 parent: 2 - - uid: 18864 + - uid: 6523 components: - type: Transform - pos: 85.5,27.5 + rot: 3.141592653589793 rad + pos: 42.5,56.5 parent: 2 - - uid: 18865 + - uid: 6524 components: - type: Transform - pos: 85.5,28.5 + rot: 3.141592653589793 rad + pos: 43.5,56.5 parent: 2 - - uid: 18866 + - uid: 6525 components: - type: Transform - pos: 84.5,28.5 + rot: 3.141592653589793 rad + pos: 44.5,56.5 parent: 2 - - uid: 18867 + - uid: 6526 components: - type: Transform - pos: 86.5,28.5 + pos: 46.5,56.5 parent: 2 - - uid: 18868 + - uid: 6528 components: - type: Transform - pos: 87.5,28.5 + rot: 3.141592653589793 rad + pos: 46.5,55.5 parent: 2 - - uid: 18869 + - uid: 6529 components: - type: Transform - pos: 88.5,28.5 + rot: 3.141592653589793 rad + pos: 46.5,54.5 parent: 2 - - uid: 18870 + - uid: 6530 components: - type: Transform - pos: 88.5,29.5 + rot: 3.141592653589793 rad + pos: 46.5,53.5 parent: 2 - - uid: 18871 + - uid: 6531 components: - type: Transform - pos: 89.5,29.5 + rot: 3.141592653589793 rad + pos: 46.5,52.5 parent: 2 - - uid: 18872 + - uid: 6532 components: - type: Transform - pos: 89.5,30.5 + rot: 3.141592653589793 rad + pos: 46.5,51.5 parent: 2 - - uid: 18873 + - uid: 6533 components: - type: Transform - pos: 89.5,31.5 + rot: 3.141592653589793 rad + pos: 47.5,52.5 parent: 2 - - uid: 18874 + - uid: 6534 components: - type: Transform - pos: 89.5,32.5 + rot: 3.141592653589793 rad + pos: 47.5,51.5 parent: 2 - - uid: 18875 + - uid: 6535 components: - type: Transform - pos: 89.5,33.5 + rot: 3.141592653589793 rad + pos: 47.5,50.5 parent: 2 - - uid: 18876 + - uid: 6536 components: - type: Transform - pos: 89.5,34.5 + rot: 3.141592653589793 rad + pos: 45.5,51.5 parent: 2 - - uid: 18877 + - uid: 6537 components: - type: Transform - pos: 89.5,35.5 + rot: 3.141592653589793 rad + pos: 44.5,51.5 parent: 2 - - uid: 18878 + - uid: 6538 components: - type: Transform - pos: 89.5,36.5 + rot: 3.141592653589793 rad + pos: 44.5,50.5 parent: 2 - - uid: 18879 + - uid: 6539 components: - type: Transform - pos: 89.5,37.5 + rot: 3.141592653589793 rad + pos: 44.5,49.5 parent: 2 - - uid: 18880 + - uid: 6540 components: - type: Transform - pos: 89.5,38.5 + rot: 3.141592653589793 rad + pos: 44.5,48.5 parent: 2 - - uid: 18881 + - uid: 6541 components: - type: Transform - pos: 89.5,39.5 + rot: 3.141592653589793 rad + pos: 47.5,56.5 parent: 2 - - uid: 18882 + - uid: 6542 components: - type: Transform - pos: 88.5,39.5 + rot: 3.141592653589793 rad + pos: 48.5,56.5 parent: 2 - - uid: 18883 + - uid: 6543 components: - type: Transform - pos: 88.5,40.5 + rot: 3.141592653589793 rad + pos: 49.5,56.5 parent: 2 - - uid: 18884 + - uid: 6544 components: - type: Transform - pos: 87.5,40.5 + rot: 3.141592653589793 rad + pos: 50.5,56.5 parent: 2 - - uid: 18885 + - uid: 6545 components: - type: Transform - pos: 86.5,40.5 + rot: 3.141592653589793 rad + pos: 51.5,56.5 parent: 2 - - uid: 18886 + - uid: 6546 components: - type: Transform - pos: 85.5,40.5 + rot: 3.141592653589793 rad + pos: 51.5,57.5 parent: 2 - - uid: 18887 + - uid: 6547 components: - type: Transform - pos: 84.5,40.5 + rot: 3.141592653589793 rad + pos: 52.5,56.5 parent: 2 - - uid: 18888 + - uid: 6548 components: - type: Transform - pos: 85.5,41.5 + rot: 3.141592653589793 rad + pos: 53.5,56.5 parent: 2 - - uid: 18889 + - uid: 6549 components: - type: Transform - pos: 85.5,42.5 + rot: 3.141592653589793 rad + pos: 53.5,55.5 parent: 2 - - uid: 18890 + - uid: 6550 components: - type: Transform - pos: 85.5,43.5 + rot: 3.141592653589793 rad + pos: 53.5,54.5 parent: 2 - - uid: 18891 + - uid: 6551 components: - type: Transform - pos: 85.5,44.5 + rot: 3.141592653589793 rad + pos: 53.5,53.5 parent: 2 - - uid: 18892 + - uid: 6552 components: - type: Transform - pos: 85.5,45.5 + rot: 3.141592653589793 rad + pos: 54.5,53.5 parent: 2 - - uid: 18893 + - uid: 6553 components: - type: Transform - pos: 85.5,46.5 + rot: 3.141592653589793 rad + pos: 55.5,53.5 parent: 2 - - uid: 18894 + - uid: 6554 components: - type: Transform - pos: 85.5,47.5 + rot: 3.141592653589793 rad + pos: 56.5,53.5 parent: 2 - - uid: 19540 + - uid: 6555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,76.5 + rot: 3.141592653589793 rad + pos: 57.5,53.5 parent: 2 - - uid: 19541 + - uid: 6556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,77.5 + rot: 3.141592653589793 rad + pos: 53.5,57.5 parent: 2 - - uid: 19542 + - uid: 6557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,77.5 + rot: 3.141592653589793 rad + pos: 54.5,57.5 parent: 2 - - uid: 19543 + - uid: 6558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,74.5 + rot: 3.141592653589793 rad + pos: 55.5,57.5 parent: 2 - - uid: 19544 + - uid: 6559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,78.5 + rot: 3.141592653589793 rad + pos: 56.5,57.5 parent: 2 - - uid: 19545 + - uid: 6560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,78.5 + rot: 3.141592653589793 rad + pos: 57.5,57.5 parent: 2 - - uid: 19546 + - uid: 6561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,79.5 + rot: 3.141592653589793 rad + pos: 57.5,52.5 parent: 2 - - uid: 19547 + - uid: 6562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,79.5 + rot: 3.141592653589793 rad + pos: 57.5,51.5 parent: 2 - - uid: 19548 + - uid: 6563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,79.5 + rot: 3.141592653589793 rad + pos: 57.5,50.5 parent: 2 - - uid: 19549 + - uid: 6564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,79.5 + rot: 3.141592653589793 rad + pos: 57.5,49.5 parent: 2 - - uid: 19550 + - uid: 6565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,79.5 + rot: 3.141592653589793 rad + pos: 57.5,48.5 parent: 2 - - uid: 19551 + - uid: 6566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,79.5 + rot: 3.141592653589793 rad + pos: 58.5,48.5 parent: 2 - - uid: 19552 + - uid: 6567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,79.5 + rot: 3.141592653589793 rad + pos: 59.5,47.5 parent: 2 - - uid: 19553 + - uid: 6568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,78.5 + rot: 3.141592653589793 rad + pos: 59.5,48.5 parent: 2 - - uid: 19554 + - uid: 6569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,78.5 + rot: 3.141592653589793 rad + pos: 60.5,47.5 parent: 2 - - uid: 19555 + - uid: 6570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,77.5 + rot: 3.141592653589793 rad + pos: 61.5,47.5 parent: 2 - - uid: 19556 + - uid: 6571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,77.5 + rot: 3.141592653589793 rad + pos: 62.5,47.5 parent: 2 -- proto: Chair - entities: - - uid: 6797 + - uid: 6572 components: - type: Transform - pos: 9.5,17.5 + rot: 3.141592653589793 rad + pos: 60.5,46.5 parent: 2 - - uid: 6798 + - uid: 6573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,15.5 + pos: 33.5,63.5 parent: 2 - - uid: 6799 + - uid: 6574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,58.5 + pos: 34.5,63.5 parent: 2 - - uid: 6800 + - uid: 6575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,58.5 + pos: 35.5,64.5 parent: 2 - - uid: 6801 + - uid: 6576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,67.5 + pos: 31.5,-9.5 parent: 2 - - uid: 6802 + - uid: 6577 components: - type: Transform - pos: 53.5,27.5 + pos: 34.5,-9.5 parent: 2 - - uid: 6803 + - uid: 6578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,24.5 + pos: 35.5,-9.5 parent: 2 - - uid: 6804 + - uid: 6580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,25.5 + rot: 3.141592653589793 rad + pos: 38.5,19.5 parent: 2 - - uid: 6805 + - uid: 6581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,26.5 + rot: 3.141592653589793 rad + pos: 38.5,20.5 parent: 2 - - uid: 6806 + - uid: 6582 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,53.5 + pos: 38.5,21.5 parent: 2 - - uid: 6807 + - uid: 6583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,54.5 + rot: 3.141592653589793 rad + pos: 38.5,22.5 parent: 2 - - uid: 6808 + - uid: 6584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,55.5 + rot: 3.141592653589793 rad + pos: 38.5,23.5 parent: 2 - - uid: 6809 + - uid: 6585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,52.5 + rot: 3.141592653589793 rad + pos: 37.5,20.5 parent: 2 - - uid: 6810 + - uid: 6586 components: - type: Transform - pos: -31.5,64.5 + rot: 3.141592653589793 rad + pos: 36.5,20.5 parent: 2 - - uid: 6811 + - uid: 6587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,68.5 + rot: 3.141592653589793 rad + pos: 35.5,20.5 parent: 2 - - uid: 6812 + - uid: 6588 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,67.5 + pos: 39.5,23.5 parent: 2 - - uid: 6813 + - uid: 6589 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,59.5 + pos: 40.5,23.5 parent: 2 - - uid: 6814 + - uid: 6590 components: - type: Transform - pos: 45.5,37.5 + rot: 3.141592653589793 rad + pos: 41.5,23.5 parent: 2 - - uid: 6815 + - uid: 6591 components: - type: Transform - pos: 53.5,38.5 + rot: 3.141592653589793 rad + pos: 42.5,23.5 parent: 2 - - uid: 6816 + - uid: 6592 components: - type: Transform - pos: 54.5,38.5 + rot: 3.141592653589793 rad + pos: 43.5,23.5 parent: 2 - - uid: 6817 + - uid: 6593 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,44.5 + pos: 5.5,24.5 parent: 2 - - uid: 6818 + - uid: 6594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,38.5 + rot: -1.5707963267948966 rad + pos: 4.5,24.5 parent: 2 - - uid: 6819 + - uid: 6595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,37.5 + rot: -1.5707963267948966 rad + pos: 4.5,25.5 parent: 2 - - uid: 6820 + - uid: 6596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,37.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 6821 + - uid: 6597 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,38.5 + pos: -3.5,68.5 parent: 2 - - uid: 6822 + - uid: 6598 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,37.5 + pos: -3.5,67.5 parent: 2 - - uid: 6823 + - uid: 6599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,37.5 + rot: -1.5707963267948966 rad + pos: -3.5,66.5 parent: 2 - - uid: 6824 + - uid: 6600 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,31.5 + pos: 77.5,53.5 parent: 2 - - uid: 6825 + - uid: 6601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,31.5 + pos: -15.5,25.5 parent: 2 - - uid: 6826 + - uid: 6602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 + pos: -12.5,25.5 parent: 2 - - uid: 6827 + - uid: 6603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,31.5 + pos: -15.5,24.5 parent: 2 - - uid: 6828 + - uid: 6604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,41.5 + pos: -13.5,25.5 parent: 2 - - uid: 6829 + - uid: 6605 components: - type: Transform - pos: 12.5,43.5 + pos: -12.5,22.5 parent: 2 - - uid: 6830 + - uid: 6606 components: - type: Transform - pos: 11.5,43.5 + pos: -14.5,25.5 parent: 2 - - uid: 6831 + - uid: 6607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,59.5 + pos: -14.5,22.5 parent: 2 - - uid: 6832 + - uid: 6608 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,58.5 + pos: -4.5,1.5 parent: 2 - - uid: 6833 + - uid: 6609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,57.5 + pos: -13.5,22.5 parent: 2 - - uid: 6834 + - uid: 6610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,59.5 + pos: -15.5,22.5 parent: 2 - - uid: 6835 + - uid: 6611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,58.5 + pos: -18.5,-9.5 parent: 2 - - uid: 6836 + - uid: 6612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,57.5 + pos: -18.5,-10.5 parent: 2 - - uid: 6837 + - uid: 6613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,57.5 + pos: -18.5,-11.5 parent: 2 - - uid: 6838 + - uid: 6614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,56.5 + pos: -18.5,-12.5 parent: 2 - - uid: 6839 + - uid: 6615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,55.5 + pos: -17.5,-9.5 parent: 2 - - uid: 6840 + - uid: 6616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,54.5 + pos: -17.5,-10.5 parent: 2 - - uid: 6841 + - uid: 6617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,54.5 + pos: -17.5,-11.5 parent: 2 - - uid: 6842 + - uid: 6618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,39.5 + pos: -17.5,-12.5 parent: 2 - - uid: 6843 + - uid: 6619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,38.5 + pos: -16.5,-10.5 parent: 2 - - uid: 6844 + - uid: 6620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,37.5 + pos: -16.5,-11.5 parent: 2 - - uid: 6845 + - uid: 6621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,62.5 + pos: -16.5,-12.5 parent: 2 - - uid: 6846 + - uid: 6622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,61.5 + pos: -15.5,-10.5 parent: 2 - - uid: 6847 + - uid: 6623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,60.5 + pos: -15.5,-11.5 parent: 2 - - uid: 6848 + - uid: 6624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,59.5 + pos: -15.5,-12.5 parent: 2 - - uid: 6849 + - uid: 6625 components: - type: Transform - pos: 70.5,4.5 + pos: -14.5,-9.5 parent: 2 - - uid: 6850 + - uid: 6626 components: - type: Transform - pos: 70.5,4.5 + pos: -14.5,-10.5 parent: 2 - - uid: 6851 + - uid: 6627 components: - type: Transform - pos: 69.5,4.5 + pos: -14.5,-11.5 parent: 2 - - uid: 6852 + - uid: 6628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,3.5 + pos: -14.5,-12.5 parent: 2 - - uid: 6853 + - uid: 6629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,2.5 + pos: -13.5,-9.5 parent: 2 - - uid: 6854 + - uid: 6630 components: - type: Transform - pos: 27.5,63.5 + pos: -13.5,-10.5 parent: 2 - - uid: 6855 + - uid: 6631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,65.5 + pos: -13.5,-11.5 parent: 2 - - uid: 6856 + - uid: 6632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,64.5 + pos: -13.5,-12.5 parent: 2 - - uid: 6857 + - uid: 6633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,63.5 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 parent: 2 - - uid: 12628 + - uid: 6634 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,74.5 + pos: -3.5,1.5 parent: 2 - - uid: 19479 + - uid: 6635 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,68.5 + pos: -5.5,1.5 parent: 2 - - uid: 19480 + - uid: 6636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,67.5 + pos: -6.5,1.5 parent: 2 - - uid: 19481 + - uid: 6637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,67.5 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 parent: 2 - - uid: 19482 + - uid: 6638 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,69.5 + pos: -8.5,1.5 parent: 2 - - uid: 19483 + - uid: 6639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,68.5 + rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - uid: 19485 + - uid: 6640 components: - type: Transform - pos: -31.5,69.5 + rot: -1.5707963267948966 rad + pos: -9.5,2.5 parent: 2 - - uid: 19486 + - uid: 6641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,66.5 + rot: -1.5707963267948966 rad + pos: -10.5,2.5 parent: 2 - - uid: 19521 + - uid: 6642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,73.5 + rot: -1.5707963267948966 rad + pos: -11.5,2.5 parent: 2 - - uid: 19522 + - uid: 6643 components: - type: Transform - pos: -24.5,74.5 + rot: -1.5707963267948966 rad + pos: -11.5,1.5 parent: 2 - - uid: 19523 + - uid: 6644 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,74.5 + pos: -11.5,0.5 parent: 2 - - uid: 19524 + - uid: 6645 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,74.5 + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 -- proto: ChairGreyscale - entities: - - uid: 6858 + - uid: 6646 components: - type: Transform - pos: -27.5,61.5 + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 parent: 2 - - uid: 6859 + - uid: 6647 components: - type: Transform - pos: -31.5,61.5 + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 6860 + - uid: 6648 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,28.5 + pos: -11.5,-3.5 parent: 2 - - uid: 6861 + - uid: 6649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 parent: 2 - - uid: 6862 + - uid: 6650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 parent: 2 - - uid: 6863 + - uid: 6651 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,6.5 + pos: -12.5,-5.5 parent: 2 - - uid: 6864 + - uid: 6652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 + rot: -1.5707963267948966 rad + pos: -12.5,-6.5 parent: 2 - - uid: 6865 + - uid: 6653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,20.5 + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 parent: 2 - - uid: 6866 + - uid: 6654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,28.5 + pos: -12.5,-8.5 parent: 2 - - uid: 6867 + - uid: 6658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,35.5 + rot: -1.5707963267948966 rad + pos: -22.5,76.5 parent: 2 - - uid: 6868 + - uid: 6659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,45.5 + rot: -1.5707963267948966 rad + pos: -22.5,77.5 parent: 2 - - uid: 6869 + - uid: 6660 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,44.5 + pos: -21.5,77.5 parent: 2 - - uid: 6870 + - uid: 6661 components: - type: Transform - pos: -0.5,15.5 + rot: -1.5707963267948966 rad + pos: -20.5,77.5 parent: 2 - - uid: 6871 + - uid: 6662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,29.5 + rot: -1.5707963267948966 rad + pos: -19.5,77.5 parent: 2 - - uid: 6872 + - uid: 6663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,64.5 + rot: -1.5707963267948966 rad + pos: -18.5,77.5 parent: 2 - - uid: 6873 + - uid: 6664 components: - type: Transform - pos: -15.5,60.5 + rot: -1.5707963267948966 rad + pos: -17.5,77.5 parent: 2 - - uid: 6874 + - uid: 6665 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,52.5 + pos: -16.5,77.5 parent: 2 - - uid: 6875 + - uid: 6666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,54.5 + pos: -15.5,77.5 parent: 2 - - uid: 6876 + - uid: 6667 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,64.5 + pos: -14.5,77.5 parent: 2 - - uid: 6877 + - uid: 6668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,13.5 + rot: -1.5707963267948966 rad + pos: -13.5,77.5 parent: 2 - - uid: 6878 + - uid: 6669 components: - type: Transform - pos: 74.54003,40.548847 + rot: 1.5707963267948966 rad + pos: -28.5,21.5 parent: 2 - - uid: 6879 + - uid: 6741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,15.5 + pos: 29.5,-12.5 parent: 2 - - uid: 6880 + - uid: 6742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 + pos: 30.5,-12.5 parent: 2 - - uid: 6881 + - uid: 6743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,59.5 + pos: 31.5,-12.5 parent: 2 - - uid: 6882 + - uid: 6744 components: - type: Transform - pos: 17.5,55.5 + pos: 32.5,-12.5 parent: 2 - - uid: 6883 + - uid: 6745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,28.5 + pos: 33.5,-12.5 parent: 2 - - uid: 6884 + - uid: 6746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,28.5 + pos: 34.5,-12.5 parent: 2 - - uid: 6885 + - uid: 6764 components: - type: Transform - pos: 26.5,36.5 + pos: 22.5,-34.5 parent: 2 - - uid: 6886 + - uid: 6765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,44.5 + pos: 25.5,-15.5 parent: 2 - - uid: 6887 + - uid: 6766 components: - type: Transform - pos: 19.5,38.5 + pos: 33.5,-3.5 parent: 2 - - uid: 6888 + - uid: 6767 components: - type: Transform - pos: 13.5,24.5 + pos: 25.5,-20.5 parent: 2 - - uid: 6889 + - uid: 6768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 + pos: 25.5,-19.5 parent: 2 - - uid: 6890 + - uid: 6769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,44.5 + pos: 26.5,-4.5 parent: 2 - - uid: 6891 + - uid: 6772 components: - type: Transform - pos: 75.5,37.5 + pos: 38.5,-38.5 parent: 2 - - uid: 6892 + - uid: 6773 components: - type: Transform - pos: 77.5,37.5 + pos: 35.5,-13.5 parent: 2 - - uid: 6893 + - uid: 6774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,37.5 + pos: 37.5,-40.5 parent: 2 - - uid: 6894 + - uid: 6775 components: - type: Transform - pos: 85.5,31.5 + pos: 38.5,-34.5 parent: 2 - - uid: 6895 + - uid: 6776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,57.5 + pos: 37.5,-42.5 parent: 2 - - uid: 6897 + - uid: 6783 components: - type: Transform - pos: 72.5,13.5 + pos: 34.5,-13.5 parent: 2 - - uid: 6898 + - uid: 6787 components: - type: Transform - pos: 72.5,14.5 + pos: 36.5,-24.5 parent: 2 - - uid: 6899 + - uid: 6788 components: - type: Transform - pos: 71.5,39.5 + pos: 35.5,-17.5 parent: 2 - - uid: 6900 + - uid: 6789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,6.5 + pos: 35.5,-21.5 parent: 2 - - uid: 6901 + - uid: 6790 components: - type: Transform - pos: -6.5,4.5 + pos: 35.5,-19.5 parent: 2 - - uid: 6902 + - uid: 6792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-1.5 + pos: 38.5,-35.5 parent: 2 - - uid: 13116 + - uid: 6795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,28.5 + pos: 36.5,-23.5 parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 6903 + - uid: 6796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,25.5 + pos: 36.5,-22.5 parent: 2 - - uid: 6904 + - uid: 7339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,2.5 + pos: 35.5,-18.5 parent: 2 -- proto: ChairWood - entities: - - uid: 6905 + - uid: 8223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,13.5 + pos: 35.5,-15.5 parent: 2 - - uid: 6906 + - uid: 8395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,16.5 + pos: 37.5,-38.5 parent: 2 - - uid: 6907 + - uid: 8396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 + pos: 39.5,-38.5 parent: 2 - - uid: 6908 + - uid: 8397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,17.5 + pos: 38.5,-32.5 parent: 2 - - uid: 6909 + - uid: 8398 components: - type: Transform - pos: 23.5,14.5 + pos: 38.5,-31.5 parent: 2 - - uid: 6910 + - uid: 8399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + pos: 35.5,-16.5 parent: 2 - - uid: 6911 + - uid: 8517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 + pos: 35.5,-14.5 parent: 2 - - uid: 6912 + - uid: 8518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,10.5 + pos: 38.5,-36.5 parent: 2 - - uid: 6913 + - uid: 8784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 + pos: 37.5,-39.5 parent: 2 - - uid: 6914 + - uid: 11124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 + pos: 23.5,-41.5 parent: 2 - - uid: 6915 + - uid: 11125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,73.5 + pos: 22.5,-37.5 parent: 2 - - uid: 6916 + - uid: 11126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,79.5 + pos: 33.5,-52.5 parent: 2 - - uid: 6917 + - uid: 11127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,79.5 + pos: 37.5,-44.5 parent: 2 - - uid: 6918 + - uid: 11128 components: - type: Transform - pos: 9.5,61.5 + pos: 37.5,-43.5 parent: 2 - - uid: 6919 + - uid: 11129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,59.5 + pos: 34.5,-52.5 parent: 2 - - uid: 6920 + - uid: 11130 components: - type: Transform - pos: 14.5,57.5 + rot: 1.5707963267948966 rad + pos: -33.5,40.5 parent: 2 - - uid: 6921 + - uid: 11131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,55.5 + rot: 1.5707963267948966 rad + pos: -32.5,40.5 parent: 2 - - uid: 6922 + - uid: 11132 components: - type: Transform - pos: 80.5,51.5 + rot: 1.5707963267948966 rad + pos: -31.5,33.5 parent: 2 - - uid: 6923 + - uid: 11133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,49.5 + rot: 1.5707963267948966 rad + pos: -29.5,40.5 parent: 2 - - uid: 6924 + - uid: 12071 components: - type: Transform - pos: 62.5,51.5 + rot: 1.5707963267948966 rad + pos: -36.5,75.5 parent: 2 - - uid: 6925 + - uid: 12388 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,50.5 + pos: -35.5,37.5 parent: 2 - - uid: 6926 + - uid: 12389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,54.5 + rot: 1.5707963267948966 rad + pos: -37.5,40.5 parent: 2 - - uid: 6927 + - uid: 12390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,53.5 + rot: 1.5707963267948966 rad + pos: -30.5,40.5 parent: 2 -- proto: chem_master - entities: - - uid: 6928 + - uid: 12391 components: - type: Transform - pos: 47.5,45.5 + rot: 1.5707963267948966 rad + pos: -34.5,40.5 parent: 2 - - uid: 6929 + - uid: 13042 components: - type: Transform - pos: 59.5,42.5 + pos: 38.5,-37.5 parent: 2 - - uid: 6930 + - uid: 13045 components: - type: Transform - pos: 14.5,24.5 + pos: 38.5,-33.5 parent: 2 - - uid: 6931 + - uid: 13046 components: - type: Transform - pos: 13.5,27.5 + pos: 36.5,-21.5 parent: 2 -- proto: ChemDispenser - entities: - - uid: 6932 + - uid: 13048 components: - type: Transform - pos: 12.5,24.5 + pos: 35.5,-20.5 parent: 2 - - uid: 6933 + - uid: 13049 components: - type: Transform - pos: 11.5,28.5 + pos: 37.5,-41.5 parent: 2 -- proto: ChemicalPayload - entities: - - uid: 6934 + - uid: 13050 components: - type: Transform - pos: 41.33658,7.402665 + pos: 35.5,-52.5 parent: 2 - - uid: 6935 + - uid: 13054 components: - type: Transform - pos: 41.551777,7.3668227 + rot: 1.5707963267948966 rad + pos: -36.5,40.5 parent: 2 - - uid: 6936 + - uid: 13406 components: - type: Transform - pos: 41.76698,7.3847437 + pos: 22.5,-9.5 parent: 2 - - uid: 6937 + - uid: 13407 components: - type: Transform - pos: 44.60328,53.38158 + pos: 22.5,-10.5 parent: 2 - - uid: 6938 + - uid: 13408 components: - type: Transform - pos: 44.28048,53.297947 + pos: 21.5,-2.5 parent: 2 - - uid: 6939 + - uid: 13409 components: - type: Transform - pos: 44.66306,53.656372 + pos: 34.5,-7.5 parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 6940 + - uid: 13410 components: - type: Transform - pos: 43.5,39.5 + pos: 34.5,-3.5 parent: 2 - - uid: 6941 + - uid: 13411 components: - type: Transform - pos: 13.5,28.5 + pos: 22.5,-11.5 parent: 2 -- proto: CigarGoldCase - entities: - - uid: 6942 + - uid: 13412 components: - type: Transform - pos: 31.374626,53.571064 + pos: 22.5,-12.5 parent: 2 - - uid: 6943 + - uid: 13413 components: - type: Transform - pos: 84.33954,33.767384 + pos: 34.5,-11.5 parent: 2 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: CircuitImprinter - entities: - - uid: 6944 + - uid: 13414 components: - type: Transform - pos: -6.5,34.5 + pos: 36.5,-3.5 parent: 2 - - uid: 6945 + - uid: 13418 components: - type: Transform - pos: 55.5,20.5 + pos: 32.5,-3.5 parent: 2 - - uid: 6946 + - uid: 13421 components: - type: Transform - pos: 46.5,25.5 + pos: 26.5,-7.5 parent: 2 -- proto: CleanerDispenser - entities: - - uid: 6947 + - uid: 13423 components: - type: Transform - pos: 43.5,55.5 + pos: 26.5,-5.5 parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 6949 + - uid: 13424 components: - type: Transform - pos: -25.5,71.5 + pos: 20.5,-2.5 parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 6950 + - uid: 13678 components: - type: Transform - pos: 55.5,46.5 + pos: 20.5,-3.5 parent: 2 - - uid: 6951 + - uid: 13680 components: - type: Transform - pos: 57.5,42.5 + pos: 40.5,-24.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 5080 + - uid: 13718 components: - type: Transform - pos: -11.5,70.5 + pos: 20.5,-4.5 parent: 2 - - uid: 6952 + - uid: 14374 components: - type: Transform - pos: 36.5,19.5 + pos: 34.5,-6.5 parent: 2 - - uid: 6953 + - uid: 14378 components: - type: Transform - pos: 3.5,17.5 + pos: 38.5,-4.5 parent: 2 - - uid: 6954 + - uid: 14385 components: - type: Transform - pos: 4.5,17.5 + pos: 34.5,-5.5 parent: 2 - - uid: 6955 + - uid: 14409 components: - type: Transform - pos: 20.5,4.5 + pos: 20.5,-14.5 parent: 2 - - uid: 6956 + - uid: 14423 components: - type: Transform - pos: -39.5,56.5 + pos: 20.5,-9.5 parent: 2 - - uid: 6957 + - uid: 14424 components: - type: Transform - pos: 52.5,29.5 + pos: 20.5,-16.5 parent: 2 - - uid: 6958 + - uid: 14425 components: - type: Transform - pos: 0.5,78.5 + pos: 20.5,-23.5 parent: 2 - - uid: 6959 + - uid: 14426 components: - type: Transform - pos: 11.5,75.5 + pos: 20.5,-10.5 parent: 2 - - uid: 6960 + - uid: 14440 components: - type: Transform - pos: 14.5,78.5 + pos: 22.5,-25.5 parent: 2 - - uid: 6961 + - uid: 14441 components: - type: Transform - pos: 77.5,59.5 + pos: 20.5,-11.5 parent: 2 - - uid: 6962 + - uid: 14454 components: - type: Transform - pos: 66.5,62.5 + pos: 20.5,-6.5 parent: 2 - - uid: 6963 + - uid: 14455 components: - type: Transform - pos: 64.5,62.5 + pos: 38.5,-3.5 parent: 2 - - uid: 6964 + - uid: 14476 components: - type: Transform - pos: 68.5,46.5 + pos: 38.5,-5.5 parent: 2 - - uid: 6965 + - uid: 14477 components: - type: Transform - pos: 75.5,35.5 + pos: 22.5,-7.5 parent: 2 - - uid: 6966 + - uid: 14984 components: - type: Transform - pos: 77.5,35.5 + pos: 37.5,-3.5 parent: 2 - - uid: 6967 + - uid: 15039 components: - type: Transform - pos: 67.5,5.5 + pos: 39.5,-3.5 parent: 2 - - uid: 6968 + - uid: 15462 components: - type: Transform - pos: 72.5,-1.5 + pos: 20.5,-18.5 parent: 2 - - uid: 6969 + - uid: 15488 components: - type: Transform - pos: 63.5,6.5 + pos: 40.5,-7.5 parent: 2 - - uid: 6970 + - uid: 15497 components: - type: Transform - pos: 62.5,11.5 + pos: 38.5,-25.5 parent: 2 - - uid: 6971 + - uid: 15510 components: - type: Transform - pos: 76.5,15.5 + pos: 40.5,-9.5 parent: 2 - - uid: 6972 + - uid: 15512 components: - type: Transform - pos: 59.5,12.5 + pos: 40.5,-11.5 parent: 2 - - uid: 6973 + - uid: 16455 components: - type: Transform - pos: 45.5,8.5 + pos: 40.5,-19.5 parent: 2 - - uid: 6974 + - uid: 17122 components: - type: Transform - pos: 14.5,15.5 + rot: 1.5707963267948966 rad + pos: -39.5,39.5 parent: 2 - - uid: 6975 + - uid: 17128 components: - type: Transform - pos: -21.5,15.5 + rot: 1.5707963267948966 rad + pos: -36.5,37.5 parent: 2 - - uid: 6976 + - uid: 17144 components: - type: Transform - pos: 18.5,69.5 + rot: 1.5707963267948966 rad + pos: -37.5,37.5 parent: 2 - - uid: 6977 + - uid: 17145 components: - type: Transform - pos: 62.5,46.5 + rot: 1.5707963267948966 rad + pos: -39.5,37.5 parent: 2 - - uid: 6978 + - uid: 17146 components: - type: Transform - pos: 58.5,49.5 + rot: 1.5707963267948966 rad + pos: -38.5,37.5 parent: 2 - - uid: 6979 + - uid: 17147 components: - type: Transform - pos: 47.5,55.5 + rot: 1.5707963267948966 rad + pos: -39.5,38.5 parent: 2 - - uid: 6980 + - uid: 17159 components: - type: Transform - pos: 47.5,53.5 + pos: 22.5,-4.5 parent: 2 - - uid: 14312 + - uid: 17160 components: - type: Transform - pos: 57.5,58.5 + pos: 38.5,-9.5 parent: 2 - - uid: 14781 + - uid: 17161 components: - type: Transform - pos: -5.5,70.5 + pos: 38.5,-11.5 parent: 2 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 6981 + - uid: 17162 components: - type: Transform - pos: 76.5,59.5 + pos: 38.5,-10.5 parent: 2 - - uid: 12531 + - uid: 17163 components: - type: Transform - pos: -11.5,70.5 + pos: 38.5,-12.5 parent: 2 - - uid: 14313 + - uid: 17164 components: - type: Transform - pos: 57.5,56.5 + pos: 26.5,-6.5 parent: 2 - - uid: 14531 + - uid: 17165 components: - type: Transform - pos: -5.5,70.5 + pos: 40.5,-23.5 parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 6982 + - uid: 17166 components: - type: Transform - pos: 37.5,19.5 + pos: 40.5,-22.5 parent: 2 - - uid: 6983 + - uid: 17167 components: - type: Transform - pos: -39.5,57.5 + pos: 34.5,-4.5 parent: 2 - - uid: 6984 + - uid: 17168 components: - type: Transform - pos: -3.5,40.5 + rot: 1.5707963267948966 rad + pos: -38.5,40.5 parent: 2 - - uid: 6985 + - uid: 17179 components: - type: Transform - pos: -7.5,62.5 + pos: 23.5,-25.5 parent: 2 - - uid: 6986 + - uid: 17180 components: - type: Transform - pos: 50.5,29.5 + pos: 39.5,-25.5 parent: 2 - - uid: 6987 + - uid: 17181 components: - type: Transform - pos: 51.5,29.5 + pos: 20.5,-20.5 parent: 2 - - uid: 6988 + - uid: 17182 components: - type: Transform - pos: 8.5,43.5 + pos: 20.5,-25.5 parent: 2 - - uid: 6989 + - uid: 17334 components: - type: Transform - pos: 68.5,42.5 + pos: 22.5,-5.5 parent: 2 - - uid: 6990 + - uid: 17479 components: - type: Transform - pos: 75.5,33.5 + pos: 38.5,-6.5 parent: 2 - - uid: 6991 + - uid: 17480 components: - type: Transform - pos: 77.5,33.5 + pos: 22.5,-8.5 parent: 2 - - uid: 6992 + - uid: 17834 components: - type: Transform - pos: 67.5,6.5 + pos: 20.5,-7.5 parent: 2 - - uid: 6993 + - uid: 17847 components: - type: Transform - pos: 72.5,-0.5 + pos: 20.5,-8.5 parent: 2 - - uid: 6994 + - uid: 17848 components: - type: Transform - pos: 63.5,11.5 + pos: 20.5,-12.5 parent: 2 - - uid: 6995 + - uid: 17849 components: - type: Transform - pos: 58.5,12.5 + pos: 20.5,-24.5 parent: 2 - - uid: 6996 + - uid: 17850 components: - type: Transform - pos: 45.5,9.5 + pos: 20.5,-19.5 parent: 2 - - uid: 6997 + - uid: 17851 components: - type: Transform - pos: 14.5,14.5 + pos: 20.5,-21.5 parent: 2 - - uid: 6998 + - uid: 17852 components: - type: Transform - pos: -20.5,15.5 + pos: 37.5,-25.5 parent: 2 - - uid: 6999 + - uid: 17853 components: - type: Transform - pos: 18.5,68.5 + pos: 40.5,-25.5 parent: 2 - - uid: 7000 + - uid: 17854 components: - type: Transform - pos: 61.5,46.5 + pos: 40.5,-2.5 parent: 2 - - uid: 7001 + - uid: 17872 components: - type: Transform - pos: 23.5,61.5 + pos: 40.5,-8.5 parent: 2 - - uid: 7002 + - uid: 17873 components: - type: Transform - pos: 47.5,54.5 + pos: 40.5,-4.5 parent: 2 - - uid: 14121 + - uid: 17874 components: - type: Transform - pos: 55.5,58.5 + pos: 35.5,-3.5 parent: 2 - - uid: 18754 + - uid: 17875 components: - type: Transform - pos: -24.5,14.5 + pos: 40.5,-16.5 parent: 2 - - uid: 18755 + - uid: 17876 components: - type: Transform - pos: -24.5,15.5 + pos: 40.5,-21.5 parent: 2 -- proto: ClosetJanitorBombFilled - entities: - - uid: 7003 + - uid: 17963 components: - type: Transform - pos: 42.5,52.5 + pos: 40.5,-13.5 parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 7004 + - uid: 18044 components: - type: Transform - pos: 41.5,54.5 + pos: 40.5,-14.5 parent: 2 -- proto: ClosetL3Filled - entities: - - uid: 7005 + - uid: 18193 components: - type: Transform - pos: 29.5,63.5 + pos: 20.5,-5.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 7006 + - uid: 18216 components: - type: Transform - pos: 42.5,51.5 + pos: 40.5,-12.5 parent: 2 -- proto: ClosetL3SecurityFilled - entities: - - uid: 7007 + - uid: 18229 components: - type: Transform - pos: -22.5,71.5 + pos: 40.5,-15.5 parent: 2 - - uid: 7008 + - uid: 18230 components: - type: Transform - pos: 25.5,39.5 + pos: 40.5,-18.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 7009 + - uid: 18232 components: - type: Transform - pos: 20.5,8.5 + pos: 40.5,-20.5 parent: 2 - - uid: 7010 + - uid: 18233 components: - type: Transform - pos: 21.5,8.5 + pos: 40.5,-17.5 parent: 2 - - uid: 7110 + - uid: 18234 components: - type: Transform - pos: 78.5,50.5 + pos: 40.5,-3.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 7011 + - uid: 18235 components: - type: Transform - pos: 35.5,19.5 + pos: 40.5,-1.5 parent: 2 - - uid: 7012 + - uid: 18236 components: - type: Transform - pos: 46.5,9.5 + pos: 40.5,-10.5 parent: 2 - - uid: 7013 + - uid: 18237 components: - type: Transform - pos: 41.5,65.5 + pos: 40.5,-6.5 parent: 2 - - uid: 7014 + - uid: 18238 components: - type: Transform - pos: 41.5,66.5 + pos: 40.5,-5.5 parent: 2 - - uid: 7015 + - uid: 18239 components: - type: Transform - pos: 37.5,64.5 + pos: 20.5,-22.5 parent: 2 - - uid: 7016 + - uid: 18240 components: - type: Transform - pos: 37.5,66.5 + pos: 21.5,-25.5 parent: 2 - - uid: 7017 + - uid: 18245 components: - type: Transform - pos: 37.5,65.5 + pos: 20.5,-17.5 parent: 2 - - uid: 7018 + - uid: 18246 components: - type: Transform - pos: 41.5,64.5 + pos: 20.5,-13.5 parent: 2 - - uid: 7019 + - uid: 18247 components: - type: Transform - pos: 68.5,51.5 + pos: 20.5,-15.5 parent: 2 - - uid: 7020 + - uid: 18249 components: - type: Transform - pos: 72.5,48.5 + pos: 38.5,-8.5 parent: 2 - - uid: 7022 + - uid: 18381 components: - type: Transform - pos: 80.5,53.5 + pos: 38.5,-7.5 parent: 2 - - uid: 7023 + - uid: 18382 components: - type: Transform - pos: 79.5,57.5 + pos: 22.5,-6.5 parent: 2 - - uid: 7024 + - uid: 18413 components: - type: Transform - pos: 76.5,17.5 + pos: 26.5,-11.5 parent: 2 - - uid: 7025 + - uid: 18574 components: - type: Transform - pos: 60.5,12.5 + pos: 86.5,17.5 parent: 2 - - uid: 7026 + - uid: 18575 components: - type: Transform - pos: 42.5,5.5 + pos: 86.5,15.5 parent: 2 - - uid: 7027 + - uid: 18578 components: - type: Transform - pos: 28.5,6.5 + pos: 83.5,19.5 parent: 2 - - uid: 7028 + - uid: 18579 components: - type: Transform - pos: 20.5,5.5 + pos: 83.5,18.5 parent: 2 - - uid: 7029 + - uid: 18580 components: - type: Transform - pos: 9.5,3.5 + pos: 83.5,14.5 parent: 2 - - uid: 7030 + - uid: 18582 components: - type: Transform - pos: 11.5,8.5 + pos: 90.5,14.5 parent: 2 - - uid: 7031 + - uid: 18583 components: - type: Transform - pos: -18.5,14.5 + pos: 90.5,12.5 parent: 2 - - uid: 7032 + - uid: 18584 components: - type: Transform - pos: -17.5,7.5 + pos: 89.5,10.5 parent: 2 - - uid: 7033 + - uid: 18585 components: - type: Transform - pos: -9.5,17.5 + pos: 89.5,8.5 parent: 2 - - uid: 7034 + - uid: 18589 components: - type: Transform - pos: 8.5,63.5 + pos: 89.5,-0.5 parent: 2 - - uid: 7035 + - uid: 18590 components: - type: Transform - pos: 16.5,67.5 + pos: 89.5,-2.5 parent: 2 - - uid: 7036 + - uid: 18591 components: - type: Transform - pos: 15.5,73.5 + pos: 90.5,-4.5 parent: 2 - - uid: 7037 + - uid: 18592 components: - type: Transform - pos: 25.5,59.5 + pos: 90.5,-6.5 parent: 2 - - uid: 7038 + - uid: 18593 components: - type: Transform - pos: 59.5,46.5 + pos: 87.5,-9.5 parent: 2 - - uid: 7039 + - uid: 18599 components: - type: Transform - pos: 58.5,50.5 + pos: 88.5,-7.5 parent: 2 - - uid: 7040 + - uid: 18600 components: - type: Transform - pos: 47.5,57.5 + pos: 89.5,-6.5 parent: 2 - - uid: 7041 + - uid: 18601 components: - type: Transform - pos: 44.5,47.5 + pos: 87.5,-8.5 parent: 2 - - uid: 7042 + - uid: 18604 components: - type: Transform - pos: 37.5,62.5 + pos: 87.5,-2.5 parent: 2 - - uid: 7043 + - uid: 18605 components: - type: Transform - pos: 36.5,60.5 + pos: 87.5,0.5 parent: 2 - - uid: 7044 + - uid: 18606 components: - type: Transform - pos: 55.5,56.5 + pos: 87.5,1.5 parent: 2 - - uid: 7045 + - uid: 18607 components: - type: Transform - pos: 44.5,23.5 + pos: 87.5,5.5 parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 7046 + - uid: 18608 components: - type: Transform - pos: -2.5,38.5 + pos: 87.5,6.5 parent: 2 - - uid: 7047 + - uid: 18609 components: - type: Transform - pos: -33.5,23.5 + pos: 87.5,9.5 parent: 2 - - uid: 7048 + - uid: 18610 components: - type: Transform - pos: -33.5,24.5 + pos: 87.5,10.5 parent: 2 - - uid: 7049 + - uid: 18611 components: - type: Transform - pos: 6.5,37.5 + pos: 87.5,14.5 parent: 2 - - uid: 7050 + - uid: 18785 components: - type: Transform - pos: -11.5,31.5 + pos: 79.5,47.5 parent: 2 - - uid: 7051 + - uid: 18786 components: - type: Transform - pos: -11.5,31.5 + pos: 80.5,47.5 parent: 2 - - uid: 7052 + - uid: 18787 components: - type: Transform - pos: -11.5,37.5 + pos: 81.5,47.5 parent: 2 - - uid: 7053 + - uid: 18790 components: - type: Transform - pos: -11.5,37.5 + pos: 72.5,48.5 parent: 2 - - uid: 18670 + - uid: 18791 components: - type: Transform - pos: 38.5,15.5 + pos: 72.5,49.5 parent: 2 - - uid: 18671 + - uid: 18792 components: - type: Transform - pos: 38.5,15.5 + pos: 75.5,52.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 7054 + - uid: 18793 components: - type: Transform - pos: -9.5,60.5 + pos: 75.5,51.5 parent: 2 - - uid: 7055 + - uid: 18835 components: - type: Transform - pos: -8.5,60.5 + pos: 75.5,54.5 parent: 2 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 7056 + - uid: 18836 components: - type: Transform - pos: 74.5,55.5 + pos: 75.5,55.5 parent: 2 -- proto: ClothingBackpackClown - entities: - - uid: 745 + - uid: 18837 components: - type: Transform - parent: 742 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 7057 + pos: 75.5,56.5 + parent: 2 + - uid: 18838 components: - type: Transform - pos: 40.59282,43.67842 + pos: 75.5,57.5 parent: 2 -- proto: ClothingBackpackDuffelClown - entities: - - uid: 746 + - uid: 18849 components: - type: Transform - parent: 742 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBackpackDuffelMime - entities: - - uid: 774 + pos: 87.5,21.5 + parent: 2 + - uid: 18850 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 + pos: 87.5,20.5 + parent: 2 + - uid: 18851 components: - type: Transform - pos: 40.524685,45.87787 + pos: 87.5,19.5 parent: 2 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 7059 + - uid: 18852 components: - type: Transform - pos: 59.48093,16.47347 + pos: 87.5,18.5 parent: 2 - - uid: 7060 + - uid: 18853 components: - type: Transform - pos: -29.510458,54.469387 + pos: 87.5,17.5 parent: 2 - - uid: 7061 + - uid: 18854 components: - type: Transform - pos: -3.5407438,59.420185 + pos: 87.5,16.5 parent: 2 - - uid: 7062 + - uid: 18855 components: - type: Transform - pos: 11.418509,39.366848 + pos: 87.5,15.5 parent: 2 - - uid: 7063 + - uid: 18856 components: - type: Transform - pos: 11.430464,39.904484 + pos: 86.5,20.5 parent: 2 -- proto: ClothingBackpackERTClown - entities: - - uid: 747 + - uid: 18857 components: - type: Transform - parent: 742 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBackpackMime - entities: - - uid: 775 + pos: 85.5,20.5 + parent: 2 + - uid: 18858 components: - type: Transform - parent: 772 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBackpackSatchelClown - entities: - - uid: 748 + pos: 85.5,21.5 + parent: 2 + - uid: 18859 components: - type: Transform - parent: 742 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBackpackSatchelMime - entities: - - uid: 776 + pos: 85.5,22.5 + parent: 2 + - uid: 18860 components: - type: Transform - parent: 772 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltMantis - entities: - - uid: 480 + pos: 85.5,23.5 + parent: 2 + - uid: 18861 components: - type: Transform - pos: 34.256275,5.674018 + pos: 85.5,24.5 parent: 2 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 7064 + - uid: 18862 components: - type: Transform - pos: -4.599819,40.670532 + pos: 85.5,25.5 parent: 2 - - uid: 7065 + - uid: 18863 components: - type: Transform - pos: -4.4173317,40.54428 + pos: 85.5,26.5 parent: 2 - - uid: 7066 + - uid: 18864 components: - type: Transform - pos: 78.430534,42.512993 + pos: 85.5,27.5 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 7067 + - uid: 18865 components: - type: Transform - pos: -21.469843,66.69192 + pos: 85.5,28.5 parent: 2 - - uid: 7068 + - uid: 18866 components: - type: Transform - pos: 55.388428,17.467995 + pos: 84.5,28.5 parent: 2 - - uid: 7069 + - uid: 18867 components: - type: Transform - pos: 55.603626,17.665127 + pos: 86.5,28.5 parent: 2 - - uid: 7070 + - uid: 18868 components: - type: Transform - pos: 59.46577,28.456217 + pos: 87.5,28.5 parent: 2 - - uid: 7071 + - uid: 18869 components: - type: Transform - pos: 59.680973,28.63543 + pos: 88.5,28.5 parent: 2 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 7072 + - uid: 18870 components: - type: Transform - pos: -17.443285,67.75773 + pos: 88.5,29.5 parent: 2 - - uid: 7073 + - uid: 18871 components: - type: Transform - pos: 0.41975856,59.424564 + pos: 89.5,29.5 parent: 2 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 7074 + - uid: 18872 components: - type: Transform - pos: 29.53992,62.564426 + pos: 89.5,30.5 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 7075 + - uid: 18873 components: - type: Transform - pos: -10.3801365,21.491434 + pos: 89.5,31.5 parent: 2 - - uid: 7076 + - uid: 18874 components: - type: Transform - pos: -5.4825945,40.568024 + pos: 89.5,32.5 parent: 2 - - uid: 7077 + - uid: 18875 components: - type: Transform - pos: 60.549847,31.581648 + pos: 89.5,33.5 parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 7078 + - uid: 18876 components: - type: Transform - pos: 58.572304,15.51898 + pos: 89.5,34.5 parent: 2 -- proto: ClothingHandsTacticalMaidGloves - entities: - - uid: 7079 + - uid: 18877 components: - type: Transform - pos: 39.8144,66.24514 + pos: 89.5,35.5 parent: 2 -- proto: ClothingHeadBandGold - entities: - - uid: 7080 + - uid: 18878 components: - type: Transform - pos: 31.58519,54.286488 + pos: 89.5,36.5 parent: 2 -- proto: ClothingHeadCourier - entities: - - uid: 7081 + - uid: 18879 components: - type: Transform - pos: -5.3823576,3.5615594 + pos: 89.5,37.5 parent: 2 -- proto: ClothingHeadCourierFlipped - entities: - - uid: 7082 + - uid: 18880 components: - type: Transform - pos: -6.695648,3.798901 + pos: 89.5,38.5 parent: 2 -- proto: ClothingHeadHatCargosoftFlipped + - 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 + - uid: 20254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + pos: 37.5,-12.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 + - uid: 18450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.572569,-35.50413 + parent: 2 + - uid: 19712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.509598,-24.383455 + parent: 2 + - uid: 19780 + components: + - type: Transform + pos: 25.496529,-37.421314 + 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 + - uid: 18467 + components: + - type: Transform + pos: 24.5,-33.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 + - uid: 19774 + components: + - type: Transform + pos: 26.39628,-23.295946 + parent: 2 + - uid: 20213 + components: + - type: Transform + pos: 26.605682,-23.41542 + 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: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 19795 + components: + - type: Transform + pos: 34.39234,-38.625298 + parent: 2 + - uid: 19796 + components: + - type: Transform + pos: 34.643623,-38.517773 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 20216 + components: + - type: Transform + pos: 26.39628,-24.206938 + parent: 2 + - uid: 20217 + components: + - type: Transform + pos: 26.635597,-24.35628 + parent: 2 + - uid: 20218 + components: + - type: Transform + pos: 26.35141,-24.341347 + 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 + - uid: 19808 + components: + - type: Transform + pos: 28.38991,-38.56996 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: 28.479652,-38.462433 + parent: 2 + - uid: 19810 + components: + - type: Transform + pos: 28.551449,-38.37283 + 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: ClothingHandsGlovesCombat + entities: + - uid: 19781 + components: + - type: Transform + pos: 34.527466,-36.43892 + parent: 2 + - uid: 20214 + components: + - type: Transform + pos: 26.321495,-23.6245 + parent: 2 + - uid: 20215 + components: + - type: Transform + pos: 26.635597,-23.75891 + 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: @@ -47627,6 +49792,23 @@ entities: - type: Transform pos: -10.401194,21.55456 parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 19814 + components: + - type: Transform + pos: 28.318115,-38.53412 + parent: 2 + - uid: 19815 + components: + - type: Transform + pos: 28.551449,-38.53412 + parent: 2 + - uid: 19816 + components: + - type: Transform + pos: 28.695038,-38.53412 + parent: 2 - proto: ClothingMaskBreathMedical entities: - uid: 7087 @@ -47799,6 +49981,40 @@ entities: - type: Transform pos: -11.458471,35.630077 parent: 2 +- proto: ClothingOuterWinterCoat + entities: + - uid: 19805 + components: + - type: Transform + pos: 29.377089,-38.605804 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: 29.556576,-38.516197 + parent: 2 + - uid: 19807 + components: + - type: Transform + pos: 29.718115,-38.408672 + parent: 2 +- proto: ClothingOuterWinterCoatLong + entities: + - uid: 19802 + components: + - type: Transform + pos: 29.448883,-38.480354 + parent: 2 + - uid: 19803 + components: + - type: Transform + pos: 29.592474,-38.408672 + parent: 2 + - uid: 19804 + components: + - type: Transform + pos: 29.484781,-38.408672 + parent: 2 - proto: ClothingOuterWinterCoatMantis entities: - uid: 4392 @@ -48248,6 +50464,17 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-0.5 parent: 2 + - uid: 18447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 7151 @@ -48339,6 +50566,12 @@ entities: - type: Transform pos: 85.5,38.5 parent: 2 + - uid: 18448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-38.5 + parent: 2 - proto: ComputerCargoShuttle entities: - uid: 7165 @@ -48510,6 +50743,12 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,14.5 parent: 2 + - uid: 18471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-25.5 + parent: 2 - uid: 19539 components: - type: Transform @@ -48535,6 +50774,20 @@ entities: - type: Transform pos: 74.5,29.5 parent: 2 + - uid: 18445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 18472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 2 - proto: ComputerMedicalRecords entities: - uid: 7194 @@ -48620,6 +50873,12 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-1.5 parent: 2 + - uid: 18439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-33.5 + parent: 2 - proto: ComputerRadar entities: - uid: 7211 @@ -48693,6 +50952,20 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,26.5 parent: 2 + - uid: 18446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 18468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 2 - proto: ComputerSalvageExpedition entities: - uid: 7223 @@ -48840,6 +51113,11 @@ entities: - type: Transform pos: -7.5,68.5 parent: 2 + - uid: 18470 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 7247 @@ -49332,6 +51610,18 @@ entities: - type: Transform pos: 52.5,42.5 parent: 2 +- proto: CratePartsT3T4 + entities: + - uid: 19772 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 - proto: CrateSecurityHelmet entities: - uid: 7318 @@ -49433,6 +51723,14 @@ entities: - type: SingletonDeviceNetServer active: False available: False + - uid: 18130 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False - proto: Crowbar entities: - uid: 7328 @@ -49440,6 +51738,27 @@ entities: - type: Transform pos: 36.297527,7.6566176 parent: 2 + - uid: 19788 + components: + - type: Transform + pos: 36.510292,-36.43892 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: 59.515217,24.521137 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: 48.198685,60.650383 + parent: 2 + - uid: 20323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.444782,64.52015 + parent: 2 - proto: CrowbarRed entities: - uid: 7329 @@ -49521,20 +51840,6 @@ entities: - 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 @@ -49949,13 +52254,6 @@ entities: - 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 @@ -50514,6 +52812,29 @@ entities: rot: 3.141592653589793 rad pos: -29.5,21.5 parent: 2 + - uid: 8400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 - proto: DisposalJunction entities: - uid: 7499 @@ -50730,6 +53051,30 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 6777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-25.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-5.5 + parent: 2 - uid: 7537 components: - type: Transform @@ -54640,15 +56985,155 @@ entities: rot: 3.141592653589793 rad pos: -7.5,4.5 parent: 2 - - uid: 8223 + - uid: 8783 components: - type: Transform - pos: 33.5,-3.5 + rot: 3.141592653589793 rad + pos: 40.5,-7.5 parent: 2 - - uid: 8224 + - uid: 15038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 15041 components: - type: Transform - pos: 33.5,-4.5 + rot: -1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-8.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-11.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-14.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-15.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-16.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-17.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-18.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-19.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-20.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-21.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-22.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 parent: 2 - proto: DisposalTrunk entities: @@ -54979,14 +57464,19 @@ entities: rot: 3.141592653589793 rad pos: -7.5,3.5 parent: 2 - - uid: 8282 + - uid: 20233 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-5.5 + pos: 37.5,-26.5 parent: 2 - proto: DisposalUnit entities: + - uid: 6791 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 - uid: 8283 components: - type: Transform @@ -55252,11 +57742,6 @@ entities: - 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 @@ -55610,68 +58095,81 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 8386 + - uid: 20208 components: - type: Transform - parent: 8385 - - type: Physics - canCollide: False + pos: 27.582348,-27.674433 + parent: 2 - proto: EncryptionKeyCommand entities: - - uid: 8388 + - uid: 20203 components: - type: Transform - parent: 8387 - - type: Physics - canCollide: False + pos: 27.582348,-27.375748 + parent: 2 - proto: EncryptionKeyCommon entities: - - uid: 8390 + - uid: 20204 components: - type: Transform - parent: 8389 - - type: Physics - canCollide: False + pos: 27.702003,-27.360813 + parent: 2 - proto: EncryptionKeyEngineering entities: - - uid: 8392 + - uid: 20205 components: - type: Transform - parent: 8391 - - type: Physics - canCollide: False + pos: 27.357986,-27.52509 + parent: 2 +- proto: EncryptionKeyJustice + entities: + - uid: 20207 + components: + - type: Transform + pos: 27.372946,-27.719236 + parent: 2 - proto: EncryptionKeyMedical entities: - - uid: 8394 + - uid: 20209 components: - type: Transform - parent: 8393 - - type: Physics - canCollide: False + pos: 27.432774,-27.465353 + parent: 2 +- proto: EncryptionKeyPrison + entities: + - uid: 20202 + components: + - type: Transform + pos: 27.332344,-27.360813 + parent: 2 +- proto: EncryptionKeyRobo + entities: + - uid: 20210 + components: + - type: Transform + pos: 27.477646,-27.554958 + parent: 2 - proto: EncryptionKeyScience entities: - - uid: 8396 + - uid: 20206 components: - type: Transform - parent: 8395 - - type: Physics - canCollide: False + pos: 27.61226,-27.554958 + parent: 2 - proto: EncryptionKeySecurity entities: - - uid: 8398 + - uid: 20211 components: - type: Transform - parent: 8397 - - type: Physics - canCollide: False + pos: 27.492603,-27.584826 + parent: 2 - proto: EncryptionKeyService entities: - - uid: 8400 + - uid: 20212 components: - type: Transform - parent: 8399 - - type: Physics - canCollide: False + pos: 27.462688,-27.52509 + parent: 2 - proto: EpinephrineChemistryBottle entities: - uid: 8401 @@ -55711,6 +58209,11 @@ entities: - type: Transform pos: 58.5,22.5 parent: 2 + - uid: 18466 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 - proto: ExtinguisherCabinetFilled entities: - uid: 8408 @@ -55983,6 +58486,11 @@ entities: - type: Transform pos: 36.5,1.5 parent: 2 + - uid: 18449 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 - proto: filingCabinetRandom entities: - uid: 8456 @@ -56642,9 +59150,10 @@ entities: parent: 2 - type: DeviceList devices: - - 8783 + - 20257 - 8785 - 8782 + - 4763 - uid: 8507 components: - type: Transform @@ -56788,34 +59297,6 @@ entities: - 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 @@ -56894,6 +59375,46 @@ entities: - 19403 - 19402 - 19585 + - uid: 20126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 20142 + - 20136 + - 20137 + - uid: 20127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 20132 + - 20134 + - 20133 + - 20140 + - 20137 + - 20257 + - uid: 20128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 20130 + - 20129 + - 20131 + - 20132 + - 20138 + - 20156 + - 18598 - proto: FireAxeCabinetFilled entities: - uid: 8519 @@ -56920,6 +59441,16 @@ entities: deviceLists: - 5 - 18620 + - uid: 4763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 + - 8506 - uid: 8521 components: - type: Transform @@ -59656,25 +62187,6 @@ entities: 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 @@ -60385,8 +62897,6 @@ entities: deviceLists: - 66 - 8474 - - 83 - - 8517 - uid: 8855 components: - type: Transform @@ -61101,66 +63611,104 @@ entities: - type: DeviceNetwork deviceLists: - 46 - - uid: 8936 + - uid: 20129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + rot: 1.5707963267948966 rad + pos: 30.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 - - uid: 8937 + - 20128 + - uid: 20130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 - - uid: 8938 + - 20121 + - 20125 + - 20128 + - uid: 20131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-12.5 + rot: 1.5707963267948966 rad + pos: 33.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 - - uid: 8939 + - 20125 + - 20128 + - 20123 + - uid: 20132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 - - uid: 8940 + - 20125 + - 20128 + - 20124 + - 20127 + - uid: 20133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 + rot: 1.5707963267948966 rad + pos: 33.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 - - uid: 8941 + - 20124 + - 20127 + - 20123 + - uid: 20134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 + rot: 1.5707963267948966 rad + pos: 27.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20149 + - 20124 + - 20127 + - uid: 20136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20122 + - 20126 + - uid: 20137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20124 + - 20127 + - 20122 + - 20126 + - uid: 20257 + components: + - type: Transform + pos: 33.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 + - 20127 + - 20124 + - 45 + - 8506 - proto: FitnessPunchingBagWizard entities: - uid: 19496 @@ -61210,6 +63758,21 @@ entities: - type: Transform pos: 3.3651924,27.537037 parent: 2 + - uid: 19792 + components: + - type: Transform + pos: 34.32055,-38.302715 + parent: 2 + - uid: 19793 + components: + - type: Transform + pos: 34.500034,-38.46401 + parent: 2 + - uid: 19794 + components: + - type: Transform + pos: 34.374393,-38.571533 + parent: 2 - proto: FlashlightLantern entities: - uid: 8950 @@ -61718,7 +64281,7 @@ entities: pos: -25.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#17D8D2FF' + color: '#BFA200FF' - uid: 9011 components: - type: Transform @@ -61748,7 +64311,7 @@ entities: pos: -14.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#17D8D2FF' + color: '#BFA200FF' - uid: 9012 components: - type: Transform @@ -61955,6 +64518,14 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-7.5 parent: 2 + - uid: 19800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPassiveVent entities: - uid: 9038 @@ -62109,14 +64680,6 @@ entities: 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 @@ -63028,53 +65591,6 @@ entities: 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 @@ -63156,6 +65672,14 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,7.5 parent: 2 + - uid: 11110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' - uid: 11159 components: - type: Transform @@ -63192,6 +65716,78 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 17187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 17191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,39.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,38.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 18480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18481 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18487 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18491 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18634 components: - type: Transform @@ -63254,6 +65850,54 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPipeFourway entities: - uid: 9183 @@ -63448,6 +66092,13 @@ entities: - type: Transform pos: -19.5,26.5 parent: 2 + - uid: 18507 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 19319 components: - type: Transform @@ -63476,6 +66127,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 19656 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19668 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 714 @@ -63492,6 +66157,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 3754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 6695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 6785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 6786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' - uid: 7240 components: - type: Transform @@ -63500,6 +66205,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 8936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 8937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' - uid: 9051 components: - type: Transform @@ -63732,13 +66453,6 @@ entities: 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 @@ -63777,13 +66491,6 @@ entities: 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 @@ -77949,321 +80656,304 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11109 + - uid: 11111 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-10.5 + pos: -27.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11110 + color: '#BFA200FF' + - uid: 11112 components: - type: Transform - pos: 32.5,-10.5 + rot: -1.5707963267948966 rad + pos: -28.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11111 + color: '#BFA200FF' + - uid: 11279 components: - type: Transform - pos: 32.5,-7.5 + pos: 50.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11112 + - uid: 11322 components: - type: Transform - pos: 34.5,-7.5 + pos: -25.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11113 + color: '#17D8D2FF' + - uid: 11708 components: - type: Transform - pos: 32.5,-11.5 + rot: -1.5707963267948966 rad + pos: -18.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11114 + color: '#BFA200FF' + - uid: 11821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11115 + color: '#0000FFFF' + - uid: 12139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 + rot: -1.5707963267948966 rad + pos: -29.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11116 + color: '#BFA200FF' + - uid: 12140 components: - type: Transform - pos: 32.5,-9.5 + rot: 1.5707963267948966 rad + pos: -24.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11117 + color: '#BFA200FF' + - uid: 12143 components: - type: Transform - pos: 32.5,-8.5 + rot: 1.5707963267948966 rad + pos: -23.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11118 + color: '#BFA200FF' + - uid: 12186 components: - type: Transform - pos: 34.5,-9.5 + rot: 1.5707963267948966 rad + pos: 53.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11119 + - uid: 12629 components: - type: Transform - pos: 34.5,-8.5 + pos: -33.5,65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11120 + color: '#FF0000FF' + - uid: 12630 components: - type: Transform - pos: 34.5,-6.5 + pos: -33.5,64.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11121 + color: '#FF0000FF' + - uid: 12777 components: - type: Transform - pos: 32.5,-5.5 + rot: 3.141592653589793 rad + pos: 53.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11122 + - uid: 13257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 + pos: -33.5,63.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11123 + color: '#FF0000FF' + - uid: 13428 components: - type: Transform - pos: 34.5,-0.5 + pos: -33.5,62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11124 + - uid: 13914 components: - type: Transform - pos: 34.5,-1.5 + rot: 1.5707963267948966 rad + pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11125 + color: '#0000FFFF' + - uid: 16307 components: - type: Transform - pos: 34.5,-2.5 + pos: -33.5,61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11126 + - uid: 17188 components: - type: Transform - pos: 37.5,-0.5 + rot: 1.5707963267948966 rad + pos: -29.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11127 + color: '#BFA200FF' + - uid: 18433 components: - type: Transform - pos: 37.5,-1.5 + rot: 1.5707963267948966 rad + pos: 31.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11128 + - uid: 18451 components: - type: Transform - pos: 37.5,-2.5 + rot: -1.5707963267948966 rad + pos: 32.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11129 + color: '#FF0000FF' + - uid: 18477 components: - type: Transform - pos: 37.5,-3.5 + rot: 3.141592653589793 rad + pos: 29.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11130 + - uid: 18498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 + rot: 3.141592653589793 rad + pos: 30.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11131 + - uid: 18500 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-4.5 + pos: 31.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11132 + - uid: 18501 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 + pos: 32.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11134 + color: '#0000FFFF' + - uid: 18502 components: - type: Transform - pos: 32.5,-6.5 + rot: 1.5707963267948966 rad + pos: 33.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11135 + color: '#0000FFFF' + - uid: 18503 components: - type: Transform - pos: 34.5,-5.5 + pos: 30.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11136 + - uid: 18504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + pos: 30.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11137 + - uid: 18505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 + pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11138 + - uid: 18506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-12.5 + pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11139 + color: '#0000FFFF' + - uid: 18509 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 + pos: 29.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11322 + color: '#0000FFFF' + - uid: 18511 components: - type: Transform - pos: -25.5,32.5 + pos: 30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#17D8D2FF' - - uid: 11708 + color: '#0000FFFF' + - uid: 18512 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,40.5 + pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#BFA200FF' - - uid: 11821 + color: '#0000FFFF' + - uid: 18513 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-2.5 + pos: 32.5,-32.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 + - uid: 18514 components: - type: Transform - pos: -33.5,64.5 + rot: -1.5707963267948966 rad + pos: 33.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12777 + color: '#0000FFFF' + - uid: 18588 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,0.5 + pos: 30.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13257 + color: '#0000FFFF' + - uid: 18594 components: - type: Transform - pos: -33.5,63.5 + rot: 3.141592653589793 rad + pos: 30.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13428 + color: '#0000FFFF' + - uid: 18595 components: - type: Transform - pos: -33.5,62.5 + rot: 3.141592653589793 rad + pos: 30.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13914 + color: '#0000FFFF' + - uid: 18602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,20.5 + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16307 + - uid: 18603 components: - type: Transform - pos: -33.5,61.5 + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 18633 components: - type: Transform @@ -78315,6 +81005,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 19284 components: - type: Transform @@ -78935,6 +81641,512 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19618 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19644 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19659 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19661 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19662 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19664 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19665 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19666 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19667 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19680 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19681 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19682 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19683 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19699 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeTJunction entities: - uid: 9009 @@ -81506,22 +84718,6 @@ entities: 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 @@ -81560,6 +84756,92 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 18482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18492 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18597 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18930 components: - type: Transform @@ -81615,6 +84897,86 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPort entities: - uid: 319 @@ -81723,6 +85085,22 @@ entities: - type: Transform pos: -35.5,28.5 parent: 2 + - uid: 18431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18635 components: - type: Transform @@ -81768,6 +85146,29 @@ entities: - type: Transform pos: 51.5,-2.5 parent: 2 + - uid: 19616 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' - proto: GasPressurePump entities: - uid: 11505 @@ -82013,6 +85414,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#BFA200FF' + - uid: 18484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' - uid: 18928 components: - type: Transform @@ -82029,6 +85446,22 @@ entities: - type: Transform pos: 51.5,-3.5 parent: 2 + - uid: 19628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasThermoMachineFreezer entities: - uid: 11481 @@ -82067,6 +85500,29 @@ entities: - type: Transform pos: 52.5,7.5 parent: 2 + - uid: 18473 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' - proto: GasThermoMachineHeater entities: - uid: 11543 @@ -83325,10 +86781,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 83 - - 8517 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11675 @@ -83606,44 +87058,87 @@ entities: - 44 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11704 + - uid: 11829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-10.5 + pos: 55.5,7.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -9.5,68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 + - 26 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11705 + - uid: 18476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18478 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-10.5 + pos: 25.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 + - 20121 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11829 + - uid: 18479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20149 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20123 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18495 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,7.5 + pos: 33.5,-18.5 parent: 2 - - uid: 13233 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 18496 components: - type: Transform - pos: -9.5,68.5 + rot: -1.5707963267948966 rad + pos: 34.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 26 + - 20122 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18497 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 18672 @@ -83652,6 +87147,24 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 + - uid: 19083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20124 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19084 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' - uid: 19355 components: - type: Transform @@ -83774,6 +87287,65 @@ entities: - 19590 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 19690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 19708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20156 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20125 + - 20128 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 11706 @@ -84933,10 +88505,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 83 - - 8517 - type: AtmosPipeColor color: '#FF0000FF' - uid: 11828 @@ -85248,28 +88816,24 @@ entities: - 44 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11858 + - uid: 18453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-12.5 + pos: 34.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 83 - - 8517 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11859 + - uid: 18598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-12.5 + rot: -1.5707963267948966 rad + pos: 32.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 83 - - 8517 + - 20125 + - 20128 - type: AtmosPipeColor color: '#FF0000FF' - uid: 19347 @@ -85394,21 +88958,113 @@ entities: - 19590 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20124 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19627 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19641 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19675 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20123 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20149 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20121 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 9059 + - uid: 3462 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,40.5 + pos: -26.5,39.5 parent: 2 - type: AtmosPipeColor color: '#BFA200FF' - - uid: 9247 + - uid: 11109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,40.5 + rot: 1.5707963267948966 rad + pos: -26.5,38.5 parent: 2 - type: AtmosPipeColor color: '#BFA200FF' @@ -85465,37 +89121,15 @@ entities: 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 + - uid: 17178 components: - type: Transform - pos: 37.5,-11.5 + pos: 34.5,-31.5 parent: 2 - - uid: 11867 + - uid: 18133 components: - type: Transform - pos: 36.5,-11.5 + pos: 35.5,-31.5 parent: 2 - proto: Girder entities: @@ -85560,6 +89194,41 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,29.5 parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 - uid: 5994 components: - type: Transform @@ -85632,6 +89301,51 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,78.5 parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 - uid: 9299 components: - type: Transform @@ -87009,16 +90723,6 @@ entities: - 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 @@ -87029,11 +90733,6 @@ entities: - 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 @@ -88311,66 +92010,6 @@ entities: - 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 @@ -88383,6 +92022,11 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,30.5 parent: 2 + - uid: 13419 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 - uid: 15067 components: - type: Transform @@ -88426,6 +92070,16 @@ entities: parent: 2 - proto: GrilleSpawner entities: + - uid: 4770 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 - uid: 6002 components: - type: Transform @@ -88447,6 +92101,161 @@ entities: - type: Transform pos: 88.5,2.5 parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 - uid: 8530 components: - type: Transform @@ -88477,6 +92286,16 @@ entities: rot: 3.141592653589793 rad pos: -31.5,80.5 parent: 2 + - uid: 9177 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 - uid: 12392 components: - type: Transform @@ -89322,12 +93141,32 @@ entities: rot: 3.141592653589793 rad pos: -13.5,79.5 parent: 2 + - uid: 13417 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 - uid: 13839 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,77.5 parent: 2 + - uid: 17185 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 - uid: 17450 components: - type: Transform @@ -89652,37 +93491,108 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 12596 + - uid: 12382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,40.5 + rot: 1.5707963267948966 rad + pos: -34.5,39.5 parent: 2 - - uid: 12597 + - uid: 17189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,40.5 + rot: 1.5707963267948966 rad + pos: -35.5,38.5 parent: 2 - - uid: 18235 + - uid: 17190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,40.5 + rot: 1.5707963267948966 rad + pos: -37.5,39.5 parent: 2 - - uid: 18238 + - uid: 17192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,40.5 + rot: 1.5707963267948966 rad + pos: -32.5,39.5 parent: 2 -- proto: HighSecCommandLocked - entities: - - uid: 12599 + - uid: 17193 components: - type: Transform - pos: -31.5,29.5 + rot: 1.5707963267948966 rad + pos: -33.5,39.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,39.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 17197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,39.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,39.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,38.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,38.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,38.5 parent: 2 + - uid: 17203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 17204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,38.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,38.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 +- proto: HighSecCommandLocked + entities: - uid: 12600 components: - type: Transform @@ -89713,25 +93623,25 @@ entities: - type: Transform pos: 41.5,30.5 parent: 2 - - uid: 12606 + - uid: 18464 components: - type: Transform - pos: -31.5,33.5 + pos: 30.5,-39.5 parent: 2 - - uid: 12607 + - uid: 18465 components: - type: Transform - pos: 30.5,-10.5 + pos: 30.5,-41.5 parent: 2 - - uid: 12608 + - uid: 20255 components: - type: Transform - pos: 30.5,-12.5 + pos: 33.5,-28.5 parent: 2 - - uid: 12609 + - uid: 20256 components: - type: Transform - pos: 33.5,-8.5 + pos: 35.5,-28.5 parent: 2 - proto: HospitalCurtains entities: @@ -89965,33 +93875,27 @@ entities: - type: Transform pos: 83.5,23.5 parent: 2 - - uid: 12646 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 12647 + - uid: 12990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-11.5 + rot: 3.141592653589793 rad + pos: 74.5,27.5 parent: 2 - - uid: 12648 + - uid: 20277 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-12.5 + pos: 30.5,-45.5 parent: 2 - - uid: 12649 + - uid: 20278 components: - type: Transform - pos: 34.5,-8.5 + pos: 28.5,-41.5 parent: 2 - - uid: 12990 + - uid: 20279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,27.5 + pos: 32.5,-41.5 parent: 2 - proto: IntercomCommand entities: @@ -90285,6 +94189,12 @@ entities: - type: Transform pos: 63.4618,15.331928 parent: 2 + - uid: 19778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.710495,-34.879448 + parent: 2 - proto: LampInterrogator entities: - uid: 12696 @@ -90326,6 +94236,24 @@ entities: parent: 2 - proto: LightPostSmall entities: + - uid: 3454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,37.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,40.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,32.5 + parent: 2 - uid: 18612 components: - type: Transform @@ -91078,6 +95006,33 @@ entities: - type: Transform pos: 48.5,61.5 parent: 2 + - uid: 20258 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-46.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 - proto: MachineFrameDestroyed entities: - uid: 12793 @@ -91657,6 +95612,16 @@ entities: - type: Transform pos: 59.385284,15.698191 parent: 2 + - uid: 19790 + components: + - type: Transform + pos: 36.348755,-36.582287 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: 36.564137,-36.456837 + parent: 2 - proto: ModularGrenade entities: - uid: 12897 @@ -91891,6 +95856,16 @@ entities: - type: Transform pos: -19.5,22.5 parent: 2 + - uid: 19696 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 - proto: NitrousOxideTankFilled entities: - uid: 12929 @@ -92355,15 +96330,15 @@ entities: - type: Transform pos: 29.53992,62.576374 parent: 2 - - uid: 13000 + - uid: 13001 components: - type: Transform - pos: -37.44304,34.71714 + pos: -14.5,-1.5 parent: 2 - - uid: 13001 + - uid: 19787 components: - type: Transform - pos: -14.5,-1.5 + pos: 34.500034,-36.5106 parent: 2 - proto: Pen entities: @@ -92500,6 +96475,13 @@ entities: - type: Transform pos: 24.469769,12.325003 parent: 2 +- proto: PhoneInstrument + entities: + - uid: 19779 + components: + - type: Transform + pos: 26.35152,-35.381237 + parent: 2 - proto: PianoInstrument entities: - uid: 13022 @@ -92682,20 +96664,6 @@ entities: - 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 @@ -92718,20 +96686,6 @@ entities: - 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 @@ -92800,48 +96754,8 @@ entities: 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 @@ -92875,20 +96789,6 @@ entities: - 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 @@ -92987,11 +96887,6 @@ entities: - 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 @@ -93067,12 +96962,6 @@ entities: 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 @@ -93092,6 +96981,11 @@ entities: - type: Transform pos: 68.5,31.5 parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 - uid: 7111 components: - type: Transform @@ -94725,28 +98619,6 @@ entities: 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 @@ -94842,125 +98714,6 @@ entities: - 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 @@ -94982,12 +98735,28 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,74.5 parent: 2 + - uid: 14985 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 - uid: 16225 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,67.5 parent: 2 + - uid: 16459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 - uid: 17135 components: - type: Transform @@ -95012,8 +98781,326 @@ entities: rot: 3.141592653589793 rad pos: -31.5,79.5 parent: 2 + - uid: 20067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 20070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 2 + - uid: 20072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-29.5 + parent: 2 + - uid: 20074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-30.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-44.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: 35.5,-52.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-50.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + pos: 30.5,-52.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 20087 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 20088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - uid: 20089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 20090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 20091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - uid: 20092 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-27.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-25.5 + parent: 2 + - uid: 20095 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - uid: 20099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-31.5 + parent: 2 + - uid: 20100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 20103 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-38.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 2 + - uid: 20107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-38.5 + parent: 2 + - uid: 20108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 20109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-38.5 + parent: 2 + - uid: 20110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 + parent: 2 + - uid: 20111 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 20112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 20113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 2 + - uid: 20114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-40.5 + parent: 2 + - uid: 20115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-42.5 + parent: 2 + - uid: 20116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-42.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-48.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 2 - proto: PoweredSmallLight entities: + - uid: 3455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,33.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 2 - uid: 12085 components: - type: Transform @@ -96163,6 +100250,53 @@ entities: - type: Transform pos: 14.5,32.5 parent: 2 + - uid: 18435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-38.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-23.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-38.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 - proto: RadiationCollector entities: - uid: 13633 @@ -96225,6 +100359,18 @@ entities: - type: Transform pos: -18.5,31.5 parent: 2 +- proto: RadioHandheld + entities: + - uid: 20221 + components: + - type: Transform + pos: 34.312286,-24.241226 + parent: 2 + - uid: 20222 + components: + - type: Transform + pos: 34.461857,-24.28603 + parent: 2 - proto: Railing entities: - uid: 13646 @@ -96409,29 +100555,6 @@ entities: 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 @@ -97204,31 +101327,6 @@ entities: - 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 @@ -97874,26 +101972,6 @@ entities: - 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 @@ -98901,12 +102979,37 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 3483 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 - uid: 5069 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,78.5 parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 - uid: 5758 components: - type: Transform @@ -98943,6 +103046,56 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,76.5 parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 - uid: 9909 components: - type: Transform @@ -100026,11 +104179,6 @@ entities: - 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 @@ -101159,66 +105307,6 @@ entities: - 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 @@ -101718,6 +105806,54 @@ entities: - type: Transform pos: -8.5,63.5 parent: 2 + - uid: 17170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-47.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-43.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-39.5 + parent: 2 + - uid: 18046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-47.5 + parent: 2 + - uid: 18047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-39.5 + parent: 2 - proto: Screwdriver entities: - uid: 14350 @@ -101730,6 +105866,11 @@ entities: - type: Transform pos: 51.508472,54.549034 parent: 2 + - uid: 19789 + components: + - type: Transform + pos: 36.49234,-36.43892 + parent: 2 - proto: SecurityTechFab entities: - uid: 14352 @@ -101857,11 +105998,6 @@ entities: - 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 @@ -101872,6 +106008,11 @@ entities: - type: Transform pos: 0.5,12.5 parent: 2 + - uid: 19786 + components: + - type: Transform + pos: 34.55388,-36.60021 + parent: 2 - proto: SheetPlasma entities: - uid: 14377 @@ -101879,10 +106020,10 @@ entities: - type: Transform pos: 52.55033,-1.3658054 parent: 2 - - uid: 14378 + - uid: 19782 components: - type: Transform - pos: -35.4883,39.519226 + pos: 34.500034,-36.47476 parent: 2 - proto: SheetPlasma1 entities: @@ -101918,15 +106059,15 @@ entities: - type: Transform pos: 71.52,46.535103 parent: 2 - - uid: 14385 + - uid: 14386 components: - type: Transform - pos: -37.44304,34.663376 + pos: -14.5,-1.5 parent: 2 - - uid: 14386 + - uid: 19783 components: - type: Transform - pos: -14.5,-1.5 + pos: 34.500034,-36.49268 parent: 2 - proto: SheetPlastic entities: @@ -101980,6 +106121,11 @@ entities: - type: Transform pos: 0.5,12.5 parent: 2 + - uid: 19785 + components: + - type: Transform + pos: 34.535934,-36.564365 + parent: 2 - proto: SheetSteel entities: - uid: 7303 @@ -102096,11 +106242,6 @@ entities: - 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 @@ -102111,6 +106252,11 @@ entities: - type: Transform pos: 0.5,12.5 parent: 2 + - uid: 19784 + components: + - type: Transform + pos: 34.517982,-36.49268 + parent: 2 - proto: SheetSteel1 entities: - uid: 14412 @@ -102168,32 +106314,6 @@ entities: - 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 @@ -102314,22 +106434,6 @@ entities: - 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 @@ -102432,18 +106536,6 @@ entities: 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 @@ -102715,26 +106807,6 @@ entities: - 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 @@ -104212,15 +108284,10 @@ entities: - type: Transform pos: 31.5,-0.5 parent: 2 - - uid: 14572 - components: - - type: Transform - pos: -30.5,36.5 - parent: 2 - - uid: 14573 + - uid: 17224 components: - type: Transform - pos: 23.5,-11.5 + pos: 36.5,-32.5 parent: 2 - proto: SMESMachineCircuitboard entities: @@ -104263,6 +108330,26 @@ entities: parent: 2 - proto: SolarPanel entities: + - uid: 13416 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 - uid: 14580 components: - type: Transform @@ -105063,6 +109150,86 @@ entities: - type: Transform pos: -26.5,-14.5 parent: 2 + - uid: 14981 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 - proto: SolarTracker entities: - uid: 14740 @@ -105080,6 +109247,11 @@ entities: - type: Transform pos: 33.5,81.5 parent: 2 + - uid: 14930 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 - proto: SophicScribeSpawner entities: - uid: 12937 @@ -105095,6 +109267,18 @@ entities: - type: Transform pos: 59.519974,44.266804 parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 18441 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 - proto: SpareIdCabinetFilled entities: - uid: 3237 @@ -105517,6 +109701,98 @@ entities: - type: Transform pos: 17.5,58.5 parent: 2 +- proto: SpawnPointLocationMidRoundAntag + entities: + - uid: 20307 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: 80.5,51.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: 74.5,57.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: 74.5,61.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + pos: 68.5,59.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: 44.5,65.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: 45.5,63.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + pos: 38.5,66.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + pos: 27.5,64.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + pos: 7.5,79.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 - proto: SpawnPointMailCarrier entities: - uid: 14805 @@ -106310,26 +110586,15 @@ entities: - 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 + - uid: 17223 components: - - type: MetaData - name: AI Core - type: Transform - pos: 23.5,-10.5 + pos: 30.5,-48.5 parent: 2 - - uid: 14932 + - uid: 17889 components: - - type: MetaData - name: AI Core - type: Transform - pos: 23.5,-12.5 + pos: 30.5,-14.5 parent: 2 - proto: SubstationMachineCircuitboard entities: @@ -106630,123 +110895,218 @@ entities: parent: 2 - type: SurveillanceCamera id: Captain Bedroom - - uid: 14976 + - uid: 14977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,36.5 + pos: 35.5,-1.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Telecomms - - uid: 14977 + id: Station AI monitoring + - uid: 18571 components: - type: Transform - pos: 35.5,-1.5 + pos: 69.5,23.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Station AI monitoring - - uid: 14978 + id: Captain Front Desk + - uid: 20283 components: - type: Transform - pos: 27.5,-5.5 + pos: 30.5,-44.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: IA Core North Exterior 1 - - uid: 14979 + id: AI Core 1 + - uid: 20284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core 2 + - uid: 20285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-11.5 + pos: 31.5,-40.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Western exterior of the IA core - - uid: 14980 + id: AI Core airlock + - uid: 20286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-16.5 + pos: 31.5,-38.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: IA Core South Exterior 2 - - uid: 14981 + id: AI Core Input + - uid: 20287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Sat engi + - uid: 20288 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Sat Consoles room + - uid: 20289 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-17.5 + pos: 25.5,-31.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: IA Core South Exterior 1 - - uid: 14982 + id: AI Sat robotics room + - uid: 20290 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Sat recharg stations + - uid: 20291 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Sat input + - uid: 20292 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-11.5 + pos: 38.5,-30.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Eastern exterior of the IA core - - uid: 14983 + id: AI exterior 3 + - uid: 20293 components: - type: Transform - pos: 36.5,-6.5 + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: IA Core North Exterior 2 - - uid: 14984 + id: AI exterior 2 + - uid: 20294 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-11.5 + pos: 25.5,-14.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI Maintenance - - uid: 14985 + id: AI exterior 1 + - uid: 20295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecommunications + - uid: 20296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI exterior 4 + - uid: 20297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI exterior 5 + - uid: 20298 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-11.5 + pos: 37.5,-45.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI Core - - uid: 18571 + id: AI exterior 7 + - uid: 20299 components: - type: Transform - pos: 69.5,23.5 + rot: 3.141592653589793 rad + pos: 30.5,-52.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Captain Front Desk + id: AI exterior 6 + - uid: 20300 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms control room - proto: SurveillanceCameraEngineering entities: - uid: 14986 @@ -107206,59 +111566,66 @@ entities: - type: ActiveUserInterface - proto: SurveillanceCameraRouterCommand entities: - - uid: 15034 + - uid: 17881 components: - type: Transform - pos: -36.5,35.5 + pos: 31.5,-19.5 + parent: 2 +- proto: SurveillanceCameraRouterConstructed + entities: + - uid: 18132 + components: + - type: Transform + pos: 30.5,-16.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 15035 + - uid: 17885 components: - type: Transform - pos: -32.5,38.5 + pos: 32.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 15036 + - uid: 17880 components: - type: Transform - pos: -30.5,35.5 + pos: 28.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 15037 + - uid: 18123 components: - type: Transform - pos: -36.5,38.5 + pos: 27.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 15038 + - uid: 17886 components: - type: Transform - pos: -34.5,35.5 + pos: 33.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 15039 + - uid: 17883 components: - type: Transform - pos: -34.5,38.5 + pos: 29.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 15040 + - uid: 18124 components: - type: Transform - pos: -30.5,38.5 + pos: 27.5,-21.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 15041 + - uid: 17887 components: - type: Transform - pos: -32.5,35.5 + pos: 33.5,-21.5 parent: 2 - proto: SurveillanceCameraScience entities: @@ -107792,6 +112159,20 @@ entities: - SurveillanceCameraSupply nameSet: True id: Exterior of the salvage +- proto: SurveillanceCameraWirelessRouterConstructed + entities: + - uid: 17173 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 18131 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 - proto: Syringe entities: - uid: 15092 @@ -108481,6 +112862,27 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,73.5 parent: 2 + - uid: 19711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-24.5 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 19771 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 - proto: TableCarpet entities: - uid: 5988 @@ -108873,16 +113275,6 @@ entities: 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 @@ -109351,179 +113743,101 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,63.5 parent: 2 + - uid: 18444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-35.5 + parent: 2 - proto: TelecomServer entities: - - uid: 8385 + - uid: 15371 components: - type: Transform - pos: -32.5,34.5 + pos: 25.5,2.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 +- proto: TelecomServerCircuitboard + entities: + - uid: 15372 components: - type: Transform - pos: -36.5,34.5 + pos: 29.652218,54.62316 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 + - uid: 20195 components: - type: Transform - pos: -30.5,34.5 + pos: 27.368704,-23.250366 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 + - uid: 20196 components: - type: Transform - pos: -32.5,39.5 + pos: 27.697762,-23.399708 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 + - uid: 20197 + components: + - type: Transform + pos: 27.44349,-23.50425 + parent: 2 + - uid: 20198 + components: + - type: Transform + pos: 27.667849,-23.698395 + parent: 2 +- proto: TelecomServerFilledCargo + entities: + - uid: 17877 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 18127 components: - type: Transform - pos: -36.5,39.5 + pos: 27.5,-17.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 +- proto: TelecomServerFilledCommon + entities: + - uid: 18129 components: - type: Transform - pos: -34.5,34.5 + pos: 27.5,-16.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 +- proto: TelecomServerFilledEngineering + entities: + - uid: 18045 components: - type: Transform - pos: -34.5,39.5 + pos: 33.5,-16.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 +- proto: TelecomServerFilledMedical + entities: + - uid: 18126 components: - type: Transform - pos: -30.5,39.5 + pos: 28.5,-16.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 +- proto: TelecomServerFilledScience + entities: + - uid: 17884 components: - type: Transform - pos: 25.5,2.5 + pos: 32.5,-16.5 parent: 2 -- proto: TelecomServerCircuitboard +- proto: TelecomServerFilledSecurity entities: - - uid: 15372 + - uid: 17882 components: - type: Transform - pos: 29.652218,54.62316 + pos: 28.5,-17.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 18125 + components: + - type: Transform + pos: 32.5,-17.5 parent: 2 - proto: TelescopicShield entities: @@ -109662,6 +113976,16 @@ entities: - type: Transform pos: 61.504906,31.743872 parent: 2 + - uid: 19797 + components: + - type: Transform + pos: 35.666702,-38.320637 + parent: 2 + - uid: 20219 + components: + - type: Transform + pos: 34.641346,-24.330832 + parent: 2 - proto: ToolboxEmergency entities: - uid: 15396 @@ -109688,6 +114012,11 @@ entities: - type: Transform pos: 31.472889,53.963844 parent: 2 + - uid: 19799 + components: + - type: Transform + pos: 26.492853,-33.517773 + parent: 2 - proto: ToolboxMechanical entities: - uid: 15400 @@ -109742,12 +114071,37 @@ entities: - type: Transform pos: 84.53903,33.43942 parent: 2 + - uid: 19777 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + pos: 35.469265,-38.535694 + parent: 2 + - uid: 20220 + components: + - type: Transform + pos: 34.416985,-24.524979 + parent: 2 - proto: ToyAi entities: - - uid: 15410 + - uid: 19713 + components: + - type: Transform + pos: 30.48641,-44.35624 + parent: 2 + - uid: 19714 + components: + - type: Transform + pos: 31.481829,-45.373753 + parent: 2 + - uid: 19715 components: - type: Transform - pos: 25.489372,-11.360584 + pos: 29.482334,-45.373753 parent: 2 - proto: ToyFigurineClown entities: @@ -109893,6 +114247,30 @@ entities: - Left: Forward - Right: Reverse - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 20260 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-46.5 + parent: 2 - proto: UniformPrinter entities: - uid: 15417 @@ -110071,17083 +114449,16515 @@ entities: - 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 + pos: 19.5,51.5 parent: 2 - - uid: 17015 + - uid: 15443 components: - type: Transform - pos: 82.5,14.5 + pos: 38.5,44.5 parent: 2 - - uid: 18936 + - uid: 15444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,64.5 + pos: 36.5,41.5 parent: 2 -- proto: WallReinforced +- proto: VendingMachineGeneDrobe entities: - - uid: 511 + - uid: 15445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,66.5 + pos: 25.5,23.5 parent: 2 - - uid: 882 +- proto: VendingMachineHydrobe + entities: + - uid: 15446 components: - type: Transform - pos: 67.5,31.5 + pos: 50.5,48.5 parent: 2 - - uid: 1595 +- proto: VendingMachineJaniDrobe + entities: + - uid: 15447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,68.5 + pos: 39.5,51.5 parent: 2 - - uid: 1822 +- proto: VendingMachineLawDrobe + entities: + - uid: 15448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,70.5 + pos: -24.5,53.5 parent: 2 - - uid: 1823 +- proto: VendingMachineMedical + entities: + - uid: 15449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,69.5 + rot: 3.141592653589793 rad + pos: 4.5,31.5 parent: 2 - - uid: 5082 + - uid: 15450 components: - type: Transform - pos: -12.5,69.5 + pos: -3.5,60.5 parent: 2 - - uid: 5206 + - uid: 15451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,68.5 + pos: 3.5,37.5 parent: 2 - - uid: 5750 +- proto: VendingMachineMediDrobe + entities: + - uid: 15453 components: - type: Transform - pos: -17.5,72.5 + pos: 6.5,41.5 parent: 2 - - uid: 5751 +- proto: VendingMachineNutri + entities: + - uid: 15454 components: - type: Transform - pos: -18.5,72.5 + pos: 10.5,74.5 parent: 2 - - uid: 5752 + - uid: 15455 components: - type: Transform - pos: -19.5,72.5 + pos: 43.5,37.5 parent: 2 - - uid: 5753 +- proto: VendingMachineRestockBooze + entities: + - uid: 15456 components: - type: Transform - pos: -16.5,72.5 + pos: 61.56243,44.527573 parent: 2 - - uid: 5754 + - uid: 15457 components: - type: Transform - pos: -15.5,72.5 + pos: 47.757805,60.169292 parent: 2 - - uid: 5755 +- proto: VendingMachineRestockMedical + entities: + - uid: 15458 components: - type: Transform - pos: -14.5,72.5 + pos: 5.2875233,37.73525 parent: 2 - - uid: 5756 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: VendingMachineRoboDrobe + entities: + - uid: 15459 components: - type: Transform - pos: -13.5,72.5 + pos: 60.5,20.5 parent: 2 - - uid: 5759 +- proto: VendingMachineRobotics + entities: + - uid: 15460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,74.5 + pos: 59.5,18.5 parent: 2 - - uid: 6053 + - uid: 15461 components: - type: Transform - pos: -4.5,71.5 + pos: 52.5,27.5 parent: 2 - - uid: 6054 +- proto: VendingMachineSalvage + entities: + - uid: 15463 components: - type: Transform - pos: -4.5,70.5 + pos: -15.5,9.5 parent: 2 - - uid: 6056 +- proto: VendingMachineSciDrobe + entities: + - uid: 15464 components: - type: Transform - pos: -12.5,71.5 + pos: 46.5,22.5 parent: 2 - - uid: 6192 +- proto: VendingMachineSec + entities: + - uid: 15465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,73.5 + pos: -25.5,68.5 parent: 2 - - uid: 6331 + - uid: 15466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,72.5 + pos: -21.5,69.5 parent: 2 - - uid: 6461 +- proto: VendingMachineSecDrobe + entities: + - uid: 15468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,71.5 + pos: -3.5,31.5 parent: 2 - - uid: 7241 + - uid: 15469 components: - type: Transform - pos: 73.5,25.5 + pos: -6.5,15.5 parent: 2 - - uid: 8113 + - uid: 15470 components: - type: Transform - pos: 73.5,23.5 + pos: -6.5,15.5 parent: 2 - - uid: 11667 + - uid: 15471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,5.5 + pos: -21.5,70.5 parent: 2 - - uid: 12239 + - uid: 15472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,59.5 + pos: 43.5,13.5 parent: 2 - - uid: 12539 + - uid: 15473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,75.5 + pos: 7.5,26.5 parent: 2 - - uid: 12543 + - uid: 15474 components: - type: Transform - pos: -20.5,72.5 + pos: 62.5,56.5 parent: 2 - - uid: 12544 + - uid: 15475 components: - type: Transform - pos: -12.5,70.5 + pos: 69.5,13.5 parent: 2 - - uid: 13478 +- proto: VendingMachineSeeds + entities: + - uid: 15476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,75.5 + pos: 43.5,38.5 parent: 2 - - uid: 13679 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 13974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,63.5 + pos: -31.5,77.5 parent: 2 - - uid: 13681 + - uid: 15477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,60.5 + pos: 10.5,75.5 parent: 2 - - uid: 14314 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 12786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,62.5 + pos: 39.5,65.5 parent: 2 - - uid: 14534 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 15478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,6.5 + pos: -13.5,28.5 parent: 2 - - uid: 14552 + - uid: 15479 components: - type: Transform - pos: 73.5,24.5 + pos: 41.5,11.5 parent: 2 - - uid: 15505 + - uid: 15480 components: - type: Transform - pos: 81.5,14.5 + pos: -13.5,27.5 parent: 2 - - uid: 15506 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 15481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + pos: -12.5,18.5 parent: 2 - - uid: 15507 + - uid: 15482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,30.5 + pos: -21.5,68.5 parent: 2 - - uid: 15508 + - uid: 15483 components: - type: Transform - pos: 4.5,36.5 + pos: 70.5,46.5 parent: 2 - - uid: 15509 + - uid: 15484 components: - type: Transform - pos: -7.5,17.5 + pos: -5.5,38.5 parent: 2 - - uid: 15510 + - uid: 15485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 + pos: -17.5,-7.5 parent: 2 - - uid: 15511 +- proto: VendingMachineTheater + entities: + - uid: 15486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-6.5 + pos: 38.5,43.5 parent: 2 - - uid: 15512 +- proto: VendingMachineVendomat + entities: + - uid: 15487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 + pos: 41.5,15.5 parent: 2 - - uid: 15513 +- proto: VendingMachineWallMedical + entities: + - uid: 15489 components: - type: Transform - pos: -32.5,0.5 + pos: 27.5,36.5 parent: 2 - - uid: 15514 +- proto: VendingMachineWinter + entities: + - uid: 15490 components: - type: Transform - pos: -31.5,0.5 + pos: 22.5,8.5 parent: 2 - - uid: 15515 +- proto: VendingMachineYouTool + entities: + - uid: 15491 components: - type: Transform - pos: -33.5,0.5 + pos: 62.5,31.5 parent: 2 - - uid: 15516 + - uid: 15492 components: - type: Transform - pos: -27.5,0.5 + pos: -11.5,39.5 parent: 2 - - uid: 15517 +- proto: WallmountTelescreen + entities: + - uid: 15494 components: - type: Transform - pos: -29.5,0.5 + rot: 3.141592653589793 rad + pos: 73.5,27.5 parent: 2 - - uid: 15518 + - uid: 15495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,22.5 + rot: -1.5707963267948966 rad + pos: 46.5,13.5 parent: 2 - - uid: 15519 + - uid: 15496 components: - type: Transform - pos: -24.5,42.5 + pos: 0.5,60.5 parent: 2 - - uid: 15520 + - uid: 15499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,21.5 + rot: 3.141592653589793 rad + pos: 36.5,-2.5 parent: 2 - - uid: 15521 + - uid: 20280 components: - type: Transform - pos: -28.5,0.5 + rot: 3.141592653589793 rad + pos: 25.5,-39.5 parent: 2 - - uid: 15522 + - uid: 20281 components: - type: Transform - pos: -26.5,42.5 + rot: -1.5707963267948966 rad + pos: 34.5,-45.5 parent: 2 - - uid: 15523 + - uid: 20282 components: - type: Transform - pos: -30.5,0.5 + rot: 1.5707963267948966 rad + pos: 26.5,-45.5 parent: 2 - - uid: 15525 +- proto: WallmountTelevision + entities: + - uid: 15500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,75.5 + pos: 36.5,42.5 parent: 2 - - uid: 15526 + - uid: 15501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,75.5 + rot: 1.5707963267948966 rad + pos: 63.5,38.5 parent: 2 - - uid: 15527 +- proto: WallmountTelevisionFrame + entities: + - uid: 5811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,75.5 + pos: 69.5,32.5 parent: 2 - - uid: 15528 +- proto: WallPlastitanium + entities: + - uid: 15502 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,75.5 + pos: -40.5,62.5 parent: 2 - - uid: 15529 + - uid: 15503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,75.5 + pos: 18.5,79.5 parent: 2 - - uid: 15530 + - uid: 15504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,75.5 + pos: 17.5,-0.5 parent: 2 - - uid: 15531 + - uid: 17015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,75.5 + pos: 82.5,14.5 parent: 2 - - uid: 15532 + - uid: 18936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,73.5 + rot: 3.141592653589793 rad + pos: 54.5,64.5 parent: 2 - - uid: 15533 +- proto: WallReinforced + entities: + - uid: 90 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,75.5 + pos: 20.5,-31.5 parent: 2 - - uid: 15534 + - uid: 308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,73.5 + pos: 22.5,-27.5 parent: 2 - - uid: 15535 + - uid: 309 components: - type: Transform - pos: -17.5,33.5 + pos: 20.5,-28.5 parent: 2 - - uid: 15536 + - uid: 451 components: - type: Transform - pos: -14.5,-8.5 + pos: 24.5,-46.5 parent: 2 - - uid: 15537 + - uid: 472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,6.5 + pos: 34.5,-45.5 parent: 2 - - uid: 15538 + - uid: 511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,14.5 + rot: 1.5707963267948966 rad + pos: -12.5,66.5 parent: 2 - - uid: 15539 + - uid: 574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,14.5 + pos: 20.5,-30.5 parent: 2 - - uid: 15540 + - uid: 860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,14.5 + pos: 20.5,-27.5 parent: 2 - - uid: 15541 + - uid: 882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,9.5 + pos: 67.5,31.5 parent: 2 - - uid: 15542 + - uid: 1595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,13.5 + rot: 1.5707963267948966 rad + pos: -13.5,68.5 parent: 2 - - uid: 15543 + - uid: 1822 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,6.5 + pos: -36.5,70.5 parent: 2 - - uid: 15544 + - uid: 1823 components: - type: Transform - pos: 34.5,56.5 + rot: -1.5707963267948966 rad + pos: -36.5,69.5 parent: 2 - - uid: 15545 + - uid: 3472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,6.5 + pos: 24.5,-40.5 parent: 2 - - uid: 15546 + - uid: 3473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,6.5 + pos: 25.5,-40.5 parent: 2 - - uid: 15547 + - uid: 3474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,10.5 + pos: 28.5,-40.5 parent: 2 - - uid: 15548 + - uid: 3475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,10.5 + pos: 31.5,-39.5 parent: 2 - - uid: 15549 + - uid: 3476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,18.5 + pos: 32.5,-39.5 parent: 2 - - uid: 15550 + - uid: 3477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,6.5 + pos: 24.5,-38.5 parent: 2 - - uid: 15551 + - uid: 3478 components: - type: Transform - pos: 33.5,52.5 + pos: 24.5,-37.5 parent: 2 - - uid: 15552 + - uid: 3479 components: - type: Transform - pos: 36.5,53.5 + pos: 26.5,-39.5 parent: 2 - - uid: 15553 + - uid: 3480 components: - type: Transform - pos: 36.5,56.5 + pos: 25.5,-39.5 parent: 2 - - uid: 15554 + - uid: 3481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,18.5 + pos: 23.5,-37.5 parent: 2 - - uid: 15555 + - uid: 3484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,22.5 + pos: 28.5,-41.5 parent: 2 - - uid: 15556 + - uid: 3486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,22.5 + pos: 24.5,-39.5 parent: 2 - - uid: 15557 + - uid: 3669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,22.5 + pos: 29.5,-41.5 parent: 2 - - uid: 15558 + - uid: 3670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,4.5 + pos: 31.5,-41.5 parent: 2 - - uid: 15559 + - uid: 3671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,2.5 + pos: 32.5,-41.5 parent: 2 - - uid: 15560 + - uid: 3672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,3.5 + pos: 24.5,-44.5 parent: 2 - - uid: 15561 + - uid: 3673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,0.5 + pos: 32.5,-40.5 parent: 2 - - uid: 15562 + - uid: 3674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,4.5 + pos: 23.5,-35.5 parent: 2 - - uid: 15563 + - uid: 3675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,0.5 + pos: 26.5,-44.5 parent: 2 - - uid: 15564 + - uid: 3676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 + pos: 24.5,-45.5 parent: 2 - - uid: 15565 + - uid: 3677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,1.5 + pos: 26.5,-45.5 parent: 2 - - uid: 15566 + - uid: 3678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 + pos: 26.5,-47.5 parent: 2 - - uid: 15567 + - uid: 3679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,2.5 + pos: 34.5,-46.5 parent: 2 - - uid: 15568 + - uid: 3683 components: - type: Transform - pos: -16.5,32.5 + pos: 26.5,-43.5 parent: 2 - - uid: 15569 + - uid: 3684 components: - type: Transform - pos: -21.5,32.5 + pos: 36.5,-41.5 parent: 2 - - uid: 15570 + - uid: 3685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,31.5 + pos: 36.5,-42.5 parent: 2 - - uid: 15571 + - uid: 3686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,29.5 + pos: 26.5,-46.5 parent: 2 - - uid: 15572 + - uid: 3687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,28.5 + pos: 34.5,-44.5 parent: 2 - - uid: 15573 + - uid: 3688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,36.5 + pos: 36.5,-43.5 parent: 2 - - uid: 15574 + - uid: 3689 components: - type: Transform - pos: -21.5,37.5 + pos: 36.5,-44.5 parent: 2 - - uid: 15575 + - uid: 3690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,36.5 + pos: 36.5,-45.5 parent: 2 - - uid: 15576 + - uid: 3691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,20.5 + pos: 24.5,-42.5 parent: 2 - - uid: 15577 + - uid: 3692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,21.5 + pos: 24.5,-43.5 parent: 2 - - uid: 15578 + - uid: 3693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,32.5 + pos: 23.5,-34.5 parent: 2 - - uid: 15579 + - uid: 3694 components: - type: Transform - pos: -13.5,26.5 + pos: 23.5,-33.5 parent: 2 - - uid: 15580 + - uid: 3696 components: - type: Transform - pos: -17.5,32.5 + pos: 23.5,-31.5 parent: 2 - - uid: 15581 + - uid: 3698 components: - type: Transform - pos: -21.5,30.5 + pos: 27.5,-31.5 parent: 2 - - uid: 15582 + - uid: 3699 components: - type: Transform - pos: -17.5,31.5 + pos: 26.5,-34.5 parent: 2 - - uid: 15583 + - uid: 3700 components: - type: Transform - pos: -17.5,30.5 + pos: 25.5,-34.5 parent: 2 - - uid: 15584 + - uid: 3701 components: - type: Transform - pos: -17.5,36.5 + pos: 24.5,-34.5 parent: 2 - - uid: 15585 + - uid: 3723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 + pos: 33.5,-51.5 parent: 2 - - uid: 15586 + - uid: 3724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,32.5 + pos: 32.5,-51.5 parent: 2 - - uid: 15587 + - uid: 3725 components: - type: Transform - pos: -17.5,38.5 + pos: 31.5,-51.5 parent: 2 - - uid: 15588 + - uid: 3726 components: - type: Transform - pos: -17.5,35.5 + pos: 30.5,-51.5 parent: 2 - - uid: 15589 + - uid: 3727 components: - type: Transform - pos: -12.5,-1.5 + pos: 29.5,-51.5 parent: 2 - - uid: 15590 + - uid: 3728 components: - type: Transform - pos: -13.5,-3.5 + pos: 28.5,-51.5 parent: 2 - - uid: 15591 + - uid: 3729 components: - type: Transform - pos: -12.5,2.5 + pos: 27.5,-51.5 parent: 2 - - uid: 15592 + - uid: 3730 components: - type: Transform - pos: -12.5,-2.5 + pos: 26.5,-51.5 parent: 2 - - uid: 15593 + - uid: 3731 components: - type: Transform - pos: -13.5,-2.5 + pos: 27.5,-49.5 parent: 2 - - uid: 15594 + - uid: 3732 components: - type: Transform - pos: -16.5,36.5 + pos: 28.5,-49.5 parent: 2 - - uid: 15595 + - uid: 3733 components: - type: Transform - pos: 36.5,54.5 + pos: 29.5,-49.5 parent: 2 - - uid: 15596 + - uid: 3734 components: - type: Transform - pos: 36.5,55.5 + pos: 30.5,-49.5 parent: 2 - - uid: 15597 + - uid: 3735 components: - type: Transform - pos: 34.5,52.5 + pos: 36.5,-49.5 parent: 2 - - uid: 15598 + - uid: 3736 components: - type: Transform - pos: 36.5,52.5 + pos: 36.5,-47.5 parent: 2 - - uid: 15599 + - uid: 3737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,20.5 + pos: 35.5,-51.5 parent: 2 - - uid: 15600 + - uid: 3738 components: - type: Transform - pos: 35.5,56.5 + pos: 34.5,-51.5 parent: 2 - - uid: 15601 + - uid: 3739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,22.5 + pos: 34.5,-47.5 parent: 2 - - uid: 15602 + - uid: 3740 components: - type: Transform - pos: 33.5,56.5 + pos: 34.5,-48.5 parent: 2 - - uid: 15603 + - uid: 3741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,22.5 + pos: 33.5,-48.5 parent: 2 - - uid: 15604 + - uid: 3742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,11.5 + pos: 33.5,-49.5 parent: 2 - - uid: 15605 + - uid: 3743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,12.5 + pos: 26.5,-48.5 parent: 2 - - uid: 15606 + - uid: 3744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,14.5 + pos: 27.5,-48.5 parent: 2 - - uid: 15607 + - uid: 3745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,18.5 + pos: 33.5,-41.5 parent: 2 - - uid: 15608 + - uid: 3746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,18.5 + pos: 33.5,-42.5 parent: 2 - - uid: 15609 + - uid: 3747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,14.5 + pos: 34.5,-42.5 parent: 2 - - uid: 15610 + - uid: 3748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,8.5 + pos: 34.5,-43.5 parent: 2 - - uid: 15611 + - uid: 3749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,7.5 + pos: 27.5,-41.5 parent: 2 - - uid: 15612 + - uid: 3750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,15.5 + pos: 27.5,-42.5 parent: 2 - - uid: 15613 + - uid: 3751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,16.5 + pos: 26.5,-42.5 parent: 2 - - uid: 15614 + - uid: 3752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,10.5 + pos: 24.5,-41.5 parent: 2 - - uid: 15615 + - uid: 3758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,10.5 + pos: 24.5,-48.5 parent: 2 - - uid: 15616 + - uid: 3763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,10.5 + pos: 24.5,-47.5 parent: 2 - - uid: 15617 + - uid: 4720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,3.5 + pos: 24.5,-50.5 parent: 2 - - uid: 15618 + - uid: 4721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,1.5 + pos: 31.5,-49.5 parent: 2 - - uid: 15619 + - uid: 4722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 + pos: 36.5,-46.5 parent: 2 - - uid: 15620 + - uid: 4723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,3.5 + pos: 24.5,-49.5 parent: 2 - - uid: 15621 + - uid: 4724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,17.5 + pos: 32.5,-49.5 parent: 2 - - uid: 15622 + - uid: 4746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,19.5 + pos: 36.5,-48.5 parent: 2 - - uid: 15623 + - uid: 4758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,18.5 + pos: 37.5,-33.5 parent: 2 - - uid: 15624 + - uid: 4759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,21.5 + pos: 37.5,-34.5 parent: 2 - - uid: 15625 + - uid: 4767 components: - type: Transform - pos: 55.5,-4.5 + pos: 31.5,-22.5 parent: 2 - - uid: 15626 + - uid: 4768 components: - type: Transform - pos: 54.5,-4.5 + pos: 31.5,-21.5 parent: 2 - - uid: 15627 + - uid: 5082 components: - type: Transform - pos: 54.5,-5.5 + pos: -12.5,69.5 parent: 2 - - uid: 15628 + - uid: 5206 components: - type: Transform - pos: 53.5,-5.5 + rot: 1.5707963267948966 rad + pos: -12.5,68.5 parent: 2 - - uid: 15629 + - uid: 5750 components: - type: Transform - pos: -21.5,36.5 + pos: -17.5,72.5 parent: 2 - - uid: 15630 + - uid: 5751 components: - type: Transform - pos: -13.5,-7.5 + pos: -18.5,72.5 parent: 2 - - uid: 15631 + - uid: 5752 components: - type: Transform - pos: -15.5,32.5 + pos: -19.5,72.5 parent: 2 - - uid: 15632 + - uid: 5753 components: - type: Transform - pos: -15.5,33.5 + pos: -16.5,72.5 parent: 2 - - uid: 15633 + - uid: 5754 components: - type: Transform - pos: -15.5,35.5 + pos: -15.5,72.5 parent: 2 - - uid: 15634 + - uid: 5755 components: - type: Transform - pos: -21.5,38.5 + pos: -14.5,72.5 parent: 2 - - uid: 15635 + - uid: 5756 components: - type: Transform - pos: -15.5,36.5 + pos: -13.5,72.5 parent: 2 - - uid: 15636 + - uid: 5759 components: - type: Transform - pos: -17.5,37.5 + rot: -1.5707963267948966 rad + pos: -20.5,74.5 parent: 2 - - uid: 15637 + - uid: 5791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,22.5 + pos: 35.5,-23.5 parent: 2 - - uid: 15638 + - uid: 5796 components: - type: Transform - pos: -21.5,31.5 + pos: 35.5,-24.5 parent: 2 - - uid: 15639 + - uid: 5797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,31.5 + pos: 35.5,-25.5 parent: 2 - - uid: 15640 + - uid: 6053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,31.5 + pos: -4.5,71.5 parent: 2 - - uid: 15641 + - uid: 6054 components: - type: Transform - pos: -13.5,-8.5 + pos: -4.5,70.5 parent: 2 - - uid: 15642 + - uid: 6056 components: - type: Transform - pos: -17.5,-8.5 + pos: -12.5,71.5 parent: 2 - - uid: 15643 + - uid: 6192 components: - type: Transform - pos: -18.5,-8.5 + rot: -1.5707963267948966 rad + pos: -35.5,73.5 parent: 2 - - uid: 15644 + - uid: 6331 components: - type: Transform - pos: -18.5,-7.5 + rot: -1.5707963267948966 rad + pos: -35.5,72.5 parent: 2 - - uid: 15645 + - uid: 6461 components: - type: Transform - pos: -18.5,-5.5 + rot: -1.5707963267948966 rad + pos: -35.5,71.5 parent: 2 - - uid: 15646 + - uid: 6579 components: - type: Transform - pos: -18.5,-6.5 + pos: 36.5,-40.5 parent: 2 - - uid: 15647 + - uid: 6670 components: - type: Transform - pos: -18.5,-4.5 + pos: 35.5,-40.5 parent: 2 - - uid: 15648 + - uid: 6671 components: - type: Transform - pos: -18.5,-3.5 + pos: 25.5,-23.5 parent: 2 - - uid: 15649 + - uid: 6672 components: - type: Transform - pos: -18.5,-2.5 + pos: 33.5,-27.5 parent: 2 - - uid: 15650 + - uid: 6673 components: - type: Transform - pos: -18.5,-1.5 + pos: 35.5,-30.5 parent: 2 - - uid: 15651 + - uid: 6676 components: - type: Transform - pos: -18.5,-0.5 + pos: 37.5,-30.5 parent: 2 - - uid: 15652 + - uid: 6678 components: - type: Transform - pos: -18.5,0.5 + pos: 32.5,-13.5 parent: 2 - - uid: 15653 + - uid: 6679 components: - type: Transform - pos: -18.5,1.5 + pos: 33.5,-13.5 parent: 2 - - uid: 15654 + - uid: 6680 components: - type: Transform - pos: -18.5,2.5 + pos: 33.5,-14.5 parent: 2 - - uid: 15655 + - uid: 6681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,23.5 + pos: 21.5,-50.5 parent: 2 - - uid: 15656 + - uid: 6682 components: - type: Transform - pos: -12.5,3.5 + pos: 28.5,-13.5 parent: 2 - - uid: 15657 + - uid: 6683 components: - type: Transform - pos: -8.5,3.5 + pos: 27.5,-13.5 parent: 2 - - uid: 15658 + - uid: 6684 components: - type: Transform - pos: -8.5,2.5 + pos: 27.5,-14.5 parent: 2 - - uid: 15659 + - uid: 6690 components: - type: Transform - pos: -7.5,2.5 + pos: 37.5,-37.5 parent: 2 - - uid: 15660 + - uid: 6691 components: - type: Transform - pos: -6.5,2.5 + pos: 34.5,-39.5 parent: 2 - - uid: 15661 + - uid: 6692 components: - type: Transform - pos: -5.5,2.5 + pos: 33.5,-38.5 parent: 2 - - uid: 15662 + - uid: 6694 components: - type: Transform - pos: -4.5,2.5 + pos: 33.5,-30.5 parent: 2 - - uid: 15663 + - uid: 6696 components: - type: Transform - pos: -14.5,11.5 + rot: -1.5707963267948966 rad + pos: 33.5,-29.5 parent: 2 - - uid: 15664 + - uid: 6697 components: - type: Transform - pos: -16.5,3.5 + pos: 27.5,-30.5 parent: 2 - - uid: 15665 + - uid: 6698 components: - type: Transform - pos: -16.5,4.5 + pos: 26.5,-30.5 parent: 2 - - uid: 15666 + - uid: 6699 components: - type: Transform - pos: -16.5,5.5 + pos: 25.5,-30.5 parent: 2 - - uid: 15667 + - uid: 6700 components: - type: Transform - pos: -16.5,6.5 + pos: 24.5,-30.5 parent: 2 - - uid: 15668 + - uid: 6701 components: - type: Transform - pos: -16.5,7.5 + pos: 23.5,-30.5 parent: 2 - - uid: 15669 + - uid: 6702 components: - type: Transform - pos: -16.5,9.5 + pos: 37.5,-32.5 parent: 2 - - uid: 15670 + - uid: 6703 components: - type: Transform - pos: -16.5,10.5 + pos: 26.5,-14.5 parent: 2 - - uid: 15671 + - uid: 6704 components: - type: Transform - pos: -15.5,10.5 + pos: 26.5,-15.5 parent: 2 - - uid: 15672 + - uid: 6705 components: - type: Transform - pos: -14.5,10.5 + pos: 26.5,-16.5 parent: 2 - - uid: 15673 + - uid: 6706 components: - type: Transform - pos: -19.5,9.5 + pos: 26.5,-17.5 parent: 2 - - uid: 15674 + - uid: 6707 components: - type: Transform - pos: -19.5,8.5 + pos: 26.5,-18.5 parent: 2 - - uid: 15675 + - uid: 6708 components: - type: Transform - pos: -19.5,6.5 + pos: 26.5,-19.5 parent: 2 - - uid: 15676 + - uid: 6709 components: - type: Transform - pos: -19.5,7.5 + pos: 26.5,-20.5 parent: 2 - - uid: 15677 + - uid: 6710 components: - type: Transform - pos: -19.5,4.5 + pos: 26.5,-21.5 parent: 2 - - uid: 15678 + - uid: 6711 components: - type: Transform - pos: -19.5,3.5 + pos: 26.5,-22.5 parent: 2 - - uid: 15679 + - uid: 6712 components: - type: Transform - pos: -19.5,5.5 + pos: 25.5,-22.5 parent: 2 - - uid: 15680 + - uid: 6713 components: - type: Transform - pos: -18.5,3.5 + pos: 34.5,-15.5 parent: 2 - - uid: 15681 + - uid: 6714 components: - type: Transform - pos: -17.5,3.5 + pos: 34.5,-16.5 parent: 2 - - uid: 15682 + - uid: 6715 components: - type: Transform - pos: -14.5,13.5 + pos: 34.5,-17.5 parent: 2 - - uid: 15683 + - uid: 6716 components: - type: Transform - pos: 5.5,1.5 + pos: 34.5,-18.5 parent: 2 - - uid: 15684 + - uid: 6717 components: - type: Transform - pos: 5.5,2.5 + pos: 34.5,-19.5 parent: 2 - - uid: 15685 + - uid: 6718 components: - type: Transform - pos: 5.5,3.5 + pos: 34.5,-20.5 parent: 2 - - uid: 15686 + - uid: 6719 components: - type: Transform - pos: 5.5,4.5 + pos: 34.5,-21.5 parent: 2 - - uid: 15687 + - uid: 6720 components: - type: Transform - pos: 5.5,5.5 + pos: 34.5,-22.5 parent: 2 - - uid: 15688 + - uid: 6735 components: - type: Transform - pos: 5.5,6.5 + pos: 37.5,-35.5 parent: 2 - - uid: 15689 + - uid: 6736 components: - type: Transform - pos: 5.5,7.5 + pos: 35.5,-22.5 parent: 2 - - uid: 15690 + - uid: 6750 components: - type: Transform - pos: 5.5,8.5 + pos: 35.5,-26.5 parent: 2 - - uid: 15691 + - uid: 6761 components: - type: Transform - pos: 6.5,8.5 + pos: 34.5,-26.5 parent: 2 - - uid: 15692 + - uid: 6770 components: - type: Transform - pos: 13.5,9.5 + pos: 33.5,-26.5 parent: 2 - - uid: 15693 + - uid: 6771 components: - type: Transform - pos: 8.5,8.5 + pos: 31.5,-34.5 parent: 2 - - uid: 15694 + - uid: 6784 components: - type: Transform - pos: 9.5,8.5 + pos: 22.5,-53.5 parent: 2 - - uid: 15695 + - uid: 7241 components: - type: Transform - pos: 10.5,9.5 + pos: 73.5,25.5 parent: 2 - - uid: 15696 + - uid: 7401 components: - type: Transform - pos: 9.5,9.5 + pos: 21.5,-52.5 parent: 2 - - uid: 15697 + - uid: 8113 components: - type: Transform - pos: 11.5,9.5 + pos: 73.5,23.5 parent: 2 - - uid: 15698 + - uid: 8387 components: - type: Transform - pos: 12.5,9.5 + pos: 37.5,-0.5 parent: 2 - - uid: 15699 + - uid: 8389 components: - type: Transform - pos: 13.5,10.5 + pos: 34.5,-14.5 parent: 2 - - uid: 15700 + - uid: 8390 components: - type: Transform - pos: 13.5,12.5 + pos: 21.5,-51.5 parent: 2 - - uid: 15701 + - uid: 8392 components: - type: Transform - pos: 13.5,13.5 + pos: 21.5,-53.5 parent: 2 - - uid: 15702 + - uid: 8394 components: - type: Transform - pos: 13.5,14.5 + pos: 22.5,-54.5 parent: 2 - - uid: 15703 + - uid: 8938 components: - type: Transform - pos: 13.5,11.5 + pos: 20.5,-33.5 parent: 2 - - uid: 15704 + - uid: 8939 components: - type: Transform - pos: 9.5,14.5 + pos: 20.5,-32.5 parent: 2 - - uid: 15705 + - uid: 8940 components: - type: Transform - pos: 5.5,13.5 + pos: 22.5,-24.5 parent: 2 - - uid: 15706 + - uid: 8941 components: - type: Transform - pos: 5.5,14.5 + pos: 22.5,-22.5 parent: 2 - - uid: 15707 + - uid: 9056 components: - type: Transform - pos: 4.5,18.5 + pos: 22.5,-23.5 parent: 2 - - uid: 15708 + - uid: 9059 components: - type: Transform - pos: -7.5,15.5 + pos: 22.5,-20.5 parent: 2 - - uid: 15709 + - uid: 9179 components: - type: Transform - pos: -7.5,14.5 + pos: 37.5,0.5 parent: 2 - - uid: 15710 + - uid: 9180 components: - type: Transform - pos: -2.5,13.5 + pos: 37.5,-16.5 parent: 2 - - uid: 15711 + - uid: 9181 components: - type: Transform - pos: -2.5,14.5 + pos: 22.5,-19.5 parent: 2 - - uid: 15712 + - uid: 9182 components: - type: Transform - pos: -2.5,16.5 + pos: 21.5,-45.5 parent: 2 - - uid: 15713 + - uid: 9222 components: - type: Transform - pos: -2.5,15.5 + pos: 24.5,-54.5 parent: 2 - - uid: 15714 + - uid: 9240 components: - type: Transform - pos: 5.5,18.5 + pos: 39.5,-45.5 parent: 2 - - uid: 15715 + - uid: 9247 components: - type: Transform - pos: -2.5,17.5 + pos: 28.5,-54.5 parent: 2 - - uid: 15716 + - uid: 9248 components: - type: Transform - pos: -2.5,18.5 + pos: 23.5,-54.5 parent: 2 - - uid: 15717 + - uid: 9249 components: - type: Transform - pos: -1.5,18.5 + pos: 39.5,-51.5 parent: 2 - - uid: 15718 + - uid: 9305 components: - type: Transform - pos: -0.5,18.5 + pos: 39.5,-41.5 parent: 2 - - uid: 15719 + - uid: 9362 components: - type: Transform - pos: 0.5,18.5 + pos: 20.5,-37.5 parent: 2 - - uid: 15720 + - uid: 11113 components: - type: Transform - pos: 1.5,18.5 + pos: 23.5,-14.5 parent: 2 - - uid: 15721 + - uid: 11114 components: - type: Transform - pos: 2.5,18.5 + pos: 23.5,-16.5 parent: 2 - - uid: 15722 + - uid: 11115 components: - type: Transform - pos: -14.5,14.5 + pos: 22.5,-26.5 parent: 2 - - uid: 15723 + - uid: 11116 components: - type: Transform - pos: -14.5,15.5 + pos: 32.5,-26.5 parent: 2 - - uid: 15724 + - uid: 11117 components: - type: Transform - pos: -13.5,15.5 + pos: 28.5,-27.5 parent: 2 - - uid: 15725 + - uid: 11118 components: - type: Transform - pos: -11.5,15.5 + pos: 27.5,-28.5 parent: 2 - - uid: 15726 + - uid: 11119 components: - type: Transform - pos: -12.5,15.5 + pos: 27.5,-35.5 parent: 2 - - uid: 15727 + - uid: 11120 components: - type: Transform - pos: -10.5,15.5 + pos: 25.5,-51.5 parent: 2 - - uid: 15728 + - uid: 11121 components: - type: Transform - pos: -8.5,15.5 + pos: 36.5,-50.5 parent: 2 - - uid: 15729 + - uid: 11122 components: - type: Transform - pos: -9.5,15.5 + pos: 35.5,-50.5 parent: 2 - - uid: 15730 + - uid: 11123 components: - type: Transform - pos: 29.5,5.5 + pos: 25.5,-50.5 parent: 2 - - uid: 15731 + - uid: 11134 components: - type: Transform - pos: 29.5,6.5 + pos: 36.5,-37.5 parent: 2 - - uid: 15732 + - uid: 11135 components: - type: Transform - pos: 33.5,7.5 + pos: 31.5,-26.5 parent: 2 - - uid: 15733 + - uid: 11136 components: - type: Transform - pos: 33.5,6.5 + pos: 36.5,-39.5 parent: 2 - - uid: 15735 + - uid: 11137 components: - type: Transform - pos: 30.5,6.5 + pos: 29.5,-26.5 parent: 2 - - uid: 15736 + - uid: 11138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 + pos: 28.5,-28.5 parent: 2 - - uid: 15737 + - uid: 11139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,22.5 + pos: 28.5,-35.5 parent: 2 - - uid: 15738 + - uid: 11158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,22.5 + pos: 32.5,-35.5 parent: 2 - - uid: 15739 + - uid: 11168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,22.5 + pos: 27.5,-33.5 parent: 2 - - uid: 15740 + - uid: 11477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 + pos: 33.5,-35.5 parent: 2 - - uid: 15741 + - uid: 11478 components: - type: Transform - pos: -6.5,22.5 + pos: 27.5,-36.5 parent: 2 - - uid: 15742 + - uid: 11667 components: - type: Transform - pos: -8.5,26.5 + rot: -1.5707963267948966 rad + pos: 48.5,5.5 parent: 2 - - uid: 15743 + - uid: 11704 components: - type: Transform - pos: -2.5,22.5 + pos: 27.5,-39.5 parent: 2 - - uid: 15744 + - uid: 11705 components: - type: Transform - pos: -3.5,22.5 + pos: 33.5,-33.5 parent: 2 - - uid: 15745 + - uid: 11710 components: - type: Transform - pos: -2.5,23.5 + pos: 25.5,-25.5 parent: 2 - - uid: 15746 + - uid: 11858 components: - type: Transform - pos: -2.5,24.5 + pos: 28.5,-26.5 parent: 2 - - uid: 15747 + - uid: 11859 components: - type: Transform - pos: -1.5,24.5 + pos: 25.5,-27.5 parent: 2 - - uid: 15748 + - uid: 11862 components: - type: Transform - pos: 5.5,25.5 + pos: 37.5,-31.5 parent: 2 - - uid: 15749 + - uid: 11863 components: - type: Transform - pos: 6.5,25.5 + pos: 26.5,-28.5 parent: 2 - - uid: 15750 + - uid: 11864 components: - type: Transform - pos: 8.5,25.5 + pos: 33.5,-39.5 parent: 2 - - uid: 15751 + - uid: 11865 components: - type: Transform - pos: 7.5,25.5 + pos: 36.5,-38.5 parent: 2 - - uid: 15752 + - uid: 11866 components: - type: Transform - pos: 5.5,26.5 + pos: 35.5,-39.5 parent: 2 - - uid: 15753 + - uid: 11867 components: - type: Transform - pos: 4.5,26.5 + pos: 28.5,-39.5 parent: 2 - - uid: 15754 + - uid: 12239 components: - type: Transform - pos: 4.5,30.5 + rot: 3.141592653589793 rad + pos: 54.5,59.5 parent: 2 - - uid: 15755 + - uid: 12383 components: - type: Transform - pos: 5.5,30.5 + pos: 27.5,-34.5 parent: 2 - - uid: 15756 + - uid: 12384 components: - type: Transform - pos: 6.5,30.5 + pos: 32.5,-34.5 parent: 2 - - uid: 15757 + - uid: 12385 components: - type: Transform - pos: 7.5,30.5 + pos: 33.5,-36.5 parent: 2 - - uid: 15758 + - uid: 12386 components: - type: Transform - pos: 9.5,28.5 + pos: 29.5,-39.5 parent: 2 - - uid: 15759 + - uid: 12387 components: - type: Transform - pos: 15.5,23.5 + pos: 29.5,-34.5 parent: 2 - - uid: 15760 + - uid: 12539 components: - type: Transform - pos: 6.5,36.5 + rot: -1.5707963267948966 rad + pos: -25.5,75.5 parent: 2 - - uid: 15761 + - uid: 12543 components: - type: Transform - pos: 5.5,36.5 + pos: -20.5,72.5 parent: 2 - - uid: 15762 + - uid: 12544 components: - type: Transform - pos: 15.5,24.5 + pos: -12.5,70.5 parent: 2 - - uid: 15763 + - uid: 12596 components: - type: Transform - pos: 3.5,36.5 + pos: 34.5,-2.5 parent: 2 - - uid: 15764 + - uid: 12597 components: - type: Transform - pos: 2.5,36.5 + pos: 37.5,-18.5 parent: 2 - - uid: 15765 + - uid: 12598 components: - type: Transform - pos: 15.5,26.5 + pos: 37.5,-14.5 parent: 2 - - uid: 15766 + - uid: 12599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 + pos: 30.5,-54.5 parent: 2 - - uid: 15767 + - uid: 12606 components: - type: Transform - pos: 14.5,27.5 + pos: 26.5,-54.5 parent: 2 - - uid: 15768 + - uid: 12607 components: - type: Transform - pos: 14.5,28.5 + pos: 27.5,-54.5 parent: 2 - - uid: 15769 + - uid: 12608 components: - type: Transform - pos: 14.5,29.5 + pos: 32.5,-54.5 parent: 2 - - uid: 15770 + - uid: 12609 components: - type: Transform - pos: 19.5,23.5 + pos: 21.5,-47.5 parent: 2 - - uid: 15771 + - uid: 12646 components: - type: Transform - pos: 19.5,22.5 + pos: 20.5,-35.5 parent: 2 - - uid: 15772 + - uid: 12647 components: - type: Transform - pos: 19.5,24.5 + pos: 20.5,-36.5 parent: 2 - - uid: 15773 + - uid: 12648 components: - type: Transform - pos: 19.5,26.5 + pos: 33.5,-54.5 parent: 2 - - uid: 15774 + - uid: 12649 components: - type: Transform - pos: 19.5,27.5 + pos: 20.5,-38.5 parent: 2 - - uid: 15775 + - uid: 13000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,22.5 + pos: 21.5,-42.5 parent: 2 - - uid: 15776 + - uid: 13041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,22.5 + pos: 39.5,-40.5 parent: 2 - - uid: 15777 + - uid: 13051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,22.5 + pos: 21.5,-41.5 parent: 2 - - uid: 15778 + - uid: 13052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,23.5 + pos: 39.5,-42.5 parent: 2 - - uid: 15779 + - uid: 13053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,22.5 + pos: 21.5,-40.5 parent: 2 - - uid: 15780 + - uid: 13055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,26.5 + pos: 33.5,-31.5 parent: 2 - - uid: 15781 + - uid: 13074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,27.5 + pos: 34.5,-30.5 parent: 2 - - uid: 15782 + - uid: 13088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,28.5 + pos: 25.5,-24.5 parent: 2 - - uid: 15783 + - uid: 13382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,29.5 + pos: 25.5,-28.5 parent: 2 - - uid: 15784 + - uid: 13383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,27.5 + pos: 33.5,-34.5 parent: 2 - - uid: 15785 + - uid: 13384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 + pos: 27.5,-38.5 parent: 2 - - uid: 15786 + - uid: 13385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,29.5 + pos: 28.5,-34.5 parent: 2 - - uid: 15787 + - uid: 13404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,29.5 + pos: 25.5,-26.5 parent: 2 - - uid: 15788 + - uid: 13415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 21.5,-46.5 parent: 2 - - uid: 15789 + - uid: 13422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,22.5 + pos: 23.5,-18.5 parent: 2 - - uid: 15790 + - uid: 13478 components: - type: Transform - pos: 15.5,46.5 + rot: -1.5707963267948966 rad + pos: -21.5,75.5 parent: 2 - - uid: 15791 + - uid: 13679 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,23.5 + pos: 54.5,63.5 parent: 2 - - uid: 15792 + - uid: 13681 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,23.5 + pos: 54.5,60.5 parent: 2 - - uid: 15793 + - uid: 14252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 + pos: 40.5,-35.5 parent: 2 - - uid: 15794 + - uid: 14253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,25.5 + pos: 39.5,-46.5 parent: 2 - - uid: 15795 + - uid: 14254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,26.5 + pos: 38.5,-53.5 parent: 2 - - uid: 15796 + - uid: 14255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,30.5 + pos: 40.5,-26.5 parent: 2 - - uid: 15797 + - uid: 14256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,30.5 + pos: 37.5,-54.5 parent: 2 - - uid: 15798 + - uid: 14314 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,30.5 + pos: 54.5,62.5 parent: 2 - - uid: 15799 + - uid: 14534 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,30.5 + pos: 32.5,6.5 parent: 2 - - uid: 15800 + - uid: 14552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,30.5 + pos: 73.5,24.5 parent: 2 - - uid: 15801 + - uid: 14572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,30.5 + pos: 39.5,-50.5 parent: 2 - - uid: 15802 + - uid: 14573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,30.5 + pos: 39.5,-47.5 parent: 2 - - uid: 15803 + - uid: 15505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,37.5 + pos: 81.5,14.5 parent: 2 - - uid: 15804 + - uid: 15506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,37.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 15805 + - uid: 15507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,37.5 + rot: -1.5707963267948966 rad + pos: 3.5,30.5 parent: 2 - - uid: 15806 + - uid: 15508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,35.5 + pos: 4.5,36.5 parent: 2 - - uid: 15807 + - uid: 15509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,37.5 + pos: -7.5,17.5 parent: 2 - - uid: 15808 + - uid: 15513 components: - type: Transform - pos: -6.5,25.5 + pos: -32.5,0.5 parent: 2 - - uid: 15809 + - uid: 15514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,36.5 + pos: -31.5,0.5 parent: 2 - - uid: 15810 + - uid: 15515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,36.5 + pos: -33.5,0.5 parent: 2 - - uid: 15811 + - uid: 15516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,36.5 + pos: -27.5,0.5 parent: 2 - - uid: 15812 + - uid: 15517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,39.5 + pos: -29.5,0.5 parent: 2 - - uid: 15813 + - uid: 15518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,40.5 + rot: 1.5707963267948966 rad + pos: -30.5,22.5 parent: 2 - - uid: 15814 + - uid: 15519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,41.5 + pos: -24.5,42.5 parent: 2 - - uid: 15815 + - uid: 15520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,41.5 + rot: 1.5707963267948966 rad + pos: -29.5,21.5 parent: 2 - - uid: 15816 + - uid: 15521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 + pos: -28.5,0.5 parent: 2 - - uid: 15817 + - uid: 15522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,38.5 + pos: -26.5,42.5 parent: 2 - - uid: 15818 + - uid: 15523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,36.5 + pos: -30.5,0.5 parent: 2 - - uid: 15819 + - uid: 15525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,36.5 + rot: -1.5707963267948966 rad + pos: -19.5,75.5 parent: 2 - - uid: 15820 + - uid: 15526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,37.5 + rot: -1.5707963267948966 rad + pos: -18.5,75.5 parent: 2 - - uid: 15821 + - uid: 15527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,40.5 + rot: -1.5707963267948966 rad + pos: -17.5,75.5 parent: 2 - - uid: 15822 + - uid: 15528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,40.5 + rot: -1.5707963267948966 rad + pos: -16.5,75.5 parent: 2 - - uid: 15823 + - uid: 15529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,40.5 + rot: -1.5707963267948966 rad + pos: -15.5,75.5 parent: 2 - - uid: 15824 + - uid: 15530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,40.5 + rot: -1.5707963267948966 rad + pos: -14.5,75.5 parent: 2 - - uid: 15825 + - uid: 15531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,41.5 + rot: -1.5707963267948966 rad + pos: -13.5,75.5 parent: 2 - - uid: 15826 + - uid: 15532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,37.5 + rot: -1.5707963267948966 rad + pos: -13.5,73.5 parent: 2 - - uid: 15827 + - uid: 15533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 + rot: -1.5707963267948966 rad + pos: -20.5,75.5 parent: 2 - - uid: 15828 + - uid: 15534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,36.5 + rot: -1.5707963267948966 rad + pos: -20.5,73.5 parent: 2 - - uid: 15829 + - uid: 15535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,42.5 + pos: -17.5,33.5 parent: 2 - - uid: 15830 + - uid: 15536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,42.5 + pos: -14.5,-8.5 parent: 2 - - uid: 15831 + - uid: 15537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,42.5 + rot: -1.5707963267948966 rad + pos: -40.5,6.5 parent: 2 - - uid: 15832 + - uid: 15538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,41.5 + rot: -1.5707963267948966 rad + pos: -40.5,14.5 parent: 2 - - uid: 15833 + - uid: 15539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,40.5 + rot: -1.5707963267948966 rad + pos: -36.5,14.5 parent: 2 - - uid: 15834 + - uid: 15540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,39.5 + rot: -1.5707963267948966 rad + pos: -38.5,14.5 parent: 2 - - uid: 15835 + - uid: 15541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,38.5 + rot: 3.141592653589793 rad + pos: -40.5,9.5 parent: 2 - - uid: 15836 + - uid: 15542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,42.5 + rot: 3.141592653589793 rad + pos: -40.5,13.5 parent: 2 - - uid: 15837 + - uid: 15543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,43.5 + rot: -1.5707963267948966 rad + pos: -38.5,6.5 parent: 2 - - uid: 15838 + - uid: 15544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,44.5 + pos: 34.5,56.5 parent: 2 - - uid: 15839 + - uid: 15545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,45.5 + rot: -1.5707963267948966 rad + pos: -36.5,6.5 parent: 2 - - uid: 15840 + - uid: 15546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,46.5 + rot: -1.5707963267948966 rad + pos: -37.5,6.5 parent: 2 - - uid: 15841 + - uid: 15547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,46.5 + rot: -1.5707963267948966 rad + pos: -36.5,10.5 parent: 2 - - uid: 15842 + - uid: 15548 components: - type: Transform - pos: 14.5,43.5 + rot: -1.5707963267948966 rad + pos: -38.5,10.5 parent: 2 - - uid: 15843 + - uid: 15549 components: - type: Transform - pos: 14.5,45.5 + rot: -1.5707963267948966 rad + pos: -38.5,18.5 parent: 2 - - uid: 15844 + - uid: 15550 components: - type: Transform - pos: 14.5,46.5 + rot: -1.5707963267948966 rad + pos: -39.5,6.5 parent: 2 - - uid: 15845 + - uid: 15551 components: - type: Transform - pos: 16.5,46.5 + pos: 33.5,52.5 parent: 2 - - uid: 15846 + - uid: 15552 components: - type: Transform - pos: 17.5,46.5 + pos: 36.5,53.5 parent: 2 - - uid: 15847 + - uid: 15553 components: - type: Transform - pos: 18.5,46.5 + pos: 36.5,56.5 parent: 2 - - uid: 15848 + - uid: 15554 components: - type: Transform - pos: 19.5,46.5 + rot: -1.5707963267948966 rad + pos: -40.5,18.5 parent: 2 - - uid: 15849 + - uid: 15555 components: - type: Transform - pos: 19.5,45.5 + rot: -1.5707963267948966 rad + pos: -37.5,22.5 parent: 2 - - uid: 15850 + - uid: 15556 components: - type: Transform - pos: 19.5,44.5 + rot: -1.5707963267948966 rad + pos: -36.5,22.5 parent: 2 - - uid: 15851 + - uid: 15557 components: - type: Transform - pos: 19.5,43.5 + rot: -1.5707963267948966 rad + pos: -38.5,22.5 parent: 2 - - uid: 15852 + - uid: 15558 components: - type: Transform - pos: 19.5,42.5 + rot: -1.5707963267948966 rad + pos: -34.5,4.5 parent: 2 - - uid: 15853 + - uid: 15559 components: - type: Transform - pos: 7.5,42.5 + rot: -1.5707963267948966 rad + pos: -34.5,2.5 parent: 2 - - uid: 15854 + - uid: 15560 components: - type: Transform - pos: 6.5,42.5 + rot: -1.5707963267948966 rad + pos: -34.5,3.5 parent: 2 - - uid: 15855 + - uid: 15561 components: - type: Transform - pos: 4.5,42.5 + rot: -1.5707963267948966 rad + pos: -34.5,0.5 parent: 2 - - uid: 15856 + - uid: 15562 components: - type: Transform - pos: 3.5,42.5 + rot: -1.5707963267948966 rad + pos: -30.5,4.5 parent: 2 - - uid: 15857 + - uid: 15563 components: - type: Transform - pos: 2.5,42.5 + rot: -1.5707963267948966 rad + pos: -26.5,0.5 parent: 2 - - uid: 15858 + - uid: 15564 components: - type: Transform - pos: 2.5,41.5 + rot: -1.5707963267948966 rad + pos: -26.5,4.5 parent: 2 - - uid: 15859 + - uid: 15565 components: - type: Transform - pos: 2.5,39.5 + rot: -1.5707963267948966 rad + pos: -26.5,1.5 parent: 2 - - uid: 15860 + - uid: 15566 components: - type: Transform - pos: 2.5,37.5 + rot: -1.5707963267948966 rad + pos: -26.5,2.5 parent: 2 - - uid: 15861 + - uid: 15567 components: - type: Transform - pos: 2.5,43.5 + rot: -1.5707963267948966 rad + pos: -30.5,2.5 parent: 2 - - uid: 15862 + - uid: 15568 components: - type: Transform - pos: 2.5,44.5 + pos: -16.5,32.5 parent: 2 - - uid: 15863 + - uid: 15569 components: - type: Transform - pos: 3.5,44.5 + pos: -21.5,32.5 parent: 2 - - uid: 15864 + - uid: 15570 components: - type: Transform - pos: 3.5,45.5 + rot: 3.141592653589793 rad + pos: -37.5,31.5 parent: 2 - - uid: 15865 + - uid: 15571 components: - type: Transform - pos: 3.5,46.5 + rot: 3.141592653589793 rad + pos: -39.5,29.5 parent: 2 - - uid: 15866 + - uid: 15572 components: - type: Transform - pos: 4.5,46.5 + rot: 3.141592653589793 rad + pos: -38.5,28.5 parent: 2 - - uid: 15867 + - uid: 15573 components: - type: Transform - pos: 5.5,46.5 + rot: 3.141592653589793 rad + pos: -23.5,36.5 parent: 2 - - uid: 15868 + - uid: 15574 components: - type: Transform - pos: 8.5,46.5 + pos: -21.5,37.5 parent: 2 - - uid: 15869 + - uid: 15575 components: - type: Transform - pos: 20.5,46.5 + rot: 3.141592653589793 rad + pos: -22.5,36.5 parent: 2 - - uid: 15870 + - uid: 15576 components: - type: Transform - pos: 20.5,42.5 + rot: 3.141592653589793 rad + pos: -25.5,20.5 parent: 2 - - uid: 15871 + - uid: 15577 components: - type: Transform - pos: 21.5,42.5 + rot: 3.141592653589793 rad + pos: -25.5,21.5 parent: 2 - - uid: 15872 + - uid: 15578 components: - type: Transform - pos: 22.5,42.5 + rot: 3.141592653589793 rad + pos: -23.5,32.5 parent: 2 - - uid: 15873 + - uid: 15579 components: - type: Transform - pos: 22.5,45.5 + pos: -13.5,26.5 parent: 2 - - uid: 15874 + - uid: 15580 components: - type: Transform - pos: 22.5,43.5 + pos: -17.5,32.5 parent: 2 - - uid: 15875 + - uid: 15581 components: - type: Transform - pos: 22.5,46.5 + pos: -21.5,30.5 parent: 2 - - uid: 15876 + - uid: 15582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,42.5 + pos: -17.5,31.5 parent: 2 - - uid: 15877 + - uid: 15583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,41.5 + pos: -17.5,30.5 parent: 2 - - uid: 15878 + - uid: 15584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 + pos: -17.5,36.5 parent: 2 - - uid: 15879 + - uid: 15585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,39.5 + rot: 3.141592653589793 rad + pos: -15.5,42.5 parent: 2 - - uid: 15880 + - uid: 15586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,38.5 + rot: 3.141592653589793 rad + pos: -22.5,32.5 parent: 2 - - uid: 15881 + - uid: 15587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,37.5 + pos: -17.5,38.5 parent: 2 - - uid: 15882 + - uid: 15588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,46.5 + pos: -17.5,35.5 parent: 2 - - uid: 15883 + - uid: 15589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,46.5 + pos: -12.5,-1.5 parent: 2 - - uid: 15884 + - uid: 15590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,46.5 + pos: -13.5,-3.5 parent: 2 - - uid: 15885 + - uid: 15591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,45.5 + pos: -12.5,2.5 parent: 2 - - uid: 15886 + - uid: 15592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,42.5 + pos: -12.5,-2.5 parent: 2 - - uid: 15887 + - uid: 15593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,43.5 + pos: -13.5,-2.5 parent: 2 - - uid: 15888 + - uid: 15594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,46.5 + pos: -16.5,36.5 parent: 2 - - uid: 15889 + - uid: 15595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,46.5 + pos: 36.5,54.5 parent: 2 - - uid: 15890 + - uid: 15596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,46.5 + pos: 36.5,55.5 parent: 2 - - uid: 15891 + - uid: 15597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,46.5 + pos: 34.5,52.5 parent: 2 - - uid: 15892 + - uid: 15598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,45.5 + pos: 36.5,52.5 parent: 2 - - uid: 15893 + - uid: 15599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,45.5 + rot: 3.141592653589793 rad + pos: -40.5,20.5 parent: 2 - - uid: 15894 + - uid: 15600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,38.5 + pos: 35.5,56.5 parent: 2 - - uid: 15895 + - uid: 15601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,39.5 + rot: -1.5707963267948966 rad + pos: -40.5,22.5 parent: 2 - - uid: 15896 + - uid: 15602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,40.5 + pos: 33.5,56.5 parent: 2 - - uid: 15897 + - uid: 15603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,41.5 + rot: -1.5707963267948966 rad + pos: -39.5,22.5 parent: 2 - - uid: 15898 + - uid: 15604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,42.5 + rot: 3.141592653589793 rad + pos: -40.5,11.5 parent: 2 - - uid: 15899 + - uid: 15605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,43.5 + rot: 3.141592653589793 rad + pos: -40.5,12.5 parent: 2 - - uid: 15900 + - uid: 15606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,44.5 + rot: -1.5707963267948966 rad + pos: -39.5,14.5 parent: 2 - - uid: 15901 + - uid: 15607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,37.5 + rot: -1.5707963267948966 rad + pos: -36.5,18.5 parent: 2 - - uid: 15903 + - uid: 15608 components: - type: Transform - pos: -12.5,26.5 + rot: -1.5707963267948966 rad + pos: -37.5,18.5 parent: 2 - - uid: 15904 + - uid: 15609 components: - type: Transform - pos: -6.5,26.5 + rot: -1.5707963267948966 rad + pos: -37.5,14.5 parent: 2 - - uid: 15905 + - uid: 15610 components: - type: Transform - pos: -6.5,18.5 + rot: 3.141592653589793 rad + pos: -40.5,8.5 parent: 2 - - uid: 15906 + - uid: 15611 components: - type: Transform - pos: -11.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,7.5 parent: 2 - - uid: 15907 + - uid: 15612 components: - type: Transform - pos: -11.5,22.5 + rot: 3.141592653589793 rad + pos: -40.5,15.5 parent: 2 - - uid: 15908 + - uid: 15613 components: - type: Transform - pos: -12.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,16.5 parent: 2 - - uid: 15909 + - uid: 15614 components: - type: Transform - pos: -13.5,21.5 + rot: -1.5707963267948966 rad + pos: -39.5,10.5 parent: 2 - - uid: 15910 + - uid: 15615 components: - type: Transform - pos: -11.5,25.5 + rot: -1.5707963267948966 rad + pos: -40.5,10.5 parent: 2 - - uid: 15911 + - uid: 15616 components: - type: Transform - pos: -10.5,26.5 + rot: -1.5707963267948966 rad + pos: -37.5,10.5 parent: 2 - - uid: 15912 + - uid: 15617 components: - type: Transform - pos: -6.5,23.5 + rot: -1.5707963267948966 rad + pos: -26.5,3.5 parent: 2 - - uid: 15913 + - uid: 15618 components: - type: Transform - pos: -11.5,26.5 + rot: -1.5707963267948966 rad + pos: -34.5,1.5 parent: 2 - - uid: 15914 + - uid: 15619 components: - type: Transform - pos: -7.5,26.5 + rot: -1.5707963267948966 rad + pos: -30.5,1.5 parent: 2 - - uid: 15915 + - uid: 15620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,37.5 + rot: -1.5707963267948966 rad + pos: -30.5,3.5 parent: 2 - - uid: 15916 + - uid: 15621 components: - type: Transform - pos: -16.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,17.5 parent: 2 - - uid: 15917 + - uid: 15622 components: - type: Transform - pos: -16.5,22.5 + rot: 3.141592653589793 rad + pos: -40.5,19.5 parent: 2 - - uid: 15918 + - uid: 15623 components: - type: Transform - pos: -16.5,23.5 + rot: -1.5707963267948966 rad + pos: -39.5,18.5 parent: 2 - - uid: 15919 + - uid: 15624 components: - type: Transform - pos: -16.5,24.5 + rot: 3.141592653589793 rad + pos: -40.5,21.5 parent: 2 - - uid: 15920 + - uid: 15625 components: - type: Transform - pos: -16.5,25.5 + pos: 55.5,-4.5 parent: 2 - - uid: 15921 + - uid: 15626 components: - type: Transform - pos: -16.5,26.5 + pos: 54.5,-4.5 parent: 2 - - uid: 15922 + - uid: 15627 components: - type: Transform - pos: -13.5,17.5 + pos: 54.5,-5.5 parent: 2 - - uid: 15923 + - uid: 15628 components: - type: Transform - pos: -12.5,17.5 + pos: 53.5,-5.5 parent: 2 - - uid: 15924 + - uid: 15629 components: - type: Transform - pos: -11.5,17.5 + pos: -21.5,36.5 parent: 2 - - uid: 15925 + - uid: 15630 components: - type: Transform - pos: -10.5,17.5 + pos: -13.5,-7.5 parent: 2 - - uid: 15926 + - uid: 15631 components: - type: Transform - pos: -9.5,18.5 + pos: -15.5,32.5 parent: 2 - - uid: 15927 + - uid: 15632 components: - type: Transform - pos: -10.5,18.5 + pos: -15.5,33.5 parent: 2 - - uid: 15928 + - uid: 15633 components: - type: Transform - pos: -8.5,18.5 + pos: -15.5,35.5 parent: 2 - - uid: 15929 + - uid: 15634 components: - type: Transform - pos: -7.5,18.5 + pos: -21.5,38.5 parent: 2 - - uid: 15930 + - uid: 15635 components: - type: Transform - pos: -17.5,24.5 + pos: -15.5,36.5 parent: 2 - - uid: 15931 + - uid: 15636 components: - type: Transform - pos: -18.5,24.5 + pos: -17.5,37.5 parent: 2 - - uid: 15932 + - uid: 15637 components: - type: Transform - pos: -19.5,24.5 + rot: 3.141592653589793 rad + pos: -25.5,22.5 parent: 2 - - uid: 15933 + - uid: 15638 components: - type: Transform - pos: -20.5,24.5 + pos: -21.5,31.5 parent: 2 - - uid: 15934 + - uid: 15639 components: - type: Transform - pos: -21.5,24.5 + rot: 3.141592653589793 rad + pos: -38.5,31.5 parent: 2 - - uid: 15935 + - uid: 15640 components: - type: Transform - pos: -22.5,24.5 + rot: 3.141592653589793 rad + pos: -39.5,31.5 parent: 2 - - uid: 15936 + - uid: 15641 components: - type: Transform - pos: -21.5,23.5 + pos: -13.5,-8.5 parent: 2 - - uid: 15937 + - uid: 15642 components: - type: Transform - pos: -21.5,22.5 + pos: -17.5,-8.5 parent: 2 - - uid: 15938 + - uid: 15643 components: - type: Transform - pos: -21.5,21.5 + pos: -18.5,-8.5 parent: 2 - - uid: 15939 + - uid: 15644 components: - type: Transform - pos: -21.5,20.5 + pos: -18.5,-7.5 parent: 2 - - uid: 15940 + - uid: 15645 components: - type: Transform - pos: -20.5,20.5 + pos: -18.5,-5.5 parent: 2 - - uid: 15941 + - uid: 15646 components: - type: Transform - pos: -23.5,20.5 + pos: -18.5,-6.5 parent: 2 - - uid: 15942 + - uid: 15647 components: - type: Transform - pos: -23.5,21.5 + pos: -18.5,-4.5 parent: 2 - - uid: 15943 + - uid: 15648 components: - type: Transform - pos: -25.5,23.5 + pos: -18.5,-3.5 parent: 2 - - uid: 15944 + - uid: 15649 components: - type: Transform - pos: -25.5,24.5 + pos: -18.5,-2.5 parent: 2 - - uid: 15945 + - uid: 15650 components: - type: Transform - pos: -24.5,24.5 + pos: -18.5,-1.5 parent: 2 - - uid: 15946 + - uid: 15651 components: - type: Transform - pos: -25.5,25.5 + pos: -18.5,-0.5 parent: 2 - - uid: 15947 + - uid: 15652 components: - type: Transform - pos: -25.5,26.5 + pos: -18.5,0.5 parent: 2 - - uid: 15948 + - uid: 15653 components: - type: Transform - pos: -29.5,22.5 + pos: -18.5,1.5 parent: 2 - - uid: 15949 + - uid: 15654 components: - type: Transform - pos: -26.5,26.5 + pos: -18.5,2.5 parent: 2 - - uid: 15950 + - uid: 15655 components: - type: Transform - pos: -29.5,23.5 + rot: -1.5707963267948966 rad + pos: 6.5,23.5 parent: 2 - - uid: 15951 + - uid: 15656 components: - type: Transform - pos: -29.5,24.5 + pos: -12.5,3.5 parent: 2 - - uid: 15952 + - uid: 15657 components: - type: Transform - pos: -29.5,25.5 + pos: -8.5,3.5 parent: 2 - - uid: 15953 + - uid: 15658 components: - type: Transform - pos: -29.5,26.5 + pos: -8.5,2.5 parent: 2 - - uid: 15954 + - uid: 15659 components: - type: Transform - pos: -28.5,26.5 + pos: -7.5,2.5 parent: 2 - - uid: 15955 + - uid: 15660 components: - type: Transform - pos: -27.5,26.5 + pos: -6.5,2.5 parent: 2 - - uid: 15956 + - uid: 15661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,28.5 + pos: -5.5,2.5 parent: 2 - - uid: 15957 + - uid: 15662 components: - type: Transform - pos: -29.5,20.5 + pos: -4.5,2.5 parent: 2 - - uid: 15958 + - uid: 15663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,22.5 + pos: -14.5,11.5 parent: 2 - - uid: 15959 + - uid: 15664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,22.5 + pos: -16.5,3.5 parent: 2 - - uid: 15960 + - uid: 15665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,23.5 + pos: -16.5,4.5 parent: 2 - - uid: 15961 + - uid: 15666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,24.5 + pos: -16.5,5.5 parent: 2 - - uid: 15962 + - uid: 15667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,24.5 + pos: -16.5,6.5 parent: 2 - - uid: 15963 + - uid: 15668 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,24.5 + pos: -16.5,7.5 parent: 2 - - uid: 15964 + - uid: 15669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,24.5 + pos: -16.5,9.5 parent: 2 - - uid: 15965 + - uid: 15670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,24.5 + pos: -16.5,10.5 parent: 2 - - uid: 15966 + - uid: 15671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,24.5 + pos: -15.5,10.5 parent: 2 - - uid: 15967 + - uid: 15672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,28.5 + pos: -14.5,10.5 parent: 2 - - uid: 15968 + - uid: 15673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,28.5 + pos: -19.5,9.5 parent: 2 - - uid: 15969 + - uid: 15674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,24.5 + pos: -19.5,8.5 parent: 2 - - uid: 15970 + - uid: 15675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,28.5 + pos: -19.5,6.5 parent: 2 - - uid: 15971 + - uid: 15676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,47.5 + pos: -19.5,7.5 parent: 2 - - uid: 15972 + - uid: 15677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,6.5 + pos: -19.5,4.5 parent: 2 - - uid: 15973 + - uid: 15678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,10.5 + pos: -19.5,3.5 parent: 2 - - uid: 15974 + - uid: 15679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,14.5 + pos: -19.5,5.5 parent: 2 - - uid: 15975 + - uid: 15680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,18.5 + pos: -18.5,3.5 parent: 2 - - uid: 15976 + - uid: 15681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,6.5 + pos: -17.5,3.5 parent: 2 - - uid: 15977 + - uid: 15682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 + pos: -14.5,13.5 parent: 2 - - uid: 15978 + - uid: 15683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 + pos: 5.5,1.5 parent: 2 - - uid: 15979 + - uid: 15684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 + pos: 5.5,2.5 parent: 2 - - uid: 15980 + - uid: 15685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,6.5 + pos: 5.5,3.5 parent: 2 - - uid: 15981 + - uid: 15686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 + pos: 5.5,4.5 parent: 2 - - uid: 15982 + - uid: 15687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,8.5 + pos: 5.5,5.5 parent: 2 - - uid: 15983 + - uid: 15688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,9.5 + pos: 5.5,6.5 parent: 2 - - uid: 15984 + - uid: 15689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,9.5 + pos: 5.5,7.5 parent: 2 - - uid: 15985 + - uid: 15690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 + pos: 5.5,8.5 parent: 2 - - uid: 15986 + - uid: 15691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: 6.5,8.5 parent: 2 - - uid: 15987 + - uid: 15692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,10.5 + pos: 13.5,9.5 parent: 2 - - uid: 15988 + - uid: 15693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 + pos: 8.5,8.5 parent: 2 - - uid: 15989 + - uid: 15694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,13.5 + pos: 9.5,8.5 parent: 2 - - uid: 15990 + - uid: 15695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,14.5 + pos: 10.5,9.5 parent: 2 - - uid: 15991 + - uid: 15696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 + pos: 9.5,9.5 parent: 2 - - uid: 15992 + - uid: 15697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 + pos: 11.5,9.5 parent: 2 - - uid: 15993 + - uid: 15698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,16.5 + pos: 12.5,9.5 parent: 2 - - uid: 15994 + - uid: 15699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,16.5 + pos: 13.5,10.5 parent: 2 - - uid: 15995 + - uid: 15700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,16.5 + pos: 13.5,12.5 parent: 2 - - uid: 15996 + - uid: 15701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,16.5 + pos: 13.5,13.5 parent: 2 - - uid: 15997 + - uid: 15702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,16.5 + pos: 13.5,14.5 parent: 2 - - uid: 15998 + - uid: 15703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,16.5 + pos: 13.5,11.5 parent: 2 - - uid: 15999 + - uid: 15704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,17.5 + pos: 9.5,14.5 parent: 2 - - uid: 16000 + - uid: 15705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,17.5 + pos: 5.5,13.5 parent: 2 - - uid: 16001 + - uid: 15706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,17.5 + pos: 5.5,14.5 parent: 2 - - uid: 16002 + - uid: 15707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 + pos: 4.5,18.5 parent: 2 - - uid: 16003 + - uid: 15708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,27.5 + pos: -7.5,15.5 parent: 2 - - uid: 16004 + - uid: 15709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,28.5 + pos: -7.5,14.5 parent: 2 - - uid: 16005 + - uid: 15710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,28.5 + pos: -2.5,13.5 parent: 2 - - uid: 16006 + - uid: 15711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,28.5 + pos: -2.5,14.5 parent: 2 - - uid: 16007 + - uid: 15712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,28.5 + pos: -2.5,16.5 parent: 2 - - uid: 16008 + - uid: 15713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,28.5 + pos: -2.5,15.5 parent: 2 - - uid: 16009 + - uid: 15714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,32.5 + pos: 5.5,18.5 parent: 2 - - uid: 16010 + - uid: 15715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,32.5 + pos: -2.5,17.5 parent: 2 - - uid: 16011 + - uid: 15716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,32.5 + pos: -2.5,18.5 parent: 2 - - uid: 16012 + - uid: 15717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,32.5 + pos: -1.5,18.5 parent: 2 - - uid: 16013 + - uid: 15718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,33.5 + pos: -0.5,18.5 parent: 2 - - uid: 16014 + - uid: 15719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,35.5 + pos: 0.5,18.5 parent: 2 - - uid: 16015 + - uid: 15720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,36.5 + pos: 1.5,18.5 parent: 2 - - uid: 16016 + - uid: 15721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,37.5 + pos: 2.5,18.5 parent: 2 - - uid: 16017 + - uid: 15722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,37.5 + pos: -14.5,14.5 parent: 2 - - uid: 16018 + - uid: 15723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,37.5 + pos: -14.5,15.5 parent: 2 - - uid: 16019 + - uid: 15724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,37.5 + pos: -13.5,15.5 parent: 2 - - uid: 16020 + - uid: 15725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,37.5 + pos: -11.5,15.5 parent: 2 - - uid: 16021 + - uid: 15726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,37.5 + pos: -12.5,15.5 parent: 2 - - uid: 16022 + - uid: 15727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,30.5 + pos: -10.5,15.5 parent: 2 - - uid: 16023 + - uid: 15728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 + pos: -8.5,15.5 parent: 2 - - uid: 16024 + - uid: 15729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,34.5 + pos: -9.5,15.5 parent: 2 - - uid: 16025 + - uid: 15730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,38.5 + pos: 29.5,5.5 parent: 2 - - uid: 16026 + - uid: 15731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,38.5 + pos: 29.5,6.5 parent: 2 - - uid: 16027 + - uid: 15732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 + pos: 33.5,7.5 parent: 2 - - uid: 16028 + - uid: 15733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,42.5 + pos: 33.5,6.5 parent: 2 - - uid: 16029 + - uid: 15735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,42.5 + pos: 30.5,6.5 parent: 2 - - uid: 16030 + - uid: 15736 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,42.5 + pos: 8.5,22.5 parent: 2 - - uid: 16031 + - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,43.5 + pos: 9.5,22.5 parent: 2 - - uid: 16032 + - uid: 15738 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,44.5 + pos: 10.5,22.5 parent: 2 - - uid: 16033 + - uid: 15739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,45.5 + pos: 11.5,22.5 parent: 2 - - uid: 16034 + - uid: 15740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,46.5 + pos: 11.5,23.5 parent: 2 - - uid: 16035 + - uid: 15741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,46.5 + pos: -6.5,22.5 parent: 2 - - uid: 16036 + - uid: 15742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,46.5 + pos: -8.5,26.5 parent: 2 - - uid: 16037 + - uid: 15743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,46.5 + pos: -2.5,22.5 parent: 2 - - uid: 16038 + - uid: 15744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,46.5 + pos: -3.5,22.5 parent: 2 - - uid: 16039 + - uid: 15745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,46.5 + pos: -2.5,23.5 parent: 2 - - uid: 16040 + - uid: 15746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,46.5 + pos: -2.5,24.5 parent: 2 - - uid: 16041 + - uid: 15747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,42.5 + pos: -1.5,24.5 parent: 2 - - uid: 16042 + - uid: 15748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,43.5 + pos: 5.5,25.5 parent: 2 - - uid: 16043 + - uid: 15749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,44.5 + pos: 6.5,25.5 parent: 2 - - uid: 16044 + - uid: 15750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,45.5 + pos: 8.5,25.5 parent: 2 - - uid: 16045 + - uid: 15751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,46.5 + pos: 7.5,25.5 parent: 2 - - uid: 16046 + - uid: 15752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,46.5 + pos: 5.5,26.5 parent: 2 - - uid: 16047 + - uid: 15753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,46.5 + pos: 4.5,26.5 parent: 2 - - uid: 16048 + - uid: 15754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + pos: 4.5,30.5 parent: 2 - - uid: 16049 + - uid: 15755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,46.5 + pos: 5.5,30.5 parent: 2 - - uid: 16050 + - uid: 15756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,42.5 + pos: 6.5,30.5 parent: 2 - - uid: 16051 + - uid: 15757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,42.5 + pos: 7.5,30.5 parent: 2 - - uid: 16052 + - uid: 15758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,42.5 + pos: 9.5,28.5 parent: 2 - - uid: 16053 + - uid: 15759 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,43.5 + - type: Transform + pos: 15.5,23.5 parent: 2 - - uid: 16054 + - uid: 15760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,45.5 + pos: 6.5,36.5 parent: 2 - - uid: 16055 + - uid: 15761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,41.5 + pos: 5.5,36.5 parent: 2 - - uid: 16056 + - uid: 15762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,38.5 + pos: 15.5,24.5 parent: 2 - - uid: 16057 + - uid: 15763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,39.5 + pos: 3.5,36.5 parent: 2 - - uid: 16058 + - uid: 15764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,40.5 + pos: 2.5,36.5 parent: 2 - - uid: 16059 + - uid: 15765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,41.5 + pos: 15.5,26.5 parent: 2 - - uid: 16060 + - uid: 15766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,41.5 + rot: 3.141592653589793 rad + pos: 15.5,27.5 parent: 2 - - uid: 16061 + - uid: 15767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,41.5 + pos: 14.5,27.5 parent: 2 - - uid: 16062 + - uid: 15768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,41.5 + pos: 14.5,28.5 parent: 2 - - uid: 16063 + - uid: 15769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,41.5 + pos: 14.5,29.5 parent: 2 - - uid: 16064 + - uid: 15770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,42.5 + pos: 19.5,23.5 parent: 2 - - uid: 16065 + - uid: 15771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,44.5 + pos: 19.5,22.5 parent: 2 - - uid: 16066 + - uid: 15772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,44.5 + pos: 19.5,24.5 parent: 2 - - uid: 16067 + - uid: 15773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,45.5 + pos: 19.5,26.5 parent: 2 - - uid: 16068 + - uid: 15774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,46.5 + pos: 19.5,27.5 parent: 2 - - uid: 16069 + - uid: 15775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,46.5 + rot: 3.141592653589793 rad + pos: 20.5,22.5 parent: 2 - - uid: 16070 + - uid: 15776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,46.5 + rot: 3.141592653589793 rad + pos: 23.5,22.5 parent: 2 - - uid: 16071 + - uid: 15777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,46.5 + rot: 3.141592653589793 rad + pos: 24.5,22.5 parent: 2 - - uid: 16072 + - uid: 15778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,49.5 + rot: 3.141592653589793 rad + pos: 24.5,23.5 parent: 2 - - uid: 16073 + - uid: 15779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,47.5 + rot: 3.141592653589793 rad + pos: 25.5,22.5 parent: 2 - - uid: 16074 + - uid: 15780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,47.5 + rot: 3.141592653589793 rad + pos: 24.5,26.5 parent: 2 - - uid: 16075 + - uid: 15781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,47.5 + rot: 3.141592653589793 rad + pos: 24.5,27.5 parent: 2 - - uid: 16076 + - uid: 15782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,46.5 + rot: 3.141592653589793 rad + pos: 24.5,28.5 parent: 2 - - uid: 16077 + - uid: 15783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,45.5 + rot: 3.141592653589793 rad + pos: 24.5,29.5 parent: 2 - - uid: 16078 + - uid: 15784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,44.5 + rot: 3.141592653589793 rad + pos: 20.5,27.5 parent: 2 - - uid: 16079 + - uid: 15785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,43.5 + rot: 3.141592653589793 rad + pos: 20.5,28.5 parent: 2 - - uid: 16080 + - uid: 15786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,42.5 + rot: 3.141592653589793 rad + pos: 20.5,29.5 parent: 2 - - uid: 16081 + - uid: 15787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,42.5 + rot: 3.141592653589793 rad + pos: 22.5,29.5 parent: 2 - - uid: 16082 + - uid: 15788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,42.5 + rot: 3.141592653589793 rad + pos: 27.5,22.5 parent: 2 - - uid: 16083 + - uid: 15789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,42.5 + rot: 3.141592653589793 rad + pos: 29.5,22.5 parent: 2 - - uid: 16084 + - uid: 15790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,42.5 + pos: 15.5,46.5 parent: 2 - - uid: 16085 + - uid: 15791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,43.5 + rot: 3.141592653589793 rad + pos: 29.5,23.5 parent: 2 - - uid: 16086 + - uid: 15792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,43.5 + rot: 3.141592653589793 rad + pos: 30.5,23.5 parent: 2 - - uid: 16087 + - uid: 15793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,45.5 + rot: 3.141592653589793 rad + pos: 30.5,24.5 parent: 2 - - uid: 16088 + - uid: 15794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,45.5 + rot: 3.141592653589793 rad + pos: 30.5,25.5 parent: 2 - - uid: 16089 + - uid: 15795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,45.5 + rot: 3.141592653589793 rad + pos: 30.5,26.5 parent: 2 - - uid: 16090 + - uid: 15796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,47.5 + rot: 3.141592653589793 rad + pos: 24.5,30.5 parent: 2 - - uid: 16091 + - uid: 15797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,47.5 + rot: 3.141592653589793 rad + pos: 25.5,30.5 parent: 2 - - uid: 16092 + - uid: 15798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,47.5 + rot: 3.141592653589793 rad + pos: 26.5,30.5 parent: 2 - - uid: 16093 + - uid: 15799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,47.5 + rot: 3.141592653589793 rad + pos: 27.5,30.5 parent: 2 - - uid: 16094 + - uid: 15800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,29.5 + rot: 3.141592653589793 rad + pos: 28.5,30.5 parent: 2 - - uid: 16095 + - uid: 15801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,31.5 + rot: 3.141592653589793 rad + pos: 29.5,30.5 parent: 2 - - uid: 16096 + - uid: 15802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,31.5 + rot: 3.141592653589793 rad + pos: 30.5,30.5 parent: 2 - - uid: 16097 + - uid: 15803 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,30.5 + pos: 27.5,37.5 parent: 2 - - uid: 16098 + - uid: 15804 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,29.5 + pos: 29.5,37.5 parent: 2 - - uid: 16099 + - uid: 15805 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,31.5 + pos: 26.5,37.5 parent: 2 - - uid: 16100 + - uid: 15806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,30.5 + pos: 24.5,35.5 parent: 2 - - uid: 16101 + - uid: 15807 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,29.5 + pos: 28.5,37.5 parent: 2 - - uid: 16102 + - uid: 15808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,29.5 + pos: -6.5,25.5 parent: 2 - - uid: 16103 + - uid: 15809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,29.5 + rot: 3.141592653589793 rad + pos: 20.5,36.5 parent: 2 - - uid: 16104 + - uid: 15810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,30.5 + rot: 3.141592653589793 rad + pos: 21.5,36.5 parent: 2 - - uid: 16105 + - uid: 15811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,31.5 + rot: 3.141592653589793 rad + pos: 17.5,36.5 parent: 2 - - uid: 16106 + - uid: 15812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,32.5 + rot: 3.141592653589793 rad + pos: 21.5,39.5 parent: 2 - - uid: 16107 + - uid: 15813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,35.5 + rot: 3.141592653589793 rad + pos: 21.5,40.5 parent: 2 - - uid: 16108 + - uid: 15814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,34.5 + rot: 3.141592653589793 rad + pos: 20.5,41.5 parent: 2 - - uid: 16109 + - uid: 15815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,36.5 + rot: 3.141592653589793 rad + pos: 21.5,41.5 parent: 2 - - uid: 16110 + - uid: 15816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,40.5 + rot: 3.141592653589793 rad + pos: 19.5,41.5 parent: 2 - - uid: 16111 + - uid: 15817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,41.5 + pos: 15.5,38.5 parent: 2 - - uid: 16112 + - uid: 15818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,42.5 + rot: 3.141592653589793 rad + pos: 15.5,36.5 parent: 2 - - uid: 16113 + - uid: 15819 components: - type: Transform - pos: -21.5,50.5 + rot: 3.141592653589793 rad + pos: 16.5,36.5 parent: 2 - - uid: 16114 + - uid: 15820 components: - type: Transform - pos: -20.5,50.5 + rot: 1.5707963267948966 rad + pos: 15.5,37.5 parent: 2 - - uid: 16115 + - uid: 15821 components: - type: Transform - pos: -16.5,52.5 + rot: 3.141592653589793 rad + pos: 15.5,40.5 parent: 2 - - uid: 16116 + - uid: 15822 components: - type: Transform - pos: -16.5,51.5 + rot: 3.141592653589793 rad + pos: 18.5,40.5 parent: 2 - - uid: 16117 + - uid: 15823 components: - type: Transform - pos: -16.5,53.5 + rot: 3.141592653589793 rad + pos: 16.5,40.5 parent: 2 - - uid: 16118 + - uid: 15824 components: - type: Transform - pos: -16.5,50.5 + rot: 3.141592653589793 rad + pos: 17.5,40.5 parent: 2 - - uid: 16119 + - uid: 15825 components: - type: Transform - pos: -17.5,50.5 + rot: 3.141592653589793 rad + pos: 18.5,41.5 parent: 2 - - uid: 16120 + - uid: 15826 components: - type: Transform - pos: -21.5,51.5 + rot: 1.5707963267948966 rad + pos: 10.5,37.5 parent: 2 - - uid: 16121 + - uid: 15827 components: - type: Transform - pos: -21.5,52.5 + rot: 1.5707963267948966 rad + pos: 10.5,36.5 parent: 2 - - uid: 16122 + - uid: 15828 components: - type: Transform - pos: -21.5,53.5 + rot: 1.5707963267948966 rad + pos: 11.5,36.5 parent: 2 - - uid: 16123 + - uid: 15829 components: - type: Transform - pos: -21.5,54.5 + rot: 1.5707963267948966 rad + pos: 15.5,42.5 parent: 2 - - uid: 16124 + - uid: 15830 components: - type: Transform - pos: -21.5,55.5 + rot: 1.5707963267948966 rad + pos: 14.5,42.5 parent: 2 - - uid: 16125 + - uid: 15831 components: - type: Transform - pos: -21.5,56.5 + rot: 1.5707963267948966 rad + pos: 10.5,42.5 parent: 2 - - uid: 16126 + - uid: 15832 components: - type: Transform - pos: -16.5,56.5 + rot: 1.5707963267948966 rad + pos: 10.5,41.5 parent: 2 - - uid: 16127 + - uid: 15833 components: - type: Transform - pos: -17.5,56.5 + rot: 1.5707963267948966 rad + pos: 10.5,40.5 parent: 2 - - uid: 16128 + - uid: 15834 components: - type: Transform - pos: -19.5,56.5 + rot: 1.5707963267948966 rad + pos: 10.5,39.5 parent: 2 - - uid: 16129 + - uid: 15835 components: - type: Transform - pos: -13.5,53.5 + rot: 1.5707963267948966 rad + pos: 10.5,38.5 parent: 2 - - uid: 16130 + - uid: 15836 components: - type: Transform - pos: -10.5,50.5 + rot: 1.5707963267948966 rad + pos: 9.5,42.5 parent: 2 - - uid: 16131 + - uid: 15837 components: - type: Transform - pos: -10.5,51.5 + rot: 1.5707963267948966 rad + pos: 9.5,43.5 parent: 2 - - uid: 16132 + - uid: 15838 components: - type: Transform - pos: -10.5,52.5 + rot: 1.5707963267948966 rad + pos: 9.5,44.5 parent: 2 - - uid: 16133 + - uid: 15839 components: - type: Transform - pos: -10.5,53.5 + rot: 1.5707963267948966 rad + pos: 9.5,45.5 parent: 2 - - uid: 16134 + - uid: 15840 components: - type: Transform - pos: -6.5,50.5 + rot: 1.5707963267948966 rad + pos: 9.5,46.5 parent: 2 - - uid: 16135 + - uid: 15841 components: - type: Transform - pos: -6.5,51.5 + rot: 1.5707963267948966 rad + pos: 10.5,46.5 parent: 2 - - uid: 16136 + - uid: 15842 components: - type: Transform - pos: -6.5,53.5 + pos: 14.5,43.5 parent: 2 - - uid: 16137 + - uid: 15843 components: - type: Transform - pos: -6.5,52.5 + pos: 14.5,45.5 parent: 2 - - uid: 16138 + - uid: 15844 components: - type: Transform - pos: -2.5,50.5 + pos: 14.5,46.5 parent: 2 - - uid: 16139 + - uid: 15845 components: - type: Transform - pos: -2.5,51.5 + pos: 16.5,46.5 parent: 2 - - uid: 16140 + - uid: 15846 components: - type: Transform - pos: -2.5,52.5 + pos: 17.5,46.5 parent: 2 - - uid: 16141 + - uid: 15847 components: - type: Transform - pos: -2.5,53.5 + pos: 18.5,46.5 parent: 2 - - uid: 16142 + - uid: 15848 components: - type: Transform - pos: 1.5,50.5 + pos: 19.5,46.5 parent: 2 - - uid: 16143 + - uid: 15849 components: - type: Transform - pos: 1.5,51.5 + pos: 19.5,45.5 parent: 2 - - uid: 16144 + - uid: 15850 components: - type: Transform - pos: 1.5,53.5 + pos: 19.5,44.5 parent: 2 - - uid: 16145 + - uid: 15851 components: - type: Transform - pos: 1.5,52.5 + pos: 19.5,43.5 parent: 2 - - uid: 16146 + - uid: 15852 components: - type: Transform - pos: -25.5,50.5 + pos: 19.5,42.5 parent: 2 - - uid: 16147 + - uid: 15853 components: - type: Transform - pos: -25.5,51.5 + pos: 7.5,42.5 parent: 2 - - uid: 16148 + - uid: 15854 components: - type: Transform - pos: -25.5,52.5 + pos: 6.5,42.5 parent: 2 - - uid: 16149 + - uid: 15855 components: - type: Transform - pos: -25.5,53.5 + pos: 4.5,42.5 parent: 2 - - uid: 16150 + - uid: 15856 components: - type: Transform - pos: -25.5,54.5 + pos: 3.5,42.5 parent: 2 - - uid: 16151 + - uid: 15857 components: - type: Transform - pos: -25.5,55.5 + pos: 2.5,42.5 parent: 2 - - uid: 16152 + - uid: 15858 components: - type: Transform - pos: -25.5,56.5 + pos: 2.5,41.5 parent: 2 - - uid: 16153 + - uid: 15859 components: - type: Transform - pos: -25.5,49.5 + pos: 2.5,39.5 parent: 2 - - uid: 16154 + - uid: 15860 components: - type: Transform - pos: -26.5,49.5 + pos: 2.5,37.5 parent: 2 - - uid: 16155 + - uid: 15861 components: - type: Transform - pos: -28.5,49.5 + pos: 2.5,43.5 parent: 2 - - uid: 16156 + - uid: 15862 components: - type: Transform - pos: -27.5,49.5 + pos: 2.5,44.5 parent: 2 - - uid: 16157 + - uid: 15863 components: - type: Transform - pos: -29.5,49.5 + pos: 3.5,44.5 parent: 2 - - uid: 16158 + - uid: 15864 components: - type: Transform - pos: -29.5,50.5 + pos: 3.5,45.5 parent: 2 - - uid: 16159 + - uid: 15865 components: - type: Transform - pos: -30.5,50.5 + pos: 3.5,46.5 parent: 2 - - uid: 16160 + - uid: 15866 components: - type: Transform - pos: -31.5,50.5 + pos: 4.5,46.5 parent: 2 - - uid: 16161 + - uid: 15867 components: - type: Transform - pos: -32.5,50.5 + pos: 5.5,46.5 parent: 2 - - uid: 16162 + - uid: 15868 components: - type: Transform - pos: -33.5,50.5 + pos: 8.5,46.5 parent: 2 - - uid: 16163 + - uid: 15869 components: - type: Transform - pos: -33.5,51.5 + pos: 20.5,46.5 parent: 2 - - uid: 16164 + - uid: 15870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,53.5 + pos: 20.5,42.5 parent: 2 - - uid: 16165 + - uid: 15871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,54.5 + pos: 21.5,42.5 parent: 2 - - uid: 16166 + - uid: 15872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,54.5 + pos: 22.5,42.5 parent: 2 - - uid: 16167 + - uid: 15873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,54.5 + pos: 22.5,45.5 parent: 2 - - uid: 16168 + - uid: 15874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,54.5 + pos: 22.5,43.5 parent: 2 - - uid: 16169 + - uid: 15875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,55.5 + pos: 22.5,46.5 parent: 2 - - uid: 16170 + - uid: 15876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,56.5 + rot: 1.5707963267948966 rad + pos: 24.5,42.5 parent: 2 - - uid: 16171 + - uid: 15877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,56.5 + rot: 1.5707963267948966 rad + pos: 24.5,41.5 parent: 2 - - uid: 16172 + - uid: 15878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,56.5 + rot: 1.5707963267948966 rad + pos: 24.5,40.5 parent: 2 - - uid: 16173 + - uid: 15879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,56.5 + rot: 1.5707963267948966 rad + pos: 24.5,39.5 parent: 2 - - uid: 16174 + - uid: 15880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,54.5 + rot: 1.5707963267948966 rad + pos: 24.5,38.5 parent: 2 - - uid: 16175 + - uid: 15881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,55.5 + rot: 1.5707963267948966 rad + pos: 24.5,37.5 parent: 2 - - uid: 16176 + - uid: 15882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,55.5 + rot: 1.5707963267948966 rad + pos: 23.5,46.5 parent: 2 - - uid: 16177 + - uid: 15883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,56.5 + rot: 1.5707963267948966 rad + pos: 24.5,46.5 parent: 2 - - uid: 16178 + - uid: 15884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,54.5 + rot: 1.5707963267948966 rad + pos: 25.5,46.5 parent: 2 - - uid: 16179 + - uid: 15885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,53.5 + rot: 1.5707963267948966 rad + pos: 25.5,45.5 parent: 2 - - uid: 16180 + - uid: 15886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,53.5 + rot: 1.5707963267948966 rad + pos: 25.5,42.5 parent: 2 - - uid: 16181 + - uid: 15887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,54.5 + rot: 1.5707963267948966 rad + pos: 25.5,43.5 parent: 2 - - uid: 16182 + - uid: 15888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,55.5 + rot: 1.5707963267948966 rad + pos: 26.5,46.5 parent: 2 - - uid: 16183 + - uid: 15889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,55.5 + rot: 1.5707963267948966 rad + pos: 27.5,46.5 parent: 2 - - uid: 16184 + - uid: 15890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,55.5 + rot: 1.5707963267948966 rad + pos: 28.5,46.5 parent: 2 - - uid: 16185 + - uid: 15891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,56.5 + rot: 1.5707963267948966 rad + pos: 29.5,46.5 parent: 2 - - uid: 16186 + - uid: 15892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,57.5 + rot: 1.5707963267948966 rad + pos: 29.5,45.5 parent: 2 - - uid: 16187 + - uid: 15893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,58.5 + rot: 1.5707963267948966 rad + pos: 30.5,45.5 parent: 2 - - uid: 16188 + - uid: 15894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,59.5 + rot: 1.5707963267948966 rad + pos: 30.5,38.5 parent: 2 - - uid: 16189 + - uid: 15895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,58.5 + rot: 1.5707963267948966 rad + pos: 30.5,39.5 parent: 2 - - uid: 16190 + - uid: 15896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,60.5 + rot: 1.5707963267948966 rad + pos: 30.5,40.5 parent: 2 - - uid: 16191 + - uid: 15897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,61.5 + rot: 1.5707963267948966 rad + pos: 30.5,41.5 parent: 2 - - uid: 16192 + - uid: 15898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,59.5 + rot: 1.5707963267948966 rad + pos: 30.5,42.5 parent: 2 - - uid: 16193 + - uid: 15899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,59.5 + rot: 1.5707963267948966 rad + pos: 30.5,43.5 parent: 2 - - uid: 16194 + - uid: 15900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,59.5 + rot: 1.5707963267948966 rad + pos: 30.5,44.5 parent: 2 - - uid: 16195 + - uid: 15901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,59.5 + rot: 1.5707963267948966 rad + pos: 30.5,37.5 parent: 2 - - uid: 16196 + - uid: 15903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,59.5 + pos: -12.5,26.5 parent: 2 - - uid: 16197 + - uid: 15904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,59.5 + pos: -6.5,26.5 parent: 2 - - uid: 16198 + - uid: 15905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,59.5 + pos: -6.5,18.5 parent: 2 - - uid: 16199 + - uid: 15906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,60.5 + pos: -11.5,21.5 parent: 2 - - uid: 16200 + - uid: 15907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,62.5 + pos: -11.5,22.5 parent: 2 - - uid: 16201 + - uid: 15908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,61.5 + pos: -12.5,21.5 parent: 2 - - uid: 16202 + - uid: 15909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,62.5 + pos: -13.5,21.5 parent: 2 - - uid: 16203 + - uid: 15910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,60.5 + pos: -11.5,25.5 parent: 2 - - uid: 16204 + - uid: 15911 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,61.5 + pos: -10.5,26.5 parent: 2 - - uid: 16205 + - uid: 15912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,62.5 + pos: -6.5,23.5 parent: 2 - - uid: 16206 + - uid: 15913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,62.5 + pos: -11.5,26.5 parent: 2 - - uid: 16207 + - uid: 15914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,60.5 + pos: -7.5,26.5 parent: 2 - - uid: 16208 + - uid: 15915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,61.5 + rot: 1.5707963267948966 rad + pos: 25.5,37.5 parent: 2 - - uid: 16209 + - uid: 15916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,62.5 + pos: -16.5,21.5 parent: 2 - - uid: 16210 + - uid: 15917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,63.5 + pos: -16.5,22.5 parent: 2 - - uid: 16211 + - uid: 15918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,59.5 + pos: -16.5,23.5 parent: 2 - - uid: 16212 + - uid: 15919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,59.5 + pos: -16.5,24.5 parent: 2 - - uid: 16213 + - uid: 15920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,60.5 + pos: -16.5,25.5 parent: 2 - - uid: 16214 + - uid: 15921 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,61.5 + pos: -16.5,26.5 parent: 2 - - uid: 16215 + - uid: 15922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,62.5 + pos: -13.5,17.5 parent: 2 - - uid: 16216 + - uid: 15923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,62.5 + pos: -12.5,17.5 parent: 2 - - uid: 16217 + - uid: 15924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,62.5 + pos: -11.5,17.5 parent: 2 - - uid: 16218 + - uid: 15925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,63.5 + pos: -10.5,17.5 parent: 2 - - uid: 16219 + - uid: 15926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,64.5 + pos: -9.5,18.5 parent: 2 - - uid: 16220 + - uid: 15927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,65.5 + pos: -10.5,18.5 parent: 2 - - uid: 16221 + - uid: 15928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,66.5 + pos: -8.5,18.5 parent: 2 - - uid: 16222 + - uid: 15929 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,67.5 + pos: -7.5,18.5 parent: 2 - - uid: 16223 + - uid: 15930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,68.5 + pos: -17.5,24.5 parent: 2 - - uid: 16224 + - uid: 15931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,69.5 + pos: -18.5,24.5 parent: 2 - - uid: 16227 + - uid: 15932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,66.5 + pos: -19.5,24.5 parent: 2 - - uid: 16228 + - uid: 15933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,65.5 + pos: -20.5,24.5 parent: 2 - - uid: 16229 + - uid: 15934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,64.5 + pos: -21.5,24.5 parent: 2 - - uid: 16230 + - uid: 15935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,72.5 + pos: -22.5,24.5 parent: 2 - - uid: 16231 + - uid: 15936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,71.5 + pos: -21.5,23.5 parent: 2 - - uid: 16232 + - uid: 15937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,70.5 + pos: -21.5,22.5 parent: 2 - - uid: 16233 + - uid: 15938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,71.5 + pos: -21.5,21.5 parent: 2 - - uid: 16234 + - uid: 15939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,72.5 + pos: -21.5,20.5 parent: 2 - - uid: 16235 + - uid: 15940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,72.5 + pos: -20.5,20.5 parent: 2 - - uid: 16236 + - uid: 15941 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,71.5 + pos: -23.5,20.5 parent: 2 - - uid: 16237 + - uid: 15942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,71.5 + pos: -23.5,21.5 parent: 2 - - uid: 16238 + - uid: 15943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,71.5 + pos: -25.5,23.5 parent: 2 - - uid: 16239 + - uid: 15944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,71.5 + pos: -25.5,24.5 parent: 2 - - uid: 16240 + - uid: 15945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,71.5 + pos: -24.5,24.5 parent: 2 - - uid: 16241 + - uid: 15946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,71.5 + pos: -25.5,25.5 parent: 2 - - uid: 16242 + - uid: 15947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,71.5 + pos: -25.5,26.5 parent: 2 - - uid: 16243 + - uid: 15948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,71.5 + pos: -29.5,22.5 parent: 2 - - uid: 16244 + - uid: 15949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,70.5 + pos: -26.5,26.5 parent: 2 - - uid: 16245 + - uid: 15950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,69.5 + pos: -29.5,23.5 parent: 2 - - uid: 16246 + - uid: 15951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,70.5 + pos: -29.5,24.5 parent: 2 - - uid: 16247 + - uid: 15952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,69.5 + pos: -29.5,25.5 parent: 2 - - uid: 16248 + - uid: 15953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,69.5 + pos: -29.5,26.5 parent: 2 - - uid: 16249 + - uid: 15954 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,69.5 + pos: -28.5,26.5 parent: 2 - - uid: 16250 + - uid: 15955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,70.5 + pos: -27.5,26.5 parent: 2 - - uid: 16251 + - uid: 15956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,70.5 + rot: 1.5707963267948966 rad + pos: -29.5,28.5 parent: 2 - - uid: 16252 + - uid: 15957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,69.5 + pos: -29.5,20.5 parent: 2 - - uid: 16253 + - uid: 15958 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,69.5 + pos: -33.5,22.5 parent: 2 - - uid: 16254 + - uid: 15959 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,69.5 + pos: -34.5,22.5 parent: 2 - - uid: 16255 + - uid: 15960 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,71.5 + pos: -34.5,23.5 parent: 2 - - uid: 16256 + - uid: 15961 components: - type: Transform - pos: 11.5,79.5 + rot: 3.141592653589793 rad + pos: -34.5,24.5 parent: 2 - - uid: 16257 + - uid: 15962 components: - type: Transform - pos: 11.5,76.5 + rot: 3.141592653589793 rad + pos: -35.5,24.5 parent: 2 - - uid: 16258 + - uid: 15963 components: - type: Transform - pos: 11.5,78.5 + rot: 3.141592653589793 rad + pos: -36.5,24.5 parent: 2 - - uid: 16259 + - uid: 15964 components: - type: Transform - pos: 15.5,79.5 + rot: 3.141592653589793 rad + pos: -37.5,24.5 parent: 2 - - uid: 16260 + - uid: 15965 components: - type: Transform - pos: 12.5,76.5 + rot: 3.141592653589793 rad + pos: -38.5,24.5 parent: 2 - - uid: 16261 + - uid: 15966 components: - type: Transform - pos: 13.5,77.5 + rot: 3.141592653589793 rad + pos: -39.5,24.5 parent: 2 - - uid: 16262 + - uid: 15967 components: - type: Transform - pos: 14.5,79.5 + rot: 3.141592653589793 rad + pos: -37.5,28.5 parent: 2 - - uid: 16263 + - uid: 15968 components: - type: Transform - pos: 17.5,79.5 + rot: 3.141592653589793 rad + pos: -39.5,28.5 parent: 2 - - uid: 16264 + - uid: 15969 components: - type: Transform - pos: 11.5,77.5 + rot: 3.141592653589793 rad + pos: -40.5,24.5 parent: 2 - - uid: 16265 + - uid: 15970 components: - type: Transform - pos: 13.5,76.5 + rot: 3.141592653589793 rad + pos: -40.5,28.5 parent: 2 - - uid: 16266 + - uid: 15971 components: - type: Transform - pos: 13.5,79.5 + rot: 1.5707963267948966 rad + pos: -17.5,47.5 parent: 2 - - uid: 16267 + - uid: 15972 components: - type: Transform - pos: 16.5,79.5 + rot: 3.141592653589793 rad + pos: -34.5,6.5 parent: 2 - - uid: 16268 + - uid: 15973 components: - type: Transform - pos: 13.5,78.5 + rot: 3.141592653589793 rad + pos: -34.5,10.5 parent: 2 - - uid: 16269 + - uid: 15974 components: - type: Transform - pos: 0.5,79.5 + rot: 3.141592653589793 rad + pos: -34.5,14.5 parent: 2 - - uid: 16270 + - uid: 15975 components: - type: Transform - pos: 6.5,79.5 + rot: 3.141592653589793 rad + pos: -34.5,18.5 parent: 2 - - uid: 16271 + - uid: 15976 components: - type: Transform - pos: 6.5,80.5 + rot: 3.141592653589793 rad + pos: -30.5,6.5 parent: 2 - - uid: 16272 + - uid: 15977 components: - type: Transform - pos: 10.5,80.5 + rot: 3.141592653589793 rad + pos: -26.5,6.5 parent: 2 - - uid: 16273 + - uid: 15978 components: - type: Transform - pos: 10.5,79.5 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 - - uid: 16274 + - uid: 15979 components: - type: Transform - pos: -1.5,76.5 + rot: 1.5707963267948966 rad + pos: -23.5,6.5 parent: 2 - - uid: 16275 + - uid: 15980 components: - type: Transform - pos: -2.5,76.5 + rot: 1.5707963267948966 rad + pos: -21.5,6.5 parent: 2 - - uid: 16276 + - uid: 15981 components: - type: Transform - pos: -2.5,72.5 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 parent: 2 - - uid: 16277 + - uid: 15982 components: - type: Transform - pos: 5.5,79.5 + rot: 1.5707963267948966 rad + pos: -25.5,8.5 parent: 2 - - uid: 16278 + - uid: 15983 components: - type: Transform - pos: -0.5,76.5 + rot: 1.5707963267948966 rad + pos: -25.5,9.5 parent: 2 - - uid: 16279 + - uid: 15984 components: - type: Transform - pos: -1.5,78.5 + rot: 1.5707963267948966 rad + pos: -24.5,9.5 parent: 2 - - uid: 16280 + - uid: 15985 components: - type: Transform - pos: -0.5,78.5 + rot: 1.5707963267948966 rad + pos: -23.5,9.5 parent: 2 - - uid: 16281 + - uid: 15986 components: - type: Transform - pos: -0.5,79.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 16282 + - uid: 15987 components: - type: Transform - pos: -2.5,78.5 + rot: 3.141592653589793 rad + pos: -19.5,10.5 parent: 2 - - uid: 16283 + - uid: 15988 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,70.5 + pos: -23.5,12.5 parent: 2 - - uid: 16284 + - uid: 15989 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,69.5 + pos: -23.5,13.5 parent: 2 - - uid: 16285 + - uid: 15990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,68.5 + pos: -23.5,14.5 parent: 2 - - uid: 16286 + - uid: 15991 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,67.5 + pos: -23.5,15.5 parent: 2 - - uid: 16287 + - uid: 15992 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,66.5 + pos: -23.5,16.5 parent: 2 - - uid: 16288 + - uid: 15993 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,65.5 + pos: -21.5,16.5 parent: 2 - - uid: 16289 + - uid: 15994 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,65.5 + pos: -20.5,16.5 parent: 2 - - uid: 16290 + - uid: 15995 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,65.5 + pos: -19.5,16.5 parent: 2 - - uid: 16291 + - uid: 15996 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,59.5 + pos: -18.5,16.5 parent: 2 - - uid: 16292 + - uid: 15997 components: - type: Transform - pos: -15.5,63.5 + rot: 1.5707963267948966 rad + pos: -17.5,16.5 parent: 2 - - uid: 16293 + - uid: 15998 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,64.5 + pos: -16.5,16.5 parent: 2 - - uid: 16294 + - uid: 15999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,63.5 + pos: -16.5,17.5 parent: 2 - - uid: 16295 + - uid: 16000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,62.5 + pos: -15.5,17.5 parent: 2 - - uid: 16296 + - uid: 16001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,62.5 + pos: -14.5,17.5 parent: 2 - - uid: 16297 + - uid: 16002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,61.5 + pos: -1.5,26.5 parent: 2 - - uid: 16298 + - uid: 16003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,60.5 + pos: -1.5,27.5 parent: 2 - - uid: 16299 + - uid: 16004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,59.5 + pos: -1.5,28.5 parent: 2 - - uid: 16300 + - uid: 16005 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,59.5 + pos: -2.5,28.5 parent: 2 - - uid: 16301 + - uid: 16006 components: - type: Transform - pos: -15.5,65.5 + rot: 1.5707963267948966 rad + pos: -6.5,28.5 parent: 2 - - uid: 16302 + - uid: 16007 components: - type: Transform - pos: -15.5,64.5 + rot: 1.5707963267948966 rad + pos: -5.5,28.5 parent: 2 - - uid: 16303 + - uid: 16008 components: - type: Transform - pos: -13.5,63.5 + rot: 1.5707963267948966 rad + pos: -3.5,28.5 parent: 2 - - uid: 16304 + - uid: 16009 components: - type: Transform - pos: -12.5,65.5 + rot: 1.5707963267948966 rad + pos: -4.5,32.5 parent: 2 - - uid: 16305 + - uid: 16010 components: - type: Transform - pos: -13.5,66.5 + rot: 1.5707963267948966 rad + pos: -6.5,32.5 parent: 2 - - uid: 16306 + - uid: 16011 components: - type: Transform - pos: -13.5,65.5 + rot: 1.5707963267948966 rad + pos: -1.5,32.5 parent: 2 - - uid: 16308 + - uid: 16012 components: - type: Transform - pos: -13.5,67.5 + rot: 1.5707963267948966 rad + pos: -7.5,32.5 parent: 2 - - uid: 16309 + - uid: 16013 components: - type: Transform - pos: -13.5,62.5 + rot: 1.5707963267948966 rad + pos: -7.5,33.5 parent: 2 - - uid: 16310 + - uid: 16014 components: - type: Transform - pos: -13.5,59.5 + rot: 1.5707963267948966 rad + pos: -7.5,35.5 parent: 2 - - uid: 16311 + - uid: 16015 components: - type: Transform - pos: -19.5,59.5 + rot: 1.5707963267948966 rad + pos: -7.5,36.5 parent: 2 - - uid: 16312 + - uid: 16016 components: - type: Transform - pos: -10.5,65.5 + rot: 1.5707963267948966 rad + pos: -7.5,37.5 parent: 2 - - uid: 16313 + - uid: 16017 components: - type: Transform - pos: -9.5,65.5 + rot: 1.5707963267948966 rad + pos: -6.5,37.5 parent: 2 - - uid: 16314 + - uid: 16018 components: - type: Transform - pos: -8.5,65.5 + rot: 1.5707963267948966 rad + pos: -5.5,37.5 parent: 2 - - uid: 16315 + - uid: 16019 components: - type: Transform - pos: -8.5,66.5 + rot: 1.5707963267948966 rad + pos: -3.5,37.5 parent: 2 - - uid: 16316 + - uid: 16020 components: - type: Transform - pos: -8.5,68.5 + rot: 1.5707963267948966 rad + pos: -2.5,37.5 parent: 2 - - uid: 16317 + - uid: 16021 components: - type: Transform - pos: -8.5,64.5 + rot: 1.5707963267948966 rad + pos: -1.5,37.5 parent: 2 - - uid: 16318 + - uid: 16022 components: - type: Transform - pos: -8.5,63.5 + rot: 1.5707963267948966 rad + pos: -12.5,30.5 parent: 2 - - uid: 16319 + - uid: 16023 components: - type: Transform - pos: -9.5,63.5 + rot: 1.5707963267948966 rad + pos: -11.5,30.5 parent: 2 - - uid: 16320 + - uid: 16024 components: - type: Transform - pos: -10.5,63.5 + rot: 1.5707963267948966 rad + pos: -12.5,34.5 parent: 2 - - uid: 16321 + - uid: 16025 components: - type: Transform - pos: -8.5,62.5 + rot: 1.5707963267948966 rad + pos: -12.5,38.5 parent: 2 - - uid: 16322 + - uid: 16026 components: - type: Transform - pos: -8.5,61.5 + rot: 1.5707963267948966 rad + pos: -11.5,38.5 parent: 2 - - uid: 16323 + - uid: 16027 components: - type: Transform - pos: -10.5,61.5 + rot: 1.5707963267948966 rad + pos: -18.5,47.5 parent: 2 - - uid: 16324 + - uid: 16028 components: - type: Transform - pos: -9.5,61.5 + rot: 1.5707963267948966 rad + pos: -11.5,42.5 parent: 2 - - uid: 16325 + - uid: 16029 components: - type: Transform - pos: -10.5,60.5 + rot: 1.5707963267948966 rad + pos: -12.5,42.5 parent: 2 - - uid: 16326 + - uid: 16030 components: - type: Transform - pos: -10.5,58.5 + rot: 1.5707963267948966 rad + pos: -17.5,42.5 parent: 2 - - uid: 16327 + - uid: 16031 components: - type: Transform - pos: -10.5,57.5 + rot: 1.5707963267948966 rad + pos: -17.5,43.5 parent: 2 - - uid: 16328 + - uid: 16032 components: - type: Transform - pos: -9.5,57.5 + rot: 1.5707963267948966 rad + pos: -17.5,44.5 parent: 2 - - uid: 16329 + - uid: 16033 components: - type: Transform - pos: -8.5,57.5 + rot: 1.5707963267948966 rad + pos: -17.5,45.5 parent: 2 - - uid: 16330 + - uid: 16034 components: - type: Transform - pos: -7.5,57.5 + rot: 1.5707963267948966 rad + pos: -17.5,46.5 parent: 2 - - uid: 16331 + - uid: 16035 components: - type: Transform - pos: -6.5,57.5 + rot: 1.5707963267948966 rad + pos: -16.5,46.5 parent: 2 - - uid: 16332 + - uid: 16036 components: - type: Transform - pos: -6.5,58.5 + rot: 1.5707963267948966 rad + pos: -15.5,46.5 parent: 2 - - uid: 16333 + - uid: 16037 components: - type: Transform - pos: -6.5,59.5 + rot: 1.5707963267948966 rad + pos: -14.5,46.5 parent: 2 - - uid: 16334 + - uid: 16038 components: - type: Transform - pos: -6.5,60.5 + rot: 1.5707963267948966 rad + pos: -13.5,46.5 parent: 2 - - uid: 16335 + - uid: 16039 components: - type: Transform - pos: -6.5,61.5 + rot: 1.5707963267948966 rad + pos: -12.5,46.5 parent: 2 - - uid: 16336 + - uid: 16040 components: - type: Transform - pos: -7.5,61.5 + rot: 1.5707963267948966 rad + pos: -11.5,46.5 parent: 2 - - uid: 16337 + - uid: 16041 components: - type: Transform - pos: -5.5,61.5 + rot: 1.5707963267948966 rad + pos: -9.5,42.5 parent: 2 - - uid: 16338 + - uid: 16042 components: - type: Transform - pos: -4.5,61.5 + rot: 1.5707963267948966 rad + pos: -9.5,43.5 parent: 2 - - uid: 16339 + - uid: 16043 components: - type: Transform - pos: -3.5,61.5 + rot: 1.5707963267948966 rad + pos: -9.5,44.5 parent: 2 - - uid: 16340 + - uid: 16044 components: - type: Transform - pos: -2.5,61.5 + rot: 1.5707963267948966 rad + pos: -9.5,45.5 parent: 2 - - uid: 16341 + - uid: 16045 components: - type: Transform - pos: -2.5,60.5 + rot: 1.5707963267948966 rad + pos: -9.5,46.5 parent: 2 - - uid: 16342 + - uid: 16046 components: - type: Transform - pos: -2.5,59.5 + rot: 1.5707963267948966 rad + pos: -10.5,46.5 parent: 2 - - uid: 16343 + - uid: 16047 components: - type: Transform - pos: -2.5,58.5 + rot: 1.5707963267948966 rad + pos: -8.5,46.5 parent: 2 - - uid: 16344 + - uid: 16048 components: - type: Transform - pos: -2.5,57.5 + rot: 1.5707963267948966 rad + pos: -7.5,46.5 parent: 2 - - uid: 16345 + - uid: 16049 components: - type: Transform - pos: -7.5,65.5 + rot: 1.5707963267948966 rad + pos: -6.5,46.5 parent: 2 - - uid: 16346 + - uid: 16050 components: - type: Transform - pos: -4.5,65.5 + rot: 1.5707963267948966 rad + pos: -8.5,42.5 parent: 2 - - uid: 16347 + - uid: 16051 components: - type: Transform - pos: -4.5,66.5 + rot: 1.5707963267948966 rad + pos: -7.5,42.5 parent: 2 - - uid: 16348 + - uid: 16052 components: - type: Transform - pos: -4.5,68.5 + rot: 1.5707963267948966 rad + pos: -6.5,42.5 parent: 2 - - uid: 16349 + - uid: 16053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,65.5 + pos: -6.5,43.5 parent: 2 - - uid: 16350 + - uid: 16054 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,65.5 + pos: -6.5,45.5 parent: 2 - - uid: 16351 + - uid: 16055 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,66.5 + pos: -6.5,41.5 parent: 2 - - uid: 16352 + - uid: 16056 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,67.5 + pos: -1.5,38.5 parent: 2 - - uid: 16353 + - uid: 16057 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,68.5 + pos: -1.5,39.5 parent: 2 - - uid: 16354 + - uid: 16058 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,69.5 + pos: -1.5,40.5 parent: 2 - - uid: 16355 + - uid: 16059 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,61.5 + pos: -1.5,41.5 parent: 2 - - uid: 16356 + - uid: 16060 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,61.5 + pos: -2.5,41.5 parent: 2 - - uid: 16357 + - uid: 16061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,61.5 + pos: -3.5,41.5 parent: 2 - - uid: 16358 + - uid: 16062 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,61.5 + pos: -4.5,41.5 parent: 2 - - uid: 16359 + - uid: 16063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,61.5 + pos: -5.5,41.5 parent: 2 - - uid: 16360 + - uid: 16064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,60.5 + pos: -1.5,42.5 parent: 2 - - uid: 16361 + - uid: 16065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,56.5 + pos: -1.5,44.5 parent: 2 - - uid: 16362 + - uid: 16066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,56.5 + pos: -2.5,44.5 parent: 2 - - uid: 16363 + - uid: 16067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,56.5 + pos: -2.5,45.5 parent: 2 - - uid: 16364 + - uid: 16068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,56.5 + pos: -2.5,46.5 parent: 2 - - uid: 16365 + - uid: 16069 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,57.5 + pos: -3.5,46.5 parent: 2 - - uid: 16366 + - uid: 16070 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,55.5 + pos: -4.5,46.5 parent: 2 - - uid: 16367 + - uid: 16071 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,54.5 + pos: -5.5,46.5 parent: 2 - - uid: 16368 + - uid: 16072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,54.5 + pos: -17.5,49.5 parent: 2 - - uid: 16369 + - uid: 16073 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,55.5 + pos: -22.5,47.5 parent: 2 - - uid: 16370 + - uid: 16074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,54.5 + pos: -23.5,47.5 parent: 2 - - uid: 16371 + - uid: 16075 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,75.5 + pos: -24.5,47.5 parent: 2 - - uid: 16372 + - uid: 16076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,75.5 + pos: -23.5,46.5 parent: 2 - - uid: 16373 + - uid: 16077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,74.5 + pos: -23.5,45.5 parent: 2 - - uid: 16374 + - uid: 16078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 + rot: 1.5707963267948966 rad + pos: -23.5,44.5 parent: 2 - - uid: 16375 + - uid: 16079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,8.5 + rot: 1.5707963267948966 rad + pos: -23.5,43.5 parent: 2 - - uid: 16376 + - uid: 16080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 + rot: 1.5707963267948966 rad + pos: -23.5,42.5 parent: 2 - - uid: 16377 + - uid: 16081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 + rot: 1.5707963267948966 rad + pos: -21.5,42.5 parent: 2 - - uid: 16378 + - uid: 16082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,11.5 + rot: 1.5707963267948966 rad + pos: -22.5,42.5 parent: 2 - - uid: 16379 + - uid: 16083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 + rot: 1.5707963267948966 rad + pos: -19.5,42.5 parent: 2 - - uid: 16380 + - uid: 16084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,8.5 + rot: 1.5707963267948966 rad + pos: -20.5,42.5 parent: 2 - - uid: 16381 + - uid: 16085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 + rot: 1.5707963267948966 rad + pos: -27.5,43.5 parent: 2 - - uid: 16382 + - uid: 16086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,8.5 + rot: 1.5707963267948966 rad + pos: -28.5,43.5 parent: 2 - - uid: 16383 + - uid: 16087 components: - type: Transform - pos: 30.5,12.5 + rot: 1.5707963267948966 rad + pos: -28.5,45.5 parent: 2 - - uid: 16384 + - uid: 16088 components: - type: Transform - pos: 31.5,12.5 + rot: 1.5707963267948966 rad + pos: -27.5,45.5 parent: 2 - - uid: 16385 + - uid: 16089 components: - type: Transform - pos: 31.5,13.5 + rot: 1.5707963267948966 rad + pos: -29.5,45.5 parent: 2 - - uid: 16386 + - uid: 16090 components: - type: Transform - pos: 31.5,14.5 + rot: 1.5707963267948966 rad + pos: -26.5,47.5 parent: 2 - - uid: 16387 + - uid: 16091 components: - type: Transform - pos: 31.5,16.5 + rot: 1.5707963267948966 rad + pos: -27.5,47.5 parent: 2 - - uid: 16388 + - uid: 16092 components: - type: Transform - pos: 31.5,15.5 + rot: 1.5707963267948966 rad + pos: -28.5,47.5 parent: 2 - - uid: 16389 + - uid: 16093 components: - type: Transform - pos: 31.5,17.5 + rot: 1.5707963267948966 rad + pos: -29.5,47.5 parent: 2 - - uid: 16390 + - uid: 16094 components: - type: Transform - pos: 32.5,17.5 + rot: 1.5707963267948966 rad + pos: -37.5,29.5 parent: 2 - - uid: 16391 + - uid: 16095 components: - type: Transform - pos: 33.5,17.5 + rot: 1.5707963267948966 rad + pos: -36.5,31.5 parent: 2 - - uid: 16392 + - uid: 16096 components: - type: Transform - pos: 34.5,17.5 + rot: 1.5707963267948966 rad + pos: -32.5,31.5 parent: 2 - - uid: 16393 + - uid: 16097 components: - type: Transform - pos: 34.5,18.5 + rot: 1.5707963267948966 rad + pos: -32.5,30.5 parent: 2 - - uid: 16394 + - uid: 16098 components: - type: Transform - pos: 34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -32.5,29.5 parent: 2 - - uid: 16395 + - uid: 16099 components: - type: Transform - pos: 7.5,1.5 + rot: 1.5707963267948966 rad + pos: -30.5,31.5 parent: 2 - - uid: 16396 + - uid: 16100 components: - type: Transform - pos: 8.5,1.5 + rot: 1.5707963267948966 rad + pos: -30.5,30.5 parent: 2 - - uid: 16397 + - uid: 16101 components: - type: Transform - pos: 8.5,0.5 + rot: 1.5707963267948966 rad + pos: -30.5,29.5 parent: 2 - - uid: 16398 + - uid: 16102 components: - type: Transform - pos: 10.5,0.5 + rot: 1.5707963267948966 rad + pos: -29.5,29.5 parent: 2 - - uid: 16399 + - uid: 16103 components: - type: Transform - pos: 11.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,29.5 parent: 2 - - uid: 16400 + - uid: 16104 components: - type: Transform - pos: 13.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,30.5 parent: 2 - - uid: 16401 + - uid: 16105 components: - type: Transform - pos: 14.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,31.5 parent: 2 - - uid: 16402 + - uid: 16106 components: - type: Transform - pos: 16.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,32.5 parent: 2 - - uid: 16403 + - uid: 16107 components: - type: Transform - pos: 17.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,35.5 parent: 2 - - uid: 16404 + - uid: 16108 components: - type: Transform - pos: 27.5,-1.5 + rot: 1.5707963267948966 rad + pos: -27.5,34.5 parent: 2 - - uid: 16405 + - uid: 16109 components: - type: Transform - pos: 21.5,3.5 + rot: 1.5707963267948966 rad + pos: -27.5,36.5 parent: 2 - - uid: 16406 + - uid: 16110 components: - type: Transform - pos: 22.5,3.5 + rot: 1.5707963267948966 rad + pos: -27.5,40.5 parent: 2 - - uid: 16407 + - uid: 16111 components: - type: Transform - pos: 22.5,4.5 + rot: 1.5707963267948966 rad + pos: -27.5,41.5 parent: 2 - - uid: 16408 + - uid: 16112 components: - type: Transform - pos: 21.5,2.5 + rot: 1.5707963267948966 rad + pos: -27.5,42.5 parent: 2 - - uid: 16409 + - uid: 16113 components: - type: Transform - pos: 21.5,1.5 + pos: -21.5,50.5 parent: 2 - - uid: 16410 + - uid: 16114 components: - type: Transform - pos: 21.5,0.5 + pos: -20.5,50.5 parent: 2 - - uid: 16411 + - uid: 16115 components: - type: Transform - pos: 21.5,-0.5 + pos: -16.5,52.5 parent: 2 - - uid: 16412 + - uid: 16116 components: - type: Transform - pos: 21.5,-1.5 + pos: -16.5,51.5 parent: 2 - - uid: 16413 + - uid: 16117 components: - type: Transform - pos: 22.5,-1.5 + pos: -16.5,53.5 parent: 2 - - uid: 16414 + - uid: 16118 components: - type: Transform - pos: 22.5,-2.5 + pos: -16.5,50.5 parent: 2 - - uid: 16415 + - uid: 16119 components: - type: Transform - pos: 23.5,-2.5 + pos: -17.5,50.5 parent: 2 - - uid: 16416 + - uid: 16120 components: - type: Transform - pos: 23.5,-1.5 + pos: -21.5,51.5 parent: 2 - - uid: 16417 + - uid: 16121 components: - type: Transform - pos: 22.5,-0.5 + pos: -21.5,52.5 parent: 2 - - uid: 16418 + - uid: 16122 components: - type: Transform - pos: 22.5,0.5 + pos: -21.5,53.5 parent: 2 - - uid: 16419 + - uid: 16123 components: - type: Transform - pos: 22.5,1.5 + pos: -21.5,54.5 parent: 2 - - uid: 16420 + - uid: 16124 components: - type: Transform - pos: 22.5,2.5 + pos: -21.5,55.5 parent: 2 - - uid: 16421 + - uid: 16125 components: - type: Transform - pos: 23.5,3.5 + pos: -21.5,56.5 parent: 2 - - uid: 16422 + - uid: 16126 components: - type: Transform - pos: 23.5,4.5 + pos: -16.5,56.5 parent: 2 - - uid: 16423 + - uid: 16127 components: - type: Transform - pos: 24.5,-2.5 + pos: -17.5,56.5 parent: 2 - - uid: 16424 + - uid: 16128 components: - type: Transform - pos: 25.5,-2.5 + pos: -19.5,56.5 parent: 2 - - uid: 16425 + - uid: 16129 components: - type: Transform - pos: 26.5,-2.5 + pos: -13.5,53.5 parent: 2 - - uid: 16426 + - uid: 16130 components: - type: Transform - pos: 24.5,-1.5 + pos: -10.5,50.5 parent: 2 - - uid: 16427 + - uid: 16131 components: - type: Transform - pos: 25.5,-1.5 + pos: -10.5,51.5 parent: 2 - - uid: 16428 + - uid: 16132 components: - type: Transform - pos: 26.5,-1.5 + pos: -10.5,52.5 parent: 2 - - uid: 16429 + - uid: 16133 components: - type: Transform - pos: 28.5,-1.5 + pos: -10.5,53.5 parent: 2 - - uid: 16430 + - uid: 16134 components: - type: Transform - pos: 24.5,4.5 + pos: -6.5,50.5 parent: 2 - - uid: 16431 + - uid: 16135 components: - type: Transform - pos: 25.5,4.5 + pos: -6.5,51.5 parent: 2 - - uid: 16432 + - uid: 16136 components: - type: Transform - pos: 26.5,4.5 + pos: -6.5,53.5 parent: 2 - - uid: 16433 + - uid: 16137 components: - type: Transform - pos: 27.5,4.5 + pos: -6.5,52.5 parent: 2 - - uid: 16434 + - uid: 16138 components: - type: Transform - pos: 28.5,4.5 + pos: -2.5,50.5 parent: 2 - - uid: 16435 + - uid: 16139 components: - type: Transform - pos: 29.5,4.5 + pos: -2.5,51.5 parent: 2 - - uid: 16436 + - uid: 16140 components: - type: Transform - pos: 26.5,3.5 + pos: -2.5,52.5 parent: 2 - - uid: 16437 + - uid: 16141 components: - type: Transform - pos: 25.5,3.5 + pos: -2.5,53.5 parent: 2 - - uid: 16438 + - uid: 16142 components: - type: Transform - pos: 24.5,3.5 + pos: 1.5,50.5 parent: 2 - - uid: 16439 + - uid: 16143 components: - type: Transform - pos: 29.5,3.5 + pos: 1.5,51.5 parent: 2 - - uid: 16440 + - uid: 16144 components: - type: Transform - pos: 26.5,2.5 + pos: 1.5,53.5 parent: 2 - - uid: 16441 + - uid: 16145 components: - type: Transform - pos: 25.5,0.5 + pos: 1.5,52.5 parent: 2 - - uid: 16442 + - uid: 16146 components: - type: Transform - pos: 26.5,0.5 + pos: -25.5,50.5 parent: 2 - - uid: 16443 + - uid: 16147 components: - type: Transform - pos: 27.5,0.5 + pos: -25.5,51.5 parent: 2 - - uid: 16444 + - uid: 16148 components: - type: Transform - pos: 31.5,-1.5 + pos: -25.5,52.5 parent: 2 - - uid: 16445 + - uid: 16149 components: - type: Transform - pos: 32.5,-1.5 + pos: -25.5,53.5 parent: 2 - - uid: 16446 + - uid: 16150 components: - type: Transform - pos: 32.5,-2.5 + pos: -25.5,54.5 parent: 2 - - uid: 16447 + - uid: 16151 components: - type: Transform - pos: 38.5,-2.5 + pos: -25.5,55.5 parent: 2 - - uid: 16448 + - uid: 16152 components: - type: Transform - pos: 32.5,-0.5 + pos: -25.5,56.5 parent: 2 - - uid: 16449 + - uid: 16153 components: - type: Transform - pos: 32.5,0.5 + pos: -25.5,49.5 parent: 2 - - uid: 16450 + - uid: 16154 components: - type: Transform - pos: 32.5,1.5 + pos: -26.5,49.5 parent: 2 - - uid: 16451 + - uid: 16155 components: - type: Transform - pos: 32.5,2.5 + pos: -28.5,49.5 parent: 2 - - uid: 16452 + - uid: 16156 components: - type: Transform - pos: 29.5,2.5 + pos: -27.5,49.5 parent: 2 - - uid: 16453 + - uid: 16157 components: - type: Transform - pos: 30.5,2.5 + pos: -29.5,49.5 parent: 2 - - uid: 16454 + - uid: 16158 components: - type: Transform - pos: 39.5,-2.5 + pos: -29.5,50.5 parent: 2 - - uid: 16455 + - uid: 16159 components: - type: Transform - pos: 39.5,-3.5 + pos: -30.5,50.5 parent: 2 - - uid: 16456 + - uid: 16160 components: - type: Transform - pos: 38.5,-1.5 + pos: -31.5,50.5 parent: 2 - - uid: 16457 + - uid: 16161 components: - type: Transform - pos: 38.5,-0.5 + pos: -32.5,50.5 parent: 2 - - uid: 16458 + - uid: 16162 components: - type: Transform - pos: 37.5,-0.5 + pos: -33.5,50.5 parent: 2 - - uid: 16459 + - uid: 16163 components: - type: Transform - pos: 37.5,0.5 + pos: -33.5,51.5 parent: 2 - - uid: 16460 + - uid: 16164 components: - type: Transform - pos: 37.5,1.5 + rot: -1.5707963267948966 rad + pos: -33.5,53.5 parent: 2 - - uid: 16461 + - uid: 16165 components: - type: Transform - pos: 37.5,2.5 + rot: -1.5707963267948966 rad + pos: -33.5,54.5 parent: 2 - - uid: 16462 + - uid: 16166 components: - type: Transform - pos: 36.5,2.5 + rot: -1.5707963267948966 rad + pos: -32.5,54.5 parent: 2 - - uid: 16463 + - uid: 16167 components: - type: Transform - pos: 37.5,3.5 + rot: -1.5707963267948966 rad + pos: -30.5,54.5 parent: 2 - - uid: 16464 + - uid: 16168 components: - type: Transform - pos: 40.5,-0.5 + rot: -1.5707963267948966 rad + pos: -31.5,54.5 parent: 2 - - uid: 16465 + - uid: 16169 components: - type: Transform - pos: 40.5,0.5 + rot: -1.5707963267948966 rad + pos: -30.5,55.5 parent: 2 - - uid: 16466 + - uid: 16170 components: - type: Transform - pos: 40.5,1.5 + rot: -1.5707963267948966 rad + pos: -30.5,56.5 parent: 2 - - uid: 16467 + - uid: 16171 components: - type: Transform - pos: 40.5,2.5 + rot: -1.5707963267948966 rad + pos: -29.5,56.5 parent: 2 - - uid: 16468 + - uid: 16172 components: - type: Transform - pos: 40.5,3.5 + rot: -1.5707963267948966 rad + pos: -28.5,56.5 parent: 2 - - uid: 16469 + - uid: 16173 components: - type: Transform - pos: 33.5,8.5 + rot: -1.5707963267948966 rad + pos: -26.5,56.5 parent: 2 - - uid: 16470 + - uid: 16174 components: - type: Transform - pos: 32.5,8.5 + rot: -1.5707963267948966 rad + pos: -34.5,54.5 parent: 2 - - uid: 16471 + - uid: 16175 components: - type: Transform - pos: 30.5,8.5 + rot: -1.5707963267948966 rad + pos: -34.5,55.5 parent: 2 - - uid: 16472 + - uid: 16176 components: - type: Transform - pos: 31.5,8.5 + rot: -1.5707963267948966 rad + pos: -36.5,55.5 parent: 2 - - uid: 16473 + - uid: 16177 components: - type: Transform - pos: 41.5,6.5 + rot: -1.5707963267948966 rad + pos: -36.5,56.5 parent: 2 - - uid: 16474 + - uid: 16178 components: - type: Transform - pos: 32.5,12.5 + rot: -1.5707963267948966 rad + pos: -36.5,54.5 parent: 2 - - uid: 16475 + - uid: 16179 components: - type: Transform - pos: 34.5,6.5 + rot: -1.5707963267948966 rad + pos: -36.5,53.5 parent: 2 - - uid: 16476 + - uid: 16180 components: - type: Transform - pos: 34.5,8.5 + rot: -1.5707963267948966 rad + pos: -38.5,53.5 parent: 2 - - uid: 16477 + - uid: 16181 components: - type: Transform - pos: 34.5,12.5 + rot: -1.5707963267948966 rad + pos: -38.5,54.5 parent: 2 - - uid: 16478 + - uid: 16182 components: - type: Transform - pos: 33.5,12.5 + rot: -1.5707963267948966 rad + pos: -38.5,55.5 parent: 2 - - uid: 16479 + - uid: 16183 components: - type: Transform - pos: 37.5,6.5 + rot: -1.5707963267948966 rad + pos: -39.5,55.5 parent: 2 - - uid: 16480 + - uid: 16184 components: - type: Transform - pos: 36.5,6.5 + rot: -1.5707963267948966 rad + pos: -40.5,55.5 parent: 2 - - uid: 16481 + - uid: 16185 components: - type: Transform - pos: 37.5,5.5 + rot: -1.5707963267948966 rad + pos: -40.5,56.5 parent: 2 - - uid: 16482 + - uid: 16186 components: - type: Transform - pos: 38.5,5.5 + rot: -1.5707963267948966 rad + pos: -40.5,57.5 parent: 2 - - uid: 16483 + - uid: 16187 components: - type: Transform - pos: 39.5,5.5 + rot: -1.5707963267948966 rad + pos: -40.5,58.5 parent: 2 - - uid: 16484 + - uid: 16188 components: - type: Transform - pos: 40.5,5.5 + rot: -1.5707963267948966 rad + pos: -40.5,59.5 parent: 2 - - uid: 16485 + - uid: 16189 components: - type: Transform - pos: 41.5,5.5 + rot: -1.5707963267948966 rad + pos: -36.5,58.5 parent: 2 - - uid: 16486 + - uid: 16190 components: - type: Transform - pos: 35.5,12.5 + rot: -1.5707963267948966 rad + pos: -40.5,60.5 parent: 2 - - uid: 16487 + - uid: 16191 components: - type: Transform - pos: 36.5,12.5 + rot: -1.5707963267948966 rad + pos: -40.5,61.5 parent: 2 - - uid: 16488 + - uid: 16192 components: - type: Transform - pos: 37.5,12.5 + rot: 3.141592653589793 rad + pos: -36.5,59.5 parent: 2 - - uid: 16489 + - uid: 16193 components: - type: Transform - pos: 37.5,13.5 + rot: 3.141592653589793 rad + pos: -35.5,59.5 parent: 2 - - uid: 16490 + - uid: 16194 components: - type: Transform - pos: 37.5,14.5 + rot: 3.141592653589793 rad + pos: -34.5,59.5 parent: 2 - - uid: 16491 + - uid: 16195 components: - type: Transform - pos: 37.5,15.5 + rot: 3.141592653589793 rad + pos: -33.5,59.5 parent: 2 - - uid: 16492 + - uid: 16196 components: - type: Transform - pos: 35.5,18.5 + rot: 3.141592653589793 rad + pos: -31.5,59.5 parent: 2 - - uid: 16493 + - uid: 16197 components: - type: Transform - pos: 36.5,18.5 + rot: 3.141592653589793 rad + pos: -30.5,59.5 parent: 2 - - uid: 16494 + - uid: 16198 components: - type: Transform - pos: 37.5,18.5 + rot: 3.141592653589793 rad + pos: -29.5,59.5 parent: 2 - - uid: 16495 + - uid: 16199 components: - type: Transform - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: -30.5,60.5 parent: 2 - - uid: 16496 + - uid: 16200 components: - type: Transform - pos: 34.5,22.5 + rot: 3.141592653589793 rad + pos: -30.5,62.5 parent: 2 - - uid: 16497 + - uid: 16201 components: - type: Transform - pos: 35.5,22.5 + rot: 3.141592653589793 rad + pos: -30.5,61.5 parent: 2 - - uid: 16498 + - uid: 16202 components: - type: Transform - pos: 36.5,22.5 + rot: 3.141592653589793 rad + pos: -31.5,62.5 parent: 2 - - uid: 16499 + - uid: 16203 components: - type: Transform - pos: 35.5,31.5 + rot: 3.141592653589793 rad + pos: -34.5,60.5 parent: 2 - - uid: 16500 + - uid: 16204 components: - type: Transform - pos: 41.5,3.5 + rot: 3.141592653589793 rad + pos: -34.5,61.5 parent: 2 - - uid: 16501 + - uid: 16205 components: - type: Transform - pos: 44.5,-2.5 + rot: 3.141592653589793 rad + pos: -34.5,62.5 parent: 2 - - uid: 16502 + - uid: 16206 components: - type: Transform - pos: 44.5,-1.5 + rot: 3.141592653589793 rad + pos: -33.5,62.5 parent: 2 - - uid: 16503 + - uid: 16207 components: - type: Transform - pos: 44.5,-0.5 + rot: 3.141592653589793 rad + pos: -36.5,60.5 parent: 2 - - uid: 16504 + - uid: 16208 components: - type: Transform - pos: 43.5,3.5 + rot: 3.141592653589793 rad + pos: -36.5,61.5 parent: 2 - - uid: 16505 + - uid: 16209 components: - type: Transform - pos: 44.5,3.5 + rot: 3.141592653589793 rad + pos: -36.5,62.5 parent: 2 - - uid: 16506 + - uid: 16210 components: - type: Transform - pos: 44.5,2.5 + rot: 3.141592653589793 rad + pos: -36.5,63.5 parent: 2 - - uid: 16507 + - uid: 16211 components: - type: Transform - pos: 44.5,1.5 + rot: 3.141592653589793 rad + pos: -27.5,59.5 parent: 2 - - uid: 16508 + - uid: 16212 components: - type: Transform - pos: 44.5,0.5 + rot: 3.141592653589793 rad + pos: -26.5,59.5 parent: 2 - - uid: 16509 + - uid: 16213 components: - type: Transform - pos: 42.5,6.5 + rot: 3.141592653589793 rad + pos: -26.5,60.5 parent: 2 - - uid: 16510 + - uid: 16214 components: - type: Transform - pos: 44.5,4.5 + rot: 3.141592653589793 rad + pos: -26.5,61.5 parent: 2 - - uid: 16511 + - uid: 16215 components: - type: Transform - pos: 44.5,5.5 + rot: 3.141592653589793 rad + pos: -26.5,62.5 parent: 2 - - uid: 16512 + - uid: 16216 components: - type: Transform - pos: 45.5,5.5 + rot: 3.141592653589793 rad + pos: -27.5,62.5 parent: 2 - - uid: 16513 + - uid: 16217 components: - type: Transform - pos: 46.5,5.5 + rot: 3.141592653589793 rad + pos: -29.5,62.5 parent: 2 - - uid: 16514 + - uid: 16218 components: - type: Transform - pos: 46.5,6.5 + rot: 3.141592653589793 rad + pos: -26.5,63.5 parent: 2 - - uid: 16515 + - uid: 16219 components: - type: Transform - pos: 46.5,7.5 + rot: 3.141592653589793 rad + pos: -26.5,64.5 parent: 2 - - uid: 16516 + - uid: 16220 components: - type: Transform - pos: 46.5,8.5 + rot: 3.141592653589793 rad + pos: -26.5,65.5 parent: 2 - - uid: 16517 + - uid: 16221 components: - type: Transform - pos: 47.5,8.5 + rot: 3.141592653589793 rad + pos: -26.5,66.5 parent: 2 - - uid: 16518 + - uid: 16222 components: - type: Transform - pos: 47.5,9.5 + rot: 3.141592653589793 rad + pos: -26.5,67.5 parent: 2 - - uid: 16519 + - uid: 16223 components: - type: Transform - pos: 47.5,11.5 + rot: 3.141592653589793 rad + pos: -26.5,68.5 parent: 2 - - uid: 16520 + - uid: 16224 components: - type: Transform - pos: 45.5,11.5 + rot: 3.141592653589793 rad + pos: -26.5,69.5 parent: 2 - - uid: 16521 + - uid: 16227 components: - type: Transform - pos: 42.5,7.5 + rot: 3.141592653589793 rad + pos: -36.5,66.5 parent: 2 - - uid: 16522 + - uid: 16228 components: - type: Transform - pos: 42.5,8.5 + rot: 3.141592653589793 rad + pos: -36.5,65.5 parent: 2 - - uid: 16523 + - uid: 16229 components: - type: Transform - pos: 42.5,9.5 + rot: 3.141592653589793 rad + pos: -36.5,64.5 parent: 2 - - uid: 16524 + - uid: 16230 components: - type: Transform - pos: 42.5,10.5 + rot: 3.141592653589793 rad + pos: -25.5,72.5 parent: 2 - - uid: 16525 + - uid: 16231 components: - type: Transform - pos: 42.5,11.5 + rot: 3.141592653589793 rad + pos: -20.5,71.5 parent: 2 - - uid: 16527 + - uid: 16232 components: - type: Transform - pos: 44.5,11.5 + rot: 3.141592653589793 rad + pos: -26.5,70.5 parent: 2 - - uid: 16528 + - uid: 16233 components: - type: Transform - pos: 46.5,11.5 + rot: 3.141592653589793 rad + pos: -26.5,71.5 parent: 2 - - uid: 16529 + - uid: 16234 components: - type: Transform - pos: 41.5,10.5 + rot: 3.141592653589793 rad + pos: -26.5,72.5 parent: 2 - - uid: 16530 + - uid: 16235 components: - type: Transform - pos: 42.5,12.5 + rot: 3.141592653589793 rad + pos: -21.5,72.5 parent: 2 - - uid: 16531 + - uid: 16236 components: - type: Transform - pos: 42.5,13.5 + rot: 3.141592653589793 rad + pos: -21.5,71.5 parent: 2 - - uid: 16532 + - uid: 16237 components: - type: Transform - pos: 42.5,14.5 + rot: 3.141592653589793 rad + pos: -19.5,71.5 parent: 2 - - uid: 16533 + - uid: 16238 components: - type: Transform - pos: 41.5,14.5 + rot: 3.141592653589793 rad + pos: -18.5,71.5 parent: 2 - - uid: 16534 + - uid: 16239 components: - type: Transform - pos: 39.5,18.5 + rot: 3.141592653589793 rad + pos: -17.5,71.5 parent: 2 - - uid: 16535 + - uid: 16240 components: - type: Transform - pos: 39.5,19.5 + rot: 3.141592653589793 rad + pos: -16.5,71.5 parent: 2 - - uid: 16536 + - uid: 16241 components: - type: Transform - pos: 39.5,20.5 + rot: 3.141592653589793 rad + pos: -15.5,71.5 parent: 2 - - uid: 16537 + - uid: 16242 components: - type: Transform - pos: 39.5,21.5 + rot: 3.141592653589793 rad + pos: -14.5,71.5 parent: 2 - - uid: 16538 + - uid: 16243 components: - type: Transform - pos: 39.5,22.5 + rot: 3.141592653589793 rad + pos: -13.5,71.5 parent: 2 - - uid: 16539 + - uid: 16244 components: - type: Transform - pos: 40.5,22.5 + rot: 3.141592653589793 rad + pos: -13.5,70.5 parent: 2 - - uid: 16540 + - uid: 16245 components: - type: Transform - pos: 41.5,22.5 + rot: 3.141592653589793 rad + pos: -13.5,69.5 parent: 2 - - uid: 16541 + - uid: 16246 components: - type: Transform - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: -9.5,70.5 parent: 2 - - uid: 16542 + - uid: 16247 components: - type: Transform - pos: 44.5,22.5 + rot: 3.141592653589793 rad + pos: -9.5,69.5 parent: 2 - - uid: 16543 + - uid: 16248 components: - type: Transform - pos: 45.5,22.5 + rot: 3.141592653589793 rad + pos: -8.5,69.5 parent: 2 - - uid: 16544 + - uid: 16249 components: - type: Transform - pos: 45.5,20.5 + rot: 3.141592653589793 rad + pos: -7.5,69.5 parent: 2 - - uid: 16545 + - uid: 16250 components: - type: Transform - pos: 45.5,19.5 + rot: 3.141592653589793 rad + pos: -7.5,70.5 parent: 2 - - uid: 16546 + - uid: 16251 components: - type: Transform - pos: 44.5,19.5 + rot: 3.141592653589793 rad + pos: -2.5,70.5 parent: 2 - - uid: 16547 + - uid: 16252 components: - type: Transform - pos: 43.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,69.5 parent: 2 - - uid: 16548 + - uid: 16253 components: - type: Transform - pos: 44.5,18.5 + rot: 3.141592653589793 rad + pos: -3.5,69.5 parent: 2 - - uid: 16549 + - uid: 16254 components: - type: Transform - pos: 42.5,15.5 + rot: 3.141592653589793 rad + pos: -2.5,69.5 parent: 2 - - uid: 16550 + - uid: 16255 components: - type: Transform - pos: 43.5,15.5 + rot: 3.141592653589793 rad + pos: -2.5,71.5 parent: 2 - - uid: 16551 + - uid: 16256 components: - type: Transform - pos: 47.5,12.5 + pos: 11.5,79.5 parent: 2 - - uid: 16552 + - uid: 16257 components: - type: Transform - pos: 48.5,12.5 + pos: 11.5,76.5 parent: 2 - - uid: 16553 + - uid: 16258 components: - type: Transform - pos: 50.5,12.5 + pos: 11.5,78.5 parent: 2 - - uid: 16554 + - uid: 16259 components: - type: Transform - pos: 50.5,13.5 + pos: 15.5,79.5 parent: 2 - - uid: 16555 + - uid: 16260 components: - type: Transform - pos: 50.5,15.5 + pos: 12.5,76.5 parent: 2 - - uid: 16556 + - uid: 16261 components: - type: Transform - pos: 50.5,16.5 + pos: 13.5,77.5 parent: 2 - - uid: 16557 + - uid: 16262 components: - type: Transform - pos: 50.5,19.5 + pos: 14.5,79.5 parent: 2 - - uid: 16558 + - uid: 16263 components: - type: Transform - pos: 49.5,19.5 + pos: 17.5,79.5 parent: 2 - - uid: 16559 + - uid: 16264 components: - type: Transform - pos: 46.5,19.5 + pos: 11.5,77.5 parent: 2 - - uid: 16560 + - uid: 16265 components: - type: Transform - pos: 45.5,23.5 + pos: 13.5,76.5 parent: 2 - - uid: 16561 + - uid: 16266 components: - type: Transform - pos: 46.5,23.5 + pos: 13.5,79.5 parent: 2 - - uid: 16562 + - uid: 16267 components: - type: Transform - pos: 45.5,24.5 + pos: 16.5,79.5 parent: 2 - - uid: 16563 + - uid: 16268 components: - type: Transform - pos: 44.5,24.5 + pos: 13.5,78.5 parent: 2 - - uid: 16564 + - uid: 16269 components: - type: Transform - pos: 43.5,24.5 + pos: 0.5,79.5 parent: 2 - - uid: 16565 + - uid: 16270 components: - type: Transform - pos: 42.5,24.5 + pos: 6.5,79.5 parent: 2 - - uid: 16566 + - uid: 16271 components: - type: Transform - pos: 38.5,24.5 + pos: 6.5,80.5 parent: 2 - - uid: 16567 + - uid: 16272 components: - type: Transform - pos: 37.5,24.5 + pos: 10.5,80.5 parent: 2 - - uid: 16568 + - uid: 16273 components: - type: Transform - pos: 36.5,24.5 + pos: 10.5,79.5 parent: 2 - - uid: 16569 + - uid: 16274 components: - type: Transform - pos: 36.5,23.5 + pos: -1.5,76.5 parent: 2 - - uid: 16570 + - uid: 16275 components: - type: Transform - pos: 34.5,23.5 + pos: -2.5,76.5 parent: 2 - - uid: 16571 + - uid: 16276 components: - type: Transform - pos: 34.5,24.5 + pos: -2.5,72.5 parent: 2 - - uid: 16572 + - uid: 16277 components: - type: Transform - pos: 34.5,25.5 + pos: 5.5,79.5 parent: 2 - - uid: 16573 + - uid: 16278 components: - type: Transform - pos: 34.5,26.5 + pos: -0.5,76.5 parent: 2 - - uid: 16574 + - uid: 16279 components: - type: Transform - pos: 34.5,27.5 + pos: -1.5,78.5 parent: 2 - - uid: 16575 + - uid: 16280 components: - type: Transform - pos: 34.5,28.5 + pos: -0.5,78.5 parent: 2 - - uid: 16576 + - uid: 16281 components: - type: Transform - pos: 34.5,29.5 + pos: -0.5,79.5 parent: 2 - - uid: 16577 + - uid: 16282 components: - type: Transform - pos: 34.5,30.5 + pos: -2.5,78.5 parent: 2 - - uid: 16578 + - uid: 16283 components: - type: Transform - pos: 34.5,31.5 + rot: 1.5707963267948966 rad + pos: -20.5,70.5 parent: 2 - - uid: 16579 + - uid: 16284 components: - type: Transform - pos: 34.5,32.5 + rot: 1.5707963267948966 rad + pos: -20.5,69.5 parent: 2 - - uid: 16580 + - uid: 16285 components: - type: Transform - pos: 36.5,31.5 + rot: 1.5707963267948966 rad + pos: -20.5,68.5 parent: 2 - - uid: 16581 + - uid: 16286 components: - type: Transform - pos: 37.5,31.5 + rot: 1.5707963267948966 rad + pos: -20.5,67.5 parent: 2 - - uid: 16582 + - uid: 16287 components: - type: Transform - pos: 38.5,31.5 + rot: 1.5707963267948966 rad + pos: -20.5,66.5 parent: 2 - - uid: 16583 + - uid: 16288 components: - type: Transform - pos: 38.5,32.5 + rot: 1.5707963267948966 rad + pos: -20.5,65.5 parent: 2 - - uid: 16584 + - uid: 16289 components: - type: Transform - pos: 36.5,30.5 + rot: 1.5707963267948966 rad + pos: -25.5,65.5 parent: 2 - - uid: 16585 + - uid: 16290 components: - type: Transform - pos: 36.5,28.5 + rot: 1.5707963267948966 rad + pos: -21.5,65.5 parent: 2 - - uid: 16586 + - uid: 16291 components: - type: Transform - pos: 36.5,26.5 + rot: 1.5707963267948966 rad + pos: -25.5,59.5 parent: 2 - - uid: 16587 + - uid: 16292 components: - type: Transform - pos: 37.5,26.5 + pos: -15.5,63.5 parent: 2 - - uid: 16588 + - uid: 16293 components: - type: Transform - pos: 38.5,26.5 + rot: 1.5707963267948966 rad + pos: -21.5,64.5 parent: 2 - - uid: 16589 + - uid: 16294 components: - type: Transform - pos: 39.5,26.5 + rot: 1.5707963267948966 rad + pos: -21.5,63.5 parent: 2 - - uid: 16590 + - uid: 16295 components: - type: Transform - pos: 41.5,26.5 + rot: 1.5707963267948966 rad + pos: -21.5,62.5 parent: 2 - - uid: 16591 + - uid: 16296 components: - type: Transform - pos: 42.5,26.5 + rot: 1.5707963267948966 rad + pos: -20.5,62.5 parent: 2 - - uid: 16592 + - uid: 16297 components: - type: Transform - pos: 43.5,26.5 + rot: 1.5707963267948966 rad + pos: -20.5,61.5 parent: 2 - - uid: 16593 + - uid: 16298 components: - type: Transform - pos: 43.5,27.5 + rot: 1.5707963267948966 rad + pos: -20.5,60.5 parent: 2 - - uid: 16594 + - uid: 16299 components: - type: Transform - pos: 43.5,29.5 + rot: 1.5707963267948966 rad + pos: -20.5,59.5 parent: 2 - - uid: 16595 + - uid: 16300 components: - type: Transform - pos: 43.5,30.5 + rot: 1.5707963267948966 rad + pos: -21.5,59.5 parent: 2 - - uid: 16596 + - uid: 16301 components: - type: Transform - pos: 42.5,30.5 + pos: -15.5,65.5 parent: 2 - - uid: 16597 + - uid: 16302 components: - type: Transform - pos: 43.5,31.5 + pos: -15.5,64.5 parent: 2 - - uid: 16598 + - uid: 16303 components: - type: Transform - pos: 43.5,32.5 + pos: -13.5,63.5 parent: 2 - - uid: 16599 + - uid: 16304 components: - type: Transform - pos: 42.5,32.5 + pos: -12.5,65.5 parent: 2 - - uid: 16600 + - uid: 16305 components: - type: Transform - pos: 40.5,30.5 + pos: -13.5,66.5 parent: 2 - - uid: 16601 + - uid: 16306 components: - type: Transform - pos: 39.5,30.5 + pos: -13.5,65.5 parent: 2 - - uid: 16602 + - uid: 16308 components: - type: Transform - pos: 39.5,31.5 + pos: -13.5,67.5 parent: 2 - - uid: 16603 + - uid: 16309 components: - type: Transform - pos: 39.5,32.5 + pos: -13.5,62.5 parent: 2 - - uid: 16604 + - uid: 16310 components: - type: Transform - pos: 40.5,32.5 + pos: -13.5,59.5 parent: 2 - - uid: 16605 + - uid: 16311 components: - type: Transform - pos: 45.5,25.5 + pos: -19.5,59.5 parent: 2 - - uid: 16606 + - uid: 16312 components: - type: Transform - pos: 45.5,26.5 + pos: -10.5,65.5 parent: 2 - - uid: 16607 + - uid: 16313 components: - type: Transform - pos: 45.5,27.5 + pos: -9.5,65.5 parent: 2 - - uid: 16608 + - uid: 16314 components: - type: Transform - pos: 45.5,28.5 + pos: -8.5,65.5 parent: 2 - - uid: 16609 + - uid: 16315 components: - type: Transform - pos: 45.5,29.5 + pos: -8.5,66.5 parent: 2 - - uid: 16610 + - uid: 16316 components: - type: Transform - pos: 45.5,30.5 + pos: -8.5,68.5 parent: 2 - - uid: 16611 + - uid: 16317 components: - type: Transform - pos: 45.5,31.5 + pos: -8.5,64.5 parent: 2 - - uid: 16612 + - uid: 16318 components: - type: Transform - pos: 45.5,32.5 + pos: -8.5,63.5 parent: 2 - - uid: 16613 + - uid: 16319 components: - type: Transform - pos: 46.5,32.5 + pos: -9.5,63.5 parent: 2 - - uid: 16614 + - uid: 16320 components: - type: Transform - pos: 47.5,32.5 + pos: -10.5,63.5 parent: 2 - - uid: 16615 + - uid: 16321 components: - type: Transform - pos: 48.5,32.5 + pos: -8.5,62.5 parent: 2 - - uid: 16616 + - uid: 16322 components: - type: Transform - pos: 49.5,29.5 + pos: -8.5,61.5 parent: 2 - - uid: 16617 + - uid: 16323 components: - type: Transform - pos: 49.5,32.5 + pos: -10.5,61.5 parent: 2 - - uid: 16618 + - uid: 16324 components: - type: Transform - pos: 49.5,31.5 + pos: -9.5,61.5 parent: 2 - - uid: 16619 + - uid: 16325 components: - type: Transform - pos: 49.5,28.5 + pos: -10.5,60.5 parent: 2 - - uid: 16620 + - uid: 16326 components: - type: Transform - pos: 51.5,28.5 + pos: -10.5,58.5 parent: 2 - - uid: 16621 + - uid: 16327 components: - type: Transform - pos: 50.5,28.5 + pos: -10.5,57.5 parent: 2 - - uid: 16622 + - uid: 16328 components: - type: Transform - pos: 50.5,32.5 + pos: -9.5,57.5 parent: 2 - - uid: 16623 + - uid: 16329 components: - type: Transform - pos: 51.5,32.5 + pos: -8.5,57.5 parent: 2 - - uid: 16624 + - uid: 16330 components: - type: Transform - pos: 52.5,32.5 + pos: -7.5,57.5 parent: 2 - - uid: 16625 + - uid: 16331 components: - type: Transform - pos: 53.5,32.5 + pos: -6.5,57.5 parent: 2 - - uid: 16626 + - uid: 16332 components: - type: Transform - pos: 53.5,31.5 + pos: -6.5,58.5 parent: 2 - - uid: 16627 + - uid: 16333 components: - type: Transform - pos: 53.5,29.5 + pos: -6.5,59.5 parent: 2 - - uid: 16628 + - uid: 16334 components: - type: Transform - pos: 53.5,28.5 + pos: -6.5,60.5 parent: 2 - - uid: 16629 + - uid: 16335 components: - type: Transform - pos: 52.5,28.5 + pos: -6.5,61.5 parent: 2 - - uid: 16630 + - uid: 16336 components: - type: Transform - pos: 51.5,27.5 + pos: -7.5,61.5 parent: 2 - - uid: 16631 + - uid: 16337 components: - type: Transform - pos: 51.5,23.5 + pos: -5.5,61.5 parent: 2 - - uid: 16632 + - uid: 16338 components: - type: Transform - pos: 49.5,23.5 + pos: -4.5,61.5 parent: 2 - - uid: 16633 + - uid: 16339 components: - type: Transform - pos: 49.5,21.5 + pos: -3.5,61.5 parent: 2 - - uid: 16634 + - uid: 16340 components: - type: Transform - pos: 53.5,19.5 + pos: -2.5,61.5 parent: 2 - - uid: 16635 + - uid: 16341 components: - type: Transform - pos: 56.5,9.5 + pos: -2.5,60.5 parent: 2 - - uid: 16636 + - uid: 16342 components: - type: Transform - pos: 57.5,23.5 + pos: -2.5,59.5 parent: 2 - - uid: 16637 + - uid: 16343 components: - type: Transform - pos: 58.5,23.5 + pos: -2.5,58.5 parent: 2 - - uid: 16638 + - uid: 16344 components: - type: Transform - pos: 59.5,23.5 + pos: -2.5,57.5 parent: 2 - - uid: 16639 + - uid: 16345 components: - type: Transform - pos: 60.5,23.5 + pos: -7.5,65.5 parent: 2 - - uid: 16640 + - uid: 16346 components: - type: Transform - pos: 57.5,24.5 + pos: -4.5,65.5 parent: 2 - - uid: 16641 + - uid: 16347 components: - type: Transform - pos: 57.5,25.5 + pos: -4.5,66.5 parent: 2 - - uid: 16642 + - uid: 16348 components: - type: Transform - pos: 57.5,26.5 + pos: -4.5,68.5 parent: 2 - - uid: 16643 + - uid: 16349 components: - type: Transform - pos: 57.5,27.5 + rot: 1.5707963267948966 rad + pos: -2.5,65.5 parent: 2 - - uid: 16644 + - uid: 16350 components: - type: Transform - pos: 61.5,23.5 + rot: 1.5707963267948966 rad + pos: -1.5,65.5 parent: 2 - - uid: 16645 + - uid: 16351 components: - type: Transform - pos: 61.5,22.5 + rot: 1.5707963267948966 rad + pos: -1.5,66.5 parent: 2 - - uid: 16646 + - uid: 16352 components: - type: Transform - pos: 61.5,20.5 + rot: 1.5707963267948966 rad + pos: -1.5,67.5 parent: 2 - - uid: 16647 + - uid: 16353 components: - type: Transform - pos: 61.5,19.5 + rot: 1.5707963267948966 rad + pos: -1.5,68.5 parent: 2 - - uid: 16648 + - uid: 16354 components: - type: Transform - pos: 60.5,19.5 + rot: 1.5707963267948966 rad + pos: -1.5,69.5 parent: 2 - - uid: 16649 + - uid: 16355 components: - type: Transform - pos: 60.5,18.5 + rot: 1.5707963267948966 rad + pos: -0.5,61.5 parent: 2 - - uid: 16650 + - uid: 16356 components: - type: Transform - pos: 60.5,17.5 + rot: 1.5707963267948966 rad + pos: -1.5,61.5 parent: 2 - - uid: 16651 + - uid: 16357 components: - type: Transform - pos: 60.5,16.5 + rot: 1.5707963267948966 rad + pos: 1.5,61.5 parent: 2 - - uid: 16652 + - uid: 16358 components: - type: Transform - pos: 60.5,15.5 + rot: 1.5707963267948966 rad + pos: 2.5,61.5 parent: 2 - - uid: 16653 + - uid: 16359 components: - type: Transform - pos: 60.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,61.5 parent: 2 - - uid: 16654 + - uid: 16360 components: - type: Transform - pos: 59.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,60.5 parent: 2 - - uid: 16655 + - uid: 16361 components: - type: Transform - pos: 51.5,12.5 + rot: 1.5707963267948966 rad + pos: 3.5,56.5 parent: 2 - - uid: 16656 + - uid: 16362 components: - type: Transform - pos: 52.5,12.5 + rot: 1.5707963267948966 rad + pos: 2.5,56.5 parent: 2 - - uid: 16657 + - uid: 16363 components: - type: Transform - pos: 53.5,12.5 + rot: 1.5707963267948966 rad + pos: 1.5,56.5 parent: 2 - - uid: 16658 + - uid: 16364 components: - type: Transform - pos: 54.5,12.5 + rot: 1.5707963267948966 rad + pos: 0.5,56.5 parent: 2 - - uid: 16659 + - uid: 16365 components: - type: Transform - pos: 56.5,11.5 + rot: 1.5707963267948966 rad + pos: 0.5,57.5 parent: 2 - - uid: 16660 + - uid: 16366 components: - type: Transform - pos: 56.5,10.5 + rot: 1.5707963267948966 rad + pos: 1.5,55.5 parent: 2 - - uid: 16661 + - uid: 16367 components: - type: Transform - pos: 54.5,14.5 + rot: 1.5707963267948966 rad + pos: 1.5,54.5 parent: 2 - - uid: 16662 + - uid: 16368 components: - type: Transform - pos: 54.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,54.5 parent: 2 - - uid: 16663 + - uid: 16369 components: - type: Transform - pos: 55.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,55.5 parent: 2 - - uid: 16664 + - uid: 16370 components: - type: Transform - pos: 56.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,54.5 parent: 2 - - uid: 16665 + - uid: 16371 components: - type: Transform - pos: 58.5,14.5 + rot: 1.5707963267948966 rad + pos: 17.5,75.5 parent: 2 - - uid: 16666 + - uid: 16372 components: - type: Transform - pos: 57.5,14.5 + rot: 1.5707963267948966 rad + pos: 18.5,75.5 parent: 2 - - uid: 16667 + - uid: 16373 components: - type: Transform - pos: 48.5,8.5 + rot: 1.5707963267948966 rad + pos: 17.5,74.5 parent: 2 - - uid: 16668 + - uid: 16374 components: - type: Transform - pos: 51.5,8.5 + rot: -1.5707963267948966 rad + pos: 28.5,12.5 parent: 2 - - uid: 16669 + - uid: 16375 components: - type: Transform - pos: 50.5,8.5 + rot: -1.5707963267948966 rad + pos: 27.5,8.5 parent: 2 - - uid: 16670 + - uid: 16376 components: - type: Transform - pos: 51.5,9.5 + rot: -1.5707963267948966 rad + pos: 27.5,9.5 parent: 2 - - uid: 16671 + - uid: 16377 components: - type: Transform - pos: 51.5,11.5 + rot: -1.5707963267948966 rad + pos: 27.5,10.5 parent: 2 - - uid: 16672 + - uid: 16378 components: - type: Transform - pos: 52.5,8.5 + rot: -1.5707963267948966 rad + pos: 27.5,11.5 parent: 2 - - uid: 16673 + - uid: 16379 components: - type: Transform - pos: 53.5,8.5 + rot: -1.5707963267948966 rad + pos: 27.5,12.5 parent: 2 - - uid: 16674 + - uid: 16380 components: - type: Transform - pos: 54.5,8.5 + rot: -1.5707963267948966 rad + pos: 28.5,8.5 parent: 2 - - uid: 16675 + - uid: 16381 components: - type: Transform - pos: 55.5,8.5 + rot: -1.5707963267948966 rad + pos: 29.5,12.5 parent: 2 - - uid: 16676 + - uid: 16382 components: - type: Transform - pos: 56.5,8.5 + rot: -1.5707963267948966 rad + pos: 29.5,8.5 parent: 2 - - uid: 16677 + - uid: 16383 components: - type: Transform - pos: 56.5,7.5 + pos: 30.5,12.5 parent: 2 - - uid: 16678 + - uid: 16384 components: - type: Transform - pos: 53.5,5.5 + pos: 31.5,12.5 parent: 2 - - uid: 16679 + - uid: 16385 components: - type: Transform - pos: 54.5,5.5 + pos: 31.5,13.5 parent: 2 - - uid: 16680 + - uid: 16386 components: - type: Transform - pos: 55.5,5.5 + pos: 31.5,14.5 parent: 2 - - uid: 16681 + - uid: 16387 components: - type: Transform - pos: 56.5,5.5 + pos: 31.5,16.5 parent: 2 - - uid: 16682 + - uid: 16388 components: - type: Transform - pos: 57.5,5.5 + pos: 31.5,15.5 parent: 2 - - uid: 16683 + - uid: 16389 components: - type: Transform - pos: 58.5,5.5 + pos: 31.5,17.5 parent: 2 - - uid: 16684 + - uid: 16390 components: - type: Transform - pos: 58.5,4.5 + pos: 32.5,17.5 parent: 2 - - uid: 16685 + - uid: 16391 components: - type: Transform - pos: 58.5,3.5 + pos: 33.5,17.5 parent: 2 - - uid: 16686 + - uid: 16392 components: - type: Transform - pos: 58.5,2.5 + pos: 34.5,17.5 parent: 2 - - uid: 16687 + - uid: 16393 components: - type: Transform - pos: 58.5,1.5 + pos: 34.5,18.5 parent: 2 - - uid: 16688 + - uid: 16395 components: - type: Transform - pos: 58.5,0.5 + pos: 7.5,1.5 parent: 2 - - uid: 16689 + - uid: 16396 components: - type: Transform - pos: 58.5,-0.5 + pos: 8.5,1.5 parent: 2 - - uid: 16690 + - uid: 16397 components: - type: Transform - pos: 58.5,-1.5 + pos: 8.5,0.5 parent: 2 - - uid: 16691 + - uid: 16398 components: - type: Transform - pos: 58.5,-2.5 + pos: 10.5,0.5 parent: 2 - - uid: 16692 + - uid: 16399 components: - type: Transform - pos: 58.5,-4.5 + pos: 11.5,0.5 parent: 2 - - uid: 16693 + - uid: 16400 components: - type: Transform - pos: 58.5,-3.5 + pos: 13.5,0.5 parent: 2 - - uid: 16694 + - uid: 16401 components: - type: Transform - pos: 44.5,-3.5 + pos: 14.5,0.5 parent: 2 - - uid: 16695 + - uid: 16402 components: - type: Transform - pos: 44.5,-4.5 + pos: 16.5,0.5 parent: 2 - - uid: 16696 + - uid: 16403 components: - type: Transform - pos: 45.5,-4.5 + pos: 17.5,0.5 parent: 2 - - uid: 16697 + - uid: 16404 components: - type: Transform - pos: 46.5,-4.5 + pos: 27.5,-1.5 parent: 2 - - uid: 16698 + - uid: 16405 components: - type: Transform - pos: 47.5,-4.5 + pos: 21.5,3.5 parent: 2 - - uid: 16699 + - uid: 16406 components: - type: Transform - pos: 48.5,-4.5 + pos: 22.5,3.5 parent: 2 - - uid: 16700 + - uid: 16407 components: - type: Transform - pos: 57.5,-4.5 + pos: 22.5,4.5 parent: 2 - - uid: 16701 + - uid: 16408 components: - type: Transform - pos: 56.5,-4.5 + pos: 21.5,2.5 parent: 2 - - uid: 16702 + - uid: 16409 components: - type: Transform - pos: 48.5,-5.5 + pos: 21.5,1.5 parent: 2 - - uid: 16703 + - uid: 16410 components: - type: Transform - pos: 48.5,-6.5 + pos: 21.5,0.5 parent: 2 - - uid: 16704 + - uid: 16411 components: - type: Transform - pos: 48.5,-7.5 + pos: 21.5,-0.5 parent: 2 - - uid: 16705 + - uid: 16412 components: - type: Transform - pos: 48.5,-8.5 + pos: 21.5,-1.5 parent: 2 - - uid: 16706 + - uid: 16413 components: - type: Transform - pos: 48.5,-9.5 + pos: 22.5,-1.5 parent: 2 - - uid: 16707 + - uid: 16414 components: - type: Transform - pos: 54.5,-6.5 + pos: 22.5,-2.5 parent: 2 - - uid: 16708 + - uid: 16415 components: - type: Transform - pos: 54.5,-7.5 + pos: 23.5,-2.5 parent: 2 - - uid: 16709 + - uid: 16416 components: - type: Transform - pos: 54.5,-8.5 + pos: 23.5,-1.5 parent: 2 - - uid: 16710 + - uid: 16417 components: - type: Transform - pos: 54.5,-9.5 + pos: 22.5,-0.5 parent: 2 - - uid: 16711 + - uid: 16418 components: - type: Transform - pos: 49.5,-5.5 + pos: 22.5,0.5 parent: 2 - - uid: 16712 + - uid: 16419 components: - type: Transform - pos: 49.5,-9.5 + pos: 22.5,1.5 parent: 2 - - uid: 16713 + - uid: 16420 components: - type: Transform - pos: 50.5,-9.5 + pos: 22.5,2.5 parent: 2 - - uid: 16714 + - uid: 16421 components: - type: Transform - pos: 51.5,-9.5 + pos: 23.5,3.5 parent: 2 - - uid: 16715 + - uid: 16422 components: - type: Transform - pos: 52.5,-9.5 + pos: 23.5,4.5 parent: 2 - - uid: 16716 + - uid: 16423 components: - type: Transform - pos: 53.5,-9.5 + pos: 24.5,-2.5 parent: 2 - - uid: 16717 + - uid: 16424 components: - type: Transform - pos: 47.5,5.5 + pos: 25.5,-2.5 parent: 2 - - uid: 16719 + - uid: 16425 components: - type: Transform - pos: 58.5,9.5 + pos: 26.5,-2.5 parent: 2 - - uid: 16720 + - uid: 16426 components: - type: Transform - pos: 58.5,10.5 + pos: 24.5,-1.5 parent: 2 - - uid: 16721 + - uid: 16427 components: - type: Transform - pos: 58.5,11.5 + pos: 25.5,-1.5 parent: 2 - - uid: 16722 + - uid: 16428 components: - type: Transform - pos: 61.5,7.5 + pos: 26.5,-1.5 parent: 2 - - uid: 16723 + - uid: 16429 components: - type: Transform - pos: 61.5,8.5 + pos: 28.5,-1.5 parent: 2 - - uid: 16724 + - uid: 16430 components: - type: Transform - pos: 61.5,9.5 + pos: 24.5,4.5 parent: 2 - - uid: 16725 + - uid: 16431 components: - type: Transform - pos: 61.5,10.5 + pos: 25.5,4.5 parent: 2 - - uid: 16726 + - uid: 16432 components: - type: Transform - pos: 61.5,11.5 + pos: 26.5,4.5 parent: 2 - - uid: 16727 + - uid: 16433 components: - type: Transform - pos: 63.5,-0.5 + pos: 27.5,4.5 parent: 2 - - uid: 16728 + - uid: 16434 components: - type: Transform - pos: 63.5,0.5 + pos: 28.5,4.5 parent: 2 - - uid: 16729 + - uid: 16435 components: - type: Transform - pos: 62.5,0.5 + pos: 29.5,4.5 parent: 2 - - uid: 16730 + - uid: 16436 components: - type: Transform - pos: 62.5,1.5 + pos: 26.5,3.5 parent: 2 - - uid: 16731 + - uid: 16437 components: - type: Transform - pos: 62.5,5.5 + pos: 25.5,3.5 parent: 2 - - uid: 16732 + - uid: 16438 components: - type: Transform - pos: 62.5,6.5 + pos: 24.5,3.5 parent: 2 - - uid: 16733 + - uid: 16439 components: - type: Transform - pos: 62.5,7.5 + pos: 29.5,3.5 parent: 2 - - uid: 16734 + - uid: 16440 components: - type: Transform - pos: 67.5,-0.5 + pos: 26.5,2.5 parent: 2 - - uid: 16735 + - uid: 16441 components: - type: Transform - pos: 67.5,0.5 + pos: 25.5,0.5 parent: 2 - - uid: 16736 + - uid: 16442 components: - type: Transform - pos: 68.5,0.5 + pos: 26.5,0.5 parent: 2 - - uid: 16737 + - uid: 16443 components: - type: Transform - pos: 71.5,-1.5 + pos: 27.5,0.5 parent: 2 - - uid: 16738 + - uid: 16444 components: - type: Transform - pos: 71.5,-2.5 + pos: 31.5,-1.5 parent: 2 - - uid: 16739 + - uid: 16445 components: - type: Transform - pos: 72.5,-2.5 + pos: 32.5,-1.5 parent: 2 - - uid: 16740 + - uid: 16446 components: - type: Transform - pos: 72.5,-3.5 + pos: 32.5,-2.5 parent: 2 - - uid: 16741 + - uid: 16447 components: - type: Transform - pos: 20.5,67.5 + pos: 38.5,-2.5 parent: 2 - - uid: 16742 + - uid: 16448 components: - type: Transform - pos: 19.5,67.5 + pos: 32.5,-0.5 parent: 2 - - uid: 16743 + - uid: 16449 components: - type: Transform - pos: 19.5,68.5 + pos: 32.5,0.5 parent: 2 - - uid: 16744 + - uid: 16450 components: - type: Transform - pos: 19.5,69.5 + pos: 32.5,1.5 parent: 2 - - uid: 16745 + - uid: 16451 components: - type: Transform - pos: 19.5,70.5 + pos: 32.5,2.5 parent: 2 - - uid: 16746 + - uid: 16452 components: - type: Transform - pos: 18.5,70.5 + pos: 29.5,2.5 parent: 2 - - uid: 16747 + - uid: 16453 components: - type: Transform - pos: 17.5,71.5 + pos: 30.5,2.5 parent: 2 - - uid: 16748 + - uid: 16454 components: - type: Transform - pos: 17.5,70.5 + pos: 39.5,-2.5 parent: 2 - - uid: 16749 + - uid: 16456 components: - type: Transform - pos: 22.5,67.5 + pos: 38.5,-1.5 parent: 2 - - uid: 16750 + - uid: 16457 components: - type: Transform - pos: 23.5,67.5 + pos: 38.5,-0.5 parent: 2 - - uid: 16751 + - uid: 16460 components: - type: Transform - pos: 23.5,66.5 + pos: 37.5,1.5 parent: 2 - - uid: 16752 + - uid: 16461 components: - type: Transform - pos: 24.5,66.5 + pos: 37.5,2.5 parent: 2 - - uid: 16753 + - uid: 16462 components: - type: Transform - pos: 26.5,50.5 + pos: 36.5,2.5 parent: 2 - - uid: 16754 + - uid: 16463 components: - type: Transform - pos: 26.5,51.5 + pos: 37.5,3.5 parent: 2 - - uid: 16755 + - uid: 16464 components: - type: Transform - pos: 26.5,52.5 + pos: 40.5,-0.5 parent: 2 - - uid: 16756 + - uid: 16465 components: - type: Transform - pos: 26.5,53.5 + pos: 40.5,0.5 parent: 2 - - uid: 16757 + - uid: 16466 components: - type: Transform - pos: 26.5,54.5 + pos: 40.5,1.5 parent: 2 - - uid: 16758 + - uid: 16467 components: - type: Transform - pos: 26.5,55.5 + pos: 40.5,2.5 parent: 2 - - uid: 16759 + - uid: 16468 components: - type: Transform - pos: 26.5,56.5 + pos: 40.5,3.5 parent: 2 - - uid: 16760 + - uid: 16469 components: - type: Transform - pos: 26.5,57.5 + pos: 33.5,8.5 parent: 2 - - uid: 16761 + - uid: 16470 components: - type: Transform - pos: 26.5,58.5 + pos: 32.5,8.5 parent: 2 - - uid: 16762 + - uid: 16471 components: - type: Transform - pos: 27.5,59.5 + pos: 30.5,8.5 parent: 2 - - uid: 16763 + - uid: 16472 components: - type: Transform - pos: 26.5,59.5 + pos: 31.5,8.5 parent: 2 - - uid: 16764 + - uid: 16473 components: - type: Transform - pos: 28.5,59.5 + pos: 41.5,6.5 parent: 2 - - uid: 16765 + - uid: 16474 components: - type: Transform - pos: 25.5,66.5 + pos: 32.5,12.5 parent: 2 - - uid: 16766 + - uid: 16475 components: - type: Transform - pos: 30.5,62.5 + pos: 34.5,6.5 parent: 2 - - uid: 16767 + - uid: 16476 components: - type: Transform - pos: 30.5,63.5 + pos: 34.5,8.5 parent: 2 - - uid: 16768 + - uid: 16477 components: - type: Transform - pos: 30.5,64.5 + pos: 34.5,12.5 parent: 2 - - uid: 16769 + - uid: 16478 components: - type: Transform - pos: 30.5,65.5 + pos: 33.5,12.5 parent: 2 - - uid: 16770 + - uid: 16479 components: - type: Transform - pos: 30.5,66.5 + pos: 37.5,6.5 parent: 2 - - uid: 16771 + - uid: 16480 components: - type: Transform - pos: 30.5,67.5 + pos: 36.5,6.5 parent: 2 - - uid: 16772 + - uid: 16481 components: - type: Transform - pos: 29.5,67.5 + pos: 37.5,5.5 parent: 2 - - uid: 16773 + - uid: 16482 components: - type: Transform - pos: 28.5,67.5 + pos: 38.5,5.5 parent: 2 - - uid: 16774 + - uid: 16483 components: - type: Transform - pos: 27.5,67.5 + pos: 39.5,5.5 parent: 2 - - uid: 16775 + - uid: 16484 components: - type: Transform - pos: 27.5,66.5 + pos: 40.5,5.5 parent: 2 - - uid: 16776 + - uid: 16485 components: - type: Transform - pos: 31.5,52.5 + pos: 41.5,5.5 parent: 2 - - uid: 16777 + - uid: 16486 components: - type: Transform - pos: 32.5,52.5 + pos: 35.5,12.5 parent: 2 - - uid: 16778 + - uid: 16487 components: - type: Transform - pos: 29.5,52.5 + pos: 36.5,12.5 parent: 2 - - uid: 16779 + - uid: 16488 components: - type: Transform - pos: 28.5,52.5 + pos: 37.5,12.5 parent: 2 - - uid: 16780 + - uid: 16489 components: - type: Transform - pos: 28.5,53.5 + pos: 37.5,13.5 parent: 2 - - uid: 16781 + - uid: 16490 components: - type: Transform - pos: 28.5,54.5 + pos: 37.5,14.5 parent: 2 - - uid: 16782 + - uid: 16491 components: - type: Transform - pos: 28.5,55.5 + pos: 37.5,15.5 parent: 2 - - uid: 16783 + - uid: 16492 components: - type: Transform - pos: 28.5,56.5 + pos: 35.5,18.5 parent: 2 - - uid: 16784 + - uid: 16493 components: - type: Transform - pos: 28.5,57.5 + pos: 36.5,18.5 parent: 2 - - uid: 16785 + - uid: 16494 components: - type: Transform - pos: 29.5,57.5 + pos: 37.5,18.5 parent: 2 - - uid: 16786 + - uid: 16495 components: - type: Transform - pos: 30.5,57.5 + pos: 37.5,17.5 parent: 2 - - uid: 16787 + - uid: 16496 components: - type: Transform - pos: 31.5,57.5 + pos: 34.5,22.5 parent: 2 - - uid: 16788 + - uid: 16497 components: - type: Transform - pos: 32.5,57.5 + pos: 35.5,22.5 parent: 2 - - uid: 16789 + - uid: 16498 components: - type: Transform - pos: 32.5,59.5 + pos: 36.5,22.5 parent: 2 - - uid: 16790 + - uid: 16499 components: - type: Transform - pos: 32.5,56.5 + pos: 35.5,31.5 parent: 2 - - uid: 16791 + - uid: 16500 components: - type: Transform - pos: 32.5,53.5 + pos: 41.5,3.5 parent: 2 - - uid: 16792 + - uid: 16501 components: - type: Transform - pos: 32.5,54.5 + pos: 44.5,-2.5 parent: 2 - - uid: 16793 + - uid: 16502 components: - type: Transform - pos: 32.5,55.5 + pos: 44.5,-1.5 parent: 2 - - uid: 16794 + - uid: 16503 components: - type: Transform - pos: 33.5,59.5 + pos: 44.5,-0.5 parent: 2 - - uid: 16795 + - uid: 16504 components: - type: Transform - pos: 34.5,59.5 + pos: 43.5,3.5 parent: 2 - - uid: 16796 + - uid: 16505 components: - type: Transform - pos: 34.5,58.5 + pos: 44.5,3.5 parent: 2 - - uid: 16797 + - uid: 16506 components: - type: Transform - pos: 31.5,62.5 + pos: 44.5,2.5 parent: 2 - - uid: 16798 + - uid: 16507 components: - type: Transform - pos: 32.5,62.5 + pos: 44.5,1.5 parent: 2 - - uid: 16799 + - uid: 16508 components: - type: Transform - pos: 34.5,62.5 + pos: 44.5,0.5 parent: 2 - - uid: 16800 + - uid: 16509 components: - type: Transform - pos: 36.5,62.5 + pos: 42.5,6.5 parent: 2 - - uid: 16801 + - uid: 16510 components: - type: Transform - pos: 36.5,64.5 + pos: 44.5,4.5 parent: 2 - - uid: 16802 + - uid: 16511 components: - type: Transform - pos: 36.5,63.5 + pos: 44.5,5.5 parent: 2 - - uid: 16803 + - uid: 16512 components: - type: Transform - pos: 36.5,65.5 + pos: 45.5,5.5 parent: 2 - - uid: 16804 + - uid: 16513 components: - type: Transform - pos: 32.5,66.5 + pos: 46.5,5.5 parent: 2 - - uid: 16805 + - uid: 16514 components: - type: Transform - pos: 38.5,50.5 + pos: 46.5,6.5 parent: 2 - - uid: 16806 + - uid: 16515 components: - type: Transform - pos: 38.5,51.5 + pos: 46.5,7.5 parent: 2 - - uid: 16807 + - uid: 16516 components: - type: Transform - pos: 38.5,52.5 + pos: 46.5,8.5 parent: 2 - - uid: 16808 + - uid: 16517 components: - type: Transform - pos: 38.5,53.5 + pos: 47.5,8.5 parent: 2 - - uid: 16809 + - uid: 16518 components: - type: Transform - pos: 38.5,54.5 + pos: 47.5,9.5 parent: 2 - - uid: 16810 + - uid: 16519 components: - type: Transform - pos: 38.5,55.5 + pos: 47.5,11.5 parent: 2 - - uid: 16811 + - uid: 16520 components: - type: Transform - pos: 38.5,56.5 + pos: 45.5,11.5 parent: 2 - - uid: 16812 + - uid: 16521 components: - type: Transform - pos: 38.5,57.5 + pos: 42.5,7.5 parent: 2 - - uid: 16813 + - uid: 16522 components: - type: Transform - pos: 38.5,58.5 + pos: 42.5,8.5 parent: 2 - - uid: 16814 + - uid: 16523 components: - type: Transform - pos: 40.5,67.5 + pos: 42.5,9.5 parent: 2 - - uid: 16815 + - uid: 16524 components: - type: Transform - pos: 36.5,66.5 + pos: 42.5,10.5 parent: 2 - - uid: 16816 + - uid: 16525 components: - type: Transform - pos: 36.5,67.5 + pos: 42.5,11.5 parent: 2 - - uid: 16817 + - uid: 16527 components: - type: Transform - pos: 37.5,67.5 + pos: 44.5,11.5 parent: 2 - - uid: 16818 + - uid: 16528 components: - type: Transform - pos: 38.5,67.5 + pos: 46.5,11.5 parent: 2 - - uid: 16819 + - uid: 16529 components: - type: Transform - pos: 41.5,67.5 + pos: 41.5,10.5 parent: 2 - - uid: 16820 + - uid: 16530 components: - type: Transform - pos: 42.5,67.5 + pos: 42.5,12.5 parent: 2 - - uid: 16821 + - uid: 16531 components: - type: Transform - pos: 42.5,66.5 + pos: 42.5,13.5 parent: 2 - - uid: 16822 + - uid: 16532 components: - type: Transform - pos: 47.5,62.5 + pos: 42.5,14.5 parent: 2 - - uid: 16823 + - uid: 16533 components: - type: Transform - pos: 37.5,63.5 + pos: 41.5,14.5 parent: 2 - - uid: 16824 + - uid: 16534 components: - type: Transform - pos: 38.5,63.5 + pos: 39.5,18.5 parent: 2 - - uid: 16825 + - uid: 16535 components: - type: Transform - pos: 40.5,63.5 + pos: 39.5,19.5 parent: 2 - - uid: 16826 + - uid: 16536 components: - type: Transform - pos: 41.5,63.5 + pos: 39.5,20.5 parent: 2 - - uid: 16827 + - uid: 16537 components: - type: Transform - pos: 42.5,63.5 + pos: 39.5,21.5 parent: 2 - - uid: 16828 + - uid: 16538 components: - type: Transform - pos: 42.5,64.5 + pos: 39.5,22.5 parent: 2 - - uid: 16829 + - uid: 16539 components: - type: Transform - pos: 42.5,65.5 + pos: 40.5,22.5 parent: 2 - - uid: 16830 + - uid: 16540 components: - type: Transform - pos: 43.5,67.5 + pos: 41.5,22.5 parent: 2 - - uid: 16831 + - uid: 16541 components: - type: Transform - pos: 44.5,67.5 + pos: 42.5,22.5 parent: 2 - - uid: 16832 + - uid: 16542 components: - type: Transform - pos: 45.5,67.5 + pos: 44.5,22.5 parent: 2 - - uid: 16833 + - uid: 16543 components: - type: Transform - pos: 46.5,67.5 + pos: 45.5,22.5 parent: 2 - - uid: 16834 + - uid: 16544 components: - type: Transform - pos: 46.5,62.5 + pos: 45.5,20.5 parent: 2 - - uid: 16835 + - uid: 16545 components: - type: Transform - pos: 46.5,63.5 + pos: 45.5,19.5 parent: 2 - - uid: 16836 + - uid: 16546 components: - type: Transform - pos: 46.5,66.5 + pos: 44.5,19.5 parent: 2 - - uid: 16837 + - uid: 16547 components: - type: Transform - pos: 48.5,62.5 + pos: 43.5,18.5 parent: 2 - - uid: 16838 + - uid: 16548 components: - type: Transform - pos: 49.5,62.5 + pos: 44.5,18.5 parent: 2 - - uid: 16839 + - uid: 16549 components: - type: Transform - pos: 50.5,62.5 + pos: 42.5,15.5 parent: 2 - - uid: 16840 + - uid: 16550 components: - type: Transform - pos: 50.5,61.5 + pos: 43.5,15.5 parent: 2 - - uid: 16841 + - uid: 16551 components: - type: Transform - pos: 50.5,60.5 + pos: 47.5,12.5 parent: 2 - - uid: 16842 + - uid: 16552 components: - type: Transform - pos: 51.5,60.5 + pos: 48.5,12.5 parent: 2 - - uid: 16843 + - uid: 16553 components: - type: Transform - pos: 52.5,60.5 + pos: 50.5,12.5 parent: 2 - - uid: 16844 + - uid: 16554 components: - type: Transform - pos: 53.5,60.5 + pos: 50.5,13.5 parent: 2 - - uid: 16845 + - uid: 16555 components: - type: Transform - pos: 53.5,59.5 + pos: 50.5,15.5 parent: 2 - - uid: 16846 + - uid: 16556 components: - type: Transform - pos: 53.5,58.5 + pos: 50.5,16.5 parent: 2 - - uid: 16849 + - uid: 16557 components: - type: Transform - pos: 58.5,59.5 + pos: 50.5,19.5 parent: 2 - - uid: 16850 + - uid: 16558 components: - type: Transform - pos: 58.5,58.5 + pos: 49.5,19.5 parent: 2 - - uid: 16851 + - uid: 16559 components: - type: Transform - pos: 58.5,56.5 + pos: 46.5,19.5 parent: 2 - - uid: 16852 + - uid: 16560 components: - type: Transform - pos: 58.5,55.5 + pos: 45.5,23.5 parent: 2 - - uid: 16853 + - uid: 16561 components: - type: Transform - pos: 59.5,55.5 + pos: 46.5,23.5 parent: 2 - - uid: 16854 + - uid: 16562 components: - type: Transform - pos: 60.5,55.5 + pos: 45.5,24.5 parent: 2 - - uid: 16855 + - uid: 16563 components: - type: Transform - pos: 61.5,55.5 + pos: 44.5,24.5 parent: 2 - - uid: 16856 + - uid: 16564 components: - type: Transform - pos: 62.5,55.5 + pos: 43.5,24.5 parent: 2 - - uid: 16857 + - uid: 16565 components: - type: Transform - pos: 63.5,55.5 + pos: 42.5,24.5 parent: 2 - - uid: 16858 + - uid: 16566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,58.5 + pos: 38.5,24.5 parent: 2 - - uid: 16859 + - uid: 16567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,58.5 + pos: 37.5,24.5 parent: 2 - - uid: 16860 + - uid: 16568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,58.5 + pos: 36.5,24.5 parent: 2 - - uid: 16861 + - uid: 16569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,62.5 + pos: 36.5,23.5 parent: 2 - - uid: 16862 + - uid: 16570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,60.5 + pos: 34.5,23.5 parent: 2 - - uid: 16863 + - uid: 16571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,61.5 + pos: 34.5,24.5 parent: 2 - - uid: 16864 + - uid: 16572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,62.5 + pos: 34.5,25.5 parent: 2 - - uid: 16865 + - uid: 16573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,64.5 + pos: 34.5,26.5 parent: 2 - - uid: 16866 + - uid: 16574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,64.5 + pos: 34.5,27.5 parent: 2 - - uid: 16867 + - uid: 16575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,64.5 + pos: 34.5,28.5 parent: 2 - - uid: 16868 + - uid: 16576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,64.5 + pos: 34.5,29.5 parent: 2 - - uid: 16869 + - uid: 16577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,63.5 + pos: 34.5,30.5 parent: 2 - - uid: 16870 + - uid: 16578 components: - type: Transform - pos: 72.5,63.5 + pos: 34.5,31.5 parent: 2 - - uid: 16871 + - uid: 16579 components: - type: Transform - pos: 73.5,63.5 + pos: 34.5,32.5 parent: 2 - - uid: 16872 + - uid: 16580 components: - type: Transform - pos: 74.5,63.5 + pos: 36.5,31.5 parent: 2 - - uid: 16873 + - uid: 16581 components: - type: Transform - pos: 75.5,63.5 + pos: 37.5,31.5 parent: 2 - - uid: 16874 + - uid: 16582 components: - type: Transform - pos: 79.5,63.5 + pos: 38.5,31.5 parent: 2 - - uid: 16875 + - uid: 16583 components: - type: Transform - pos: 80.5,63.5 + pos: 38.5,32.5 parent: 2 - - uid: 16876 + - uid: 16584 components: - type: Transform - pos: 76.5,58.5 + pos: 36.5,30.5 parent: 2 - - uid: 16877 + - uid: 16585 components: - type: Transform - pos: 77.5,58.5 + pos: 36.5,28.5 parent: 2 - - uid: 16878 + - uid: 16586 components: - type: Transform - pos: 78.5,58.5 + pos: 36.5,26.5 parent: 2 - - uid: 16879 + - uid: 16587 components: - type: Transform - pos: 79.5,58.5 + pos: 37.5,26.5 parent: 2 - - uid: 16880 + - uid: 16588 components: - type: Transform - pos: 80.5,58.5 + pos: 38.5,26.5 parent: 2 - - uid: 16881 + - uid: 16589 components: - type: Transform - pos: 74.5,58.5 + pos: 39.5,26.5 parent: 2 - - uid: 16882 + - uid: 16590 components: - type: Transform - pos: 73.5,58.5 + pos: 41.5,26.5 parent: 2 - - uid: 16883 + - uid: 16591 components: - type: Transform - pos: 72.5,58.5 + pos: 42.5,26.5 parent: 2 - - uid: 16884 + - uid: 16592 components: - type: Transform - pos: 71.5,58.5 + pos: 43.5,26.5 parent: 2 - - uid: 16885 + - uid: 16593 components: - type: Transform - pos: 71.5,59.5 + pos: 43.5,27.5 parent: 2 - - uid: 16886 + - uid: 16594 components: - type: Transform - pos: 71.5,61.5 + pos: 43.5,29.5 parent: 2 - - uid: 16887 + - uid: 16595 components: - type: Transform - pos: 71.5,62.5 + pos: 43.5,30.5 parent: 2 - - uid: 16888 + - uid: 16596 components: - type: Transform - pos: 81.5,54.5 + pos: 42.5,30.5 parent: 2 - - uid: 16889 + - uid: 16597 components: - type: Transform - pos: 80.5,54.5 + pos: 43.5,31.5 parent: 2 - - uid: 16890 + - uid: 16598 components: - type: Transform - pos: 81.5,52.5 + pos: 43.5,32.5 parent: 2 - - uid: 16891 + - uid: 16599 components: - type: Transform - pos: 81.5,48.5 + pos: 42.5,32.5 parent: 2 - - uid: 16892 + - uid: 16600 components: - type: Transform - pos: 82.5,48.5 + pos: 40.5,30.5 parent: 2 - - uid: 16893 + - uid: 16601 components: - type: Transform - pos: 83.5,48.5 + pos: 39.5,30.5 parent: 2 - - uid: 16894 + - uid: 16602 components: - type: Transform - pos: 83.5,47.5 + pos: 39.5,31.5 parent: 2 - - uid: 16895 + - uid: 16603 components: - type: Transform - pos: 84.5,47.5 + pos: 39.5,32.5 parent: 2 - - uid: 16896 + - uid: 16604 components: - type: Transform - pos: 84.5,46.5 + pos: 40.5,32.5 parent: 2 - - uid: 16897 + - uid: 16605 components: - type: Transform - pos: 84.5,45.5 + pos: 45.5,25.5 parent: 2 - - uid: 16898 + - uid: 16606 components: - type: Transform - pos: 83.5,45.5 + pos: 45.5,26.5 parent: 2 - - uid: 16899 + - uid: 16607 components: - type: Transform - pos: 82.5,45.5 + pos: 45.5,27.5 parent: 2 - - uid: 16900 + - uid: 16608 components: - type: Transform - pos: 80.5,45.5 + pos: 45.5,28.5 parent: 2 - - uid: 16901 + - uid: 16609 components: - type: Transform - pos: 79.5,45.5 + pos: 45.5,29.5 parent: 2 - - uid: 16902 + - uid: 16610 components: - type: Transform - pos: 79.5,46.5 + pos: 45.5,30.5 parent: 2 - - uid: 16903 + - uid: 16611 components: - type: Transform - pos: 78.5,46.5 + pos: 45.5,31.5 parent: 2 - - uid: 16904 + - uid: 16612 components: - type: Transform - pos: 77.5,46.5 + pos: 45.5,32.5 parent: 2 - - uid: 16905 + - uid: 16613 components: - type: Transform - pos: 76.5,46.5 + pos: 46.5,32.5 parent: 2 - - uid: 16906 + - uid: 16614 components: - type: Transform - pos: 75.5,46.5 + pos: 47.5,32.5 parent: 2 - - uid: 16907 + - uid: 16615 components: - type: Transform - pos: 74.5,46.5 + pos: 48.5,32.5 parent: 2 - - uid: 16908 + - uid: 16616 components: - type: Transform - pos: 73.5,46.5 + pos: 49.5,29.5 parent: 2 - - uid: 16909 + - uid: 16617 components: - type: Transform - pos: 72.5,46.5 + pos: 49.5,32.5 parent: 2 - - uid: 16910 + - uid: 16618 components: - type: Transform - pos: 72.5,47.5 + pos: 49.5,31.5 parent: 2 - - uid: 16911 + - uid: 16619 components: - type: Transform - pos: 71.5,47.5 + pos: 49.5,28.5 parent: 2 - - uid: 16912 + - uid: 16620 components: - type: Transform - pos: 70.5,47.5 + pos: 51.5,28.5 parent: 2 - - uid: 16913 + - uid: 16621 components: - type: Transform - pos: 69.5,47.5 + pos: 50.5,28.5 parent: 2 - - uid: 16914 + - uid: 16622 components: - type: Transform - pos: 69.5,44.5 + pos: 50.5,32.5 parent: 2 - - uid: 16915 + - uid: 16623 components: - type: Transform - pos: 69.5,41.5 + pos: 51.5,32.5 parent: 2 - - uid: 16916 + - uid: 16624 components: - type: Transform - pos: 70.5,41.5 + pos: 52.5,32.5 parent: 2 - - uid: 16917 + - uid: 16625 components: - type: Transform - pos: 71.5,41.5 + pos: 53.5,32.5 parent: 2 - - uid: 16918 + - uid: 16626 components: - type: Transform - pos: 72.5,41.5 + pos: 53.5,31.5 parent: 2 - - uid: 16919 + - uid: 16627 components: - type: Transform - pos: 72.5,44.5 + pos: 53.5,29.5 parent: 2 - - uid: 16920 + - uid: 16628 components: - type: Transform - pos: 79.5,41.5 + pos: 53.5,28.5 parent: 2 - - uid: 16921 + - uid: 16629 components: - type: Transform - pos: 80.5,41.5 + pos: 52.5,28.5 parent: 2 - - uid: 16922 + - uid: 16630 components: - type: Transform - pos: 79.5,40.5 + pos: 51.5,27.5 parent: 2 - - uid: 16923 + - uid: 16631 components: - type: Transform - pos: 82.5,41.5 + pos: 51.5,23.5 parent: 2 - - uid: 16924 + - uid: 16632 components: - type: Transform - pos: 83.5,41.5 + pos: 49.5,23.5 parent: 2 - - uid: 16925 + - uid: 16633 components: - type: Transform - pos: 84.5,41.5 + pos: 49.5,21.5 parent: 2 - - uid: 16926 + - uid: 16634 components: - type: Transform - pos: 83.5,40.5 + pos: 53.5,19.5 parent: 2 - - uid: 16927 + - uid: 16635 components: - type: Transform - pos: 83.5,39.5 + pos: 56.5,9.5 parent: 2 - - uid: 16928 + - uid: 16636 components: - type: Transform - pos: 83.5,38.5 + pos: 57.5,23.5 parent: 2 - - uid: 16929 + - uid: 16637 components: - type: Transform - pos: 73.5,41.5 + pos: 58.5,23.5 parent: 2 - - uid: 16930 + - uid: 16638 components: - type: Transform - pos: 74.5,41.5 + pos: 59.5,23.5 parent: 2 - - uid: 16931 + - uid: 16639 components: - type: Transform - pos: 75.5,41.5 + pos: 60.5,23.5 parent: 2 - - uid: 16932 + - uid: 16640 components: - type: Transform - pos: 76.5,41.5 + pos: 57.5,24.5 parent: 2 - - uid: 16933 + - uid: 16641 components: - type: Transform - pos: 77.5,41.5 + pos: 57.5,25.5 parent: 2 - - uid: 16934 + - uid: 16642 components: - type: Transform - pos: 78.5,41.5 + pos: 57.5,26.5 parent: 2 - - uid: 16935 + - uid: 16643 components: - type: Transform - pos: 68.5,41.5 + pos: 57.5,27.5 parent: 2 - - uid: 16936 + - uid: 16644 components: - type: Transform - pos: 67.5,41.5 + pos: 61.5,23.5 parent: 2 - - uid: 16937 + - uid: 16645 components: - type: Transform - pos: 67.5,40.5 + pos: 61.5,22.5 parent: 2 - - uid: 16938 + - uid: 16646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,36.5 + pos: 61.5,20.5 parent: 2 - - uid: 16939 + - uid: 16647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,37.5 + pos: 61.5,19.5 parent: 2 - - uid: 16940 + - uid: 16648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,36.5 + pos: 60.5,19.5 parent: 2 - - uid: 16941 + - uid: 16649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,36.5 + pos: 60.5,18.5 parent: 2 - - uid: 16942 + - uid: 16650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,36.5 + pos: 60.5,17.5 parent: 2 - - uid: 16943 + - uid: 16651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,36.5 + pos: 60.5,16.5 parent: 2 - - uid: 16944 + - uid: 16652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,36.5 + pos: 60.5,15.5 parent: 2 - - uid: 16945 + - uid: 16653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,32.5 + pos: 60.5,14.5 parent: 2 - - uid: 16946 + - uid: 16654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,32.5 + pos: 59.5,14.5 parent: 2 - - uid: 16947 + - uid: 16655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,32.5 + pos: 51.5,12.5 parent: 2 - - uid: 16948 + - uid: 16656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,32.5 + pos: 52.5,12.5 parent: 2 - - uid: 16949 + - uid: 16657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,32.5 + pos: 53.5,12.5 parent: 2 - - uid: 16950 + - uid: 16658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,36.5 + pos: 54.5,12.5 parent: 2 - - uid: 16951 + - uid: 16659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,37.5 + pos: 56.5,11.5 parent: 2 - - uid: 16952 + - uid: 16660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,39.5 + pos: 56.5,10.5 parent: 2 - - uid: 16953 + - uid: 16661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,32.5 + pos: 54.5,14.5 parent: 2 - - uid: 16954 + - uid: 16662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,31.5 + pos: 54.5,13.5 parent: 2 - - uid: 16955 + - uid: 16663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,29.5 + pos: 55.5,14.5 parent: 2 - - uid: 16956 + - uid: 16664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,28.5 + pos: 56.5,14.5 parent: 2 - - uid: 16957 + - uid: 16665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,28.5 + pos: 58.5,14.5 parent: 2 - - uid: 16958 + - uid: 16666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,29.5 + pos: 57.5,14.5 parent: 2 - - uid: 16959 + - uid: 16667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,30.5 + pos: 48.5,8.5 parent: 2 - - uid: 16960 + - uid: 16668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,29.5 + pos: 51.5,8.5 parent: 2 - - uid: 16961 + - uid: 16669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,30.5 + pos: 50.5,8.5 parent: 2 - - uid: 16962 + - uid: 16670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,30.5 + pos: 51.5,9.5 parent: 2 - - uid: 16963 + - uid: 16671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,38.5 + pos: 51.5,11.5 parent: 2 - - uid: 16964 + - uid: 16672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,38.5 + pos: 52.5,8.5 parent: 2 - - uid: 16965 + - uid: 16673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,39.5 + pos: 53.5,8.5 parent: 2 - - uid: 16966 + - uid: 16674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,27.5 + pos: 54.5,8.5 parent: 2 - - uid: 16967 + - uid: 16675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,27.5 + pos: 55.5,8.5 parent: 2 - - uid: 16968 + - uid: 16676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,26.5 + pos: 56.5,8.5 parent: 2 - - uid: 16969 + - uid: 16677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,9.5 + pos: 56.5,7.5 parent: 2 - - uid: 16970 + - uid: 16678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,21.5 + pos: 53.5,5.5 parent: 2 - - uid: 16971 + - uid: 16679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,20.5 + pos: 54.5,5.5 parent: 2 - - uid: 16972 + - uid: 16680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,20.5 + pos: 55.5,5.5 parent: 2 - - uid: 16973 + - uid: 16681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,20.5 + pos: 56.5,5.5 parent: 2 - - uid: 16974 + - uid: 16682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,20.5 + pos: 57.5,5.5 parent: 2 - - uid: 16975 + - uid: 16683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,20.5 + pos: 58.5,5.5 parent: 2 - - uid: 16976 + - uid: 16684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,21.5 + pos: 58.5,4.5 parent: 2 - - uid: 16977 + - uid: 16685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,22.5 + pos: 58.5,3.5 parent: 2 - - uid: 16978 + - uid: 16686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,23.5 + pos: 58.5,2.5 parent: 2 - - uid: 16979 + - uid: 16687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,24.5 + pos: 58.5,1.5 parent: 2 - - uid: 16980 + - uid: 16688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,25.5 + pos: 58.5,0.5 parent: 2 - - uid: 16981 + - uid: 16689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,26.5 + pos: 58.5,-0.5 parent: 2 - - uid: 16982 + - uid: 16690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,27.5 + pos: 58.5,-1.5 parent: 2 - - uid: 16983 + - uid: 16691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,21.5 + pos: 58.5,-2.5 parent: 2 - - uid: 16984 + - uid: 16692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,21.5 + pos: 58.5,-4.5 parent: 2 - - uid: 16985 + - uid: 16693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,21.5 + pos: 58.5,-3.5 parent: 2 - - uid: 16986 + - uid: 16694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,21.5 + pos: 44.5,-3.5 parent: 2 - - uid: 16987 + - uid: 16695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,22.5 + pos: 44.5,-4.5 parent: 2 - - uid: 16988 + - uid: 16696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,23.5 + pos: 45.5,-4.5 parent: 2 - - uid: 16989 + - uid: 16697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,23.5 + pos: 46.5,-4.5 parent: 2 - - uid: 16990 + - uid: 16698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,23.5 + pos: 47.5,-4.5 parent: 2 - - uid: 16991 + - uid: 16699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,22.5 + pos: 48.5,-4.5 parent: 2 - - uid: 16992 + - uid: 16700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,24.5 + pos: 57.5,-4.5 parent: 2 - - uid: 16993 + - uid: 16701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,26.5 + pos: 56.5,-4.5 parent: 2 - - uid: 16994 + - uid: 16702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,26.5 + pos: 48.5,-5.5 parent: 2 - - uid: 16995 + - uid: 16703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,26.5 + pos: 48.5,-6.5 parent: 2 - - uid: 16999 + - uid: 16704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,22.5 + pos: 48.5,-7.5 parent: 2 - - uid: 17001 + - uid: 16705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,27.5 + pos: 48.5,-8.5 parent: 2 - - uid: 17002 + - uid: 16706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,27.5 + pos: 48.5,-9.5 parent: 2 - - uid: 17008 + - uid: 16707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,32.5 + pos: 54.5,-6.5 parent: 2 - - uid: 17009 + - uid: 16708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,32.5 + pos: 54.5,-7.5 parent: 2 - - uid: 17010 + - uid: 16709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,32.5 + pos: 54.5,-8.5 parent: 2 - - uid: 17011 + - uid: 16710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,32.5 + pos: 54.5,-9.5 parent: 2 - - uid: 17012 + - uid: 16711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,32.5 + pos: 49.5,-5.5 parent: 2 - - uid: 17013 + - uid: 16712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,32.5 + pos: 49.5,-9.5 parent: 2 - - uid: 17014 + - uid: 16713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,32.5 + pos: 50.5,-9.5 parent: 2 - - uid: 17017 + - uid: 16714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,28.5 + pos: 51.5,-9.5 parent: 2 - - uid: 17021 + - uid: 16715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,22.5 + pos: 52.5,-9.5 parent: 2 - - uid: 17022 + - uid: 16716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,22.5 + pos: 53.5,-9.5 parent: 2 - - uid: 17023 + - uid: 16717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,22.5 + pos: 47.5,5.5 parent: 2 - - uid: 17024 + - uid: 16719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,22.5 + pos: 58.5,9.5 parent: 2 - - uid: 17025 + - uid: 16720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,22.5 + pos: 58.5,10.5 parent: 2 - - uid: 17026 + - uid: 16721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,22.5 + pos: 58.5,11.5 parent: 2 - - uid: 17027 + - uid: 16722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,19.5 + pos: 61.5,7.5 parent: 2 - - uid: 17028 + - uid: 16723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,18.5 + pos: 61.5,8.5 parent: 2 - - uid: 17029 + - uid: 16724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,19.5 + pos: 61.5,9.5 parent: 2 - - uid: 17030 + - uid: 16725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,18.5 + pos: 61.5,10.5 parent: 2 - - uid: 17031 + - uid: 16726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,18.5 + pos: 61.5,11.5 parent: 2 - - uid: 17032 + - uid: 16727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,18.5 + pos: 63.5,-0.5 parent: 2 - - uid: 17033 + - uid: 16728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,18.5 + pos: 63.5,0.5 parent: 2 - - uid: 17034 + - uid: 16729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,18.5 + pos: 62.5,0.5 parent: 2 - - uid: 17035 + - uid: 16730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,14.5 + pos: 62.5,1.5 parent: 2 - - uid: 17036 + - uid: 16731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,14.5 + pos: 62.5,5.5 parent: 2 - - uid: 17037 + - uid: 16732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,14.5 + pos: 62.5,6.5 parent: 2 - - uid: 17038 + - uid: 16733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,14.5 + pos: 62.5,7.5 parent: 2 - - uid: 17039 + - uid: 16734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,13.5 + pos: 67.5,-0.5 parent: 2 - - uid: 17040 + - uid: 16735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,12.5 + pos: 67.5,0.5 parent: 2 - - uid: 17041 + - uid: 16736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,12.5 + pos: 68.5,0.5 parent: 2 - - uid: 17042 + - uid: 16737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,12.5 + pos: 71.5,-1.5 parent: 2 - - uid: 17043 + - uid: 16738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,11.5 + pos: 71.5,-2.5 parent: 2 - - uid: 17044 + - uid: 16739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,10.5 + pos: 72.5,-2.5 parent: 2 - - uid: 17045 + - uid: 16740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,6.5 + pos: 72.5,-3.5 parent: 2 - - uid: 17046 + - uid: 16741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,6.5 + pos: 20.5,67.5 parent: 2 - - uid: 17047 + - uid: 16742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,1.5 + pos: 19.5,67.5 parent: 2 - - uid: 17048 + - uid: 16743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 19.5,68.5 parent: 2 - - uid: 17049 + - uid: 16744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-1.5 + pos: 19.5,69.5 parent: 2 - - uid: 17050 + - uid: 16745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,1.5 + pos: 19.5,70.5 parent: 2 - - uid: 17051 + - uid: 16746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,4.5 + pos: 18.5,70.5 parent: 2 - - uid: 17052 + - uid: 16747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,5.5 + pos: 17.5,71.5 parent: 2 - - uid: 17053 + - uid: 16748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,6.5 + pos: 17.5,70.5 parent: 2 - - uid: 17054 + - uid: 16749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,7.5 + pos: 22.5,67.5 parent: 2 - - uid: 17055 + - uid: 16750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,7.5 + pos: 23.5,67.5 parent: 2 - - uid: 17056 + - uid: 16751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,8.5 + pos: 23.5,66.5 parent: 2 - - uid: 17057 + - uid: 16752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,8.5 + pos: 24.5,66.5 parent: 2 - - uid: 17058 + - uid: 16753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,8.5 + pos: 26.5,50.5 parent: 2 - - uid: 17059 + - uid: 16754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,7.5 + pos: 26.5,51.5 parent: 2 - - uid: 17060 + - uid: 16755 components: - type: Transform - pos: 68.5,12.5 + pos: 26.5,52.5 parent: 2 - - uid: 17061 + - uid: 16756 components: - type: Transform - pos: 69.5,12.5 + pos: 26.5,53.5 parent: 2 - - uid: 17062 + - uid: 16757 components: - type: Transform - pos: 70.5,12.5 + pos: 26.5,54.5 parent: 2 - - uid: 17063 + - uid: 16758 components: - type: Transform - pos: 68.5,16.5 + pos: 26.5,55.5 parent: 2 - - uid: 17064 + - uid: 16759 components: - type: Transform - pos: 69.5,16.5 + pos: 26.5,56.5 parent: 2 - - uid: 17065 + - uid: 16760 components: - type: Transform - pos: 70.5,16.5 + pos: 26.5,57.5 parent: 2 - - uid: 17066 + - uid: 16761 components: - type: Transform - pos: 72.5,16.5 + pos: 26.5,58.5 parent: 2 - - uid: 17067 + - uid: 16762 components: - type: Transform - pos: 73.5,16.5 + pos: 27.5,59.5 parent: 2 - - uid: 17068 + - uid: 16763 components: - type: Transform - pos: 74.5,16.5 + pos: 26.5,59.5 parent: 2 - - uid: 17069 + - uid: 16764 components: - type: Transform - pos: 74.5,14.5 + pos: 28.5,59.5 parent: 2 - - uid: 17070 + - uid: 16765 components: - type: Transform - pos: 74.5,13.5 + pos: 25.5,66.5 parent: 2 - - uid: 17071 + - uid: 16766 components: - type: Transform - pos: 74.5,12.5 + pos: 30.5,62.5 parent: 2 - - uid: 17072 + - uid: 16767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,21.5 + pos: 30.5,63.5 parent: 2 - - uid: 17073 + - uid: 16768 components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,12.5 + - type: Transform + pos: 30.5,64.5 parent: 2 - - uid: 17074 + - uid: 16769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,12.5 + pos: 30.5,65.5 parent: 2 - - uid: 17075 + - uid: 16770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,11.5 + pos: 30.5,66.5 parent: 2 - - uid: 17076 + - uid: 16771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 + pos: 30.5,67.5 parent: 2 - - uid: 17077 + - uid: 16772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 + pos: 29.5,67.5 parent: 2 - - uid: 17078 + - uid: 16773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 + pos: 28.5,67.5 parent: 2 - - uid: 17079 + - uid: 16774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,59.5 + pos: 27.5,67.5 parent: 2 - - uid: 17080 + - uid: 16775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,58.5 + pos: 27.5,66.5 parent: 2 - - uid: 17081 + - uid: 16776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 + pos: 31.5,52.5 parent: 2 - - uid: 17082 + - uid: 16777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,11.5 + pos: 32.5,52.5 parent: 2 - - uid: 17083 + - uid: 16778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 + pos: 29.5,52.5 parent: 2 - - uid: 17084 + - uid: 16779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,14.5 + pos: 28.5,52.5 parent: 2 - - uid: 17085 + - uid: 16780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,47.5 + pos: 28.5,53.5 parent: 2 - - uid: 17086 + - uid: 16781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,58.5 + pos: 28.5,54.5 parent: 2 - - uid: 17087 + - uid: 16782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,10.5 + pos: 28.5,55.5 parent: 2 - - uid: 17088 + - uid: 16783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,10.5 + pos: 28.5,56.5 parent: 2 - - uid: 17089 + - uid: 16784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,19.5 + pos: 28.5,57.5 parent: 2 - - uid: 17090 + - uid: 16785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,18.5 + pos: 29.5,57.5 parent: 2 - - uid: 17091 + - uid: 16786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 + pos: 30.5,57.5 parent: 2 - - uid: 17092 + - uid: 16787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,15.5 + pos: 31.5,57.5 parent: 2 - - uid: 17093 + - uid: 16788 components: - type: Transform - pos: -5.5,65.5 + pos: 32.5,57.5 parent: 2 - - uid: 17094 + - uid: 16789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,62.5 + pos: 32.5,59.5 parent: 2 - - uid: 17095 + - uid: 16790 components: - type: Transform - pos: 67.5,23.5 + pos: 32.5,56.5 parent: 2 - - uid: 17096 + - uid: 16791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,33.5 + pos: 32.5,53.5 parent: 2 - - uid: 17097 + - uid: 16792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,33.5 + pos: 32.5,54.5 parent: 2 - - uid: 17098 + - uid: 16793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,33.5 + pos: 32.5,55.5 parent: 2 - - uid: 17099 + - uid: 16794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,33.5 + pos: 33.5,59.5 parent: 2 - - uid: 17100 + - uid: 16795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,33.5 + pos: 34.5,59.5 parent: 2 - - uid: 17101 + - uid: 16796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 + pos: 34.5,58.5 parent: 2 - - uid: 17102 + - uid: 16797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,40.5 + pos: 31.5,62.5 parent: 2 - - uid: 17103 + - uid: 16798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,39.5 + pos: 32.5,62.5 parent: 2 - - uid: 17104 + - uid: 16799 components: - type: Transform - pos: 67.5,26.5 + pos: 34.5,62.5 parent: 2 - - uid: 17105 + - uid: 16800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,32.5 + pos: 36.5,62.5 parent: 2 - - uid: 17106 + - uid: 16801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,40.5 + pos: 36.5,64.5 parent: 2 - - uid: 17107 + - uid: 16802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,33.5 + pos: 36.5,63.5 parent: 2 - - uid: 17108 + - uid: 16803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,40.5 + pos: 36.5,65.5 parent: 2 - - uid: 17109 + - uid: 16804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,40.5 + pos: 32.5,66.5 parent: 2 - - uid: 17110 + - uid: 16805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,40.5 + pos: 38.5,50.5 parent: 2 - - uid: 17111 + - uid: 16806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,40.5 + pos: 38.5,51.5 parent: 2 - - uid: 17112 + - uid: 16807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,40.5 + pos: 38.5,52.5 parent: 2 - - uid: 17113 + - uid: 16808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,38.5 + pos: 38.5,53.5 parent: 2 - - uid: 17114 + - uid: 16809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,35.5 + pos: 38.5,54.5 parent: 2 - - uid: 17115 + - uid: 16810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,37.5 + pos: 38.5,55.5 parent: 2 - - uid: 17116 + - uid: 16811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,36.5 + pos: 38.5,56.5 parent: 2 - - uid: 17117 + - uid: 16812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,40.5 + pos: 38.5,57.5 parent: 2 - - uid: 17118 + - uid: 16813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,40.5 + pos: 38.5,58.5 parent: 2 - - uid: 17119 + - uid: 16814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,40.5 + pos: 40.5,67.5 parent: 2 - - uid: 17120 + - uid: 16815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,39.5 + pos: 36.5,66.5 parent: 2 - - uid: 17121 + - uid: 16816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,38.5 + pos: 36.5,67.5 parent: 2 - - uid: 17122 + - uid: 16817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,36.5 + pos: 37.5,67.5 parent: 2 - - uid: 17123 + - uid: 16818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,37.5 + pos: 38.5,67.5 parent: 2 - - uid: 17124 + - uid: 16819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,35.5 + pos: 41.5,67.5 parent: 2 - - uid: 17125 + - uid: 16820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,34.5 + pos: 42.5,67.5 parent: 2 - - uid: 17126 + - uid: 16821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,33.5 + pos: 42.5,66.5 parent: 2 - - uid: 17127 + - uid: 16822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,33.5 + pos: 47.5,62.5 parent: 2 - - uid: 17128 + - uid: 16823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,33.5 + pos: 37.5,63.5 parent: 2 - - uid: 17129 + - uid: 16824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,73.5 + pos: 38.5,63.5 parent: 2 - - uid: 17130 + - uid: 16825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,73.5 + pos: 40.5,63.5 parent: 2 - - uid: 17131 + - uid: 16826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,73.5 + pos: 41.5,63.5 parent: 2 - - uid: 17132 + - uid: 16827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,73.5 + pos: 42.5,63.5 parent: 2 - - uid: 17133 + - uid: 16828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,73.5 + pos: 42.5,64.5 parent: 2 - - uid: 17134 + - uid: 16829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,73.5 + pos: 42.5,65.5 parent: 2 - - uid: 17136 + - uid: 16830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 + pos: 43.5,67.5 parent: 2 - - uid: 17137 + - uid: 16831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 + pos: 44.5,67.5 parent: 2 - - uid: 17138 + - uid: 16832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-13.5 + pos: 45.5,67.5 parent: 2 - - uid: 17139 + - uid: 16833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,26.5 + pos: 46.5,67.5 parent: 2 - - uid: 17140 + - uid: 16834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,30.5 + pos: 46.5,62.5 parent: 2 - - uid: 17141 + - uid: 16835 components: - type: Transform - pos: 2.5,31.5 + pos: 46.5,63.5 parent: 2 - - uid: 17142 + - uid: 16836 components: - type: Transform - pos: 2.5,35.5 + pos: 46.5,66.5 parent: 2 - - uid: 17143 + - uid: 16837 components: - type: Transform - pos: -24.5,21.5 + pos: 48.5,62.5 parent: 2 - - uid: 17144 + - uid: 16838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-6.5 + pos: 49.5,62.5 parent: 2 - - uid: 17145 + - uid: 16839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-6.5 + pos: 50.5,62.5 parent: 2 - - uid: 17146 + - uid: 16840 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-6.5 + pos: 50.5,61.5 parent: 2 - - uid: 17147 + - uid: 16841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + pos: 50.5,60.5 parent: 2 - - uid: 17148 + - uid: 16842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 + pos: 51.5,60.5 parent: 2 - - uid: 17149 + - uid: 16843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 + pos: 52.5,60.5 parent: 2 - - uid: 17150 + - uid: 16844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 + pos: 53.5,60.5 parent: 2 - - uid: 17151 + - uid: 16845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 53.5,59.5 parent: 2 - - uid: 17152 + - uid: 16846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 + pos: 53.5,58.5 parent: 2 - - uid: 17153 + - uid: 16849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: 58.5,59.5 parent: 2 - - uid: 17154 + - uid: 16850 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 + pos: 58.5,58.5 parent: 2 - - uid: 17155 + - uid: 16851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-10.5 + pos: 58.5,56.5 parent: 2 - - uid: 17156 + - uid: 16852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-11.5 + pos: 58.5,55.5 parent: 2 - - uid: 17157 + - uid: 16853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-12.5 + pos: 59.5,55.5 parent: 2 - - uid: 17158 + - uid: 16854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-13.5 + pos: 60.5,55.5 parent: 2 - - uid: 17159 + - uid: 16855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 + pos: 61.5,55.5 parent: 2 - - uid: 17160 + - uid: 16856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 + pos: 62.5,55.5 parent: 2 - - uid: 17161 + - uid: 16857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-15.5 + pos: 63.5,55.5 parent: 2 - - uid: 17162 + - uid: 16858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 + rot: -1.5707963267948966 rad + pos: 63.5,58.5 parent: 2 - - uid: 17163 + - uid: 16859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-16.5 + rot: -1.5707963267948966 rad + pos: 61.5,58.5 parent: 2 - - uid: 17164 + - uid: 16860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-16.5 + rot: -1.5707963267948966 rad + pos: 59.5,58.5 parent: 2 - - uid: 17165 + - uid: 16861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 + rot: -1.5707963267948966 rad + pos: 61.5,62.5 parent: 2 - - uid: 17166 + - uid: 16862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-16.5 + rot: -1.5707963267948966 rad + pos: 58.5,60.5 parent: 2 - - uid: 17167 + - uid: 16863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 + rot: -1.5707963267948966 rad + pos: 58.5,61.5 parent: 2 - - uid: 17168 + - uid: 16864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-16.5 + rot: -1.5707963267948966 rad + pos: 58.5,62.5 parent: 2 - - uid: 17169 + - uid: 16865 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-16.5 + rot: -1.5707963267948966 rad + pos: 59.5,64.5 parent: 2 - - uid: 17170 + - uid: 16866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-16.5 + rot: -1.5707963267948966 rad + pos: 63.5,64.5 parent: 2 - - uid: 17171 + - uid: 16867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-16.5 + rot: -1.5707963267948966 rad + pos: 67.5,64.5 parent: 2 - - uid: 17172 + - uid: 16868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-16.5 + rot: -1.5707963267948966 rad + pos: 71.5,64.5 parent: 2 - - uid: 17173 + - uid: 16869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-15.5 + rot: -1.5707963267948966 rad + pos: 71.5,63.5 parent: 2 - - uid: 17174 + - uid: 16870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-15.5 + pos: 72.5,63.5 parent: 2 - - uid: 17175 + - uid: 16871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-15.5 + pos: 73.5,63.5 parent: 2 - - uid: 17176 + - uid: 16872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-15.5 + pos: 74.5,63.5 parent: 2 - - uid: 17177 + - uid: 16873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-15.5 + pos: 75.5,63.5 parent: 2 - - uid: 17178 + - uid: 16874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-15.5 + pos: 79.5,63.5 parent: 2 - - uid: 17179 + - uid: 16875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-15.5 + pos: 80.5,63.5 parent: 2 - - uid: 17180 + - uid: 16876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-15.5 + pos: 76.5,58.5 parent: 2 - - uid: 17181 + - uid: 16877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-15.5 + pos: 77.5,58.5 parent: 2 - - uid: 17182 + - uid: 16878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-14.5 + pos: 78.5,58.5 parent: 2 - - uid: 17183 + - uid: 16879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-14.5 + pos: 79.5,58.5 parent: 2 - - uid: 17184 + - uid: 16880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-13.5 + pos: 80.5,58.5 parent: 2 - - uid: 17185 + - uid: 16881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-12.5 + pos: 74.5,58.5 parent: 2 - - uid: 17186 + - uid: 16882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-11.5 + pos: 73.5,58.5 parent: 2 - - uid: 17187 + - uid: 16883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-10.5 + pos: 72.5,58.5 parent: 2 - - uid: 17188 + - uid: 16884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-9.5 + pos: 71.5,58.5 parent: 2 - - uid: 17189 + - uid: 16885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-8.5 + pos: 71.5,59.5 parent: 2 - - uid: 17190 + - uid: 16886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 + pos: 71.5,61.5 parent: 2 - - uid: 17191 + - uid: 16887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 71.5,62.5 parent: 2 - - uid: 17192 + - uid: 16888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 + pos: 81.5,54.5 parent: 2 - - uid: 17193 + - uid: 16889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 + pos: 80.5,54.5 parent: 2 - - uid: 17194 + - uid: 16890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 + pos: 81.5,52.5 parent: 2 - - uid: 17195 + - uid: 16891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: 81.5,48.5 parent: 2 - - uid: 17196 + - uid: 16892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 + pos: 82.5,48.5 parent: 2 - - uid: 17197 + - uid: 16893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-7.5 + pos: 83.5,48.5 parent: 2 - - uid: 17198 + - uid: 16894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 + pos: 83.5,47.5 parent: 2 - - uid: 17199 + - uid: 16895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-7.5 + pos: 84.5,47.5 parent: 2 - - uid: 17200 + - uid: 16896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 + pos: 84.5,46.5 parent: 2 - - uid: 17201 + - uid: 16897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + pos: 84.5,45.5 parent: 2 - - uid: 17202 + - uid: 16898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-9.5 + pos: 83.5,45.5 parent: 2 - - uid: 17203 + - uid: 16899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 + pos: 82.5,45.5 parent: 2 - - uid: 17204 + - uid: 16900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 + pos: 80.5,45.5 parent: 2 - - uid: 17205 + - uid: 16901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 + pos: 79.5,45.5 parent: 2 - - uid: 17206 + - uid: 16902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 + pos: 79.5,46.5 parent: 2 - - uid: 17207 + - uid: 16903 components: - type: Transform - pos: 32.5,-15.5 + pos: 78.5,46.5 parent: 2 - - uid: 17208 + - uid: 16904 components: - type: Transform - pos: 32.5,-14.5 + pos: 77.5,46.5 parent: 2 - - uid: 17209 + - uid: 16905 components: - type: Transform - pos: 33.5,-15.5 + pos: 76.5,46.5 parent: 2 - - uid: 17210 + - uid: 16906 components: - type: Transform - pos: 33.5,-14.5 + pos: 75.5,46.5 parent: 2 - - uid: 17211 + - uid: 16907 components: - type: Transform - pos: 34.5,-15.5 + pos: 74.5,46.5 parent: 2 - - uid: 17212 + - uid: 16908 components: - type: Transform - pos: 34.5,-14.5 + pos: 73.5,46.5 parent: 2 - - uid: 17213 + - uid: 16909 components: - type: Transform - pos: 35.5,-15.5 + pos: 72.5,46.5 parent: 2 - - uid: 17214 + - uid: 16910 components: - type: Transform - pos: 35.5,-14.5 + pos: 72.5,47.5 parent: 2 - - uid: 17215 + - uid: 16911 components: - type: Transform - pos: 36.5,-15.5 + pos: 71.5,47.5 parent: 2 - - uid: 17216 + - uid: 16912 components: - type: Transform - pos: 36.5,-14.5 + pos: 70.5,47.5 parent: 2 - - uid: 17217 + - uid: 16913 components: - type: Transform - pos: 37.5,-15.5 + pos: 69.5,47.5 parent: 2 - - uid: 17218 + - uid: 16914 components: - type: Transform - pos: 37.5,-14.5 + pos: 69.5,44.5 parent: 2 - - uid: 17219 + - uid: 16915 components: - type: Transform - pos: 38.5,-15.5 + pos: 69.5,41.5 parent: 2 - - uid: 17220 + - uid: 16916 components: - type: Transform - pos: 38.5,-14.5 + pos: 70.5,41.5 parent: 2 - - uid: 17221 + - uid: 16917 components: - type: Transform - pos: 39.5,-14.5 + pos: 71.5,41.5 parent: 2 - - uid: 17222 + - uid: 16918 components: - type: Transform - pos: 39.5,-13.5 + pos: 72.5,41.5 parent: 2 - - uid: 17223 + - uid: 16919 components: - type: Transform - pos: 39.5,-12.5 + pos: 72.5,44.5 parent: 2 - - uid: 17224 + - uid: 16920 components: - type: Transform - pos: 39.5,-11.5 + pos: 79.5,41.5 parent: 2 - - uid: 17225 + - uid: 16921 components: - type: Transform - pos: 39.5,-10.5 + pos: 80.5,41.5 parent: 2 - - uid: 17226 + - uid: 16922 components: - type: Transform - pos: 39.5,-9.5 + pos: 79.5,40.5 parent: 2 - - uid: 17227 + - uid: 16923 components: - type: Transform - pos: 39.5,-8.5 + pos: 82.5,41.5 parent: 2 - - uid: 17228 + - uid: 16924 components: - type: Transform - pos: 38.5,-13.5 + pos: 83.5,41.5 parent: 2 - - uid: 17229 + - uid: 16925 components: - type: Transform - pos: 38.5,-12.5 + pos: 84.5,41.5 parent: 2 - - uid: 17230 + - uid: 16926 components: - type: Transform - pos: 38.5,-11.5 + pos: 83.5,40.5 parent: 2 - - uid: 17231 + - uid: 16927 components: - type: Transform - pos: 38.5,-10.5 + pos: 83.5,39.5 parent: 2 - - uid: 17232 + - uid: 16928 components: - type: Transform - pos: 38.5,-9.5 + pos: 83.5,38.5 parent: 2 - - uid: 17233 + - uid: 16929 components: - type: Transform - pos: 38.5,-8.5 + pos: 73.5,41.5 parent: 2 - - uid: 17234 + - uid: 16930 components: - type: Transform - pos: 32.5,-7.5 + pos: 74.5,41.5 parent: 2 - - uid: 17235 + - uid: 16931 components: - type: Transform - pos: 32.5,-8.5 + pos: 75.5,41.5 parent: 2 - - uid: 17236 + - uid: 16932 components: - type: Transform - pos: 34.5,-7.5 + pos: 76.5,41.5 parent: 2 - - uid: 17237 + - uid: 16933 components: - type: Transform - pos: 34.5,-8.5 + pos: 77.5,41.5 parent: 2 - - uid: 17238 + - uid: 16934 components: - type: Transform - pos: 35.5,-7.5 + pos: 78.5,41.5 parent: 2 - - uid: 17239 + - uid: 16935 components: - type: Transform - pos: 35.5,-8.5 + pos: 68.5,41.5 parent: 2 - - uid: 17240 + - uid: 16936 components: - type: Transform - pos: 36.5,-7.5 + pos: 67.5,41.5 parent: 2 - - uid: 17241 + - uid: 16937 components: - type: Transform - pos: 36.5,-8.5 + pos: 67.5,40.5 parent: 2 - - uid: 17242 + - uid: 16938 components: - type: Transform - pos: 37.5,-7.5 + rot: -1.5707963267948966 rad + pos: 73.5,36.5 parent: 2 - - uid: 17243 + - uid: 16939 components: - type: Transform - pos: 37.5,-8.5 + rot: -1.5707963267948966 rad + pos: 73.5,37.5 parent: 2 - - uid: 17244 + - uid: 16940 components: - type: Transform - pos: 38.5,-7.5 + rot: -1.5707963267948966 rad + pos: 74.5,36.5 parent: 2 - - uid: 17247 + - uid: 16941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,67.5 + rot: -1.5707963267948966 rad + pos: 75.5,36.5 parent: 2 - - uid: 17340 + - uid: 16942 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,71.5 + pos: 76.5,36.5 parent: 2 - - uid: 17820 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,74.5 + pos: 77.5,36.5 parent: 2 - - uid: 17870 + - uid: 16944 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,75.5 + pos: 78.5,36.5 parent: 2 - - uid: 18248 + - uid: 16945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,61.5 + rot: -1.5707963267948966 rad + pos: 78.5,32.5 parent: 2 - - uid: 18646 + - uid: 16946 components: - type: Transform - pos: -5.5,22.5 + rot: -1.5707963267948966 rad + pos: 77.5,32.5 parent: 2 -- proto: WallSolid - entities: - - uid: 6325 + - uid: 16947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,48.5 + rot: -1.5707963267948966 rad + pos: 76.5,32.5 parent: 2 - - uid: 8535 + - uid: 16948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,80.5 + rot: -1.5707963267948966 rad + pos: 75.5,32.5 parent: 2 - - uid: 8536 + - uid: 16949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,80.5 + rot: -1.5707963267948966 rad + pos: 74.5,32.5 parent: 2 - - uid: 8537 + - uid: 16950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,80.5 + rot: -1.5707963267948966 rad + pos: 79.5,36.5 parent: 2 - - uid: 8538 + - uid: 16951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,80.5 + rot: -1.5707963267948966 rad + pos: 79.5,37.5 parent: 2 - - uid: 9120 + - uid: 16952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,80.5 + rot: -1.5707963267948966 rad + pos: 79.5,39.5 parent: 2 - - uid: 9532 + - uid: 16953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,78.5 + rot: -1.5707963267948966 rad + pos: 79.5,32.5 parent: 2 - - uid: 12573 + - uid: 16954 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,72.5 + rot: -1.5707963267948966 rad + pos: 79.5,31.5 parent: 2 - - uid: 13972 + - uid: 16955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,74.5 + rot: -1.5707963267948966 rad + pos: 79.5,29.5 parent: 2 - - uid: 13973 + - uid: 16956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,76.5 + rot: -1.5707963267948966 rad + pos: 79.5,28.5 parent: 2 - - uid: 17245 + - uid: 16957 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,70.5 + pos: 83.5,28.5 parent: 2 - - uid: 17250 + - uid: 16958 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,68.5 + pos: 83.5,29.5 parent: 2 - - uid: 17251 + - uid: 16959 components: - type: Transform - pos: -35.5,65.5 + rot: -1.5707963267948966 rad + pos: 83.5,30.5 parent: 2 - - uid: 17252 + - uid: 16960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,47.5 + pos: 87.5,29.5 parent: 2 - - uid: 17253 + - uid: 16961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-9.5 + rot: -1.5707963267948966 rad + pos: 87.5,30.5 parent: 2 - - uid: 17254 + - uid: 16962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 + rot: -1.5707963267948966 rad + pos: 88.5,30.5 parent: 2 - - uid: 17255 + - uid: 16963 components: - type: Transform - pos: -14.5,-2.5 + rot: -1.5707963267948966 rad + pos: 87.5,38.5 parent: 2 - - uid: 17256 + - uid: 16964 components: - type: Transform - pos: -34.5,65.5 + rot: -1.5707963267948966 rad + pos: 88.5,38.5 parent: 2 - - uid: 17257 + - uid: 16965 components: - type: Transform - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: 87.5,39.5 parent: 2 - - uid: 17258 + - uid: 16966 components: - type: Transform - pos: -12.5,4.5 + rot: -1.5707963267948966 rad + pos: 83.5,27.5 parent: 2 - - uid: 17259 + - uid: 16967 components: - type: Transform - pos: -13.5,4.5 + rot: -1.5707963267948966 rad + pos: 84.5,27.5 parent: 2 - - uid: 17260 + - uid: 16968 components: - type: Transform - pos: -15.5,4.5 + rot: -1.5707963267948966 rad + pos: 84.5,26.5 parent: 2 - - uid: 17261 + - uid: 16969 components: - type: Transform - pos: -8.5,4.5 + rot: 1.5707963267948966 rad + pos: 75.5,9.5 parent: 2 - - uid: 17262 + - uid: 16970 components: - type: Transform - pos: -8.5,5.5 + rot: -1.5707963267948966 rad + pos: 84.5,21.5 parent: 2 - - uid: 17263 + - uid: 16971 components: - type: Transform - pos: -8.5,6.5 + rot: -1.5707963267948966 rad + pos: 84.5,20.5 parent: 2 - - uid: 17264 + - uid: 16972 components: - type: Transform - pos: -8.5,7.5 + rot: -1.5707963267948966 rad + pos: 83.5,20.5 parent: 2 - - uid: 17265 + - uid: 16973 components: - type: Transform - pos: -8.5,8.5 + rot: -1.5707963267948966 rad + pos: 82.5,20.5 parent: 2 - - uid: 17266 + - uid: 16974 components: - type: Transform - pos: -9.5,8.5 + rot: -1.5707963267948966 rad + pos: 80.5,20.5 parent: 2 - - uid: 17267 + - uid: 16975 components: - type: Transform - pos: -8.5,9.5 + rot: -1.5707963267948966 rad + pos: 79.5,20.5 parent: 2 - - uid: 17268 + - uid: 16976 components: - type: Transform - pos: -7.5,9.5 + rot: -1.5707963267948966 rad + pos: 79.5,21.5 parent: 2 - - uid: 17269 + - uid: 16977 components: - type: Transform - pos: -6.5,9.5 + rot: -1.5707963267948966 rad + pos: 79.5,22.5 parent: 2 - - uid: 17270 + - uid: 16978 components: - type: Transform - pos: -5.5,9.5 + rot: -1.5707963267948966 rad + pos: 79.5,23.5 parent: 2 - - uid: 17271 + - uid: 16979 components: - type: Transform - pos: -4.5,9.5 + rot: -1.5707963267948966 rad + pos: 79.5,24.5 parent: 2 - - uid: 17272 + - uid: 16980 components: - type: Transform - pos: -4.5,8.5 + rot: -1.5707963267948966 rad + pos: 79.5,25.5 parent: 2 - - uid: 17273 + - uid: 16981 components: - type: Transform - pos: -4.5,5.5 + rot: -1.5707963267948966 rad + pos: 79.5,26.5 parent: 2 - - uid: 17274 + - uid: 16982 components: - type: Transform - pos: -4.5,4.5 + rot: -1.5707963267948966 rad + pos: 79.5,27.5 parent: 2 - - uid: 17275 + - uid: 16983 components: - type: Transform - pos: -4.5,3.5 + rot: -1.5707963267948966 rad + pos: 78.5,21.5 parent: 2 - - uid: 17276 + - uid: 16984 components: - type: Transform - pos: -11.5,8.5 + rot: -1.5707963267948966 rad + pos: 77.5,21.5 parent: 2 - - uid: 17277 + - uid: 16985 components: - type: Transform - pos: -12.5,8.5 + rot: -1.5707963267948966 rad + pos: 76.5,21.5 parent: 2 - - uid: 17278 + - uid: 16986 components: - type: Transform - pos: -13.5,10.5 + rot: -1.5707963267948966 rad + pos: 75.5,21.5 parent: 2 - - uid: 17279 + - uid: 16987 components: - type: Transform - pos: -12.5,10.5 + rot: -1.5707963267948966 rad + pos: 75.5,22.5 parent: 2 - - uid: 17280 + - uid: 16988 components: - type: Transform - pos: -17.5,9.5 + rot: -1.5707963267948966 rad + pos: 75.5,23.5 parent: 2 - - uid: 17281 + - uid: 16989 components: - type: Transform - pos: 5.5,9.5 + rot: -1.5707963267948966 rad + pos: 76.5,23.5 parent: 2 - - uid: 17282 + - uid: 16990 components: - type: Transform - pos: -1.5,13.5 + rot: -1.5707963267948966 rad + pos: 78.5,23.5 parent: 2 - - uid: 17283 + - uid: 16991 components: - type: Transform - pos: 1.5,13.5 + rot: -1.5707963267948966 rad + pos: 74.5,22.5 parent: 2 - - uid: 17284 + - uid: 16992 components: - type: Transform - pos: 2.5,13.5 + rot: -1.5707963267948966 rad + pos: 75.5,24.5 parent: 2 - - uid: 17285 + - uid: 16993 components: - type: Transform - pos: 13.5,15.5 + rot: -1.5707963267948966 rad + pos: 75.5,26.5 parent: 2 - - uid: 17286 + - uid: 16994 components: - type: Transform - pos: 13.5,16.5 + rot: -1.5707963267948966 rad + pos: 74.5,26.5 parent: 2 - - uid: 17287 + - uid: 16995 components: - type: Transform - pos: 13.5,17.5 + rot: -1.5707963267948966 rad + pos: 73.5,26.5 parent: 2 - - uid: 17288 + - uid: 16999 components: - type: Transform - pos: 13.5,18.5 + rot: -1.5707963267948966 rad + pos: 73.5,22.5 parent: 2 - - uid: 17289 + - uid: 17001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,22.5 + rot: -1.5707963267948966 rad + pos: 76.5,27.5 parent: 2 - - uid: 17290 + - uid: 17002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,22.5 + rot: -1.5707963267948966 rad + pos: 78.5,27.5 parent: 2 - - uid: 17291 + - uid: 17008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,23.5 + rot: -1.5707963267948966 rad + pos: 73.5,32.5 parent: 2 - - uid: 17292 + - uid: 17009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,24.5 + rot: -1.5707963267948966 rad + pos: 72.5,32.5 parent: 2 - - uid: 17293 + - uid: 17010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 + rot: -1.5707963267948966 rad + pos: 67.5,32.5 parent: 2 - - uid: 17294 + - uid: 17011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,22.5 + rot: -1.5707963267948966 rad + pos: 68.5,32.5 parent: 2 - - uid: 17295 + - uid: 17012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + rot: -1.5707963267948966 rad + pos: 69.5,32.5 parent: 2 - - uid: 17296 + - uid: 17013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,22.5 + rot: -1.5707963267948966 rad + pos: 70.5,32.5 parent: 2 - - uid: 17297 + - uid: 17014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,31.5 + rot: -1.5707963267948966 rad + pos: 71.5,32.5 parent: 2 - - uid: 17298 + - uid: 17017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,32.5 + rot: -1.5707963267948966 rad + pos: 67.5,28.5 parent: 2 - - uid: 17299 + - uid: 17021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,36.5 + rot: -1.5707963267948966 rad + pos: 67.5,22.5 parent: 2 - - uid: 17300 + - uid: 17022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-1.5 + rot: -1.5707963267948966 rad + pos: 68.5,22.5 parent: 2 - - uid: 17301 + - uid: 17023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,22.5 + rot: -1.5707963267948966 rad + pos: 69.5,22.5 parent: 2 - - uid: 17302 + - uid: 17024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,19.5 + rot: -1.5707963267948966 rad + pos: 70.5,22.5 parent: 2 - - uid: 17303 + - uid: 17025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,20.5 + rot: -1.5707963267948966 rad + pos: 71.5,22.5 parent: 2 - - uid: 17304 + - uid: 17026 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,18.5 + rot: -1.5707963267948966 rad + pos: 72.5,22.5 parent: 2 - - uid: 17305 + - uid: 17027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,16.5 + rot: 1.5707963267948966 rad + pos: 82.5,19.5 parent: 2 - - uid: 17306 + - uid: 17028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,15.5 + rot: 1.5707963267948966 rad + pos: 82.5,18.5 parent: 2 - - uid: 17307 + - uid: 17029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,14.5 + rot: 1.5707963267948966 rad + pos: 77.5,19.5 parent: 2 - - uid: 17308 + - uid: 17030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,13.5 + rot: 1.5707963267948966 rad + pos: 77.5,18.5 parent: 2 - - uid: 17309 + - uid: 17031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,12.5 + rot: 1.5707963267948966 rad + pos: 78.5,18.5 parent: 2 - - uid: 17310 + - uid: 17032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,10.5 + rot: 1.5707963267948966 rad + pos: 79.5,18.5 parent: 2 - - uid: 17311 + - uid: 17033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,9.5 + rot: 1.5707963267948966 rad + pos: 80.5,18.5 parent: 2 - - uid: 17312 + - uid: 17034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,8.5 + rot: 1.5707963267948966 rad + pos: 81.5,18.5 parent: 2 - - uid: 17313 + - uid: 17035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,5.5 + rot: 1.5707963267948966 rad + pos: 77.5,14.5 parent: 2 - - uid: 17314 + - uid: 17036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,4.5 + rot: 1.5707963267948966 rad + pos: 78.5,14.5 parent: 2 - - uid: 17315 + - uid: 17037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,4.5 + rot: 1.5707963267948966 rad + pos: 79.5,14.5 parent: 2 - - uid: 17316 + - uid: 17038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,4.5 + rot: 1.5707963267948966 rad + pos: 80.5,14.5 parent: 2 - - uid: 17317 + - uid: 17039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,4.5 + rot: 1.5707963267948966 rad + pos: 77.5,13.5 parent: 2 - - uid: 17318 + - uid: 17040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,4.5 + rot: 1.5707963267948966 rad + pos: 77.5,12.5 parent: 2 - - uid: 17319 + - uid: 17041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,4.5 + rot: 1.5707963267948966 rad + pos: 76.5,12.5 parent: 2 - - uid: 17320 + - uid: 17042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,3.5 + rot: 1.5707963267948966 rad + pos: 75.5,12.5 parent: 2 - - uid: 17321 + - uid: 17043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-0.5 + rot: 1.5707963267948966 rad + pos: 75.5,11.5 parent: 2 - - uid: 17322 + - uid: 17044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,0.5 + rot: 1.5707963267948966 rad + pos: 75.5,10.5 parent: 2 - - uid: 17323 + - uid: 17045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,1.5 + rot: 1.5707963267948966 rad + pos: 75.5,6.5 parent: 2 - - uid: 17324 + - uid: 17046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-1.5 + rot: 1.5707963267948966 rad + pos: 76.5,6.5 parent: 2 - - uid: 17325 + - uid: 17047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-1.5 + rot: 1.5707963267948966 rad + pos: 76.5,1.5 parent: 2 - - uid: 17326 + - uid: 17048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-1.5 + rot: 1.5707963267948966 rad + pos: 75.5,-2.5 parent: 2 - - uid: 17327 + - uid: 17049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-1.5 + rot: 1.5707963267948966 rad + pos: 75.5,-1.5 parent: 2 - - uid: 17328 + - uid: 17050 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,14.5 + pos: 68.5,1.5 parent: 2 - - uid: 17329 + - uid: 17051 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,14.5 + pos: 68.5,4.5 parent: 2 - - uid: 17330 + - uid: 17052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,13.5 + pos: 68.5,5.5 parent: 2 - - uid: 17331 + - uid: 17053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,46.5 + pos: 68.5,6.5 parent: 2 - - uid: 17332 + - uid: 17054 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,46.5 + pos: 68.5,7.5 parent: 2 - - uid: 17333 + - uid: 17055 components: - type: Transform - pos: 34.5,19.5 + rot: 1.5707963267948966 rad + pos: 69.5,7.5 parent: 2 - - uid: 17334 + - uid: 17056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,41.5 + rot: 1.5707963267948966 rad + pos: 69.5,8.5 parent: 2 - - uid: 17335 + - uid: 17057 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,53.5 + rot: 1.5707963267948966 rad + pos: 70.5,8.5 parent: 2 - - uid: 17336 + - uid: 17058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,51.5 + rot: 1.5707963267948966 rad + pos: 71.5,8.5 parent: 2 - - uid: 17338 + - uid: 17059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,55.5 + rot: 1.5707963267948966 rad + pos: 71.5,7.5 parent: 2 - - uid: 17339 + - uid: 17060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,57.5 + pos: 68.5,12.5 parent: 2 - - uid: 17341 + - uid: 17061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,75.5 + pos: 69.5,12.5 parent: 2 - - uid: 17342 + - uid: 17062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,67.5 + pos: 70.5,12.5 parent: 2 - - uid: 17343 + - uid: 17063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,67.5 + pos: 68.5,16.5 parent: 2 - - uid: 17344 + - uid: 17064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,65.5 + pos: 69.5,16.5 parent: 2 - - uid: 17345 + - uid: 17065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,65.5 + pos: 70.5,16.5 parent: 2 - - uid: 17346 + - uid: 17066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,65.5 + pos: 72.5,16.5 parent: 2 - - uid: 17347 + - uid: 17067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,65.5 + pos: 73.5,16.5 parent: 2 - - uid: 17348 + - uid: 17068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,69.5 + pos: 74.5,16.5 parent: 2 - - uid: 17349 + - uid: 17069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,69.5 + pos: 74.5,14.5 parent: 2 - - uid: 17350 + - uid: 17070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,69.5 + pos: 74.5,13.5 parent: 2 - - uid: 17351 + - uid: 17071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,69.5 + pos: 74.5,12.5 parent: 2 - - uid: 17352 + - uid: 17072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,65.5 + rot: 1.5707963267948966 rad + pos: 45.5,21.5 parent: 2 - - uid: 17353 + - uid: 17073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,66.5 + rot: 3.141592653589793 rad + pos: -2.5,12.5 parent: 2 - - uid: 17354 + - uid: 17074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,68.5 + rot: 3.141592653589793 rad + pos: 19.5,12.5 parent: 2 - - uid: 17355 + - uid: 17075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,69.5 + rot: 3.141592653589793 rad + pos: 19.5,11.5 parent: 2 - - uid: 17356 + - uid: 17076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,73.5 + rot: 3.141592653589793 rad + pos: 19.5,13.5 parent: 2 - - uid: 17357 + - uid: 17077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,72.5 + rot: 3.141592653589793 rad + pos: 18.5,13.5 parent: 2 - - uid: 17358 + - uid: 17078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,69.5 + rot: 3.141592653589793 rad + pos: 17.5,13.5 parent: 2 - - uid: 17359 + - uid: 17079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,69.5 + rot: 3.141592653589793 rad + pos: 50.5,59.5 parent: 2 - - uid: 17360 + - uid: 17080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,69.5 + rot: 3.141592653589793 rad + pos: 50.5,58.5 parent: 2 - - uid: 17361 + - uid: 17081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,69.5 + rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 2 - - uid: 17362 + - uid: 17082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,69.5 + rot: 3.141592653589793 rad + pos: 17.5,11.5 parent: 2 - - uid: 17363 + - uid: 17083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,70.5 + rot: 3.141592653589793 rad + pos: 17.5,12.5 parent: 2 - - uid: 17364 + - uid: 17084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,71.5 + rot: 3.141592653589793 rad + pos: 76.5,14.5 parent: 2 - - uid: 17365 + - uid: 17085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,68.5 + rot: 3.141592653589793 rad + pos: 82.5,47.5 parent: 2 - - uid: 17366 + - uid: 17086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,66.5 + rot: 3.141592653589793 rad + pos: 52.5,58.5 parent: 2 - - uid: 17367 + - uid: 17087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,65.5 + rot: 3.141592653589793 rad + pos: -21.5,10.5 parent: 2 - - uid: 17368 + - uid: 17088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,65.5 + rot: 3.141592653589793 rad + pos: -20.5,10.5 parent: 2 - - uid: 17369 + - uid: 17089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,65.5 + rot: -1.5707963267948966 rad + pos: 54.5,19.5 parent: 2 - - uid: 17370 + - uid: 17090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,65.5 + rot: -1.5707963267948966 rad + pos: 54.5,18.5 parent: 2 - - uid: 17371 + - uid: 17091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,66.5 + rot: -1.5707963267948966 rad + pos: 54.5,16.5 parent: 2 - - uid: 17372 + - uid: 17092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,67.5 + rot: -1.5707963267948966 rad + pos: 54.5,15.5 parent: 2 - - uid: 17373 + - uid: 17093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,68.5 + pos: -5.5,65.5 parent: 2 - - uid: 17374 + - uid: 17094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,65.5 + rot: 3.141592653589793 rad + pos: 35.5,62.5 parent: 2 - - uid: 17375 + - uid: 17095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,65.5 + pos: 67.5,23.5 parent: 2 - - uid: 17376 + - uid: 17104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,63.5 + pos: 67.5,26.5 parent: 2 - - uid: 17377 + - uid: 17105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,62.5 + rot: 3.141592653589793 rad + pos: -30.5,32.5 parent: 2 - - uid: 17378 + - uid: 17129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,57.5 + pos: -16.5,73.5 parent: 2 - - uid: 17379 + - uid: 17130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,58.5 + pos: -18.5,73.5 parent: 2 - - uid: 17380 + - uid: 17131 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,59.5 + pos: -17.5,73.5 parent: 2 - - uid: 17381 + - uid: 17132 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,60.5 + pos: -19.5,73.5 parent: 2 - - uid: 17382 + - uid: 17133 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,61.5 + pos: -14.5,73.5 parent: 2 - - uid: 17383 + - uid: 17134 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,54.5 + pos: -15.5,73.5 parent: 2 - - uid: 17384 + - uid: 17136 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,51.5 + pos: -12.5,-9.5 parent: 2 - - uid: 17385 + - uid: 17137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,50.5 + pos: -18.5,-13.5 parent: 2 - - uid: 17386 + - uid: 17138 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,50.5 + pos: -12.5,-13.5 parent: 2 - - uid: 17387 + - uid: 17139 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,16.5 + pos: 2.5,26.5 parent: 2 - - uid: 17388 + - uid: 17140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 2.5,30.5 parent: 2 - - uid: 17389 + - uid: 17141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,16.5 + pos: 2.5,31.5 parent: 2 - - uid: 17390 + - uid: 17142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,16.5 + pos: 2.5,35.5 parent: 2 - - uid: 17391 + - uid: 17143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 + pos: -24.5,21.5 parent: 2 - - uid: 17392 + - uid: 17148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 + pos: 34.5,-54.5 parent: 2 - - uid: 17393 + - uid: 17154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 + pos: 20.5,-26.5 parent: 2 - - uid: 17394 + - uid: 17155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 + pos: 40.5,-37.5 parent: 2 - - uid: 17395 + - uid: 17156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 + pos: 40.5,-38.5 parent: 2 - - uid: 17396 + - uid: 17157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,7.5 + pos: 40.5,-36.5 parent: 2 - - uid: 17397 + - uid: 17158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,7.5 + pos: 38.5,-26.5 parent: 2 - - uid: 17398 + - uid: 17227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,13.5 + pos: 40.5,-28.5 parent: 2 - - uid: 17399 + - uid: 17230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 + pos: 38.5,-22.5 parent: 2 - - uid: 17400 + - uid: 17239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 + pos: 40.5,-32.5 parent: 2 - - uid: 17401 + - uid: 17240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,16.5 + pos: 40.5,-33.5 parent: 2 - - uid: 17402 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,16.5 + pos: 38.5,-24.5 parent: 2 - - uid: 17403 + - uid: 17242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,16.5 + pos: 40.5,-27.5 parent: 2 - - uid: 17404 + - uid: 17243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,18.5 + pos: 38.5,-27.5 parent: 2 - - uid: 17405 + - uid: 17244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 + pos: 39.5,-52.5 parent: 2 - - uid: 17406 + - uid: 17247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,67.5 parent: 2 - - uid: 17407 + - uid: 17340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,18.5 + pos: -36.5,71.5 parent: 2 - - uid: 17408 + - uid: 17820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,16.5 + pos: -35.5,74.5 parent: 2 - - uid: 17409 + - uid: 17870 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,15.5 + pos: -26.5,75.5 parent: 2 - - uid: 17410 + - uid: 18248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,7.5 + rot: 3.141592653589793 rad + pos: 54.5,61.5 parent: 2 - - uid: 17411 + - uid: 18383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,7.5 + pos: 36.5,-54.5 parent: 2 - - uid: 17412 + - uid: 18384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,7.5 + pos: 38.5,-54.5 parent: 2 - - uid: 17413 + - uid: 18385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,7.5 + pos: 39.5,-53.5 parent: 2 - - uid: 17414 + - uid: 18386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,7.5 + pos: 38.5,-23.5 parent: 2 - - uid: 17415 + - uid: 18387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,8.5 + pos: 38.5,-20.5 parent: 2 - - uid: 17416 + - uid: 18388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,8.5 + pos: 38.5,-19.5 parent: 2 - - uid: 17417 + - uid: 18389 components: - type: Transform - pos: 30.5,15.5 + pos: 40.5,-30.5 parent: 2 - - uid: 17418 + - uid: 18390 components: - type: Transform - pos: 27.5,13.5 + pos: 40.5,-31.5 parent: 2 - - uid: 17419 + - uid: 18461 components: - type: Transform - pos: 28.5,15.5 + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 parent: 2 - - uid: 17420 + - uid: 18646 components: - type: Transform - pos: 29.5,15.5 + pos: -5.5,22.5 parent: 2 - - uid: 17421 + - uid: 20234 components: - type: Transform - pos: 31.5,18.5 + pos: 35.5,-27.5 parent: 2 - - uid: 17422 + - uid: 20235 components: - type: Transform - pos: 30.5,18.5 + pos: 35.5,-29.5 parent: 2 - - uid: 17423 +- proto: WallSolid + entities: + - uid: 6325 components: - type: Transform - pos: 29.5,18.5 + rot: 3.141592653589793 rad + pos: 79.5,48.5 parent: 2 - - uid: 17424 + - uid: 8535 components: - type: Transform - pos: 28.5,18.5 + rot: 3.141592653589793 rad + pos: -28.5,80.5 parent: 2 - - uid: 17425 + - uid: 8536 components: - type: Transform - pos: 11.5,1.5 + rot: 3.141592653589793 rad + pos: -30.5,80.5 parent: 2 - - uid: 17426 + - uid: 8537 components: - type: Transform - pos: 10.5,1.5 + rot: 3.141592653589793 rad + pos: -32.5,80.5 parent: 2 - - uid: 17427 + - uid: 8538 components: - type: Transform - pos: 11.5,2.5 + rot: 3.141592653589793 rad + pos: -34.5,80.5 parent: 2 - - uid: 17428 + - uid: 9120 components: - type: Transform - pos: 11.5,3.5 + rot: 3.141592653589793 rad + pos: -36.5,80.5 parent: 2 - - uid: 17429 + - uid: 9532 components: - type: Transform - pos: 11.5,5.5 + rot: 3.141592653589793 rad + pos: -37.5,78.5 parent: 2 - - uid: 17430 + - uid: 12573 components: - type: Transform - pos: 11.5,6.5 + rot: 3.141592653589793 rad + pos: -38.5,72.5 parent: 2 - - uid: 17431 + - uid: 13972 components: - type: Transform - pos: 10.5,6.5 + rot: 3.141592653589793 rad + pos: -37.5,74.5 parent: 2 - - uid: 17432 + - uid: 13973 components: - type: Transform - pos: 8.5,6.5 + rot: 3.141592653589793 rad + pos: -37.5,76.5 parent: 2 - - uid: 17433 + - uid: 17124 components: - type: Transform - pos: 7.5,6.5 + pos: 30.5,-45.5 parent: 2 - - uid: 17434 + - uid: 17125 components: - type: Transform - pos: 8.5,3.5 + pos: -41.5,40.5 parent: 2 - - uid: 17435 + - uid: 17126 components: - type: Transform - pos: 13.5,1.5 + pos: -40.5,41.5 parent: 2 - - uid: 17436 + - uid: 17127 components: - type: Transform - pos: 13.5,2.5 + pos: -39.5,42.5 parent: 2 - - uid: 17437 + - uid: 17245 components: - type: Transform - pos: 13.5,3.5 + rot: -1.5707963267948966 rad + pos: -38.5,70.5 parent: 2 - - uid: 17438 + - uid: 17250 components: - type: Transform - pos: 13.5,4.5 + rot: -1.5707963267948966 rad + pos: -38.5,68.5 parent: 2 - - uid: 17439 + - uid: 17251 components: - type: Transform - pos: 14.5,4.5 + pos: -35.5,65.5 parent: 2 - - uid: 17440 + - uid: 17252 components: - type: Transform - pos: 16.5,4.5 + rot: -1.5707963267948966 rad + pos: 55.5,47.5 parent: 2 - - uid: 17441 + - uid: 17253 components: - type: Transform - pos: 17.5,4.5 + rot: 3.141592653589793 rad + pos: 58.5,-9.5 parent: 2 - - uid: 17442 + - uid: 17254 components: - type: Transform - pos: 17.5,3.5 + rot: 3.141592653589793 rad + pos: 58.5,-7.5 parent: 2 - - uid: 17443 + - uid: 17255 components: - type: Transform - pos: 17.5,2.5 + pos: -14.5,-2.5 parent: 2 - - uid: 17444 + - uid: 17256 components: - type: Transform - pos: 17.5,1.5 + pos: -34.5,65.5 parent: 2 - - uid: 17445 + - uid: 17257 components: - type: Transform - pos: 8.5,-2.5 + pos: 0.5,1.5 parent: 2 - - uid: 17446 + - uid: 17258 components: - type: Transform - pos: 10.5,-2.5 + pos: -12.5,4.5 parent: 2 - - uid: 17447 + - uid: 17259 components: - type: Transform - pos: 13.5,-2.5 + pos: -13.5,4.5 parent: 2 - - uid: 17448 + - uid: 17260 components: - type: Transform - pos: 14.5,-2.5 + pos: -15.5,4.5 parent: 2 - - uid: 17449 + - uid: 17261 components: - type: Transform - pos: 14.5,-1.5 + pos: -8.5,4.5 parent: 2 - - uid: 17451 + - uid: 17262 components: - type: Transform - pos: 21.5,5.5 + pos: -8.5,5.5 parent: 2 - - uid: 17452 + - uid: 17263 components: - type: Transform - pos: 21.5,4.5 + pos: -8.5,6.5 parent: 2 - - uid: 17453 + - uid: 17264 components: - type: Transform - pos: 30.5,-3.5 + pos: -8.5,7.5 parent: 2 - - uid: 17454 + - uid: 17265 components: - type: Transform - pos: 28.5,-3.5 + pos: -8.5,8.5 parent: 2 - - uid: 17455 + - uid: 17266 components: - type: Transform - pos: 33.5,1.5 + pos: -9.5,8.5 parent: 2 - - uid: 17456 + - uid: 17267 components: - type: Transform - pos: 33.5,2.5 + pos: -8.5,9.5 parent: 2 - - uid: 17457 + - uid: 17268 components: - type: Transform - pos: 34.5,2.5 + pos: -7.5,9.5 parent: 2 - - uid: 17458 + - uid: 17269 components: - type: Transform - pos: 34.5,21.5 + pos: -6.5,9.5 parent: 2 - - uid: 17459 + - uid: 17270 components: - type: Transform - pos: 58.5,27.5 + pos: -5.5,9.5 parent: 2 - - uid: 17460 + - uid: 17271 components: - type: Transform - pos: 57.5,28.5 + pos: -4.5,9.5 parent: 2 - - uid: 17461 + - uid: 17272 components: - type: Transform - pos: 57.5,31.5 + pos: -4.5,8.5 parent: 2 - - uid: 17462 + - uid: 17273 components: - type: Transform - pos: 57.5,32.5 + pos: -4.5,5.5 parent: 2 - - uid: 17463 + - uid: 17274 components: - type: Transform - pos: 58.5,32.5 + pos: -4.5,4.5 parent: 2 - - uid: 17464 + - uid: 17275 components: - type: Transform - pos: 62.5,32.5 + pos: -4.5,3.5 parent: 2 - - uid: 17465 + - uid: 17276 components: - type: Transform - pos: 63.5,32.5 + pos: -11.5,8.5 parent: 2 - - uid: 17466 + - uid: 17277 components: - type: Transform - pos: 63.5,31.5 + pos: -12.5,8.5 parent: 2 - - uid: 17467 + - uid: 17278 components: - type: Transform - pos: 59.5,27.5 + pos: -13.5,10.5 parent: 2 - - uid: 17468 + - uid: 17279 components: - type: Transform - pos: 60.5,27.5 + pos: -12.5,10.5 parent: 2 - - uid: 17469 + - uid: 17280 components: - type: Transform - pos: 63.5,28.5 + pos: -17.5,9.5 parent: 2 - - uid: 17470 + - uid: 17281 components: - type: Transform - pos: 61.5,27.5 + pos: 5.5,9.5 parent: 2 - - uid: 17471 + - uid: 17282 components: - type: Transform - pos: 63.5,27.5 + pos: -1.5,13.5 parent: 2 - - uid: 17472 + - uid: 17283 components: - type: Transform - pos: 61.5,24.5 + pos: 1.5,13.5 parent: 2 - - uid: 17473 + - uid: 17284 components: - type: Transform - pos: 61.5,26.5 + pos: 2.5,13.5 parent: 2 - - uid: 17474 + - uid: 17285 components: - type: Transform - pos: 61.5,-3.5 + pos: 13.5,15.5 parent: 2 - - uid: 17475 + - uid: 17286 components: - type: Transform - pos: 63.5,-3.5 + pos: 13.5,16.5 parent: 2 - - uid: 17476 + - uid: 17287 components: - type: Transform - pos: 65.5,-3.5 + pos: 13.5,17.5 parent: 2 - - uid: 17477 + - uid: 17288 components: - type: Transform - pos: 68.5,-3.5 + pos: 13.5,18.5 parent: 2 - - uid: 17478 + - uid: 17289 components: - type: Transform - pos: 69.5,-3.5 + rot: 1.5707963267948966 rad + pos: 4.5,22.5 parent: 2 - - uid: 17479 + - uid: 17290 components: - type: Transform - pos: 41.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - - uid: 17480 + - uid: 17291 components: - type: Transform - pos: 41.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 - - uid: 17481 + - uid: 17292 components: - type: Transform - pos: 42.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 - - uid: 17482 + - uid: 17293 components: - type: Transform - pos: 43.5,-6.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 2 - - uid: 17483 + - uid: 17294 components: - type: Transform - pos: 43.5,-7.5 + rot: 1.5707963267948966 rad + pos: 7.5,22.5 parent: 2 - - uid: 17484 + - uid: 17295 components: - type: Transform - pos: 43.5,-9.5 + rot: 1.5707963267948966 rad + pos: 5.5,22.5 parent: 2 - - uid: 17485 + - uid: 17296 components: - type: Transform - pos: 46.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,22.5 parent: 2 - - uid: 17486 + - uid: 17297 components: - type: Transform - pos: 46.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,31.5 parent: 2 - - uid: 17487 + - uid: 17298 components: - type: Transform - pos: 56.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,32.5 parent: 2 - - uid: 17488 + - uid: 17299 components: - type: Transform - pos: 56.5,-9.5 + rot: 1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - - uid: 17489 + - uid: 17300 components: - type: Transform - pos: 56.5,-8.5 + rot: 3.141592653589793 rad + pos: -36.5,-1.5 parent: 2 - - uid: 17490 + - uid: 17301 components: - type: Transform - pos: 60.5,-5.5 + rot: 3.141592653589793 rad + pos: -42.5,22.5 parent: 2 - - uid: 17491 + - uid: 17302 components: - type: Transform - pos: 60.5,-7.5 + rot: 3.141592653589793 rad + pos: -42.5,19.5 parent: 2 - - uid: 17492 + - uid: 17303 components: - type: Transform - pos: 11.5,50.5 + rot: 3.141592653589793 rad + pos: -42.5,20.5 parent: 2 - - uid: 17493 + - uid: 17304 components: - type: Transform - pos: 14.5,50.5 + rot: 3.141592653589793 rad + pos: -42.5,18.5 parent: 2 - - uid: 17494 + - uid: 17305 components: - type: Transform - pos: 15.5,50.5 + rot: 3.141592653589793 rad + pos: -42.5,16.5 parent: 2 - - uid: 17495 + - uid: 17306 components: - type: Transform - pos: 15.5,51.5 + rot: 3.141592653589793 rad + pos: -42.5,15.5 parent: 2 - - uid: 17496 + - uid: 17307 components: - type: Transform - pos: 16.5,50.5 + rot: 3.141592653589793 rad + pos: -42.5,14.5 parent: 2 - - uid: 17497 + - uid: 17308 components: - type: Transform - pos: 15.5,54.5 + rot: 3.141592653589793 rad + pos: -42.5,13.5 parent: 2 - - uid: 17498 + - uid: 17309 components: - type: Transform - pos: 14.5,54.5 + rot: 3.141592653589793 rad + pos: -42.5,12.5 parent: 2 - - uid: 17499 + - uid: 17310 components: - type: Transform - pos: 13.5,54.5 + rot: 3.141592653589793 rad + pos: -42.5,10.5 parent: 2 - - uid: 17500 + - uid: 17311 components: - type: Transform - pos: 15.5,55.5 + rot: 3.141592653589793 rad + pos: -42.5,9.5 parent: 2 - - uid: 17501 + - uid: 17312 components: - type: Transform - pos: 15.5,56.5 + rot: 3.141592653589793 rad + pos: -42.5,8.5 parent: 2 - - uid: 17502 + - uid: 17313 components: - type: Transform - pos: 13.5,56.5 + rot: 3.141592653589793 rad + pos: -42.5,5.5 parent: 2 - - uid: 17503 + - uid: 17314 components: - type: Transform - pos: 15.5,57.5 + rot: 3.141592653589793 rad + pos: -42.5,4.5 parent: 2 - - uid: 17504 + - uid: 17315 components: - type: Transform - pos: 15.5,58.5 + rot: 3.141592653589793 rad + pos: -41.5,4.5 parent: 2 - - uid: 17505 + - uid: 17316 components: - type: Transform - pos: 14.5,58.5 + rot: 3.141592653589793 rad + pos: -40.5,4.5 parent: 2 - - uid: 17506 + - uid: 17317 components: - type: Transform - pos: 13.5,58.5 + rot: 3.141592653589793 rad + pos: -39.5,4.5 parent: 2 - - uid: 17507 + - uid: 17318 components: - type: Transform - pos: 12.5,58.5 + rot: 3.141592653589793 rad + pos: -37.5,4.5 parent: 2 - - uid: 17508 + - uid: 17319 components: - type: Transform - pos: 11.5,58.5 + rot: 3.141592653589793 rad + pos: -36.5,4.5 parent: 2 - - uid: 17509 + - uid: 17320 components: - type: Transform - pos: 9.5,58.5 + rot: 3.141592653589793 rad + pos: -36.5,3.5 parent: 2 - - uid: 17510 + - uid: 17321 components: - type: Transform - pos: 8.5,58.5 + rot: 3.141592653589793 rad + pos: -36.5,-0.5 parent: 2 - - uid: 17511 + - uid: 17322 components: - type: Transform - pos: 15.5,59.5 + rot: 3.141592653589793 rad + pos: -36.5,0.5 parent: 2 - - uid: 17512 + - uid: 17323 components: - type: Transform - pos: 15.5,60.5 + rot: 3.141592653589793 rad + pos: -36.5,1.5 parent: 2 - - uid: 17513 + - uid: 17324 components: - type: Transform - pos: 14.5,60.5 + rot: 3.141592653589793 rad + pos: -34.5,-1.5 parent: 2 - - uid: 17514 + - uid: 17325 components: - type: Transform - pos: 14.5,62.5 + rot: 3.141592653589793 rad + pos: -33.5,-1.5 parent: 2 - - uid: 17515 + - uid: 17326 components: - type: Transform - pos: 14.5,63.5 + rot: 3.141592653589793 rad + pos: -32.5,-1.5 parent: 2 - - uid: 17516 + - uid: 17327 components: - type: Transform - pos: 13.5,63.5 + rot: 3.141592653589793 rad + pos: -31.5,-1.5 parent: 2 - - uid: 17517 + - uid: 17328 components: - type: Transform - pos: 12.5,63.5 + rot: 1.5707963267948966 rad + pos: -16.5,14.5 parent: 2 - - uid: 17518 + - uid: 17329 components: - type: Transform - pos: 12.5,62.5 + rot: 1.5707963267948966 rad + pos: -17.5,14.5 parent: 2 - - uid: 17519 + - uid: 17330 components: - type: Transform - pos: 11.5,62.5 + rot: 1.5707963267948966 rad + pos: -21.5,13.5 parent: 2 - - uid: 17520 + - uid: 17331 components: - type: Transform - pos: 10.5,62.5 + rot: 1.5707963267948966 rad + pos: -22.5,46.5 parent: 2 - - uid: 17521 + - uid: 17332 components: - type: Transform - pos: 9.5,62.5 + rot: 1.5707963267948966 rad + pos: -18.5,46.5 parent: 2 - - uid: 17522 + - uid: 17333 components: - type: Transform - pos: 8.5,62.5 + pos: 34.5,19.5 parent: 2 - - uid: 17523 + - uid: 17335 components: - type: Transform - pos: 14.5,64.5 + rot: 3.141592653589793 rad + pos: -44.5,53.5 parent: 2 - - uid: 17524 + - uid: 17336 components: - type: Transform - pos: 15.5,64.5 + rot: 3.141592653589793 rad + pos: -42.5,51.5 parent: 2 - - uid: 17525 + - uid: 17338 components: - type: Transform - pos: 17.5,64.5 + rot: 3.141592653589793 rad + pos: -43.5,55.5 parent: 2 - - uid: 17526 + - uid: 17339 components: - type: Transform - pos: 18.5,64.5 + rot: 3.141592653589793 rad + pos: -42.5,57.5 parent: 2 - - uid: 17527 + - uid: 17341 components: - type: Transform - pos: 19.5,64.5 + rot: 1.5707963267948966 rad + pos: 13.5,75.5 parent: 2 - - uid: 17528 + - uid: 17342 components: - type: Transform - pos: 16.5,60.5 + rot: -1.5707963267948966 rad + pos: -0.5,67.5 parent: 2 - - uid: 17529 + - uid: 17343 components: - type: Transform - pos: 17.5,60.5 + rot: -1.5707963267948966 rad + pos: 0.5,67.5 parent: 2 - - uid: 17530 + - uid: 17344 components: - type: Transform - pos: 18.5,60.5 + rot: -1.5707963267948966 rad + pos: -0.5,65.5 parent: 2 - - uid: 17531 + - uid: 17345 components: - type: Transform - pos: 19.5,60.5 + rot: -1.5707963267948966 rad + pos: 0.5,65.5 parent: 2 - - uid: 17532 + - uid: 17346 components: - type: Transform - pos: 19.5,61.5 + rot: -1.5707963267948966 rad + pos: 2.5,65.5 parent: 2 - - uid: 17533 + - uid: 17347 components: - type: Transform - pos: 19.5,62.5 + rot: -1.5707963267948966 rad + pos: 1.5,65.5 parent: 2 - - uid: 17534 + - uid: 17348 components: - type: Transform - pos: 21.5,61.5 + rot: -1.5707963267948966 rad + pos: 2.5,69.5 parent: 2 - - uid: 17535 + - uid: 17349 components: - type: Transform - pos: 22.5,61.5 + rot: -1.5707963267948966 rad + pos: 1.5,69.5 parent: 2 - - uid: 17536 + - uid: 17350 components: - type: Transform - pos: 22.5,62.5 + rot: -1.5707963267948966 rad + pos: 0.5,69.5 parent: 2 - - uid: 17537 + - uid: 17351 components: - type: Transform - pos: 22.5,63.5 + rot: -1.5707963267948966 rad + pos: -0.5,69.5 parent: 2 - - uid: 17538 + - uid: 17352 components: - type: Transform - pos: 22.5,64.5 + rot: -1.5707963267948966 rad + pos: 3.5,65.5 parent: 2 - - uid: 17539 + - uid: 17353 components: - type: Transform - pos: 23.5,64.5 + rot: -1.5707963267948966 rad + pos: 3.5,66.5 parent: 2 - - uid: 17540 + - uid: 17354 components: - type: Transform - pos: 19.5,66.5 + rot: -1.5707963267948966 rad + pos: 3.5,68.5 parent: 2 - - uid: 17541 + - uid: 17355 components: - type: Transform - pos: 15.5,72.5 + rot: -1.5707963267948966 rad + pos: 3.5,69.5 parent: 2 - - uid: 17542 + - uid: 17356 components: - type: Transform - pos: 15.5,71.5 + rot: 1.5707963267948966 rad + pos: 13.5,73.5 parent: 2 - - uid: 17543 + - uid: 17357 components: - type: Transform - pos: 15.5,70.5 + rot: 1.5707963267948966 rad + pos: 13.5,72.5 parent: 2 - - uid: 17544 + - uid: 17358 components: - type: Transform - pos: 15.5,67.5 + rot: 1.5707963267948966 rad + pos: 9.5,69.5 parent: 2 - - uid: 17545 + - uid: 17359 components: - type: Transform - pos: 15.5,68.5 + rot: 1.5707963267948966 rad + pos: 10.5,69.5 parent: 2 - - uid: 17546 + - uid: 17360 components: - type: Transform - pos: 16.5,68.5 + rot: 1.5707963267948966 rad + pos: 11.5,69.5 parent: 2 - - uid: 17547 + - uid: 17361 components: - type: Transform - pos: 16.5,57.5 + rot: 1.5707963267948966 rad + pos: 12.5,69.5 parent: 2 - - uid: 17548 + - uid: 17362 components: - type: Transform - pos: 18.5,57.5 + rot: 1.5707963267948966 rad + pos: 13.5,69.5 parent: 2 - - uid: 17549 + - uid: 17363 components: - type: Transform - pos: 19.5,57.5 + rot: 1.5707963267948966 rad + pos: 13.5,70.5 parent: 2 - - uid: 17550 + - uid: 17364 components: - type: Transform - pos: 19.5,58.5 + rot: 1.5707963267948966 rad + pos: 13.5,71.5 parent: 2 - - uid: 17551 + - uid: 17365 components: - type: Transform - pos: 19.5,59.5 + rot: 1.5707963267948966 rad + pos: 9.5,68.5 parent: 2 - - uid: 17552 + - uid: 17366 components: - type: Transform - pos: 20.5,59.5 + rot: 1.5707963267948966 rad + pos: 9.5,66.5 parent: 2 - - uid: 17553 + - uid: 17367 components: - type: Transform - pos: 21.5,59.5 + rot: 1.5707963267948966 rad + pos: 9.5,65.5 parent: 2 - - uid: 17554 + - uid: 17368 components: - type: Transform - pos: 22.5,59.5 + rot: 1.5707963267948966 rad + pos: 10.5,65.5 parent: 2 - - uid: 17555 + - uid: 17369 components: - type: Transform - pos: 23.5,59.5 + rot: 1.5707963267948966 rad + pos: 11.5,65.5 parent: 2 - - uid: 17556 + - uid: 17370 components: - type: Transform - pos: 23.5,58.5 + rot: 1.5707963267948966 rad + pos: 12.5,65.5 parent: 2 - - uid: 17557 + - uid: 17371 components: - type: Transform - pos: 25.5,58.5 + rot: 1.5707963267948966 rad + pos: 12.5,66.5 parent: 2 - - uid: 17558 + - uid: 17372 components: - type: Transform - pos: 18.5,50.5 + rot: 1.5707963267948966 rad + pos: 12.5,67.5 parent: 2 - - uid: 17559 + - uid: 17373 components: - type: Transform - pos: 20.5,50.5 + rot: 1.5707963267948966 rad + pos: 12.5,68.5 parent: 2 - - uid: 17560 + - uid: 17374 components: - type: Transform - pos: 22.5,50.5 + rot: -1.5707963267948966 rad + pos: 8.5,65.5 parent: 2 - - uid: 17561 + - uid: 17375 components: - type: Transform - pos: 25.5,50.5 + rot: -1.5707963267948966 rad + pos: 7.5,65.5 parent: 2 - - uid: 17562 + - uid: 17376 components: - type: Transform - pos: 25.5,65.5 + rot: -1.5707963267948966 rad + pos: 7.5,63.5 parent: 2 - - uid: 17563 + - uid: 17377 components: - type: Transform - pos: 25.5,64.5 + rot: -1.5707963267948966 rad + pos: 7.5,62.5 parent: 2 - - uid: 17564 + - uid: 17378 components: - type: Transform - pos: 25.5,61.5 + rot: -1.5707963267948966 rad + pos: 7.5,57.5 parent: 2 - - uid: 17565 + - uid: 17379 components: - type: Transform - pos: 25.5,62.5 + rot: -1.5707963267948966 rad + pos: 7.5,58.5 parent: 2 - - uid: 17566 + - uid: 17380 components: - type: Transform - pos: 25.5,63.5 + rot: -1.5707963267948966 rad + pos: 7.5,59.5 parent: 2 - - uid: 17567 + - uid: 17381 components: - type: Transform - pos: 26.5,61.5 + rot: -1.5707963267948966 rad + pos: 7.5,60.5 parent: 2 - - uid: 17568 + - uid: 17382 components: - type: Transform - pos: 29.5,61.5 + rot: -1.5707963267948966 rad + pos: 7.5,61.5 parent: 2 - - uid: 17569 + - uid: 17383 components: - type: Transform - pos: 30.5,61.5 + rot: -1.5707963267948966 rad + pos: 7.5,54.5 parent: 2 - - uid: 17570 + - uid: 17384 components: - type: Transform - pos: 35.5,36.5 + rot: -1.5707963267948966 rad + pos: 7.5,51.5 parent: 2 - - uid: 17571 + - uid: 17385 components: - type: Transform - pos: 34.5,36.5 + rot: -1.5707963267948966 rad + pos: 7.5,50.5 parent: 2 - - uid: 17572 + - uid: 17386 components: - type: Transform - pos: 34.5,37.5 + rot: -1.5707963267948966 rad + pos: 8.5,50.5 parent: 2 - - uid: 17573 + - uid: 17387 components: - type: Transform - pos: 34.5,40.5 + rot: -1.5707963267948966 rad + pos: 14.5,16.5 parent: 2 - - uid: 17574 + - uid: 17388 components: - type: Transform - pos: 34.5,41.5 + rot: -1.5707963267948966 rad + pos: 16.5,16.5 parent: 2 - - uid: 17575 + - uid: 17389 components: - type: Transform - pos: 34.5,42.5 + rot: -1.5707963267948966 rad + pos: 17.5,16.5 parent: 2 - - uid: 17576 + - uid: 17390 components: - type: Transform - pos: 34.5,46.5 + rot: -1.5707963267948966 rad + pos: 18.5,16.5 parent: 2 - - uid: 17577 + - uid: 17391 components: - type: Transform - pos: 35.5,46.5 + rot: -1.5707963267948966 rad + pos: 18.5,17.5 parent: 2 - - uid: 17578 + - uid: 17392 components: - type: Transform - pos: 38.5,46.5 + rot: -1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 - - uid: 17579 + - uid: 17393 components: - type: Transform - pos: 39.5,46.5 + rot: -1.5707963267948966 rad + pos: 14.5,9.5 parent: 2 - - uid: 17580 + - uid: 17394 components: - type: Transform - pos: 40.5,46.5 + rot: -1.5707963267948966 rad + pos: 16.5,9.5 parent: 2 - - uid: 17581 + - uid: 17395 components: - type: Transform - pos: 39.5,45.5 + rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 2 - - uid: 17582 + - uid: 17396 components: - type: Transform - pos: 39.5,50.5 + rot: -1.5707963267948966 rad + pos: 16.5,7.5 parent: 2 - - uid: 17583 + - uid: 17397 components: - type: Transform - pos: 41.5,50.5 + rot: -1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 - - uid: 17584 + - uid: 17398 components: - type: Transform - pos: 42.5,50.5 + rot: -1.5707963267948966 rad + pos: 16.5,13.5 parent: 2 - - uid: 17585 + - uid: 17399 components: - type: Transform - pos: 43.5,50.5 + rot: -1.5707963267948966 rad + pos: 16.5,14.5 parent: 2 - - uid: 17586 + - uid: 17400 components: - type: Transform - pos: 43.5,51.5 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 parent: 2 - - uid: 17587 + - uid: 17401 components: - type: Transform - pos: 43.5,52.5 + rot: -1.5707963267948966 rad + pos: 19.5,16.5 parent: 2 - - uid: 17588 + - uid: 17402 components: - type: Transform - pos: 44.5,52.5 + rot: -1.5707963267948966 rad + pos: 20.5,16.5 parent: 2 - - uid: 17589 + - uid: 17403 components: - type: Transform - pos: 45.5,52.5 + rot: -1.5707963267948966 rad + pos: 21.5,16.5 parent: 2 - - uid: 17590 + - uid: 17404 components: - type: Transform - pos: 45.5,53.5 + rot: -1.5707963267948966 rad + pos: 19.5,18.5 parent: 2 - - uid: 17591 + - uid: 17405 components: - type: Transform - pos: 45.5,54.5 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 parent: 2 - - uid: 17592 + - uid: 17406 components: - type: Transform - pos: 45.5,55.5 + rot: -1.5707963267948966 rad + pos: 21.5,18.5 parent: 2 - - uid: 17593 + - uid: 17407 components: - type: Transform - pos: 43.5,55.5 + rot: -1.5707963267948966 rad + pos: 27.5,18.5 parent: 2 - - uid: 17594 + - uid: 17408 components: - type: Transform - pos: 44.5,55.5 + rot: -1.5707963267948966 rad + pos: 27.5,16.5 parent: 2 - - uid: 17595 + - uid: 17409 components: - type: Transform - pos: 41.5,55.5 + rot: -1.5707963267948966 rad + pos: 27.5,15.5 parent: 2 - - uid: 17596 + - uid: 17410 components: - type: Transform - pos: 40.5,55.5 + rot: -1.5707963267948966 rad + pos: 20.5,7.5 parent: 2 - - uid: 17597 + - uid: 17411 components: - type: Transform - pos: 39.5,55.5 + rot: -1.5707963267948966 rad + pos: 21.5,7.5 parent: 2 - - uid: 17598 + - uid: 17412 components: - type: Transform - pos: 43.5,49.5 + rot: -1.5707963267948966 rad + pos: 22.5,7.5 parent: 2 - - uid: 17599 + - uid: 17413 components: - type: Transform - pos: 43.5,47.5 + rot: -1.5707963267948966 rad + pos: 23.5,7.5 parent: 2 - - uid: 17600 + - uid: 17414 components: - type: Transform - pos: 43.5,46.5 + rot: -1.5707963267948966 rad + pos: 24.5,7.5 parent: 2 - - uid: 17601 + - uid: 17415 components: - type: Transform - pos: 42.5,46.5 + rot: -1.5707963267948966 rad + pos: 24.5,8.5 parent: 2 - - uid: 17602 + - uid: 17416 components: - type: Transform - pos: 43.5,45.5 + rot: -1.5707963267948966 rad + pos: 26.5,8.5 parent: 2 - - uid: 17603 + - uid: 17417 components: - type: Transform - pos: 44.5,46.5 + pos: 30.5,15.5 parent: 2 - - uid: 17604 + - uid: 17418 components: - type: Transform - pos: 45.5,46.5 + pos: 27.5,13.5 parent: 2 - - uid: 17605 + - uid: 17419 components: - type: Transform - pos: 45.5,47.5 + pos: 28.5,15.5 parent: 2 - - uid: 17606 + - uid: 17420 components: - type: Transform - pos: 45.5,48.5 + pos: 29.5,15.5 parent: 2 - - uid: 17607 + - uid: 17421 components: - type: Transform - pos: 45.5,49.5 + pos: 31.5,18.5 parent: 2 - - uid: 17608 + - uid: 17422 components: - type: Transform - pos: 48.5,50.5 + pos: 30.5,18.5 parent: 2 - - uid: 17609 + - uid: 17423 components: - type: Transform - pos: 46.5,49.5 + pos: 29.5,18.5 parent: 2 - - uid: 17610 + - uid: 17424 components: - type: Transform - pos: 48.5,49.5 + pos: 28.5,18.5 parent: 2 - - uid: 17611 + - uid: 17425 components: - type: Transform - pos: 48.5,51.5 + pos: 11.5,1.5 parent: 2 - - uid: 17612 + - uid: 17426 components: - type: Transform - pos: 48.5,53.5 + pos: 10.5,1.5 parent: 2 - - uid: 17613 + - uid: 17427 components: - type: Transform - pos: 48.5,54.5 + pos: 11.5,2.5 parent: 2 - - uid: 17614 + - uid: 17428 components: - type: Transform - pos: 48.5,55.5 + pos: 11.5,3.5 parent: 2 - - uid: 17615 + - uid: 17429 components: - type: Transform - pos: 49.5,55.5 + pos: 11.5,5.5 parent: 2 - - uid: 17616 + - uid: 17430 components: - type: Transform - pos: 50.5,55.5 + pos: 11.5,6.5 parent: 2 - - uid: 17617 + - uid: 17431 components: - type: Transform - pos: 52.5,55.5 + pos: 10.5,6.5 parent: 2 - - uid: 17618 + - uid: 17432 components: - type: Transform - pos: 51.5,55.5 + pos: 8.5,6.5 parent: 2 - - uid: 17619 + - uid: 17433 components: - type: Transform - pos: 52.5,54.5 + pos: 7.5,6.5 parent: 2 - - uid: 17620 + - uid: 17434 components: - type: Transform - pos: 52.5,52.5 + pos: 8.5,3.5 parent: 2 - - uid: 17621 + - uid: 17435 components: - type: Transform - pos: 52.5,51.5 + pos: 13.5,1.5 parent: 2 - - uid: 17622 + - uid: 17436 components: - type: Transform - pos: 51.5,51.5 + pos: 13.5,2.5 parent: 2 - - uid: 17623 + - uid: 17437 components: - type: Transform - pos: 51.5,50.5 + pos: 13.5,3.5 parent: 2 - - uid: 17624 + - uid: 17438 components: - type: Transform - pos: 51.5,49.5 + pos: 13.5,4.5 parent: 2 - - uid: 17625 + - uid: 17439 components: - type: Transform - pos: 50.5,49.5 + pos: 14.5,4.5 parent: 2 - - uid: 17626 + - uid: 17440 components: - type: Transform - pos: 49.5,49.5 + pos: 16.5,4.5 parent: 2 - - uid: 17627 + - uid: 17441 components: - type: Transform - pos: 36.5,61.5 + pos: 17.5,4.5 parent: 2 - - uid: 17628 + - uid: 17442 components: - type: Transform - pos: 37.5,61.5 + pos: 17.5,3.5 parent: 2 - - uid: 17629 + - uid: 17443 components: - type: Transform - pos: 40.5,61.5 + pos: 17.5,2.5 parent: 2 - - uid: 17630 + - uid: 17444 components: - type: Transform - pos: 40.5,60.5 + pos: 17.5,1.5 parent: 2 - - uid: 17631 + - uid: 17445 components: - type: Transform - pos: 40.5,59.5 + pos: 8.5,-2.5 parent: 2 - - uid: 17632 + - uid: 17446 components: - type: Transform - pos: 42.5,61.5 + pos: 10.5,-2.5 parent: 2 - - uid: 17633 + - uid: 17447 components: - type: Transform - pos: 43.5,61.5 + pos: 13.5,-2.5 parent: 2 - - uid: 17634 + - uid: 17448 components: - type: Transform - pos: 44.5,61.5 + pos: 14.5,-2.5 parent: 2 - - uid: 17635 + - uid: 17449 components: - type: Transform - pos: 45.5,61.5 + pos: 14.5,-1.5 parent: 2 - - uid: 17636 + - uid: 17451 components: - type: Transform - pos: 46.5,61.5 + pos: 21.5,5.5 parent: 2 - - uid: 17637 + - uid: 17452 components: - type: Transform - pos: 46.5,60.5 + pos: 21.5,4.5 parent: 2 - - uid: 17638 + - uid: 17453 components: - type: Transform - pos: 46.5,59.5 + pos: 30.5,-3.5 parent: 2 - - uid: 17639 + - uid: 17454 components: - type: Transform - pos: 46.5,58.5 + pos: 28.5,-3.5 parent: 2 - - uid: 17640 + - uid: 17455 components: - type: Transform - pos: 47.5,58.5 + pos: 33.5,1.5 parent: 2 - - uid: 17641 + - uid: 17456 components: - type: Transform - pos: 49.5,58.5 + pos: 33.5,2.5 parent: 2 - - uid: 17642 + - uid: 17457 components: - type: Transform - pos: 42.5,57.5 + pos: 34.5,2.5 parent: 2 - - uid: 17643 + - uid: 17458 components: - type: Transform - pos: 43.5,57.5 + pos: 34.5,21.5 parent: 2 - - uid: 17644 + - uid: 17459 components: - type: Transform - pos: 44.5,57.5 + pos: 58.5,27.5 parent: 2 - - uid: 17645 + - uid: 17460 components: - type: Transform - pos: 45.5,57.5 + pos: 57.5,28.5 parent: 2 - - uid: 17646 + - uid: 17461 components: - type: Transform - pos: 46.5,57.5 + pos: 57.5,31.5 parent: 2 - - uid: 17647 + - uid: 17462 components: - type: Transform - pos: 58.5,51.5 + pos: 57.5,32.5 parent: 2 - - uid: 17648 + - uid: 17463 components: - type: Transform - pos: 57.5,55.5 + pos: 58.5,32.5 parent: 2 - - uid: 17649 + - uid: 17464 components: - type: Transform - pos: 55.5,55.5 + pos: 62.5,32.5 parent: 2 - - uid: 17650 + - uid: 17465 components: - type: Transform - pos: 54.5,56.5 + pos: 63.5,32.5 parent: 2 - - uid: 17651 + - uid: 17466 components: - type: Transform - pos: 54.5,55.5 + pos: 63.5,31.5 parent: 2 - - uid: 17652 + - uid: 17467 components: - type: Transform - pos: 46.5,46.5 + pos: 59.5,27.5 parent: 2 - - uid: 17653 + - uid: 17468 components: - type: Transform - pos: 47.5,46.5 + pos: 60.5,27.5 parent: 2 - - uid: 17654 + - uid: 17469 components: - type: Transform - pos: 49.5,46.5 + pos: 63.5,28.5 parent: 2 - - uid: 17655 + - uid: 17470 components: - type: Transform - pos: 50.5,46.5 + pos: 61.5,27.5 parent: 2 - - uid: 17656 + - uid: 17471 components: - type: Transform - pos: 51.5,46.5 + pos: 63.5,27.5 parent: 2 - - uid: 17657 + - uid: 17472 components: - type: Transform - pos: 51.5,47.5 + pos: 61.5,24.5 parent: 2 - - uid: 17658 + - uid: 17473 components: - type: Transform - pos: 51.5,48.5 + pos: 61.5,26.5 parent: 2 - - uid: 17659 + - uid: 17474 components: - type: Transform - pos: 52.5,47.5 + pos: 61.5,-3.5 parent: 2 - - uid: 17660 + - uid: 17475 components: - type: Transform - pos: 53.5,47.5 + pos: 63.5,-3.5 parent: 2 - - uid: 17661 + - uid: 17476 components: - type: Transform - pos: 56.5,47.5 + pos: 65.5,-3.5 parent: 2 - - uid: 17662 + - uid: 17477 components: - type: Transform - pos: 56.5,48.5 + pos: 68.5,-3.5 parent: 2 - - uid: 17663 + - uid: 17478 components: - type: Transform - pos: 56.5,50.5 + pos: 69.5,-3.5 parent: 2 - - uid: 17664 + - uid: 17481 components: - type: Transform - pos: 56.5,51.5 + pos: 42.5,-6.5 parent: 2 - - uid: 17665 + - uid: 17482 components: - type: Transform - pos: 56.5,52.5 + pos: 43.5,-6.5 parent: 2 - - uid: 17666 + - uid: 17483 components: - type: Transform - pos: 55.5,52.5 + pos: 43.5,-7.5 parent: 2 - - uid: 17667 + - uid: 17484 components: - type: Transform - pos: 54.5,52.5 + pos: 43.5,-9.5 parent: 2 - - uid: 17668 + - uid: 17485 components: - type: Transform - pos: 53.5,52.5 + pos: 46.5,-9.5 parent: 2 - - uid: 17669 + - uid: 17486 components: - type: Transform - pos: 59.5,51.5 + pos: 46.5,-10.5 parent: 2 - - uid: 17670 + - uid: 17487 components: - type: Transform - pos: 59.5,50.5 + pos: 56.5,-10.5 parent: 2 - - uid: 17671 + - uid: 17488 components: - type: Transform - pos: 59.5,53.5 + pos: 56.5,-9.5 parent: 2 - - uid: 17672 + - uid: 17489 components: - type: Transform - pos: 59.5,54.5 + pos: 56.5,-8.5 parent: 2 - - uid: 17673 + - uid: 17490 components: - type: Transform - pos: 63.5,54.5 + pos: 60.5,-5.5 parent: 2 - - uid: 17674 + - uid: 17491 components: - type: Transform - pos: 63.5,53.5 + pos: 60.5,-7.5 parent: 2 - - uid: 17675 + - uid: 17492 components: - type: Transform - pos: 63.5,51.5 + pos: 11.5,50.5 parent: 2 - - uid: 17676 + - uid: 17493 components: - type: Transform - pos: 63.5,52.5 + pos: 14.5,50.5 parent: 2 - - uid: 17677 + - uid: 17494 components: - type: Transform - pos: 63.5,50.5 + pos: 15.5,50.5 parent: 2 - - uid: 17678 + - uid: 17495 components: - type: Transform - pos: 60.5,49.5 + pos: 15.5,51.5 parent: 2 - - uid: 17679 + - uid: 17496 components: - type: Transform - pos: 61.5,49.5 + pos: 16.5,50.5 parent: 2 - - uid: 17680 + - uid: 17497 components: - type: Transform - pos: 62.5,49.5 + pos: 15.5,54.5 parent: 2 - - uid: 17681 + - uid: 17498 components: - type: Transform - pos: 59.5,49.5 + pos: 14.5,54.5 parent: 2 - - uid: 17682 + - uid: 17499 components: - type: Transform - pos: 63.5,49.5 + pos: 13.5,54.5 parent: 2 - - uid: 17683 + - uid: 17500 components: - type: Transform - pos: 63.5,48.5 + pos: 15.5,55.5 parent: 2 - - uid: 17684 + - uid: 17501 components: - type: Transform - pos: 63.5,46.5 + pos: 15.5,56.5 parent: 2 - - uid: 17685 + - uid: 17502 components: - type: Transform - pos: 63.5,45.5 + pos: 13.5,56.5 parent: 2 - - uid: 17686 + - uid: 17503 components: - type: Transform - pos: 61.5,45.5 + pos: 15.5,57.5 parent: 2 - - uid: 17687 + - uid: 17504 components: - type: Transform - pos: 62.5,45.5 + pos: 15.5,58.5 parent: 2 - - uid: 17688 + - uid: 17505 components: - type: Transform - pos: 59.5,45.5 + pos: 14.5,58.5 parent: 2 - - uid: 17689 + - uid: 17506 components: - type: Transform - pos: 58.5,45.5 + pos: 13.5,58.5 parent: 2 - - uid: 17690 + - uid: 17507 components: - type: Transform - pos: 58.5,46.5 + pos: 12.5,58.5 parent: 2 - - uid: 17691 + - uid: 17508 components: - type: Transform - pos: 57.5,47.5 + pos: 11.5,58.5 parent: 2 - - uid: 17692 + - uid: 17509 components: - type: Transform - pos: 58.5,47.5 + pos: 9.5,58.5 parent: 2 - - uid: 17693 + - uid: 17510 components: - type: Transform - pos: 51.5,42.5 + pos: 8.5,58.5 parent: 2 - - uid: 17694 + - uid: 17511 components: - type: Transform - pos: 51.5,41.5 + pos: 15.5,59.5 parent: 2 - - uid: 17695 + - uid: 17512 components: - type: Transform - pos: 52.5,41.5 + pos: 15.5,60.5 parent: 2 - - uid: 17696 + - uid: 17513 components: - type: Transform - pos: 54.5,41.5 + pos: 14.5,60.5 parent: 2 - - uid: 17697 + - uid: 17514 components: - type: Transform - pos: 58.5,44.5 + pos: 14.5,62.5 parent: 2 - - uid: 17698 + - uid: 17515 components: - type: Transform - pos: 58.5,43.5 + pos: 14.5,63.5 parent: 2 - - uid: 17699 + - uid: 17516 components: - type: Transform - pos: 58.5,42.5 + pos: 13.5,63.5 parent: 2 - - uid: 17700 + - uid: 17517 components: - type: Transform - pos: 58.5,41.5 + pos: 12.5,63.5 parent: 2 - - uid: 17701 + - uid: 17518 components: - type: Transform - pos: 59.5,41.5 + pos: 12.5,62.5 parent: 2 - - uid: 17702 + - uid: 17519 components: - type: Transform - pos: 60.5,41.5 + pos: 11.5,62.5 parent: 2 - - uid: 17703 + - uid: 17520 components: - type: Transform - pos: 63.5,41.5 + pos: 10.5,62.5 parent: 2 - - uid: 17704 + - uid: 17521 components: - type: Transform - pos: 63.5,42.5 + pos: 9.5,62.5 parent: 2 - - uid: 17705 + - uid: 17522 components: - type: Transform - pos: 63.5,44.5 + pos: 8.5,62.5 parent: 2 - - uid: 17706 + - uid: 17523 components: - type: Transform - pos: 63.5,43.5 + pos: 14.5,64.5 parent: 2 - - uid: 17707 + - uid: 17524 components: - type: Transform - pos: 59.5,40.5 + pos: 15.5,64.5 parent: 2 - - uid: 17708 + - uid: 17525 components: - type: Transform - pos: 58.5,36.5 + pos: 17.5,64.5 parent: 2 - - uid: 17709 + - uid: 17526 components: - type: Transform - pos: 59.5,36.5 + pos: 18.5,64.5 parent: 2 - - uid: 17710 + - uid: 17527 components: - type: Transform - pos: 60.5,36.5 + pos: 19.5,64.5 parent: 2 - - uid: 17711 + - uid: 17528 components: - type: Transform - pos: 63.5,36.5 + pos: 16.5,60.5 parent: 2 - - uid: 17712 + - uid: 17529 components: - type: Transform - pos: 62.5,36.5 + pos: 17.5,60.5 parent: 2 - - uid: 17713 + - uid: 17530 components: - type: Transform - pos: 63.5,37.5 + pos: 18.5,60.5 parent: 2 - - uid: 17714 + - uid: 17531 components: - type: Transform - pos: 63.5,38.5 + pos: 19.5,60.5 parent: 2 - - uid: 17715 + - uid: 17532 components: - type: Transform - pos: 63.5,40.5 + pos: 19.5,61.5 parent: 2 - - uid: 17716 + - uid: 17533 components: - type: Transform - pos: 63.5,39.5 + pos: 19.5,62.5 parent: 2 - - uid: 17717 + - uid: 17534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,36.5 + pos: 21.5,61.5 parent: 2 - - uid: 17718 + - uid: 17535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,41.5 + pos: 22.5,61.5 parent: 2 - - uid: 17719 + - uid: 17536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,36.5 + pos: 22.5,62.5 parent: 2 - - uid: 17720 + - uid: 17537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,36.5 + pos: 22.5,63.5 parent: 2 - - uid: 17721 + - uid: 17538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,36.5 + pos: 22.5,64.5 parent: 2 - - uid: 17722 + - uid: 17539 components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,37.5 + - type: Transform + pos: 23.5,64.5 parent: 2 - - uid: 17723 + - uid: 17540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,36.5 + pos: 19.5,66.5 parent: 2 - - uid: 17724 + - uid: 17541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,38.5 + pos: 15.5,72.5 parent: 2 - - uid: 17725 + - uid: 17542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,39.5 + pos: 15.5,71.5 parent: 2 - - uid: 17726 + - uid: 17543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,40.5 + pos: 15.5,70.5 parent: 2 - - uid: 17727 + - uid: 17544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,41.5 + pos: 15.5,67.5 parent: 2 - - uid: 17728 + - uid: 17545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,41.5 + pos: 15.5,68.5 parent: 2 - - uid: 17729 + - uid: 17546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,42.5 + pos: 16.5,68.5 parent: 2 - - uid: 17730 + - uid: 17547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,43.5 + pos: 16.5,57.5 parent: 2 - - uid: 17731 + - uid: 17548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,44.5 + pos: 18.5,57.5 parent: 2 - - uid: 17732 + - uid: 17549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,36.5 + pos: 19.5,57.5 parent: 2 - - uid: 17733 + - uid: 17550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,36.5 + pos: 19.5,58.5 parent: 2 - - uid: 17734 + - uid: 17551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,42.5 + pos: 19.5,59.5 parent: 2 - - uid: 17735 + - uid: 17552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,42.5 + pos: 20.5,59.5 parent: 2 - - uid: 17736 + - uid: 17553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,42.5 + pos: 21.5,59.5 parent: 2 - - uid: 17737 + - uid: 17554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,42.5 + pos: 22.5,59.5 parent: 2 - - uid: 17738 + - uid: 17555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,41.5 + pos: 23.5,59.5 parent: 2 - - uid: 17739 + - uid: 17556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,42.5 + pos: 23.5,58.5 parent: 2 - - uid: 17740 + - uid: 17557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,41.5 + pos: 25.5,58.5 parent: 2 - - uid: 17741 + - uid: 17558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,43.5 + pos: 18.5,50.5 parent: 2 - - uid: 17742 + - uid: 17559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,44.5 + pos: 20.5,50.5 parent: 2 - - uid: 17743 + - uid: 17560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,41.5 + pos: 22.5,50.5 parent: 2 - - uid: 17744 + - uid: 17561 components: - type: Transform - pos: 79.5,54.5 + pos: 25.5,50.5 parent: 2 - - uid: 17745 + - uid: 17562 components: - type: Transform - pos: 77.5,54.5 + pos: 25.5,65.5 parent: 2 - - uid: 17746 + - uid: 17563 components: - type: Transform - pos: 76.5,54.5 + pos: 25.5,64.5 parent: 2 - - uid: 17747 + - uid: 17564 components: - type: Transform - pos: 76.5,55.5 + pos: 25.5,61.5 parent: 2 - - uid: 17748 + - uid: 17565 components: - type: Transform - pos: 76.5,57.5 + pos: 25.5,62.5 parent: 2 - - uid: 17749 + - uid: 17566 components: - type: Transform - pos: 74.5,55.5 + pos: 25.5,63.5 parent: 2 - - uid: 17750 + - uid: 17567 components: - type: Transform - pos: 73.5,55.5 + pos: 26.5,61.5 parent: 2 - - uid: 17751 + - uid: 17568 components: - type: Transform - pos: 72.5,55.5 + pos: 29.5,61.5 parent: 2 - - uid: 17752 + - uid: 17569 components: - type: Transform - pos: 72.5,56.5 + pos: 30.5,61.5 parent: 2 - - uid: 17753 + - uid: 17570 components: - type: Transform - pos: 72.5,57.5 + pos: 35.5,36.5 parent: 2 - - uid: 17754 + - uid: 17571 components: - type: Transform - pos: 80.5,52.5 + pos: 34.5,36.5 parent: 2 - - uid: 17755 + - uid: 17572 components: - type: Transform - pos: 80.5,48.5 + pos: 34.5,37.5 parent: 2 - - uid: 17756 + - uid: 17573 components: - type: Transform - pos: 78.5,52.5 + pos: 34.5,40.5 parent: 2 - - uid: 17757 + - uid: 17574 components: - type: Transform - pos: 77.5,52.5 + pos: 34.5,41.5 parent: 2 - - uid: 17758 + - uid: 17575 components: - type: Transform - pos: 77.5,51.5 + pos: 34.5,42.5 parent: 2 - - uid: 17759 + - uid: 17576 components: - type: Transform - pos: 76.5,51.5 + pos: 34.5,46.5 parent: 2 - - uid: 17760 + - uid: 17577 components: - type: Transform - pos: 77.5,50.5 + pos: 35.5,46.5 parent: 2 - - uid: 17761 + - uid: 17578 components: - type: Transform - pos: 77.5,49.5 + pos: 38.5,46.5 parent: 2 - - uid: 17762 + - uid: 17579 components: - type: Transform - pos: 77.5,48.5 + pos: 39.5,46.5 parent: 2 - - uid: 17763 + - uid: 17580 components: - type: Transform - pos: 76.5,48.5 + pos: 40.5,46.5 parent: 2 - - uid: 17764 + - uid: 17581 components: - type: Transform - pos: 78.5,48.5 + pos: 39.5,45.5 parent: 2 - - uid: 17765 + - uid: 17582 components: - type: Transform - pos: 68.5,47.5 + pos: 39.5,50.5 parent: 2 - - uid: 17766 + - uid: 17583 components: - type: Transform - pos: 67.5,47.5 + pos: 41.5,50.5 parent: 2 - - uid: 17767 + - uid: 17584 components: - type: Transform - pos: 67.5,48.5 + pos: 42.5,50.5 parent: 2 - - uid: 17768 + - uid: 17585 components: - type: Transform - pos: 67.5,49.5 + pos: 43.5,50.5 parent: 2 - - uid: 17769 + - uid: 17586 components: - type: Transform - pos: 67.5,50.5 + pos: 43.5,51.5 parent: 2 - - uid: 17770 + - uid: 17587 components: - type: Transform - pos: 67.5,51.5 + pos: 43.5,52.5 parent: 2 - - uid: 17771 + - uid: 17588 components: - type: Transform - pos: 67.5,52.5 + pos: 44.5,52.5 parent: 2 - - uid: 17772 + - uid: 17589 components: - type: Transform - pos: 67.5,53.5 + pos: 45.5,52.5 parent: 2 - - uid: 17773 + - uid: 17590 components: - type: Transform - pos: 67.5,54.5 + pos: 45.5,53.5 parent: 2 - - uid: 17774 + - uid: 17591 components: - type: Transform - pos: 68.5,53.5 + pos: 45.5,54.5 parent: 2 - - uid: 17775 + - uid: 17592 components: - type: Transform - pos: 69.5,53.5 + pos: 45.5,55.5 parent: 2 - - uid: 17776 + - uid: 17593 components: - type: Transform - pos: 70.5,53.5 + pos: 43.5,55.5 parent: 2 - - uid: 17777 + - uid: 17594 components: - type: Transform - pos: 71.5,48.5 + pos: 44.5,55.5 parent: 2 - - uid: 17778 + - uid: 17595 components: - type: Transform - pos: 71.5,49.5 + pos: 41.5,55.5 parent: 2 - - uid: 17779 + - uid: 17596 components: - type: Transform - pos: 71.5,51.5 + pos: 40.5,55.5 parent: 2 - - uid: 17780 + - uid: 17597 components: - type: Transform - pos: 71.5,52.5 + pos: 39.5,55.5 parent: 2 - - uid: 17781 + - uid: 17598 components: - type: Transform - pos: 71.5,53.5 + pos: 43.5,49.5 parent: 2 - - uid: 17782 + - uid: 17599 components: - type: Transform - pos: 72.5,53.5 + pos: 43.5,47.5 parent: 2 - - uid: 17783 + - uid: 17600 components: - type: Transform - pos: 74.5,51.5 + pos: 43.5,46.5 parent: 2 - - uid: 17784 + - uid: 17601 components: - type: Transform - pos: 73.5,51.5 + pos: 42.5,46.5 parent: 2 - - uid: 17785 + - uid: 17602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,36.5 + pos: 43.5,45.5 parent: 2 - - uid: 17786 + - uid: 17603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,36.5 + pos: 44.5,46.5 parent: 2 - - uid: 17787 + - uid: 17604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,12.5 + pos: 45.5,46.5 parent: 2 - - uid: 17788 + - uid: 17605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,12.5 + pos: 45.5,47.5 parent: 2 - - uid: 17789 + - uid: 17606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,12.5 + pos: 45.5,48.5 parent: 2 - - uid: 17790 + - uid: 17607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,13.5 + pos: 45.5,49.5 parent: 2 - - uid: 17791 + - uid: 17608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,14.5 + pos: 48.5,50.5 parent: 2 - - uid: 17792 + - uid: 17609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,15.5 + pos: 46.5,49.5 parent: 2 - - uid: 17793 + - uid: 17610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,16.5 + pos: 48.5,49.5 parent: 2 - - uid: 17794 + - uid: 17611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,17.5 + pos: 48.5,51.5 parent: 2 - - uid: 17795 + - uid: 17612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,17.5 + pos: 48.5,53.5 parent: 2 - - uid: 17796 + - uid: 17613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,19.5 + pos: 48.5,54.5 parent: 2 - - uid: 17797 + - uid: 17614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,26.5 + pos: 48.5,55.5 parent: 2 - - uid: 17798 + - uid: 17615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,25.5 + pos: 49.5,55.5 parent: 2 - - uid: 17799 + - uid: 17616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,24.5 + pos: 50.5,55.5 parent: 2 - - uid: 17800 + - uid: 17617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,23.5 + pos: 52.5,55.5 parent: 2 - - uid: 17801 + - uid: 17618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,22.5 + pos: 51.5,55.5 parent: 2 - - uid: 17802 + - uid: 17619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,21.5 + pos: 52.5,54.5 parent: 2 - - uid: 17803 + - uid: 17620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,20.5 + pos: 52.5,52.5 parent: 2 - - uid: 17804 + - uid: 17621 components: - type: Transform - pos: 67.5,12.5 + pos: 52.5,51.5 parent: 2 - - uid: 17805 + - uid: 17622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,17.5 + pos: 51.5,51.5 parent: 2 - - uid: 17806 + - uid: 17623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,19.5 + pos: 51.5,50.5 parent: 2 - - uid: 17807 + - uid: 17624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,20.5 + pos: 51.5,49.5 parent: 2 - - uid: 17808 + - uid: 17625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,21.5 + pos: 50.5,49.5 parent: 2 - - uid: 17809 + - uid: 17626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,57.5 + pos: 49.5,49.5 parent: 2 - - uid: 17810 + - uid: 17627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,59.5 + pos: 36.5,61.5 parent: 2 - - uid: 17811 + - uid: 17628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,13.5 + pos: 37.5,61.5 parent: 2 - - uid: 17812 + - uid: 17629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,14.5 + pos: 40.5,61.5 parent: 2 - - uid: 17813 + - uid: 17630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-4.5 + pos: 40.5,60.5 parent: 2 - - uid: 17814 + - uid: 17631 components: - type: Transform - pos: 19.5,10.5 + pos: 40.5,59.5 parent: 2 - - uid: 17815 + - uid: 17632 components: - type: Transform - pos: 19.5,9.5 + pos: 42.5,61.5 parent: 2 - - uid: 17816 + - uid: 17633 components: - type: Transform - pos: 19.5,8.5 + pos: 43.5,61.5 parent: 2 - - uid: 17817 + - uid: 17634 components: - type: Transform - pos: 19.5,7.5 + pos: 44.5,61.5 parent: 2 - - uid: 17818 + - uid: 17635 components: - type: Transform - pos: 17.5,5.5 + pos: 45.5,61.5 parent: 2 - - uid: 17819 + - uid: 17636 components: - type: Transform - pos: 36.5,46.5 + pos: 46.5,61.5 parent: 2 - - uid: 17822 + - uid: 17637 components: - type: Transform - pos: 86.5,41.5 + pos: 46.5,60.5 parent: 2 - - uid: 17824 + - uid: 17638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,81.5 + pos: 46.5,59.5 parent: 2 - - uid: 17826 + - uid: 17639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,81.5 + pos: 46.5,58.5 parent: 2 - - uid: 17827 + - uid: 17640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,82.5 + pos: 47.5,58.5 parent: 2 - - uid: 17828 + - uid: 17641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,82.5 + pos: 49.5,58.5 parent: 2 - - uid: 17829 + - uid: 17642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,64.5 + pos: 42.5,57.5 parent: 2 - - uid: 17830 + - uid: 17643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,82.5 + pos: 43.5,57.5 parent: 2 - - uid: 17831 + - uid: 17644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,81.5 + pos: 44.5,57.5 parent: 2 - - uid: 17832 + - uid: 17645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,64.5 + pos: 45.5,57.5 parent: 2 - - uid: 17835 + - uid: 17646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,64.5 + pos: 46.5,57.5 parent: 2 - - uid: 17836 + - uid: 17647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,69.5 + pos: 58.5,51.5 parent: 2 - - uid: 17837 + - uid: 17648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,69.5 + pos: 57.5,55.5 parent: 2 - - uid: 17838 + - uid: 17649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,68.5 + pos: 55.5,55.5 parent: 2 - - uid: 17839 + - uid: 17650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,65.5 + pos: 54.5,56.5 parent: 2 - - uid: 17840 + - uid: 17651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,65.5 + pos: 54.5,55.5 parent: 2 - - uid: 17841 + - uid: 17652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,65.5 + pos: 46.5,46.5 parent: 2 - - uid: 17842 + - uid: 17653 components: - type: Transform - pos: 88.5,41.5 + pos: 47.5,46.5 parent: 2 - - uid: 17843 + - uid: 17654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,32.5 + pos: 49.5,46.5 parent: 2 - - uid: 17844 + - uid: 17655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,34.5 + pos: 50.5,46.5 parent: 2 - - uid: 17845 + - uid: 17656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,36.5 + pos: 51.5,46.5 parent: 2 - - uid: 17846 + - uid: 17657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,38.5 + pos: 51.5,47.5 parent: 2 - - uid: 17847 + - uid: 17658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,40.5 + pos: 51.5,48.5 parent: 2 - - uid: 17848 + - uid: 17659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,41.5 + pos: 52.5,47.5 parent: 2 - - uid: 17849 + - uid: 17660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,42.5 + pos: 53.5,47.5 parent: 2 - - uid: 17850 + - uid: 17661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,42.5 + pos: 56.5,47.5 parent: 2 - - uid: 17851 + - uid: 17662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,42.5 + pos: 56.5,48.5 parent: 2 - - uid: 17852 + - uid: 17663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,42.5 + pos: 56.5,50.5 parent: 2 - - uid: 17853 + - uid: 17664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,42.5 + pos: 56.5,51.5 parent: 2 - - uid: 17854 + - uid: 17665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,42.5 + pos: 56.5,52.5 parent: 2 - - uid: 17855 + - uid: 17666 components: - type: Transform - pos: 89.5,40.5 + pos: 55.5,52.5 parent: 2 - - uid: 17856 + - uid: 17667 components: - type: Transform - pos: 90.5,39.5 + pos: 54.5,52.5 parent: 2 - - uid: 17857 + - uid: 17668 components: - type: Transform - pos: 88.5,27.5 + pos: 53.5,52.5 parent: 2 - - uid: 17858 + - uid: 17669 components: - type: Transform - pos: 89.5,28.5 + pos: 59.5,51.5 parent: 2 - - uid: 17859 + - uid: 17670 components: - type: Transform - pos: 90.5,29.5 + pos: 59.5,50.5 parent: 2 - - uid: 17860 + - uid: 17671 components: - type: Transform - pos: 86.5,27.5 + pos: 59.5,53.5 parent: 2 - - uid: 17861 + - uid: 17672 components: - type: Transform - pos: 86.5,46.5 + pos: 59.5,54.5 parent: 2 - - uid: 17862 + - uid: 17673 components: - type: Transform - pos: 86.5,21.5 + pos: 63.5,54.5 parent: 2 - - uid: 17863 + - uid: 17674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,76.5 + pos: 63.5,53.5 parent: 2 - - uid: 17864 + - uid: 17675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,79.5 + pos: 63.5,51.5 parent: 2 - - uid: 17865 + - uid: 17676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,80.5 + pos: 63.5,52.5 parent: 2 - - uid: 17866 + - uid: 17677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,81.5 + pos: 63.5,50.5 parent: 2 - - uid: 17867 + - uid: 17678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,81.5 + pos: 60.5,49.5 parent: 2 - - uid: 17868 + - uid: 17679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,81.5 + pos: 61.5,49.5 parent: 2 - - uid: 17869 + - uid: 17680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,80.5 + pos: 62.5,49.5 parent: 2 - - uid: 17872 + - uid: 17681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-21.5 + pos: 59.5,49.5 parent: 2 - - uid: 17873 + - uid: 17682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-6.5 + pos: 63.5,49.5 parent: 2 - - uid: 17874 + - uid: 17683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-8.5 + pos: 63.5,48.5 parent: 2 - - uid: 17875 + - uid: 17684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + pos: 63.5,46.5 parent: 2 - - uid: 17876 + - uid: 17685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 + pos: 63.5,45.5 parent: 2 - - uid: 17877 + - uid: 17686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-14.5 + pos: 61.5,45.5 parent: 2 - - uid: 17878 + - uid: 17687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 + pos: 62.5,45.5 parent: 2 - - uid: 17879 + - uid: 17688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 + pos: 59.5,45.5 parent: 2 - - uid: 17880 + - uid: 17689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-19.5 + pos: 58.5,45.5 parent: 2 - - uid: 17881 + - uid: 17690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 + pos: 58.5,46.5 parent: 2 - - uid: 17882 + - uid: 17691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 + pos: 57.5,47.5 parent: 2 - - uid: 17883 + - uid: 17692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 + pos: 58.5,47.5 parent: 2 - - uid: 17884 + - uid: 17693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-20.5 + pos: 51.5,42.5 parent: 2 - - uid: 17885 + - uid: 17694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-21.5 + pos: 51.5,41.5 parent: 2 - - uid: 17886 + - uid: 17695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-22.5 + pos: 52.5,41.5 parent: 2 - - uid: 17887 + - uid: 17696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 + pos: 54.5,41.5 parent: 2 - - uid: 17888 + - uid: 17697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-20.5 + pos: 58.5,44.5 parent: 2 - - uid: 17889 + - uid: 17698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 + pos: 58.5,43.5 parent: 2 - - uid: 17890 + - uid: 17699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-19.5 + pos: 58.5,42.5 parent: 2 - - uid: 17891 + - uid: 17700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-20.5 + pos: 58.5,41.5 parent: 2 - - uid: 17892 + - uid: 17701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 + pos: 59.5,41.5 parent: 2 - - uid: 17893 + - uid: 17702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 + pos: 60.5,41.5 parent: 2 - - uid: 17894 + - uid: 17703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 + pos: 63.5,41.5 parent: 2 - - uid: 17907 + - uid: 17704 components: - type: Transform - pos: 87.5,-5.5 + pos: 63.5,42.5 parent: 2 - - uid: 17908 + - uid: 17705 components: - type: Transform - pos: 87.5,-4.5 + pos: 63.5,44.5 parent: 2 - - uid: 17909 + - uid: 17706 components: - type: Transform - pos: 87.5,-3.5 + pos: 63.5,43.5 parent: 2 - - uid: 17910 + - uid: 17707 components: - type: Transform - pos: 87.5,2.5 + pos: 59.5,40.5 parent: 2 - - uid: 17911 + - uid: 17708 components: - type: Transform - pos: 87.5,-0.5 + pos: 58.5,36.5 parent: 2 - - uid: 17912 + - uid: 17709 components: - type: Transform - pos: 87.5,4.5 + pos: 59.5,36.5 parent: 2 - - uid: 17913 + - uid: 17710 components: - type: Transform - pos: 87.5,8.5 + pos: 60.5,36.5 parent: 2 - - uid: 17914 + - uid: 17711 components: - type: Transform - pos: 87.5,13.5 + pos: 63.5,36.5 parent: 2 - - uid: 17917 + - uid: 17712 components: - type: Transform - pos: 85.5,-8.5 + pos: 62.5,36.5 parent: 2 - - uid: 17918 + - uid: 17713 components: - type: Transform - pos: 86.5,-8.5 + pos: 63.5,37.5 parent: 2 - - uid: 17936 + - uid: 17714 components: - type: Transform - pos: 80.5,-8.5 + pos: 63.5,38.5 parent: 2 - - uid: 17937 + - uid: 17715 components: - type: Transform - pos: 78.5,-8.5 + pos: 63.5,40.5 parent: 2 - - uid: 17939 + - uid: 17716 components: - type: Transform - pos: 77.5,-8.5 + pos: 63.5,39.5 parent: 2 - - uid: 17944 + - uid: 17717 components: - type: Transform - pos: 82.5,-8.5 + rot: -1.5707963267948966 rad + pos: 49.5,36.5 parent: 2 - - uid: 17979 + - uid: 17718 components: - type: Transform - pos: 85.5,14.5 + rot: -1.5707963267948966 rad + pos: 49.5,41.5 parent: 2 - - uid: 17981 + - uid: 17719 components: - type: Transform - pos: 87.5,11.5 + rot: -1.5707963267948966 rad + pos: 46.5,36.5 parent: 2 - - uid: 17987 + - uid: 17720 components: - type: Transform - pos: 81.5,-8.5 + rot: -1.5707963267948966 rad + pos: 44.5,36.5 parent: 2 - - uid: 17988 + - uid: 17721 components: - type: Transform - pos: 87.5,12.5 + rot: -1.5707963267948966 rad + pos: 43.5,36.5 parent: 2 - - uid: 17989 + - uid: 17722 components: - type: Transform - pos: 84.5,-8.5 + rot: -1.5707963267948966 rad + pos: 42.5,37.5 parent: 2 - - uid: 17990 + - uid: 17723 components: - type: Transform - pos: 87.5,3.5 + rot: -1.5707963267948966 rad + pos: 42.5,36.5 parent: 2 - - uid: 17991 + - uid: 17724 components: - type: Transform - pos: 84.5,14.5 + rot: -1.5707963267948966 rad + pos: 42.5,38.5 parent: 2 - - uid: 17995 + - uid: 17725 components: - type: Transform - pos: 87.5,-1.5 + rot: -1.5707963267948966 rad + pos: 42.5,39.5 parent: 2 - - uid: 17997 + - uid: 17726 components: - type: Transform - pos: 87.5,7.5 + rot: -1.5707963267948966 rad + pos: 42.5,40.5 parent: 2 - - uid: 17998 + - uid: 17727 components: - type: Transform - pos: 86.5,14.5 + rot: -1.5707963267948966 rad + pos: 42.5,41.5 parent: 2 - - uid: 18556 + - uid: 17728 components: - type: Transform - pos: 91.5,14.5 + rot: -1.5707963267948966 rad + pos: 43.5,41.5 parent: 2 - - uid: 18557 + - uid: 17729 components: - type: Transform - pos: 91.5,12.5 + rot: -1.5707963267948966 rad + pos: 43.5,42.5 parent: 2 - - uid: 18558 + - uid: 17730 components: - type: Transform - pos: 90.5,10.5 + rot: -1.5707963267948966 rad + pos: 43.5,43.5 parent: 2 - - uid: 18559 + - uid: 17731 components: - type: Transform - pos: 90.5,8.5 + rot: -1.5707963267948966 rad + pos: 43.5,44.5 parent: 2 - - uid: 18560 + - uid: 17732 components: - type: Transform - pos: 89.5,6.5 + rot: -1.5707963267948966 rad + pos: 41.5,36.5 parent: 2 - - uid: 18561 + - uid: 17733 components: - type: Transform - pos: 89.5,5.5 + rot: -1.5707963267948966 rad + pos: 38.5,36.5 parent: 2 - - uid: 18562 + - uid: 17734 components: - type: Transform - pos: 89.5,2.5 + rot: -1.5707963267948966 rad + pos: 35.5,42.5 parent: 2 - - uid: 18563 + - uid: 17735 components: - type: Transform - pos: 89.5,1.5 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 parent: 2 - - uid: 18564 + - uid: 17736 components: - type: Transform - pos: 90.5,-0.5 + rot: -1.5707963267948966 rad + pos: 37.5,42.5 parent: 2 - - uid: 18565 + - uid: 17737 components: - type: Transform - pos: 90.5,-2.5 + rot: -1.5707963267948966 rad + pos: 38.5,42.5 parent: 2 - - uid: 18566 + - uid: 17738 components: - type: Transform - pos: 91.5,-4.5 + rot: -1.5707963267948966 rad + pos: 38.5,41.5 parent: 2 - - uid: 18567 + - uid: 17739 components: - type: Transform - pos: 91.5,-6.5 + rot: -1.5707963267948966 rad + pos: 39.5,42.5 parent: 2 - - uid: 18568 + - uid: 17740 components: - type: Transform - pos: 77.5,-10.5 + rot: -1.5707963267948966 rad + pos: 39.5,41.5 parent: 2 - - uid: 18569 + - uid: 17741 components: - type: Transform - pos: 79.5,-10.5 + rot: -1.5707963267948966 rad + pos: 39.5,43.5 parent: 2 - - uid: 18570 + - uid: 17742 components: - type: Transform - pos: 81.5,-9.5 + rot: -1.5707963267948966 rad + pos: 39.5,44.5 parent: 2 - - uid: 18572 + - uid: 17743 components: - type: Transform - pos: 85.5,-10.5 + rot: -1.5707963267948966 rad + pos: 40.5,41.5 parent: 2 - - uid: 18573 + - uid: 17744 components: - type: Transform - pos: 87.5,-10.5 + pos: 79.5,54.5 parent: 2 - - uid: 18576 + - uid: 17745 components: - type: Transform - pos: 89.5,-7.5 + pos: 77.5,54.5 parent: 2 - - uid: 18577 + - uid: 17746 components: - type: Transform - pos: 88.5,-8.5 + pos: 76.5,54.5 parent: 2 - - uid: 18629 + - uid: 17747 components: - type: Transform - pos: 88.5,17.5 + pos: 76.5,55.5 parent: 2 - - uid: 18630 + - uid: 17748 components: - type: Transform - pos: 88.5,15.5 + pos: 76.5,57.5 parent: 2 - - uid: 18631 + - uid: 17749 components: - type: Transform - pos: 88.5,21.5 + pos: 74.5,55.5 parent: 2 - - uid: 18632 + - uid: 17750 components: - type: Transform - pos: 88.5,19.5 + pos: 73.5,55.5 parent: 2 -- proto: WardrobeBlackFilled - entities: - - uid: 17895 + - uid: 17751 components: - type: Transform - pos: 26.5,10.5 + pos: 72.5,55.5 parent: 2 -- proto: WardrobeBlueFilled - entities: - - uid: 17896 + - uid: 17752 components: - type: Transform - pos: 26.5,11.5 + pos: 72.5,56.5 parent: 2 -- proto: WardrobeCargoFilled - entities: - - uid: 17897 + - uid: 17753 components: - type: Transform - pos: 11.5,10.5 + pos: 72.5,57.5 parent: 2 - - uid: 17898 + - uid: 17754 components: - type: Transform - pos: 10.5,10.5 + pos: 80.5,52.5 parent: 2 - - uid: 17899 + - uid: 17755 components: - type: Transform - pos: 9.5,10.5 + pos: 80.5,48.5 parent: 2 -- proto: WardrobeGeneticsFilled - entities: - - uid: 17900 + - uid: 17756 components: - type: Transform - pos: 29.5,26.5 + pos: 78.5,52.5 parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 17901 + - uid: 17757 components: - type: Transform - pos: -9.5,51.5 + pos: 77.5,52.5 parent: 2 - - uid: 17902 + - uid: 17758 components: - type: Transform - pos: -5.5,51.5 + pos: 77.5,51.5 parent: 2 - - uid: 17903 + - uid: 17759 components: - type: Transform - pos: -1.5,51.5 + pos: 76.5,51.5 parent: 2 -- proto: WardrobeVirologyFilled - entities: - - uid: 17904 + - uid: 17760 components: - type: Transform - pos: 20.5,11.5 + pos: 77.5,50.5 parent: 2 -- proto: WardrobeWhiteFilled - entities: - - uid: 17905 + - uid: 17761 components: - type: Transform - pos: 26.5,12.5 + pos: 77.5,49.5 parent: 2 -- proto: WardrobeYellowFilled - entities: - - uid: 17906 + - uid: 17762 components: - type: Transform - pos: 26.5,9.5 + pos: 77.5,48.5 parent: 2 -- proto: WarpPoint - entities: - - uid: 17942 + - uid: 17763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 + pos: 76.5,48.5 parent: 2 - - type: WarpPoint - location: QM -- proto: WarpPointBombing - entities: - - uid: 17945 + - uid: 17764 components: - type: Transform - pos: 0.5,7.5 + pos: 78.5,48.5 parent: 2 - - type: WarpPoint - location: Cargo Bay - - uid: 17946 + - uid: 17765 components: - type: Transform - pos: 1.5,16.5 + pos: 68.5,47.5 parent: 2 - - type: WarpPoint - location: QM office - - uid: 17947 + - uid: 17766 components: - type: Transform - pos: 9.5,15.5 + pos: 67.5,47.5 parent: 2 - - type: WarpPoint - location: Logistics - - uid: 17948 + - uid: 17767 components: - type: Transform - pos: 12.5,27.5 + pos: 67.5,48.5 parent: 2 - - type: WarpPoint - location: Chem - - uid: 17949 + - uid: 17768 components: - type: Transform - pos: 20.5,39.5 + pos: 67.5,49.5 parent: 2 - - type: WarpPoint - location: CMO office - - uid: 17950 + - uid: 17769 components: - type: Transform - pos: 27.5,34.5 + pos: 67.5,50.5 parent: 2 - - type: WarpPoint - location: MedBay - - uid: 17951 + - uid: 17770 components: - type: Transform - pos: -9.5,34.5 + pos: 67.5,51.5 parent: 2 - - type: WarpPoint - location: Eng lockers - - uid: 17953 + - uid: 17771 components: - type: Transform - pos: -29.5,14.5 + pos: 67.5,52.5 parent: 2 - - type: WarpPoint - location: Atmos - - uid: 17954 + - uid: 17772 components: - type: Transform - pos: -19.5,28.5 + pos: 67.5,53.5 parent: 2 - - type: WarpPoint - location: SuperMatter - - uid: 17955 + - uid: 17773 components: - type: Transform - pos: -21.5,43.5 + pos: 67.5,54.5 parent: 2 - - type: WarpPoint - location: Gravity generator - - uid: 17956 + - uid: 17774 components: - type: Transform - pos: -11.5,44.5 + pos: 68.5,53.5 parent: 2 - - type: WarpPoint - location: SMES - - uid: 17957 + - uid: 17775 components: - type: Transform - pos: -12.5,56.5 + pos: 69.5,53.5 parent: 2 - - type: WarpPoint - location: Brig - - uid: 17958 + - uid: 17776 components: - type: Transform - pos: -4.5,57.5 + pos: 70.5,53.5 parent: 2 - - type: WarpPoint - location: BrigMed - - uid: 17959 + - uid: 17777 components: - type: Transform - pos: -16.5,69.5 + pos: 71.5,48.5 parent: 2 - - type: WarpPoint - location: Armory - - uid: 17960 + - uid: 17778 components: - type: Transform - pos: -17.5,61.5 + pos: 71.5,49.5 parent: 2 - - type: WarpPoint - location: Warden - - uid: 17961 + - uid: 17779 components: - type: Transform - pos: -23.5,67.5 + pos: 71.5,51.5 parent: 2 - - type: WarpPoint - location: Sec lockers - - uid: 17962 + - uid: 17780 components: - type: Transform - pos: -30.5,66.5 + pos: 71.5,52.5 parent: 2 - - type: WarpPoint - location: Perma - - uid: 17963 + - uid: 17781 components: - type: Transform - pos: -33.5,37.5 + pos: 71.5,53.5 parent: 2 - - type: WarpPoint - location: TeleComms - - uid: 17964 + - uid: 17782 components: - type: Transform - pos: 2.5,75.5 + pos: 72.5,53.5 parent: 2 - - type: WarpPoint - location: North Park - - uid: 17965 + - uid: 17783 components: - type: Transform - pos: 11.5,54.5 + pos: 74.5,51.5 parent: 2 - - type: WarpPoint - location: Chapel - - uid: 17966 + - uid: 17784 components: - type: Transform - pos: 18.5,53.5 + pos: 73.5,51.5 parent: 2 - - type: WarpPoint - location: Library - - uid: 17967 + - uid: 17785 components: - type: Transform - pos: 30.5,54.5 + rot: -1.5707963267948966 rad + pos: 71.5,36.5 parent: 2 - - type: WarpPoint - location: Vault - - uid: 17968 + - uid: 17786 components: - type: Transform - pos: 34.5,53.5 + rot: -1.5707963267948966 rad + pos: 72.5,36.5 parent: 2 - - type: WarpPoint - location: GateWay - - uid: 17969 + - uid: 17787 components: - type: Transform - pos: 55.5,37.5 + rot: 1.5707963267948966 rad + pos: 61.5,12.5 parent: 2 - - type: WarpPoint - location: Cafeteria - - uid: 17970 + - uid: 17788 components: - type: Transform - pos: 75.5,43.5 + rot: 1.5707963267948966 rad + pos: 62.5,12.5 parent: 2 - - type: WarpPoint - location: EVA - - uid: 17971 + - uid: 17789 components: - type: Transform - pos: 85.5,33.5 + rot: 1.5707963267948966 rad + pos: 63.5,12.5 parent: 2 - - type: WarpPoint - location: Bridge - - uid: 17972 + - uid: 17790 components: - type: Transform - pos: 76.5,30.5 + rot: 1.5707963267948966 rad + pos: 62.5,13.5 parent: 2 - - type: WarpPoint - location: Cap office - - uid: 17973 + - uid: 17791 components: - type: Transform - pos: 73.5,3.5 + rot: -1.5707963267948966 rad + pos: 62.5,14.5 parent: 2 - - type: WarpPoint - location: Arrivals - - uid: 17974 + - uid: 17792 components: - type: Transform - pos: 51.5,-2.5 + rot: -1.5707963267948966 rad + pos: 62.5,15.5 parent: 2 - - type: WarpPoint - location: Anomaly/Slime Farm - - uid: 17975 + - uid: 17793 components: - type: Transform - pos: 52.5,16.5 + rot: -1.5707963267948966 rad + pos: 62.5,16.5 parent: 2 - - type: WarpPoint - location: RD office - - uid: 17976 + - uid: 17794 components: - type: Transform - pos: 54.5,26.5 + rot: 1.5707963267948966 rad + pos: 62.5,17.5 parent: 2 - - type: WarpPoint - location: Epistemics -- proto: WarpPointCryo - entities: - - uid: 17980 + - uid: 17795 components: - type: Transform - pos: 10.5,35.5 + rot: 1.5707963267948966 rad + pos: 63.5,17.5 parent: 2 -- proto: WaterCooler - entities: - - uid: 8321 + - uid: 17796 components: - type: Transform - pos: 70.5,23.5 + rot: 1.5707963267948966 rad + pos: 63.5,19.5 parent: 2 - - uid: 17999 + - uid: 17797 components: - type: Transform - pos: 30.5,3.5 + rot: 1.5707963267948966 rad + pos: 63.5,26.5 parent: 2 - - uid: 18000 + - uid: 17798 components: - type: Transform - pos: 45.5,62.5 + rot: 1.5707963267948966 rad + pos: 63.5,25.5 parent: 2 -- proto: WaterTankFull - entities: - - uid: 18001 + - uid: 17799 components: - type: Transform - pos: 5.5,23.5 + rot: 1.5707963267948966 rad + pos: 63.5,24.5 parent: 2 - - uid: 18002 + - uid: 17800 components: - type: Transform - pos: 36.5,21.5 + rot: 1.5707963267948966 rad + pos: 63.5,23.5 parent: 2 - - uid: 18003 + - uid: 17801 components: - type: Transform - pos: -8.5,34.5 + rot: 1.5707963267948966 rad + pos: 63.5,22.5 parent: 2 - - uid: 18004 + - uid: 17802 components: - type: Transform - pos: -6.5,40.5 + rot: 1.5707963267948966 rad + pos: 63.5,21.5 parent: 2 - - uid: 18005 + - uid: 17803 components: - type: Transform - pos: 18.5,4.5 + rot: 1.5707963267948966 rad + pos: 63.5,20.5 parent: 2 - - uid: 18006 + - uid: 17804 components: - type: Transform - pos: 58.5,31.5 + pos: 67.5,12.5 parent: 2 - - uid: 18007 + - uid: 17805 components: - type: Transform - pos: 72.5,62.5 + rot: -1.5707963267948966 rad + pos: 73.5,17.5 parent: 2 - - uid: 18008 + - uid: 17806 components: - type: Transform - pos: 29.5,66.5 + rot: -1.5707963267948966 rad + pos: 73.5,19.5 parent: 2 - - uid: 18009 + - uid: 17807 components: - type: Transform - pos: 45.5,58.5 + rot: -1.5707963267948966 rad + pos: 73.5,20.5 parent: 2 - - uid: 18010 + - uid: 17808 components: - type: Transform - pos: 44.5,58.5 + rot: -1.5707963267948966 rad + pos: 73.5,21.5 parent: 2 - - uid: 18011 + - uid: 17809 components: - type: Transform - pos: 52.5,57.5 + rot: 3.141592653589793 rad + pos: 67.5,57.5 parent: 2 - - uid: 18012 + - uid: 17810 components: - type: Transform - pos: 46.5,50.5 + rot: 3.141592653589793 rad + pos: 67.5,59.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 18013 + - uid: 17811 components: - type: Transform - pos: 48.5,37.5 + rot: 3.141592653589793 rad + pos: 20.5,13.5 parent: 2 - - uid: 18014 + - uid: 17812 components: - type: Transform - pos: 47.5,37.5 + rot: 3.141592653589793 rad + pos: 20.5,14.5 parent: 2 - - uid: 18015 + - uid: 17813 components: - type: Transform - pos: 39.5,52.5 + rot: 3.141592653589793 rad + pos: 61.5,-4.5 parent: 2 - - uid: 18756 + - uid: 17814 components: - type: Transform - pos: -24.5,16.5 + pos: 19.5,10.5 parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 18016 + - uid: 17815 components: - type: Transform - pos: 35.5,17.5 + pos: 19.5,9.5 parent: 2 - - uid: 18017 + - uid: 17816 components: - type: Transform - pos: 36.5,17.5 + pos: 19.5,8.5 parent: 2 -- proto: WeaponCapacitorRecharger - entities: - - uid: 18018 + - uid: 17817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,27.5 + pos: 19.5,7.5 parent: 2 - - uid: 18020 + - uid: 17818 components: - type: Transform - pos: -3.5,15.5 + pos: 17.5,5.5 parent: 2 - - uid: 18021 + - uid: 17819 components: - type: Transform - pos: -4.5,29.5 + pos: 36.5,46.5 parent: 2 - - uid: 18022 + - uid: 17822 components: - type: Transform - pos: -16.5,60.5 + pos: 86.5,41.5 parent: 2 - - uid: 18023 + - uid: 17824 components: - type: Transform - pos: -25.5,61.5 + rot: 3.141592653589793 rad + pos: 2.5,81.5 parent: 2 - - uid: 18024 + - uid: 17826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,14.5 + rot: 3.141592653589793 rad + pos: 3.5,81.5 parent: 2 - - uid: 18025 + - uid: 17827 components: - type: Transform - pos: 82.5,33.5 + rot: 3.141592653589793 rad + pos: 7.5,82.5 parent: 2 - - uid: 18026 + - uid: 17828 components: - type: Transform - pos: 70.5,13.5 + rot: 3.141592653589793 rad + pos: 8.5,82.5 parent: 2 -- proto: WeaponLaserCarbine - entities: - - uid: 18027 + - uid: 17829 components: - type: Transform - pos: -19.609697,69.7698 + rot: -1.5707963267948966 rad + pos: 52.5,64.5 parent: 2 - - uid: 18028 + - uid: 17830 components: - type: Transform - pos: -19.268963,69.644356 + rot: 3.141592653589793 rad + pos: 11.5,82.5 parent: 2 - - uid: 18029 + - uid: 17831 components: - type: Transform - pos: -19.645565,69.518906 + rot: 3.141592653589793 rad + pos: 12.5,81.5 parent: 2 - - uid: 18030 + - uid: 17832 components: - type: Transform - pos: -19.268963,69.393456 + rot: 1.5707963267948966 rad + pos: 29.5,64.5 parent: 2 -- proto: WeaponPistolMk58 - entities: - - uid: 18031 + - uid: 17835 components: - type: Transform - pos: -17.601858,68.653786 + rot: -1.5707963267948966 rad + pos: 51.5,64.5 parent: 2 - - uid: 18032 + - uid: 17836 components: - type: Transform - pos: -17.494259,68.56418 + rot: -1.5707963267948966 rad + pos: 47.5,69.5 parent: 2 - - uid: 18033 + - uid: 17837 components: - type: Transform - pos: -17.35079,68.42081 + rot: -1.5707963267948966 rad + pos: 48.5,69.5 parent: 2 -- proto: WeaponRifleLecter - entities: - - uid: 18034 + - uid: 17838 components: - type: Transform - pos: -15.664352,70.734 + rot: -1.5707963267948966 rad + pos: 48.5,68.5 parent: 2 - - uid: 18035 + - uid: 17839 components: - type: Transform - pos: -15.485018,70.60855 + rot: -1.5707963267948966 rad + pos: 74.5,65.5 parent: 2 - - uid: 18036 + - uid: 17840 components: - type: Transform - pos: -15.664352,70.411415 + rot: -1.5707963267948966 rad + pos: 76.5,65.5 parent: 2 - - uid: 18037 + - uid: 17841 components: - type: Transform - pos: -15.405928,70.28039 + rot: -1.5707963267948966 rad + pos: 78.5,65.5 parent: 2 -- proto: WeaponSubMachineGunDrozd - entities: - - uid: 18038 + - uid: 17842 components: - type: Transform - pos: -14.389482,67.54267 + pos: 88.5,41.5 parent: 2 - - uid: 18039 + - uid: 17843 components: - type: Transform - pos: -14.28188,67.363464 + rot: 3.141592653589793 rad + pos: -40.5,32.5 parent: 2 - - uid: 18040 + - uid: 17844 components: - type: Transform - pos: -14.5329485,67.76181 + rot: 3.141592653589793 rad + pos: -40.5,34.5 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 18041 + - uid: 17845 components: - type: Transform - pos: 37.5,28.5 + rot: 3.141592653589793 rad + pos: -41.5,36.5 parent: 2 - - uid: 18042 + - uid: 17846 components: - type: Transform - pos: 42.5,29.5 + rot: 3.141592653589793 rad + pos: -42.5,38.5 parent: 2 - - uid: 18043 + - uid: 17855 components: - type: Transform - pos: 42.5,27.5 + pos: 89.5,40.5 parent: 2 - - uid: 18044 + - uid: 17856 components: - type: Transform - pos: 24.5,-8.5 + pos: 90.5,39.5 parent: 2 - - uid: 18045 + - uid: 17857 components: - type: Transform - pos: 29.5,-8.5 + pos: 88.5,27.5 parent: 2 - - uid: 18046 + - uid: 17858 components: - type: Transform - pos: 29.5,-14.5 + pos: 89.5,28.5 parent: 2 - - uid: 18047 + - uid: 17859 components: - type: Transform - pos: 24.5,-14.5 + pos: 90.5,29.5 parent: 2 -- proto: WelderIndustrialAdvanced - entities: - - uid: 18048 + - uid: 17860 components: - type: Transform - pos: -7.250613,24.386929 + pos: 86.5,27.5 parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 18049 + - uid: 17861 components: - type: Transform - pos: 4.5,23.5 + pos: 86.5,46.5 parent: 2 - - uid: 18050 + - uid: 17862 components: - type: Transform - pos: -7.5,31.5 + pos: 86.5,21.5 parent: 2 - - uid: 18051 + - uid: 17863 components: - type: Transform - pos: 59.5,31.5 + rot: 3.141592653589793 rad + pos: -26.5,76.5 parent: 2 - - uid: 18052 + - uid: 17864 components: - type: Transform - pos: 28.5,5.5 + rot: 3.141592653589793 rad + pos: -24.5,79.5 parent: 2 - - uid: 18053 + - uid: 17865 components: - type: Transform - pos: 72.5,59.5 + rot: 3.141592653589793 rad + pos: -22.5,80.5 parent: 2 - - uid: 18054 + - uid: 17866 components: - type: Transform - pos: 70.5,42.5 + rot: 3.141592653589793 rad + pos: -20.5,81.5 parent: 2 - - uid: 18055 + - uid: 17867 components: - type: Transform - pos: 75.5,18.5 + rot: 3.141592653589793 rad + pos: -18.5,81.5 parent: 2 - - uid: 18056 + - uid: 17868 components: - type: Transform - pos: 12.5,8.5 + rot: 3.141592653589793 rad + pos: -16.5,81.5 parent: 2 - - uid: 18057 + - uid: 17869 components: - type: Transform - pos: 13.5,8.5 + rot: 3.141592653589793 rad + pos: -14.5,80.5 parent: 2 - - uid: 18058 + - uid: 17892 components: - type: Transform - pos: 26.5,5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-3.5 parent: 2 - - uid: 18059 + - uid: 17893 components: - type: Transform - pos: 54.5,9.5 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 parent: 2 - - uid: 18060 + - uid: 17894 components: - type: Transform - pos: 80.5,46.5 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 parent: 2 - - uid: 18061 + - uid: 17907 components: - type: Transform - pos: 73.5,50.5 + pos: 87.5,-5.5 parent: 2 - - uid: 18062 + - uid: 17908 components: - type: Transform - pos: 79.5,55.5 + pos: 87.5,-4.5 parent: 2 - - uid: 18063 + - uid: 17909 components: - type: Transform - pos: 50.5,57.5 + pos: 87.5,-3.5 parent: 2 - - uid: 18064 + - uid: 17910 components: - type: Transform - pos: 49.5,57.5 + pos: 87.5,2.5 parent: 2 - - uid: 18065 + - uid: 17911 components: - type: Transform - pos: 45.5,60.5 + pos: 87.5,-0.5 parent: 2 - - uid: 18066 + - uid: 17912 components: - type: Transform - pos: 44.5,60.5 + pos: 87.5,4.5 parent: 2 - - uid: 18067 + - uid: 17913 components: - type: Transform - pos: 45.5,50.5 + pos: 87.5,8.5 parent: 2 - - uid: 18068 + - uid: 17914 components: - type: Transform - pos: 37.5,60.5 + pos: 87.5,13.5 parent: 2 - - uid: 18069 + - uid: 17917 components: - type: Transform - pos: 22.5,66.5 + pos: 85.5,-8.5 parent: 2 - - uid: 18070 + - uid: 17918 components: - type: Transform - pos: 1.5,78.5 + pos: 86.5,-8.5 parent: 2 - - uid: 18071 + - uid: 17936 components: - type: Transform - pos: 35.5,21.5 + pos: 80.5,-8.5 parent: 2 -- proto: Windoor - entities: - - uid: 18072 + - uid: 17937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + pos: 78.5,-8.5 parent: 2 - - uid: 18073 + - uid: 17939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,20.5 + pos: 77.5,-8.5 parent: 2 - - uid: 18074 + - uid: 17944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,14.5 + pos: 82.5,-8.5 parent: 2 - - uid: 18075 + - uid: 17979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 + pos: 85.5,14.5 parent: 2 - - uid: 18076 + - uid: 17981 components: - type: Transform - pos: -15.5,59.5 + pos: 87.5,11.5 parent: 2 - - uid: 18077 + - uid: 17987 components: - type: Transform - pos: -15.5,50.5 + pos: 81.5,-8.5 parent: 2 - - uid: 18078 + - uid: 17988 components: - type: Transform - pos: -14.5,50.5 + pos: 87.5,12.5 parent: 2 - - uid: 18079 + - uid: 17989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,51.5 + pos: 84.5,-8.5 parent: 2 - - uid: 18080 + - uid: 17990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,52.5 + pos: 87.5,3.5 parent: 2 - - uid: 18081 + - uid: 17991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 + pos: 84.5,14.5 parent: 2 - - uid: 18082 + - uid: 17995 components: - type: Transform - pos: 8.5,5.5 + pos: 87.5,-1.5 parent: 2 - - uid: 18083 + - uid: 17997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,25.5 + pos: 87.5,7.5 parent: 2 - - uid: 18084 + - uid: 17998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,23.5 + pos: 86.5,14.5 parent: 2 - - uid: 18085 + - uid: 18556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,39.5 + pos: 91.5,14.5 parent: 2 - - uid: 18086 + - uid: 18557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,38.5 + pos: 91.5,12.5 parent: 2 - - uid: 18087 + - uid: 18558 components: - type: Transform - pos: 45.5,36.5 + pos: 90.5,10.5 parent: 2 - - uid: 18088 + - uid: 18559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,37.5 + pos: 90.5,8.5 parent: 2 - - uid: 18089 + - uid: 18560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,40.5 + pos: 89.5,6.5 parent: 2 - - uid: 18090 + - uid: 18561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,40.5 + pos: 89.5,5.5 parent: 2 - - uid: 18091 + - uid: 18562 components: - type: Transform - pos: 72.5,12.5 + pos: 89.5,2.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 18092 + - uid: 18563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,39.5 + pos: 89.5,1.5 parent: 2 - - uid: 18093 + - uid: 18564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,38.5 + pos: 90.5,-0.5 parent: 2 - - uid: 18094 + - uid: 18565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,36.5 + pos: 90.5,-2.5 parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 18095 + - uid: 18566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,43.5 + pos: 91.5,-4.5 parent: 2 - - uid: 18096 + - uid: 18567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,43.5 + pos: 91.5,-6.5 parent: 2 -- proto: WindoorSecure - entities: - - uid: 18097 + - uid: 18568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,63.5 + pos: 77.5,-10.5 parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 18098 + - uid: 18569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,65.5 + pos: 79.5,-10.5 parent: 2 - - uid: 18099 + - uid: 18570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,65.5 + pos: 81.5,-9.5 parent: 2 - - uid: 18100 + - uid: 18572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,65.5 + pos: 85.5,-10.5 parent: 2 - - uid: 18101 + - uid: 18573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,65.5 + pos: 87.5,-10.5 parent: 2 - - uid: 18102 + - uid: 18576 components: - type: Transform - pos: -17.5,65.5 + pos: 89.5,-7.5 parent: 2 - - uid: 18103 + - uid: 18577 components: - type: Transform - pos: -16.5,65.5 + pos: 88.5,-8.5 parent: 2 - - uid: 18104 + - uid: 18629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,64.5 + pos: 88.5,17.5 parent: 2 - - uid: 18105 + - uid: 18630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,68.5 + pos: 88.5,15.5 parent: 2 - - uid: 18106 + - uid: 18631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,67.5 + pos: 88.5,21.5 parent: 2 - - uid: 18107 + - uid: 18632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,68.5 + pos: 88.5,19.5 parent: 2 - - uid: 18108 +- proto: WardrobeBlackFilled + entities: + - uid: 17895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,67.5 + pos: 26.5,10.5 parent: 2 - - uid: 18109 +- proto: WardrobeBlueFilled + entities: + - uid: 17896 components: - type: Transform - pos: -17.5,70.5 + pos: 26.5,11.5 parent: 2 - - uid: 18110 +- proto: WardrobeCargoFilled + entities: + - uid: 17897 components: - type: Transform - pos: -16.5,70.5 + pos: 11.5,10.5 parent: 2 - - uid: 18111 + - uid: 17898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,66.5 + pos: 10.5,10.5 parent: 2 - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - type: Door - secondsUntilStateChange: -80064.195 - state: Opening - - uid: 18112 + - uid: 17899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,59.5 + pos: 9.5,10.5 parent: 2 -- proto: WindoorSecureAtmosphericsLocked +- proto: WardrobeGeneticsFilled entities: - - uid: 18113 + - uid: 17900 components: - type: Transform - pos: -18.5,20.5 + pos: 29.5,26.5 parent: 2 - - uid: 18114 +- proto: WardrobePrisonFilled + entities: + - uid: 17901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,20.5 + pos: -9.5,51.5 parent: 2 - - uid: 18115 + - uid: 17902 components: - type: Transform - pos: 20.5,45.5 + pos: -5.5,51.5 parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 18116 + - uid: 17903 components: - type: Transform - pos: 7.5,14.5 + pos: -1.5,51.5 parent: 2 - - uid: 18117 +- proto: WardrobeVirologyFilled + entities: + - uid: 17904 components: - type: Transform - pos: 11.5,14.5 + pos: 20.5,11.5 parent: 2 - - uid: 18118 +- proto: WardrobeWhiteFilled + entities: + - uid: 17905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,9.5 + pos: 26.5,12.5 parent: 2 -- proto: WindoorSecureChapelLocked +- proto: WardrobeYellowFilled entities: - - uid: 18119 + - uid: 17906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,63.5 + pos: 26.5,9.5 parent: 2 -- proto: WindoorSecureChemistryLocked +- proto: WarpPoint entities: - - uid: 18120 + - uid: 17942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 parent: 2 - - uid: 18121 + - type: WarpPoint + location: QM +- proto: WarpPointBombing + entities: + - uid: 17945 components: - type: Transform - pos: 12.5,29.5 + pos: 0.5,7.5 parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 257 + - type: WarpPoint + location: Cargo Bay + - uid: 17946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,29.5 + pos: 1.5,16.5 parent: 2 - - uid: 5987 + - type: WarpPoint + location: QM office + - uid: 17947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,31.5 + pos: 9.5,15.5 parent: 2 - - uid: 14896 + - type: WarpPoint + location: Logistics + - uid: 17948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,28.5 + pos: 12.5,27.5 parent: 2 - - uid: 17016 + - type: WarpPoint + location: Chem + - uid: 17949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-11.5 + pos: 20.5,39.5 parent: 2 - - uid: 18122 + - type: WarpPoint + location: CMO office + - uid: 17950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,0.5 + pos: 27.5,34.5 parent: 2 - - uid: 18123 + - type: WarpPoint + location: MedBay + - uid: 17951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 + pos: -9.5,34.5 parent: 2 - - uid: 18124 + - type: WarpPoint + location: Eng lockers + - uid: 17953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 + pos: -29.5,14.5 parent: 2 - - uid: 18125 + - type: WarpPoint + location: Atmos + - uid: 17954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-6.5 + pos: -19.5,28.5 parent: 2 - - uid: 18126 + - type: WarpPoint + location: SuperMatter + - uid: 17955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-6.5 + pos: -21.5,43.5 parent: 2 - - uid: 18127 + - type: WarpPoint + location: Gravity generator + - uid: 17956 components: - type: Transform - pos: 40.5,-11.5 + pos: -11.5,44.5 parent: 2 - - uid: 18129 + - type: WarpPoint + location: SMES + - uid: 17957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 + pos: -12.5,56.5 parent: 2 - - uid: 18130 + - type: WarpPoint + location: Brig + - uid: 17958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-16.5 + pos: -4.5,57.5 parent: 2 - - uid: 18131 + - type: WarpPoint + location: BrigMed + - uid: 17959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-17.5 + pos: -16.5,69.5 parent: 2 - - uid: 18132 + - type: WarpPoint + location: Armory + - uid: 17960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 + pos: -17.5,61.5 parent: 2 - - uid: 18133 + - type: WarpPoint + location: Warden + - uid: 17961 components: - type: Transform - pos: 20.5,-11.5 + pos: -23.5,67.5 parent: 2 - - uid: 18134 + - type: WarpPoint + location: Sec lockers + - uid: 17962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 + pos: -30.5,66.5 parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 18135 + - type: WarpPoint + location: Perma + - uid: 17964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,35.5 + pos: 2.5,75.5 parent: 2 - - uid: 18136 + - type: WarpPoint + location: North Park + - uid: 17965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,44.5 + pos: 11.5,54.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 18137 + - type: WarpPoint + location: Chapel + - uid: 17966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,40.5 + pos: 18.5,53.5 parent: 2 -- proto: WindoorSecureMailLocked - entities: - - uid: 18138 + - type: WarpPoint + location: Library + - uid: 17967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 + pos: 30.5,54.5 parent: 2 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 18139 + - type: WarpPoint + location: Vault + - uid: 17968 components: - type: Transform - pos: 15.5,32.5 + pos: 34.5,53.5 parent: 2 - - uid: 18140 + - type: WarpPoint + location: GateWay + - uid: 17969 components: - type: Transform - pos: 16.5,32.5 + pos: 55.5,37.5 parent: 2 - - uid: 18141 + - type: WarpPoint + location: Cafeteria + - uid: 17970 components: - type: Transform - pos: -4.5,57.5 + pos: 75.5,43.5 parent: 2 - - uid: 18143 + - type: WarpPoint + location: EVA + - uid: 17971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,39.5 + pos: 85.5,33.5 parent: 2 - - uid: 18144 + - type: WarpPoint + location: Bridge + - uid: 17972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,40.5 + pos: 76.5,30.5 parent: 2 - - uid: 18145 + - type: WarpPoint + location: Cap office + - uid: 17973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,42.5 + pos: 73.5,3.5 parent: 2 - - uid: 18146 + - type: WarpPoint + location: Arrivals + - uid: 17974 components: - type: Transform - pos: 7.5,46.5 + pos: 51.5,-2.5 parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 18147 + - type: WarpPoint + location: Anomaly/Slime Farm + - uid: 17975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,9.5 + pos: 52.5,16.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 18148 + - type: WarpPoint + location: RD office + - uid: 17976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,0.5 + pos: 54.5,26.5 parent: 2 - - uid: 18149 + - type: WarpPoint + location: Epistemics +- proto: WarpPointCryo + entities: + - uid: 17980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,3.5 + pos: 10.5,35.5 parent: 2 - - uid: 18150 +- proto: WaterCooler + entities: + - uid: 8321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 + pos: 70.5,23.5 parent: 2 - - uid: 18151 + - uid: 17999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-2.5 + pos: 30.5,3.5 parent: 2 - - uid: 18152 + - uid: 18000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 + pos: 45.5,62.5 parent: 2 - - uid: 18153 +- proto: WaterTankFull + entities: + - uid: 18001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,3.5 + pos: 5.5,23.5 parent: 2 - - uid: 18154 + - uid: 18002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-4.5 + pos: 36.5,21.5 parent: 2 - - uid: 18155 + - uid: 18003 components: - type: Transform - pos: 51.5,-5.5 + pos: -8.5,34.5 parent: 2 - - uid: 18156 + - uid: 18004 components: - type: Transform - pos: 55.5,23.5 + pos: -6.5,40.5 parent: 2 - - uid: 18157 + - uid: 18005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,25.5 + pos: 18.5,4.5 parent: 2 - - uid: 18158 + - uid: 18006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,28.5 + pos: 58.5,31.5 parent: 2 - - uid: 18159 + - uid: 18007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,25.5 + pos: 72.5,62.5 parent: 2 - - uid: 18673 + - uid: 18008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 + pos: 29.5,66.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 18674 - - type: DeviceLinkSource - linkedPorts: - 18674: - - DoorStatus: DoorBolt - - uid: 18674 + - uid: 18009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,6.5 + pos: 45.5,58.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 18673 - - type: DeviceLinkSource - linkedPorts: - 18673: - - DoorStatus: DoorBolt - - uid: 19278 + - uid: 18010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,3.5 + pos: 44.5,58.5 parent: 2 - - uid: 19279 + - uid: 18011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,0.5 + pos: 52.5,57.5 parent: 2 - - uid: 19280 + - uid: 18012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-2.5 + pos: 46.5,50.5 parent: 2 - - uid: 19281 +- proto: WaterTankHighCapacity + entities: + - uid: 18013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-2.5 + pos: 48.5,37.5 parent: 2 - - uid: 19282 + - uid: 18014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,0.5 + pos: 47.5,37.5 parent: 2 - - uid: 19283 + - uid: 18015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,3.5 + pos: 39.5,52.5 parent: 2 -- proto: WindoorSecureSecurityLawyerLocked - entities: - - uid: 18160 + - uid: 18756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,29.5 + pos: -24.5,16.5 parent: 2 - - uid: 18161 +- proto: WaterVaporCanister + entities: + - uid: 18016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 + pos: 35.5,17.5 parent: 2 - - uid: 18162 + - uid: 18017 components: - type: Transform - pos: 38.5,30.5 + pos: 36.5,17.5 parent: 2 -- proto: WindoorSecureSecurityLocked +- proto: WeaponCapacitorRecharger entities: - - uid: 18163 + - uid: 18018 components: - type: Transform - pos: -8.5,53.5 + rot: 3.141592653589793 rad + pos: 3.5,27.5 parent: 2 - - uid: 18164 + - uid: 18020 components: - type: Transform - pos: -4.5,53.5 + pos: -3.5,15.5 parent: 2 - - uid: 18165 + - uid: 18021 components: - type: Transform - pos: -0.5,53.5 + pos: -4.5,29.5 parent: 2 - - uid: 18166 + - uid: 18022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,52.5 + pos: -16.5,60.5 parent: 2 - - uid: 18167 + - uid: 18023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,67.5 + pos: -25.5,61.5 parent: 2 - - uid: 18168 + - uid: 18024 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,52.5 + pos: 46.5,14.5 parent: 2 - - uid: 18169 + - uid: 18025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,51.5 + pos: 82.5,33.5 parent: 2 - - uid: 18170 + - uid: 18026 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,50.5 + pos: 70.5,13.5 parent: 2 - - uid: 18171 +- proto: WeaponLaserCarbine + entities: + - uid: 18027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,50.5 + pos: -19.609697,69.7698 parent: 2 - - uid: 18172 + - uid: 18028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,12.5 + pos: -19.268963,69.644356 parent: 2 -- proto: WindoorServiceLocked - entities: - - uid: 18173 + - uid: 18029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,56.5 + pos: -19.645565,69.518906 parent: 2 -- proto: WindoorTheatreLocked - entities: - - uid: 18174 + - uid: 18030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,40.5 + pos: -19.268963,69.393456 parent: 2 -- proto: Window +- proto: WeaponPistolMk58 entities: - - uid: 18175 + - uid: 18031 components: - type: Transform - pos: 14.5,33.5 + pos: -17.601858,68.653786 parent: 2 - - uid: 18176 + - uid: 18032 components: - type: Transform - pos: 16.5,33.5 + pos: -17.494259,68.56418 parent: 2 - - uid: 18177 + - uid: 18033 components: - type: Transform - pos: 17.5,33.5 + pos: -17.35079,68.42081 parent: 2 - - uid: 18178 +- proto: WeaponRifleLecter + entities: + - uid: 18034 components: - type: Transform - pos: 13.5,32.5 + pos: -15.664352,70.734 parent: 2 - - uid: 18179 + - uid: 18035 components: - type: Transform - pos: 13.5,33.5 + pos: -15.485018,70.60855 parent: 2 - - uid: 18180 + - uid: 18036 components: - type: Transform - pos: -17.5,-2.5 + pos: -15.664352,70.411415 parent: 2 - - uid: 18181 + - uid: 18037 components: - type: Transform - pos: 5.5,12.5 + pos: -15.405928,70.28039 parent: 2 - - uid: 18182 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 18038 components: - type: Transform - pos: 9.5,13.5 + pos: -14.389482,67.54267 parent: 2 - - uid: 18183 + - uid: 18039 components: - type: Transform - pos: 6.5,18.5 + pos: -14.28188,67.363464 parent: 2 - - uid: 18184 + - uid: 18040 components: - type: Transform - pos: 9.5,18.5 + pos: -14.5329485,67.76181 parent: 2 - - uid: 18185 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 18041 components: - type: Transform - pos: 12.5,18.5 + pos: 37.5,28.5 parent: 2 - - uid: 18186 + - uid: 18042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,33.5 + pos: 42.5,29.5 parent: 2 - - uid: 18187 + - uid: 18043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,56.5 + pos: 42.5,27.5 parent: 2 - - uid: 18188 + - uid: 20270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,55.5 + pos: 27.5,-43.5 parent: 2 - - uid: 18189 + - uid: 20271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,18.5 + pos: 33.5,-43.5 parent: 2 - - uid: 18190 + - uid: 20272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,18.5 + pos: 33.5,-47.5 parent: 2 - - uid: 18191 + - uid: 20273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,18.5 + pos: 27.5,-47.5 parent: 2 - - uid: 18192 +- proto: WelderIndustrialAdvanced + entities: + - uid: 18048 components: - type: Transform - pos: 34.5,-1.5 + pos: -7.250613,24.386929 parent: 2 - - uid: 18193 +- proto: WeldingFuelTankFull + entities: + - uid: 18049 components: - type: Transform - pos: 34.5,-0.5 + pos: 4.5,23.5 parent: 2 - - uid: 18194 + - uid: 18050 components: - type: Transform - pos: 57.5,29.5 + pos: -7.5,31.5 parent: 2 - - uid: 18195 + - uid: 18051 components: - type: Transform - pos: 59.5,32.5 + pos: 59.5,31.5 parent: 2 - - uid: 18196 + - uid: 18052 components: - type: Transform - pos: 60.5,32.5 + pos: 28.5,5.5 parent: 2 - - uid: 18197 + - uid: 18053 components: - type: Transform - pos: 61.5,32.5 + pos: 72.5,59.5 parent: 2 - - uid: 18198 + - uid: 18054 components: - type: Transform - pos: 63.5,29.5 + pos: 70.5,42.5 parent: 2 - - uid: 18199 + - uid: 18055 components: - type: Transform - pos: 12.5,50.5 + pos: 75.5,18.5 parent: 2 - - uid: 18200 + - uid: 18056 components: - type: Transform - pos: 13.5,50.5 + pos: 12.5,8.5 parent: 2 - - uid: 18201 + - uid: 18057 components: - type: Transform - pos: 17.5,50.5 + pos: 13.5,8.5 parent: 2 - - uid: 18202 + - uid: 18058 components: - type: Transform - pos: 19.5,50.5 + pos: 26.5,5.5 parent: 2 - - uid: 18203 + - uid: 18059 components: - type: Transform - pos: 21.5,50.5 + pos: 54.5,9.5 parent: 2 - - uid: 18204 + - uid: 18060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,36.5 + pos: 80.5,46.5 parent: 2 - - uid: 18205 + - uid: 18061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,36.5 + pos: 73.5,50.5 parent: 2 - - uid: 18206 + - uid: 18062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,36.5 + pos: 79.5,55.5 parent: 2 - - uid: 18207 + - uid: 18063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,36.5 + pos: 50.5,57.5 parent: 2 -- proto: WindowDirectional - entities: - - uid: 18208 + - uid: 18064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,69.5 + pos: 49.5,57.5 parent: 2 - - uid: 18209 + - uid: 18065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,69.5 + pos: 45.5,60.5 parent: 2 - - uid: 18210 + - uid: 18066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,69.5 + pos: 44.5,60.5 parent: 2 - - uid: 18211 + - uid: 18067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,66.5 + pos: 45.5,50.5 parent: 2 - - uid: 18212 + - uid: 18068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,58.5 + pos: 37.5,60.5 parent: 2 - - uid: 18213 + - uid: 18069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,58.5 + pos: 22.5,66.5 parent: 2 -- proto: WindowFrostedDirectional - entities: - - uid: 18214 + - uid: 18070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,35.5 + pos: 1.5,78.5 parent: 2 - - uid: 18215 + - uid: 18071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 + pos: 35.5,21.5 parent: 2 -- proto: WindowReinforcedDirectional +- proto: Windoor entities: - - uid: 7315 + - uid: 18072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,23.5 + pos: -4.5,6.5 parent: 2 - - uid: 8117 + - uid: 18073 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,27.5 + pos: -6.5,20.5 parent: 2 - - uid: 8288 + - uid: 18074 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,69.5 + pos: 11.5,14.5 parent: 2 - - uid: 8528 + - uid: 18075 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,69.5 + pos: 7.5,14.5 parent: 2 - - uid: 9222 + - uid: 18076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,40.5 + pos: -15.5,59.5 parent: 2 - - uid: 9305 + - uid: 18077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,40.5 + pos: -15.5,50.5 parent: 2 - - uid: 11158 + - uid: 18078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,40.5 + pos: -14.5,50.5 parent: 2 - - uid: 12598 + - uid: 18079 components: - type: Transform - pos: -21.5,41.5 + rot: 1.5707963267948966 rad + pos: -13.5,51.5 parent: 2 - - uid: 13678 + - uid: 18080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,40.5 + rot: 1.5707963267948966 rad + pos: -13.5,52.5 parent: 2 - - uid: 13680 + - uid: 18081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,40.5 + rot: 1.5707963267948966 rad + pos: 7.5,5.5 parent: 2 - - uid: 14758 + - uid: 18082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,16.5 + pos: 8.5,5.5 parent: 2 - - uid: 15237 + - uid: 18083 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,30.5 - parent: 2 - - uid: 17834 - components: - - type: Transform - pos: -22.5,41.5 + pos: 51.5,25.5 parent: 2 - - uid: 18142 + - uid: 18084 components: - type: Transform - pos: -5.5,57.5 + rot: 3.141592653589793 rad + pos: 55.5,23.5 parent: 2 - - uid: 18216 + - uid: 18085 components: - type: Transform - pos: 33.5,-4.5 + rot: 1.5707963267948966 rad + pos: 49.5,39.5 parent: 2 - - uid: 18217 + - uid: 18086 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,32.5 + pos: 49.5,38.5 parent: 2 - - uid: 18218 + - uid: 18087 components: - type: Transform - pos: 14.5,32.5 + pos: 45.5,36.5 parent: 2 - - uid: 18219 + - uid: 18088 components: - type: Transform - pos: -18.5,36.5 + rot: 1.5707963267948966 rad + pos: 71.5,37.5 parent: 2 - - uid: 18220 + - uid: 18089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,35.5 + rot: -1.5707963267948966 rad + pos: 71.5,40.5 parent: 2 - - uid: 18221 + - uid: 18090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,34.5 + rot: -1.5707963267948966 rad + pos: 73.5,40.5 parent: 2 - - uid: 18222 + - uid: 18091 components: - type: Transform - pos: -20.5,36.5 + pos: 72.5,12.5 parent: 2 - - uid: 18223 +- proto: WindoorHydroponicsLocked + entities: + - uid: 18092 components: - type: Transform - pos: -19.5,36.5 + rot: -1.5707963267948966 rad + pos: 49.5,39.5 parent: 2 - - uid: 18224 + - uid: 18093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,33.5 + rot: -1.5707963267948966 rad + pos: 49.5,38.5 parent: 2 - - uid: 18225 + - uid: 18094 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,32.5 + pos: 45.5,36.5 parent: 2 - - uid: 18226 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 18095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,32.5 + rot: -1.5707963267948966 rad + pos: 51.5,43.5 parent: 2 - - uid: 18227 + - uid: 18096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,32.5 + rot: 1.5707963267948966 rad + pos: 51.5,43.5 parent: 2 - - uid: 18228 +- proto: WindoorSecure + entities: + - uid: 18097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,5.5 + rot: 1.5707963267948966 rad + pos: -34.5,63.5 parent: 2 - - uid: 18229 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 18098 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,39.5 + pos: -17.5,65.5 parent: 2 - - uid: 18230 + - uid: 18099 components: - type: Transform - pos: -22.5,40.5 + rot: 3.141592653589793 rad + pos: -16.5,65.5 parent: 2 - - uid: 18231 + - uid: 18100 components: - type: Transform - pos: 47.5,-0.5 + rot: 3.141592653589793 rad + pos: -16.5,65.5 parent: 2 - - uid: 18232 + - uid: 18101 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,39.5 + pos: -14.5,65.5 parent: 2 - - uid: 18233 + - uid: 18102 components: - type: Transform - pos: -21.5,40.5 + pos: -17.5,65.5 parent: 2 - - uid: 18234 + - uid: 18103 components: - type: Transform - pos: -23.5,41.5 + pos: -16.5,65.5 parent: 2 - - uid: 18236 + - uid: 18104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,39.5 + rot: -1.5707963267948966 rad + pos: -13.5,64.5 parent: 2 - - uid: 18237 + - uid: 18105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,39.5 + rot: -1.5707963267948966 rad + pos: -14.5,68.5 parent: 2 - - uid: 18239 + - uid: 18106 components: - type: Transform - pos: -20.5,40.5 + rot: -1.5707963267948966 rad + pos: -14.5,67.5 parent: 2 - - uid: 18240 + - uid: 18107 components: - type: Transform - pos: -23.5,40.5 + rot: 1.5707963267948966 rad + pos: -19.5,68.5 parent: 2 - - uid: 18241 + - uid: 18108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,1.5 + rot: 1.5707963267948966 rad + pos: -19.5,67.5 parent: 2 - - uid: 18242 + - uid: 18109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 + pos: -17.5,70.5 parent: 2 - - uid: 18243 + - uid: 18110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-0.5 + pos: -16.5,70.5 parent: 2 - - uid: 18244 + - uid: 18111 components: - type: Transform - pos: 47.5,2.5 + rot: 1.5707963267948966 rad + pos: -19.5,66.5 parent: 2 - - uid: 18245 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -86485.96 + state: Opening + - uid: 18112 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,40.5 + pos: -15.5,59.5 parent: 2 - - uid: 18246 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 18113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,40.5 + pos: -18.5,20.5 parent: 2 - - uid: 18247 + - uid: 18114 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,40.5 + pos: -6.5,20.5 parent: 2 - - uid: 18249 + - uid: 18115 components: - type: Transform - pos: -20.5,41.5 + pos: 20.5,45.5 parent: 2 - - uid: 18250 +- proto: WindoorSecureCargoLocked + entities: + - uid: 18116 components: - type: Transform - pos: -26.5,21.5 + pos: 7.5,14.5 parent: 2 - - uid: 18251 + - uid: 18117 components: - type: Transform - pos: -27.5,21.5 + pos: 11.5,14.5 parent: 2 - - uid: 18252 + - uid: 18118 components: - type: Transform - pos: -28.5,21.5 + rot: 1.5707963267948966 rad + pos: -12.5,9.5 parent: 2 - - uid: 18253 +- proto: WindoorSecureChapelLocked + entities: + - uid: 18119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,20.5 + rot: -1.5707963267948966 rad + pos: 21.5,63.5 parent: 2 - - uid: 18254 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 18120 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,20.5 + pos: 13.5,23.5 parent: 2 - - uid: 18255 + - uid: 18121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,20.5 + pos: 12.5,29.5 parent: 2 - - uid: 18256 +- proto: WindoorSecureCommandLocked + entities: + - uid: 257 components: - type: Transform - pos: -33.5,6.5 + rot: 1.5707963267948966 rad + pos: 72.5,29.5 parent: 2 - - uid: 18257 + - uid: 5987 components: - type: Transform - pos: -32.5,6.5 + rot: 1.5707963267948966 rad + pos: 72.5,31.5 parent: 2 - - uid: 18258 + - uid: 14896 components: - type: Transform - pos: -31.5,6.5 + rot: 1.5707963267948966 rad + pos: 72.5,28.5 parent: 2 - - uid: 18259 + - uid: 18122 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,7.5 + pos: 34.5,0.5 parent: 2 - - uid: 18260 + - uid: 20201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,8.5 + rot: 3.141592653589793 rad + pos: 27.5,-27.5 parent: 2 - - uid: 18261 + - uid: 20228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,9.5 + pos: 38.5,-30.5 parent: 2 - - uid: 18262 + - uid: 20229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,11.5 + rot: 3.141592653589793 rad + pos: 38.5,-30.5 parent: 2 - - uid: 18263 + - uid: 20230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 + rot: 3.141592653589793 rad + pos: 36.5,-25.5 parent: 2 - - uid: 18264 + - uid: 20231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,13.5 + pos: 36.5,-25.5 parent: 2 - - uid: 18265 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 18135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,15.5 + pos: -1.5,35.5 parent: 2 - - uid: 18266 + - uid: 18136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,16.5 + rot: 1.5707963267948966 rad + pos: 22.5,44.5 parent: 2 - - uid: 18267 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 18137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,17.5 + rot: 1.5707963267948966 rad + pos: 73.5,40.5 parent: 2 - - uid: 18268 +- proto: WindoorSecureMailLocked + entities: + - uid: 18138 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,19.5 + pos: -4.5,6.5 parent: 2 - - uid: 18269 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 18139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,20.5 + pos: 15.5,32.5 parent: 2 - - uid: 18270 + - uid: 18140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,21.5 + pos: 16.5,32.5 parent: 2 - - uid: 18271 + - uid: 18141 components: - type: Transform - pos: -29.5,6.5 + pos: -4.5,57.5 parent: 2 - - uid: 18272 + - uid: 18143 components: - type: Transform - pos: -28.5,6.5 + rot: -1.5707963267948966 rad + pos: 28.5,39.5 parent: 2 - - uid: 18273 + - uid: 18144 components: - type: Transform - pos: -27.5,6.5 + rot: -1.5707963267948966 rad + pos: 28.5,40.5 parent: 2 - - uid: 18274 + - uid: 18145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,5.5 + rot: -1.5707963267948966 rad + pos: 28.5,42.5 parent: 2 - - uid: 18275 + - uid: 18146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,5.5 + pos: 7.5,46.5 parent: 2 - - uid: 18276 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 18147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,5.5 + rot: -1.5707963267948966 rad + pos: -12.5,9.5 parent: 2 - - uid: 18277 +- proto: WindoorSecureScienceLocked + entities: + - uid: 18148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 + rot: -1.5707963267948966 rad + pos: 48.5,0.5 parent: 2 - - uid: 18278 + - uid: 18149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,5.5 + rot: -1.5707963267948966 rad + pos: 48.5,3.5 parent: 2 - - uid: 18279 + - uid: 18150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,7.5 + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 parent: 2 - - uid: 18280 + - uid: 18151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,8.5 + pos: 54.5,-2.5 parent: 2 - - uid: 18281 + - uid: 18152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,9.5 + pos: 54.5,0.5 parent: 2 - - uid: 18282 + - uid: 18153 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,11.5 + pos: 54.5,3.5 parent: 2 - - uid: 18283 + - uid: 18154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,12.5 + rot: 3.141592653589793 rad + pos: 51.5,-4.5 parent: 2 - - uid: 18284 + - uid: 18155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 + pos: 51.5,-5.5 parent: 2 - - uid: 18285 + - uid: 18156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,15.5 + pos: 55.5,23.5 parent: 2 - - uid: 18286 + - uid: 18157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,16.5 + rot: -1.5707963267948966 rad + pos: 51.5,25.5 parent: 2 - - uid: 18287 + - uid: 18158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,17.5 + rot: -1.5707963267948966 rad + pos: 30.5,28.5 parent: 2 - - uid: 18288 + - uid: 18159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,19.5 + rot: 3.141592653589793 rad + pos: 28.5,25.5 parent: 2 - - uid: 18289 + - uid: 18673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,20.5 + rot: -1.5707963267948966 rad + pos: 53.5,6.5 parent: 2 - - uid: 18290 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 18674 + - type: DeviceLinkSource + linkedPorts: + 18674: + - DoorStatus: DoorBolt + - uid: 18674 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,21.5 + pos: 53.5,6.5 parent: 2 - - uid: 18291 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 18673 + - type: DeviceLinkSource + linkedPorts: + 18673: + - DoorStatus: DoorBolt + - uid: 19278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,20.5 + pos: 48.5,3.5 parent: 2 - - uid: 18292 + - uid: 19279 components: - type: Transform - pos: -17.5,20.5 + rot: 1.5707963267948966 rad + pos: 48.5,0.5 parent: 2 - - uid: 18293 + - uid: 19280 components: - type: Transform - pos: -3.5,57.5 + rot: 1.5707963267948966 rad + pos: 48.5,-2.5 parent: 2 - - uid: 18294 + - uid: 19281 components: - type: Transform - pos: -19.5,20.5 + rot: -1.5707963267948966 rad + pos: 54.5,-2.5 parent: 2 - - uid: 18295 + - uid: 19282 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,4.5 + pos: 54.5,0.5 parent: 2 - - uid: 18296 + - uid: 19283 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-1.5 + pos: 54.5,3.5 parent: 2 - - uid: 18297 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 18160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-3.5 + rot: 1.5707963267948966 rad + pos: 37.5,29.5 parent: 2 - - uid: 18298 + - uid: 18161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-3.5 + pos: 37.5,27.5 parent: 2 - - uid: 18299 + - uid: 18162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 + pos: 38.5,30.5 parent: 2 - - uid: 18300 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 18163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-0.5 + pos: -8.5,53.5 parent: 2 - - uid: 18301 + - uid: 18164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,1.5 + pos: -4.5,53.5 parent: 2 - - uid: 18302 + - uid: 18165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,2.5 + pos: -0.5,53.5 parent: 2 - - uid: 18303 + - uid: 18166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,4.5 + rot: -1.5707963267948966 rad + pos: -30.5,52.5 parent: 2 - - uid: 18304 + - uid: 18167 components: - type: Transform - pos: 46.5,2.5 + rot: 1.5707963267948966 rad + pos: -5.5,67.5 parent: 2 - - uid: 18305 + - uid: 18168 components: - type: Transform - pos: 45.5,2.5 + rot: -1.5707963267948966 rad + pos: -13.5,52.5 parent: 2 - - uid: 18306 + - uid: 18169 components: - type: Transform - pos: 46.5,-0.5 + rot: -1.5707963267948966 rad + pos: -13.5,51.5 parent: 2 - - uid: 18307 + - uid: 18170 components: - type: Transform - pos: 45.5,-0.5 + rot: 3.141592653589793 rad + pos: -14.5,50.5 parent: 2 - - uid: 18308 + - uid: 18171 components: - type: Transform - pos: 55.5,-0.5 + rot: 3.141592653589793 rad + pos: -15.5,50.5 parent: 2 - - uid: 18309 + - uid: 18172 components: - type: Transform - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: 72.5,12.5 parent: 2 - - uid: 18310 +- proto: WindoorServiceLocked + entities: + - uid: 18173 components: - type: Transform - pos: 57.5,-0.5 + rot: 1.5707963267948966 rad + pos: 19.5,56.5 parent: 2 - - uid: 18311 +- proto: WindoorTheatreLocked + entities: + - uid: 18174 components: - type: Transform - pos: 55.5,2.5 + rot: -1.5707963267948966 rad + pos: 38.5,40.5 parent: 2 - - uid: 18312 +- proto: Window + entities: + - uid: 6779 components: - type: Transform - pos: 56.5,2.5 + pos: 34.5,-0.5 parent: 2 - - uid: 18313 + - uid: 8385 components: - type: Transform - pos: 57.5,2.5 + pos: 34.5,-1.5 parent: 2 - - uid: 18314 + - uid: 18175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,36.5 + pos: 14.5,33.5 parent: 2 - - uid: 18315 + - uid: 18176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,36.5 + pos: 16.5,33.5 parent: 2 - - uid: 18316 + - uid: 18177 components: - type: Transform - pos: 53.5,36.5 + pos: 17.5,33.5 parent: 2 - - uid: 18317 + - uid: 18178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,36.5 + pos: 13.5,32.5 parent: 2 - - uid: 18318 + - uid: 18179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,36.5 + pos: 13.5,33.5 parent: 2 - - uid: 18319 + - uid: 18180 components: - type: Transform - pos: 54.5,36.5 + pos: -17.5,-2.5 parent: 2 - - uid: 18320 + - uid: 18181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,38.5 + pos: 5.5,12.5 parent: 2 - - uid: 18321 + - uid: 18182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,38.5 + pos: 9.5,13.5 parent: 2 - - uid: 18322 + - uid: 18183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,36.5 + pos: 6.5,18.5 parent: 2 - - uid: 18323 + - uid: 18184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,39.5 + pos: 9.5,18.5 parent: 2 - - uid: 18324 + - uid: 18185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,36.5 + pos: 12.5,18.5 parent: 2 - - uid: 18325 + - uid: 18186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,37.5 + pos: 15.5,33.5 parent: 2 - - uid: 18326 + - uid: 18187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,37.5 + rot: -1.5707963267948966 rad + pos: 7.5,56.5 parent: 2 - - uid: 18327 + - uid: 18188 components: - type: Transform - pos: 68.5,36.5 + rot: -1.5707963267948966 rad + pos: 7.5,55.5 parent: 2 - - uid: 18328 + - uid: 18189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,36.5 + rot: -1.5707963267948966 rad + pos: 22.5,18.5 parent: 2 - - uid: 18329 + - uid: 18190 components: - type: Transform - pos: 67.5,36.5 + rot: -1.5707963267948966 rad + pos: 24.5,18.5 parent: 2 - - uid: 18330 + - uid: 18191 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,39.5 + pos: 26.5,18.5 parent: 2 - - uid: 18331 + - uid: 18194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,39.5 + pos: 57.5,29.5 parent: 2 - - uid: 18332 + - uid: 18195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,39.5 + pos: 59.5,32.5 parent: 2 - - uid: 18333 + - uid: 18196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,38.5 + pos: 60.5,32.5 parent: 2 - - uid: 18334 + - uid: 18197 components: - type: Transform - pos: 71.5,38.5 + pos: 61.5,32.5 parent: 2 - - uid: 18335 + - uid: 18198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,38.5 + pos: 63.5,29.5 parent: 2 - - uid: 18336 + - uid: 18199 components: - type: Transform - pos: -10.5,21.5 + pos: 12.5,50.5 parent: 2 - - uid: 18337 + - uid: 18200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,68.5 + pos: 13.5,50.5 parent: 2 - - uid: 18338 + - uid: 18201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,70.5 + pos: 17.5,50.5 parent: 2 - - uid: 18339 + - uid: 18202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,70.5 + pos: 19.5,50.5 parent: 2 - - uid: 18340 + - uid: 18203 components: - type: Transform - pos: -14.5,67.5 + pos: 21.5,50.5 parent: 2 - - uid: 18341 + - uid: 18204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,68.5 + rot: -1.5707963267948966 rad + pos: 40.5,36.5 parent: 2 - - uid: 18342 + - uid: 18205 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,5.5 + pos: 39.5,36.5 parent: 2 - - uid: 18343 + - uid: 18206 components: - type: Transform - pos: 7.5,5.5 + rot: -1.5707963267948966 rad + pos: 37.5,36.5 parent: 2 - - uid: 18344 + - uid: 18207 components: - type: Transform - pos: 9.5,5.5 + rot: -1.5707963267948966 rad + pos: 36.5,36.5 parent: 2 - - uid: 18345 +- proto: WindowDirectional + entities: + - uid: 18208 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,4.5 + pos: 7.5,69.5 parent: 2 - - uid: 18346 + - uid: 18209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,3.5 + rot: 3.141592653589793 rad + pos: 7.5,69.5 parent: 2 - - uid: 18347 + - uid: 18210 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,2.5 + pos: 8.5,69.5 parent: 2 - - uid: 18348 + - 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: -34.5,64.5 + pos: 67.5,58.5 parent: 2 - - uid: 18349 + - uid: 18213 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,62.5 + pos: 67.5,58.5 parent: 2 - - uid: 18350 +- proto: WindowFrostedDirectional + entities: + - uid: 18214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,37.5 + rot: 1.5707963267948966 rad + pos: 5.5,35.5 parent: 2 - - uid: 18351 + - uid: 18215 components: - type: Transform - pos: 38.5,39.5 + rot: 1.5707963267948966 rad + pos: 36.5,11.5 parent: 2 - - uid: 18352 +- proto: WindowReinforcedDirectional + entities: + - uid: 7315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,39.5 + rot: 1.5707963267948966 rad + pos: 20.5,23.5 parent: 2 - - uid: 18353 + - uid: 8117 components: - type: Transform - pos: 39.5,39.5 + rot: 1.5707963267948966 rad + pos: 72.5,27.5 parent: 2 - - uid: 18354 + - uid: 8288 components: - type: Transform - pos: 40.5,39.5 + rot: 3.141592653589793 rad + pos: -35.5,69.5 parent: 2 - - uid: 18355 + - uid: 8528 components: - type: Transform - pos: 41.5,39.5 + rot: 3.141592653589793 rad + pos: -34.5,69.5 parent: 2 - - uid: 18356 + - uid: 14758 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,29.5 + pos: -24.5,16.5 parent: 2 - - uid: 18357 + - uid: 15237 components: - type: Transform - pos: 37.5,29.5 + rot: 1.5707963267948966 rad + pos: 72.5,30.5 parent: 2 - - uid: 18358 + - uid: 17120 components: - type: Transform - pos: 37.5,27.5 + rot: -1.5707963267948966 rad + pos: 29.5,-45.5 parent: 2 - - uid: 18359 + - uid: 17123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,27.5 + pos: 29.5,-45.5 parent: 2 - - uid: 18360 + - uid: 17169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,27.5 + rot: 1.5707963267948966 rad + pos: 31.5,-45.5 parent: 2 - - uid: 18361 + - uid: 17218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,29.5 + pos: 31.5,-45.5 parent: 2 - - uid: 18362 + - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,23.5 + pos: 30.5,-44.5 parent: 2 - - uid: 18363 + - uid: 17222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,24.5 + rot: 1.5707963267948966 rad + pos: 30.5,-44.5 parent: 2 - - uid: 18364 + - uid: 18142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 + pos: -5.5,57.5 parent: 2 - - uid: 18365 + - uid: 18217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,25.5 + rot: 1.5707963267948966 rad + pos: 17.5,32.5 parent: 2 - - uid: 18366 + - uid: 18218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,25.5 + pos: 14.5,32.5 parent: 2 - - uid: 18367 + - uid: 18219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,23.5 + pos: -18.5,36.5 parent: 2 - - uid: 18368 + - uid: 18220 components: - type: Transform - pos: 17.5,32.5 + rot: 1.5707963267948966 rad + pos: -21.5,35.5 parent: 2 - - uid: 18369 + - uid: 18221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,38.5 + rot: 1.5707963267948966 rad + pos: -21.5,34.5 parent: 2 - - uid: 18370 + - uid: 18222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,39.5 + pos: -20.5,36.5 parent: 2 - - uid: 18371 + - uid: 18223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,39.5 + pos: -19.5,36.5 parent: 2 - - uid: 18372 + - uid: 18224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,41.5 + rot: 1.5707963267948966 rad + pos: -21.5,33.5 parent: 2 - - uid: 18373 + - uid: 18225 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,41.5 + pos: -19.5,32.5 parent: 2 - - uid: 18374 + - uid: 18226 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,41.5 + pos: -18.5,32.5 parent: 2 - - uid: 18375 + - uid: 18227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,43.5 + rot: 3.141592653589793 rad + pos: -20.5,32.5 parent: 2 - - uid: 18376 + - uid: 18228 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,43.5 + pos: -27.5,5.5 parent: 2 - - uid: 18377 + - uid: 18231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,43.5 + pos: 47.5,-0.5 parent: 2 - - uid: 18378 + - uid: 18241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,45.5 + rot: -1.5707963267948966 rad + pos: 48.5,1.5 parent: 2 - - uid: 18379 + - uid: 18242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 + rot: -1.5707963267948966 rad + pos: 48.5,2.5 parent: 2 - - uid: 18380 + - uid: 18243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 parent: 2 - - uid: 18381 + - uid: 18244 components: - type: Transform - pos: 32.5,-4.5 + pos: 47.5,2.5 parent: 2 - - uid: 18382 + - uid: 18250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 + pos: -26.5,21.5 parent: 2 - - uid: 18383 + - uid: 18251 components: - type: Transform - pos: 34.5,-4.5 + pos: -27.5,21.5 parent: 2 - - uid: 18384 + - uid: 18252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 + pos: -28.5,21.5 parent: 2 - - uid: 18385 + - uid: 18253 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-5.5 + pos: -28.5,20.5 parent: 2 - - uid: 18386 + - uid: 18254 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-5.5 + pos: -27.5,20.5 parent: 2 - - uid: 18387 + - uid: 18255 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-5.5 + pos: -26.5,20.5 parent: 2 - - uid: 18388 + - uid: 18256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-5.5 + pos: -33.5,6.5 parent: 2 - - uid: 18389 + - uid: 18257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-5.5 + pos: -32.5,6.5 parent: 2 - - uid: 18390 + - uid: 18258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 + pos: -31.5,6.5 parent: 2 - - uid: 18391 + - uid: 18259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,7.5 parent: 2 - - uid: 18392 + - uid: 18260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,8.5 parent: 2 - - uid: 18393 + - uid: 18261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,9.5 parent: 2 - - uid: 18394 + - uid: 18262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,11.5 parent: 2 - - uid: 18395 + - uid: 18263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,12.5 parent: 2 - - uid: 18396 + - uid: 18264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,13.5 parent: 2 - - uid: 18397 + - uid: 18265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,15.5 parent: 2 - - uid: 18398 + - uid: 18266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-5.5 + rot: -1.5707963267948966 rad + pos: -34.5,16.5 parent: 2 - - uid: 18399 + - uid: 18267 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-5.5 + pos: -34.5,17.5 parent: 2 - - uid: 18400 + - uid: 18268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-17.5 + pos: -34.5,19.5 parent: 2 - - uid: 18401 + - uid: 18269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-6.5 + rot: -1.5707963267948966 rad + pos: -34.5,20.5 parent: 2 - - uid: 18402 + - uid: 18270 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-6.5 + pos: -34.5,21.5 parent: 2 - - uid: 18403 + - uid: 18271 components: - type: Transform - pos: 20.5,-16.5 + pos: -29.5,6.5 parent: 2 - - uid: 18404 + - uid: 18272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 + pos: -28.5,6.5 parent: 2 - - uid: 18405 + - uid: 18273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 + pos: -27.5,6.5 parent: 2 - - uid: 18406 + - uid: 18274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 + rot: 3.141592653589793 rad + pos: -28.5,5.5 parent: 2 - - uid: 18407 + - uid: 18275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-10.5 + rot: 3.141592653589793 rad + pos: -29.5,5.5 parent: 2 - - uid: 18408 + - uid: 18276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 + rot: 3.141592653589793 rad + pos: -31.5,5.5 parent: 2 - - uid: 18409 + - uid: 18277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-12.5 + rot: 3.141592653589793 rad + pos: -32.5,5.5 parent: 2 - - uid: 18410 + - uid: 18278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-13.5 + rot: 3.141592653589793 rad + pos: -33.5,5.5 parent: 2 - - uid: 18411 + - uid: 18279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-14.5 + rot: 1.5707963267948966 rad + pos: -35.5,7.5 parent: 2 - - uid: 18412 + - uid: 18280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-15.5 + rot: 1.5707963267948966 rad + pos: -35.5,8.5 parent: 2 - - uid: 18413 + - uid: 18281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 + rot: 1.5707963267948966 rad + pos: -35.5,9.5 parent: 2 - - uid: 18414 + - uid: 18282 components: - type: Transform - pos: 21.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,11.5 parent: 2 - - uid: 18415 + - uid: 18283 components: - type: Transform - pos: 22.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,12.5 parent: 2 - - uid: 18416 + - uid: 18284 components: - type: Transform - pos: 23.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 parent: 2 - - uid: 18417 + - uid: 18285 components: - type: Transform - pos: 24.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,15.5 parent: 2 - - uid: 18418 + - uid: 18286 components: - type: Transform - pos: 25.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,16.5 parent: 2 - - uid: 18419 + - uid: 18287 components: - type: Transform - pos: 26.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,17.5 parent: 2 - - uid: 18420 + - uid: 18288 components: - type: Transform - pos: 27.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,19.5 parent: 2 - - uid: 18421 + - uid: 18289 components: - type: Transform - pos: 28.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,20.5 parent: 2 - - uid: 18422 + - uid: 18290 components: - type: Transform - pos: 29.5,-17.5 + rot: 1.5707963267948966 rad + pos: -35.5,21.5 parent: 2 - - uid: 18423 + - uid: 18291 components: - type: Transform - pos: 30.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,20.5 parent: 2 - - uid: 18424 + - uid: 18292 components: - type: Transform - pos: 31.5,-17.5 + pos: -17.5,20.5 parent: 2 - - uid: 18425 + - uid: 18293 components: - type: Transform - pos: 32.5,-17.5 + pos: -3.5,57.5 parent: 2 - - uid: 18426 + - uid: 18294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 + pos: -19.5,20.5 parent: 2 - - uid: 18427 + - uid: 18295 components: - type: Transform - pos: 33.5,-16.5 + rot: -1.5707963267948966 rad + pos: 48.5,4.5 parent: 2 - - uid: 18428 + - uid: 18296 components: - type: Transform - pos: 34.5,-16.5 + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 parent: 2 - - uid: 18429 + - uid: 18297 components: - type: Transform - pos: 35.5,-16.5 + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 parent: 2 - - uid: 18430 + - uid: 18298 components: - type: Transform - pos: 36.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,-3.5 parent: 2 - - uid: 18431 + - uid: 18299 components: - type: Transform - pos: 37.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,-1.5 parent: 2 - - uid: 18432 + - uid: 18300 components: - type: Transform - pos: 38.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,-0.5 parent: 2 - - uid: 18433 + - uid: 18301 components: - type: Transform - pos: 39.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,1.5 parent: 2 - - uid: 18434 + - uid: 18302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-16.5 + pos: 54.5,2.5 parent: 2 - - uid: 18435 + - uid: 18303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-6.5 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 parent: 2 - - uid: 18436 + - uid: 18304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-6.5 + pos: 46.5,2.5 parent: 2 - - uid: 18437 + - uid: 18305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-6.5 + pos: 45.5,2.5 parent: 2 - - uid: 18438 + - uid: 18306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-6.5 + pos: 46.5,-0.5 parent: 2 - - uid: 18439 + - uid: 18307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-6.5 + pos: 45.5,-0.5 parent: 2 - - uid: 18440 + - uid: 18308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-6.5 + pos: 55.5,-0.5 parent: 2 - - uid: 18441 + - uid: 18309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-7.5 + pos: 56.5,-0.5 parent: 2 - - uid: 18442 + - uid: 18310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-7.5 + pos: 57.5,-0.5 parent: 2 - - uid: 18443 + - uid: 18311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-8.5 + pos: 55.5,2.5 parent: 2 - - uid: 18444 + - uid: 18312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 + pos: 56.5,2.5 parent: 2 - - uid: 18445 + - uid: 18313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 57.5,2.5 parent: 2 - - uid: 18446 + - uid: 18314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-11.5 + rot: -1.5707963267948966 rad + pos: 53.5,36.5 parent: 2 - - uid: 18447 + - uid: 18315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 + rot: 3.141592653589793 rad + pos: 53.5,36.5 parent: 2 - - uid: 18448 + - uid: 18316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 + pos: 53.5,36.5 parent: 2 - - uid: 18449 + - uid: 18317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-14.5 + rot: 3.141592653589793 rad + pos: 54.5,36.5 parent: 2 - - uid: 18450 + - uid: 18318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-15.5 + pos: 54.5,36.5 parent: 2 - - uid: 18451 + - uid: 18319 components: - type: Transform - pos: 40.5,-15.5 + pos: 54.5,36.5 parent: 2 - - uid: 18452 + - uid: 18320 components: - type: Transform - pos: 35.5,-5.5 + rot: -1.5707963267948966 rad + pos: 67.5,38.5 parent: 2 - - uid: 18453 + - uid: 18321 components: - type: Transform - pos: 36.5,-5.5 + rot: 1.5707963267948966 rad + pos: 67.5,38.5 parent: 2 - - uid: 18454 + - uid: 18322 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: 68.5,36.5 parent: 2 - - uid: 18455 + - uid: 18323 components: - type: Transform - pos: 38.5,-5.5 + rot: 1.5707963267948966 rad + pos: 67.5,39.5 parent: 2 - - uid: 18456 + - uid: 18324 components: - type: Transform - pos: 39.5,-5.5 + rot: -1.5707963267948966 rad + pos: 67.5,36.5 parent: 2 - - uid: 18457 + - uid: 18325 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-6.5 + pos: 67.5,37.5 parent: 2 - - uid: 18458 + - uid: 18326 components: - type: Transform - pos: 40.5,-6.5 + rot: 1.5707963267948966 rad + pos: 67.5,37.5 parent: 2 - - uid: 18459 + - uid: 18327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 + pos: 68.5,36.5 parent: 2 - - uid: 18460 + - uid: 18328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 + rot: 3.141592653589793 rad + pos: 68.5,36.5 parent: 2 - - uid: 18461 + - uid: 18329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-9.5 + pos: 67.5,36.5 parent: 2 - - uid: 18462 + - uid: 18330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-10.5 + pos: 67.5,39.5 parent: 2 - - uid: 18463 + - uid: 18331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-11.5 + rot: 3.141592653589793 rad + pos: 71.5,39.5 parent: 2 - - uid: 18464 + - uid: 18332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 + rot: 1.5707963267948966 rad + pos: 71.5,39.5 parent: 2 - - uid: 18465 + - uid: 18333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-13.5 + rot: 1.5707963267948966 rad + pos: 71.5,38.5 parent: 2 - - uid: 18466 + - uid: 18334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 + pos: 71.5,38.5 parent: 2 - - uid: 18467 + - uid: 18335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-15.5 + pos: 71.5,38.5 parent: 2 - - uid: 18468 + - uid: 18336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-16.5 + pos: -10.5,21.5 parent: 2 - - uid: 18469 + - uid: 18337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-16.5 + rot: 3.141592653589793 rad + pos: -19.5,68.5 parent: 2 - - uid: 18470 + - uid: 18338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-17.5 + rot: -1.5707963267948966 rad + pos: -17.5,70.5 parent: 2 - - uid: 18471 + - uid: 18339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-17.5 + rot: 1.5707963267948966 rad + pos: -16.5,70.5 parent: 2 - - uid: 18472 + - uid: 18340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-17.5 + pos: -14.5,67.5 parent: 2 - - uid: 18473 + - uid: 18341 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-17.5 + pos: -14.5,68.5 parent: 2 - - uid: 18474 + - uid: 18342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-17.5 + rot: -1.5707963267948966 rad + pos: 7.5,5.5 parent: 2 - - uid: 18475 + - uid: 18343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-17.5 + pos: 7.5,5.5 parent: 2 - - uid: 18476 + - uid: 18344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-17.5 + pos: 9.5,5.5 parent: 2 - - uid: 18477 + - uid: 18345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-17.5 + pos: 10.5,4.5 parent: 2 - - uid: 18478 + - uid: 18346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-18.5 + rot: -1.5707963267948966 rad + pos: 10.5,3.5 parent: 2 - - uid: 18479 + - uid: 18347 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-18.5 + pos: 9.5,2.5 parent: 2 - - uid: 18480 + - uid: 18348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-18.5 + rot: 1.5707963267948966 rad + pos: -34.5,64.5 parent: 2 - - uid: 18481 + - uid: 18349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-18.5 + rot: -1.5707963267948966 rad + pos: 21.5,62.5 parent: 2 - - uid: 18482 + - uid: 18350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-18.5 + rot: -1.5707963267948966 rad + pos: 47.5,37.5 parent: 2 - - uid: 18483 + - uid: 18351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-18.5 + pos: 38.5,39.5 parent: 2 - - uid: 18484 + - uid: 18352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-18.5 + rot: -1.5707963267948966 rad + pos: 38.5,39.5 parent: 2 - - uid: 18485 + - uid: 18353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-18.5 + pos: 39.5,39.5 parent: 2 - - uid: 18486 + - uid: 18354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-18.5 + pos: 40.5,39.5 parent: 2 - - uid: 18487 + - uid: 18355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 + pos: 41.5,39.5 parent: 2 - - uid: 18488 + - uid: 18356 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-18.5 + pos: 37.5,29.5 parent: 2 - - uid: 18489 + - uid: 18357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-18.5 + pos: 37.5,29.5 parent: 2 - - uid: 18490 + - uid: 18358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 + pos: 37.5,27.5 parent: 2 - - uid: 18491 + - uid: 18359 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 + pos: 37.5,27.5 parent: 2 - - uid: 18493 + - uid: 18360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 + rot: -1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - - uid: 18494 + - uid: 18361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-14.5 + rot: -1.5707963267948966 rad + pos: 37.5,29.5 parent: 2 - - uid: 18495 + - uid: 18362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-13.5 + rot: -1.5707963267948966 rad + pos: 27.5,23.5 parent: 2 - - uid: 18496 + - uid: 18363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 27.5,24.5 parent: 2 - - uid: 18497 + - uid: 18364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + rot: -1.5707963267948966 rad + pos: 27.5,25.5 parent: 2 - - uid: 18498 + - uid: 18365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + rot: 3.141592653589793 rad + pos: 29.5,25.5 parent: 2 - - uid: 18499 + - uid: 18366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + rot: 3.141592653589793 rad + pos: 27.5,25.5 parent: 2 - - uid: 18500 + - uid: 18367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 + rot: -1.5707963267948966 rad + pos: 22.5,23.5 parent: 2 - - uid: 18501 + - uid: 18368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-7.5 + pos: 17.5,32.5 parent: 2 - - uid: 18502 + - uid: 18369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 + rot: -1.5707963267948966 rad + pos: 28.5,38.5 parent: 2 - - uid: 18503 + - uid: 18370 components: - type: Transform - pos: 20.5,-5.5 + rot: 3.141592653589793 rad + pos: 28.5,39.5 parent: 2 - - uid: 18504 + - uid: 18371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 + rot: 3.141592653589793 rad + pos: 29.5,39.5 parent: 2 - - uid: 18505 + - uid: 18372 components: - type: Transform - pos: 21.5,-4.5 + rot: -1.5707963267948966 rad + pos: 28.5,41.5 parent: 2 - - uid: 18506 + - uid: 18373 components: - type: Transform - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: 28.5,41.5 parent: 2 - - uid: 18507 + - uid: 18374 components: - type: Transform - pos: 23.5,-4.5 + rot: 3.141592653589793 rad + pos: 29.5,41.5 parent: 2 - - uid: 18508 + - uid: 18375 components: - type: Transform - pos: 24.5,-4.5 + rot: -1.5707963267948966 rad + pos: 28.5,43.5 parent: 2 - - uid: 18509 + - uid: 18376 components: - type: Transform - pos: 25.5,-4.5 + rot: 3.141592653589793 rad + pos: 28.5,43.5 parent: 2 - - uid: 18510 + - uid: 18377 components: - type: Transform - pos: 26.5,-4.5 + rot: 3.141592653589793 rad + pos: 29.5,43.5 parent: 2 - - uid: 18511 + - uid: 18378 components: - type: Transform - pos: 27.5,-4.5 + rot: 1.5707963267948966 rad + pos: 20.5,45.5 parent: 2 - - uid: 18512 + - uid: 18379 components: - type: Transform - pos: 28.5,-4.5 + rot: 3.141592653589793 rad + pos: 32.5,18.5 parent: 2 - - uid: 18513 + - uid: 18380 components: - type: Transform - pos: 29.5,-4.5 + rot: 3.141592653589793 rad + pos: 33.5,18.5 parent: 2 - - uid: 18514 + - uid: 18440 components: - type: Transform - pos: 30.5,-4.5 + pos: 34.5,-35.5 parent: 2 - - uid: 18515 + - uid: 18494 components: - type: Transform - pos: 31.5,-4.5 + rot: 3.141592653589793 rad + pos: 34.5,-34.5 parent: 2 - uid: 18753 components: @@ -127230,6 +131040,82 @@ entities: - type: Transform pos: -34.5,66.5 parent: 2 + - uid: 20199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + - uid: 20223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-26.5 + parent: 2 + - uid: 20224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - uid: 20225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-28.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 + - uid: 20227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-46.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-46.5 + parent: 2 - proto: WindowTintedDirectional entities: - uid: 18516 diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 35a401a4744..46bdea0fda7 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -59,7 +59,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLQAAAAAAWQAAAAADLQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAALAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAABLAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACLQAAAAAAWQAAAAACLQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAALAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLQAAAAAAWQAAAAADLQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAbAAAAAAALAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAbAAAAAAALAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACLQAAAAAAWQAAAAACLQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAeQAAAAAALAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -67,7 +67,7 @@ entities: version: 6 0,0: ind: 0,0 - tiles: dgAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAdgAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: dgAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAdgAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA version: 6 1,0: ind: 1,0 @@ -91,7 +91,7 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,1: ind: -1,1 @@ -99,7 +99,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: dgAAAAACeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dgAAAAACeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAALgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -119,7 +119,7 @@ entities: version: 6 3,0: ind: 3,0 - tiles: HQAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA + tiles: HQAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -139,11 +139,11 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAEwAAAAAAdgAAAAAAEwAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAEwAAAAAAdgAAAAAAEwAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAAAWQAAAAADWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAAAWQAAAAADWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,-1: ind: 3,-1 @@ -151,7 +151,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACLQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABLQAAAAAALwAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABWQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADLQAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAABLQAAAAAALwAAAAAALwAAAAAALQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABLQAAAAAALwAAAAAALwAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAALQAAAAAALwAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADLQAAAAAALQAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACLQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABLQAAAAAALwAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABWQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADLQAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAABLQAAAAAALwAAAAAALwAAAAAALQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABLQAAAAAALwAAAAAALwAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAALQAAAAAALwAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADLQAAAAAALQAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 5,-1: ind: 5,-1 @@ -167,7 +167,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADEwAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAEwAAAAAAdgAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADEwAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAEwAAAAAAdgAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 0,-3: ind: 0,-3 @@ -175,15 +175,15 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA version: 6 2,1: ind: 2,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAATgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -203,27 +203,51 @@ entities: version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAC version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAA version: 6 - 2,2: - ind: 2,2 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -236,6 +260,7 @@ entities: fixtures: {} - type: BecomesStation id: Saltern + - type: TradeStation - type: GridAtmosphere version: 2 data: @@ -783,11 +808,11 @@ entities: 2: 57344 8,5: 0: 272 - 4: 17472 + 3: 17472 8,6: 2: 65521 8,7: - 2: 61167 + 2: 15 1,9: 2: 15 2,9: @@ -824,10 +849,10 @@ entities: 0: 53759 11,2: 0: 4319 - 3: 49152 + 4: 49152 11,3: 0: 61457 - 3: 204 + 4: 204 11,-1: 0: 30583 11,4: @@ -839,9 +864,9 @@ entities: 0: 28791 12,2: 0: 119 - 3: 28672 + 4: 28672 12,3: - 3: 119 + 4: 119 0: 61440 12,-1: 0: 29311 @@ -886,7 +911,8 @@ entities: 15,-1: 0: 52428 16,0: - 0: 65532 + 0: 13116 + 4: 52416 16,1: 0: 65484 16,2: @@ -1041,13 +1067,17 @@ entities: -5,-3: 0: 28791 -12,0: - 0: 2056 + 0: 3855 + -13,0: + 0: 3855 + -12,2: + 0: 3855 + -13,2: + 0: 3855 -11,0: 0: 3855 -12,1: 2: 2056 - -12,2: - 0: 2056 -11,2: 0: 3855 -12,3: @@ -1251,28 +1281,32 @@ entities: 2: 18240 3,-9: 2: 1396 + 4,-10: + 2: 17408 + 0: 34816 5,-10: - 2: 17648 + 2: 22000 + 0: 43520 6,-10: - 2: 240 + 2: 22000 + 0: 43520 7,-10: - 2: 240 + 2: 4592 + 0: 8704 8,-10: 2: 240 - 8,8: - 2: 65534 9,5: 5: 4368 - 3: 17472 + 4: 17472 9,6: 2: 8176 10,5: - 3: 4368 + 4: 4368 6: 17472 10,6: 2: 4080 11,5: - 3: 21840 + 4: 21840 11,6: 2: 4080 12,5: @@ -1313,8 +1347,9 @@ entities: 0: 4369 2: 52416 17,0: - 0: 22289 + 0: 17921 2: 8 + 4: 4368 18,-3: 2: 4096 18,-2: @@ -1366,12 +1401,10 @@ entities: 2: 8192 -6,-10: 2: 25262 - 8,9: - 2: 2815 - 9,8: - 2: 4368 - 9,9: - 2: 17 + -14,0: + 0: 3598 + -14,2: + 0: 3598 -14,-3: 0: 3272 -13,-4: @@ -1426,7 +1459,7 @@ entities: temperature: 293.15 moles: - 0 - - 0 + - 6666.982 - 0 - 0 - 0 @@ -1441,7 +1474,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -3087,7 +3120,7 @@ entities: color: '#FF0000FF' id: WarnBox decals: - 872: 69,2 + 860: 69,2 - node: color: '#FFFFFFFF' id: WarnBox @@ -3097,7 +3130,7 @@ entities: color: '#FF0000FF' id: WarnCornerNE decals: - 875: 68,3 + 863: 68,3 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -3107,7 +3140,7 @@ entities: color: '#FF0000FF' id: WarnCornerNW decals: - 876: 66,3 + 864: 66,3 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -3117,7 +3150,7 @@ entities: color: '#FF0000FF' id: WarnCornerSE decals: - 874: 68,1 + 862: 68,1 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -3127,32 +3160,12 @@ entities: color: '#FF0000FF' id: WarnCornerSW decals: - 873: 66,1 + 861: 66,1 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 814: -43,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 829: 37,12 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 828: 39,12 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 831: 37,16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 830: 39,16 - node: color: '#FFFFFFFF' id: WarnEndE @@ -3162,12 +3175,12 @@ entities: color: '#FF0000FF' id: WarnEndN decals: - 871: 70,3 + 859: 70,3 - node: color: '#FF0000FF' id: WarnEndS decals: - 870: 70,2 + 858: 70,2 - node: color: '#FFFFFFFF' id: WarnEndW @@ -3177,9 +3190,9 @@ entities: color: '#FF0000FF' id: WarnLineE decals: - 844: 60,7 - 845: 60,6 - 877: 68,2 + 832: 60,7 + 833: 60,6 + 865: 68,2 - node: color: '#FFFFFFFF' id: WarnLineE @@ -3189,27 +3202,24 @@ entities: 665: 54,-4 666: 54,-5 667: 54,-6 - 820: 37,14 - 821: 37,13 - 822: 37,15 - 833: 57,7 - 834: 57,6 - 835: 57,8 - 836: 57,5 - 837: 57,4 - 838: 57,3 - 839: 57,2 - 840: 57,1 - 841: 57,0 + 821: 57,7 + 822: 57,6 + 823: 57,8 + 824: 57,5 + 825: 57,4 + 826: 57,3 + 827: 57,2 + 828: 57,1 + 829: 57,0 - node: color: '#FF0000FF' id: WarnLineN decals: - 865: 62,0 - 866: 63,0 - 867: 63,5 - 868: 62,5 - 869: 67,1 + 853: 62,0 + 854: 63,0 + 855: 63,5 + 856: 62,5 + 857: 67,1 - node: color: '#FFFFFFFF' id: WarnLineN @@ -3227,27 +3237,27 @@ entities: 685: -1,-29 686: 0,-29 815: -42,-4 - 823: 38,16 + 869: 70,5 - node: color: '#FF0000FF' id: WarnLineS decals: - 846: 62,10 - 847: 62,8 - 848: 62,9 - 849: 62,7 - 850: 62,6 - 851: 62,5 - 852: 62,4 - 853: 62,3 - 854: 62,2 - 855: 62,1 - 856: 62,0 - 857: 62,-1 - 858: 62,-2 - 859: 62,-3 - 860: 62,-4 - 878: 66,2 + 834: 62,10 + 835: 62,8 + 836: 62,9 + 837: 62,7 + 838: 62,6 + 839: 62,5 + 840: 62,4 + 841: 62,3 + 842: 62,2 + 843: 62,1 + 844: 62,0 + 845: 62,-1 + 846: 62,-2 + 847: 62,-3 + 848: 62,-4 + 866: 66,2 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3258,20 +3268,17 @@ entities: 771: -15,19 772: -15,20 773: -15,21 - 825: 39,13 - 826: 39,14 - 827: 39,15 - 842: 59,7 - 843: 59,6 + 830: 59,7 + 831: 59,6 - node: color: '#FF0000FF' id: WarnLineW decals: - 861: 62,4 - 862: 63,4 - 863: 63,-1 - 864: 62,-1 - 879: 67,3 + 849: 62,4 + 850: 63,4 + 851: 63,-1 + 852: 62,-1 + 867: 67,3 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3280,7 +3287,6 @@ entities: 519: 22,24 521: 20,24 816: -42,-6 - 824: 38,12 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3414,7 +3420,7 @@ entities: color: '#FFFF00FF' id: radiation decals: - 832: 59,7 + 820: 59,7 - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -3479,11 +3485,6 @@ entities: - type: Transform pos: 38.38827,-0.43327445 parent: 31 - - uid: 6684 - components: - - type: Transform - pos: -37.568184,29.675117 - parent: 31 - uid: 7907 components: - type: Transform @@ -3992,6 +3993,16 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 31 + - uid: 6550 + components: + - type: Transform + anchored: True + pos: 68.5,10.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - uid: 10112 components: - type: Transform @@ -4184,8 +4195,20 @@ entities: - type: DeviceLinkSink links: - 276 +- proto: AirlockCorpsmanGlassLocked + entities: + - uid: 33 + components: + - type: Transform + pos: 0.5,11.5 + parent: 31 - proto: AirlockDetectiveLocked entities: + - uid: 1338 + components: + - type: Transform + pos: -20.5,16.5 + parent: 31 - uid: 1889 components: - type: Transform @@ -4239,6 +4262,8 @@ entities: parent: 31 - uid: 6827 components: + - type: MetaData + name: backup generators - type: Transform pos: 45.5,8.5 parent: 31 @@ -4321,6 +4346,9 @@ entities: parent: 31 - uid: 6451 components: + - type: MetaData + desc: A note attached reads, "Connect the HV cable to this room if you need emergency power and the generators are out." + name: backup batteries - type: Transform pos: 41.5,9.5 parent: 31 @@ -4330,12 +4358,6 @@ entities: rot: 3.141592653589793 rad pos: 70.5,4.5 parent: 31 - - uid: 8199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,2.5 - parent: 31 - uid: 9592 components: - type: Transform @@ -4610,29 +4632,29 @@ entities: parent: 31 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 9377 + - uid: 12326 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,8.5 + pos: -54.5,10.5 parent: 31 - - uid: 9388 + - uid: 12327 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,2.5 + pos: -54.5,8.5 parent: 31 - - uid: 9391 + - uid: 12329 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,10.5 + pos: -54.5,2.5 parent: 31 - - uid: 9392 + - uid: 12330 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,0.5 + pos: -54.5,0.5 parent: 31 - proto: AirlockExternalGlassShuttleEscape entities: @@ -5371,11 +5393,6 @@ entities: - type: Transform pos: 0.5,9.5 parent: 31 - - uid: 5068 - components: - - type: Transform - pos: 0.5,11.5 - parent: 31 - uid: 5069 components: - type: Transform @@ -5424,6 +5441,20 @@ entities: - type: Transform pos: -4.5,6.5 parent: 31 +- proto: AirlockShuttle + entities: + - uid: 12463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,28.5 + parent: 31 + - uid: 12525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,28.5 + parent: 31 - proto: AirlockTheatreLocked entities: - uid: 7337 @@ -5547,12 +5578,29 @@ entities: - type: Transform pos: -20.5,-20.5 parent: 31 -- proto: AmeController +- proto: AmmoniaCanister entities: - - uid: 1537 + - uid: 6707 components: - type: Transform - pos: 46.5,7.5 + anchored: True + pos: 46.5,23.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static + - uid: 12258 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 31 +- proto: AmmoTechFabCircuitboard + entities: + - uid: 12575 + components: + - type: Transform + pos: -3.582569,17.427122 parent: 31 - proto: Amphora entities: @@ -5947,37 +5995,39 @@ entities: - type: Transform pos: 3.3790083,-33.463173 parent: 31 -- proto: AtmosDeviceFanTiny - entities: - - uid: 950 + - uid: 12181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 + rot: 3.141592653589793 rad + pos: 0.6720078,-5.4154224 parent: 31 - - uid: 5157 + - uid: 12183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,0.5 + pos: -2.3748672,-5.8372974 parent: 31 - - uid: 6694 + - uid: 12184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,2.5 + pos: -4.734242,-4.3060474 parent: 31 - - uid: 7138 + - uid: 12185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,8.5 + pos: -6.265492,-4.4779224 parent: 31 - - uid: 7346 + - uid: 12196 + components: + - type: Transform + pos: -1.3455484,1.4907897 + parent: 31 +- proto: AtmosDeviceFanTiny + entities: + - uid: 950 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,10.5 + pos: -14.5,-4.5 parent: 31 - uid: 7566 components: @@ -6018,6 +6068,30 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-16.5 parent: 31 + - uid: 12401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,10.5 + parent: 31 + - uid: 12402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,8.5 + parent: 31 + - uid: 12403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,2.5 + parent: 31 + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 31 - proto: AtmosFixBlockerMarker entities: - uid: 87 @@ -6065,11 +6139,6 @@ entities: - type: Transform pos: 40.5,21.5 parent: 31 - - uid: 1878 - components: - - type: Transform - pos: 46.5,22.5 - parent: 31 - uid: 4265 components: - type: Transform @@ -6095,11 +6164,6 @@ entities: - type: Transform pos: 46.5,11.5 parent: 31 - - uid: 5140 - components: - - type: Transform - pos: 46.5,23.5 - parent: 31 - uid: 5745 components: - type: Transform @@ -6155,11 +6219,6 @@ entities: - type: Transform pos: 50.5,12.5 parent: 31 - - uid: 8210 - components: - - type: Transform - pos: 46.5,21.5 - parent: 31 - uid: 11084 components: - type: Transform @@ -6170,6 +6229,66 @@ entities: - type: Transform pos: 50.5,11.5 parent: 31 + - uid: 12131 + components: + - type: Transform + pos: 66.5,3.5 + parent: 31 + - uid: 12132 + components: + - type: Transform + pos: 66.5,2.5 + parent: 31 + - uid: 12133 + components: + - type: Transform + pos: 67.5,2.5 + parent: 31 + - uid: 12134 + components: + - type: Transform + pos: 67.5,3.5 + parent: 31 + - uid: 12135 + components: + - type: Transform + pos: 68.5,3.5 + parent: 31 + - uid: 12136 + components: + - type: Transform + pos: 68.5,2.5 + parent: 31 + - uid: 12137 + components: + - type: Transform + pos: 68.5,1.5 + parent: 31 + - uid: 12138 + components: + - type: Transform + pos: 67.5,1.5 + parent: 31 + - uid: 12139 + components: + - type: Transform + pos: 66.5,1.5 + parent: 31 + - uid: 12570 + components: + - type: Transform + pos: 46.5,21.5 + parent: 31 + - uid: 12571 + components: + - type: Transform + pos: 46.5,22.5 + parent: 31 + - uid: 12572 + components: + - type: Transform + pos: 46.5,23.5 + parent: 31 - proto: AtmosFixFreezerMarker entities: - uid: 5895 @@ -6297,6 +6416,16 @@ entities: - type: Transform pos: -17.5,-20.5 parent: 31 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 12577 + components: + - type: Transform + pos: -3.7380998,16.677618 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 - proto: BannerNanotrasen entities: - uid: 3677 @@ -6323,11 +6452,6 @@ entities: parent: 31 - proto: Barricade entities: - - uid: 28 - components: - - type: Transform - pos: -20.5,16.5 - parent: 31 - uid: 413 components: - type: Transform @@ -6387,7 +6511,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -6477,6 +6600,11 @@ entities: - type: Transform pos: 32.5,-10.5 parent: 31 + - uid: 7138 + components: + - type: Transform + pos: -0.5,13.5 + parent: 31 - uid: 8409 components: - type: Transform @@ -6502,6 +6630,16 @@ entities: - type: Transform pos: 6.5,-35.5 parent: 31 + - uid: 11051 + components: + - type: Transform + pos: -23.5,17.5 + parent: 31 + - uid: 11472 + components: + - type: Transform + pos: -0.5,12.5 + parent: 31 - proto: BedsheetBlack entities: - uid: 10705 @@ -6509,6 +6647,18 @@ entities: - type: Transform pos: -24.5,-27.5 parent: 31 +- proto: BedsheetBrigmedic + entities: + - uid: 12101 + components: + - type: Transform + pos: -0.5,13.5 + parent: 31 + - uid: 12102 + components: + - type: Transform + pos: -0.5,12.5 + parent: 31 - proto: BedsheetCaptain entities: - uid: 515 @@ -6614,6 +6764,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-37.5 parent: 31 + - uid: 11057 + components: + - type: Transform + pos: -23.5,17.5 + parent: 31 - proto: BedsheetSpawner entities: - uid: 553 @@ -6643,23 +6798,23 @@ entities: parent: 31 - proto: BenchPewLeft entities: - - uid: 11471 + - uid: 1537 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-20.5 + pos: -25.5,-18.5 parent: 31 - - uid: 11472 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-20.5 + pos: -26.5,-18.5 parent: 31 - - uid: 11476 + - uid: 1878 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-20.5 + pos: -24.5,-18.5 parent: 31 - proto: BenchPewMiddle entities: @@ -6683,23 +6838,23 @@ entities: parent: 31 - proto: BenchPewRight entities: - - uid: 11474 + - uid: 1366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-18.5 + pos: -26.5,-20.5 parent: 31 - - uid: 11478 + - uid: 1423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-18.5 + pos: -24.5,-20.5 parent: 31 - - uid: 11479 + - uid: 1485 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-18.5 + pos: -25.5,-20.5 parent: 31 - proto: BenchSofaCorner entities: @@ -6818,6 +6973,15 @@ entities: - type: DeviceLinkSink links: - 10325 + - uid: 8199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,2.5 + parent: 31 + - type: DeviceLinkSink + links: + - 11939 - uid: 10095 components: - type: Transform @@ -6842,6 +7006,15 @@ entities: - type: DeviceLinkSink links: - 10218 + - uid: 11027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,2.5 + parent: 31 + - type: DeviceLinkSink + links: + - 11939 - uid: 11369 components: - type: Transform @@ -6905,15 +7078,6 @@ entities: - type: DeviceLinkSink links: - 11939 - - uid: 11937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,2.5 - parent: 31 - - type: DeviceLinkSink - links: - - 11939 - uid: 11938 components: - type: Transform @@ -12867,11 +13031,6 @@ entities: - type: Transform pos: 47.5,8.5 parent: 31 - - uid: 6550 - components: - - type: Transform - pos: 46.5,15.5 - parent: 31 - uid: 6560 components: - type: Transform @@ -13922,6 +14081,11 @@ entities: - type: Transform pos: -39.5,-9.5 parent: 31 + - uid: 8315 + components: + - type: Transform + pos: 46.5,15.5 + parent: 31 - uid: 8348 components: - type: Transform @@ -14587,36 +14751,16 @@ entities: - type: Transform pos: 33.5,27.5 parent: 31 - - uid: 9938 - components: - - type: Transform - pos: 34.5,28.5 - parent: 31 - uid: 9939 components: - type: Transform pos: 34.5,27.5 parent: 31 - - uid: 9945 - components: - - type: Transform - pos: 34.5,29.5 - parent: 31 - uid: 9947 components: - type: Transform pos: 25.5,20.5 parent: 31 - - uid: 9955 - components: - - type: Transform - pos: 34.5,37.5 - parent: 31 - - uid: 9956 - components: - - type: Transform - pos: 34.5,36.5 - parent: 31 - uid: 10055 components: - type: Transform @@ -14657,36 +14801,6 @@ entities: - type: Transform pos: 32.5,27.5 parent: 31 - - uid: 10102 - components: - - type: Transform - pos: 34.5,30.5 - parent: 31 - - uid: 10103 - components: - - type: Transform - pos: 34.5,31.5 - parent: 31 - - uid: 10104 - components: - - type: Transform - pos: 34.5,32.5 - parent: 31 - - uid: 10105 - components: - - type: Transform - pos: 34.5,33.5 - parent: 31 - - uid: 10106 - components: - - type: Transform - pos: 34.5,34.5 - parent: 31 - - uid: 10107 - components: - - type: Transform - pos: 34.5,35.5 - parent: 31 - uid: 10222 components: - type: Transform @@ -15767,16 +15881,6 @@ entities: - type: Transform pos: 52.5,21.5 parent: 31 - - uid: 11464 - components: - - type: Transform - pos: 52.5,20.5 - parent: 31 - - uid: 11465 - components: - - type: Transform - pos: 52.5,19.5 - parent: 31 - uid: 11515 components: - type: Transform @@ -16172,340 +16276,375 @@ entities: - type: Transform pos: 76.5,3.5 parent: 31 -- proto: CableApcStack - entities: - - uid: 94 + - uid: 12104 components: - type: Transform - pos: 48.373375,5.713002 + pos: 62.5,6.5 parent: 31 - - uid: 134 + - uid: 12105 components: - type: Transform - pos: 29.54536,1.2261796 + pos: 62.5,5.5 parent: 31 - - uid: 1021 + - uid: 12106 components: - type: Transform - pos: 48.373375,5.713002 + pos: 62.5,1.5 parent: 31 -- proto: CableApcStack1 - entities: - - uid: 4263 + - uid: 12107 components: - type: Transform - pos: 49.699306,-5.6046276 + pos: 62.5,4.5 parent: 31 - - uid: 9664 + - uid: 12108 components: - type: Transform - pos: -3.5609899,-43.099728 + pos: 62.5,3.5 parent: 31 - - uid: 9669 + - uid: 12109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.0297182,-43.247223 + pos: 62.5,2.5 parent: 31 - - uid: 10901 + - uid: 12110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.31561,-5.6046276 + pos: 62.5,0.5 parent: 31 -- proto: CableApcStack10 - entities: - - uid: 2048 + - uid: 12111 components: - type: Transform - pos: -2.4564042,-31.599945 + pos: 62.5,-0.5 parent: 31 -- proto: CableHV - entities: - - uid: 23 + - uid: 12112 components: - type: Transform - pos: 19.5,-30.5 + pos: 62.5,-1.5 parent: 31 - - uid: 29 + - uid: 12113 components: - type: Transform - pos: 19.5,-29.5 + pos: 63.5,-1.5 parent: 31 - - uid: 104 + - uid: 12114 components: - type: Transform - pos: 21.5,-29.5 + pos: 64.5,-1.5 parent: 31 - - uid: 128 + - uid: 12115 components: - type: Transform - pos: -25.5,18.5 + pos: 65.5,-1.5 parent: 31 - - uid: 130 + - uid: 12116 components: - type: Transform - pos: 21.5,-28.5 + pos: 66.5,-1.5 parent: 31 - - uid: 140 + - uid: 12117 components: - type: Transform - pos: -22.5,21.5 + pos: 67.5,-1.5 parent: 31 - - uid: 202 + - uid: 12118 components: - type: Transform - pos: 55.5,5.5 + pos: 68.5,-1.5 parent: 31 - - uid: 290 + - uid: 12333 components: - type: Transform - pos: 3.5,-20.5 + pos: -44.5,8.5 parent: 31 - - uid: 412 + - uid: 12362 components: - type: Transform - pos: -21.5,22.5 + pos: -44.5,0.5 parent: 31 - - uid: 420 + - uid: 12363 components: - type: Transform - pos: 21.5,-34.5 + pos: -45.5,0.5 parent: 31 - - uid: 421 + - uid: 12364 components: - type: Transform - pos: 21.5,-33.5 + pos: -46.5,0.5 parent: 31 - - uid: 422 + - uid: 12365 components: - type: Transform - pos: 21.5,-32.5 + pos: -47.5,0.5 parent: 31 - - uid: 437 + - uid: 12366 components: - type: Transform - pos: 19.5,-34.5 + pos: -48.5,0.5 parent: 31 - - uid: 442 + - uid: 12367 components: - type: Transform - pos: -35.5,22.5 + pos: -49.5,0.5 parent: 31 - - uid: 443 + - uid: 12368 components: - type: Transform - pos: -35.5,23.5 + pos: -50.5,0.5 parent: 31 - - uid: 444 + - uid: 12369 components: - type: Transform - pos: -37.5,21.5 + pos: -51.5,0.5 parent: 31 - - uid: 445 + - uid: 12370 components: - type: Transform - pos: -37.5,22.5 + pos: -52.5,0.5 parent: 31 - - uid: 450 + - uid: 12371 components: - type: Transform - pos: -38.5,24.5 + pos: -53.5,0.5 parent: 31 - - uid: 451 + - uid: 12372 components: - type: Transform - pos: -37.5,23.5 + pos: -44.5,2.5 parent: 31 - - uid: 452 + - uid: 12373 components: - type: Transform - pos: -35.5,21.5 + pos: -45.5,2.5 parent: 31 - - uid: 453 + - uid: 12374 components: - type: Transform - pos: -33.5,23.5 + pos: -46.5,2.5 parent: 31 - - uid: 455 + - uid: 12375 components: - type: Transform - pos: -31.5,23.5 + pos: -47.5,2.5 parent: 31 - - uid: 456 + - uid: 12376 components: - type: Transform - pos: -33.5,21.5 + pos: -48.5,2.5 parent: 31 - - uid: 457 + - uid: 12377 components: - type: Transform - pos: -33.5,22.5 + pos: -49.5,2.5 parent: 31 - - uid: 458 + - uid: 12378 components: - type: Transform - pos: -35.5,26.5 + pos: -50.5,2.5 parent: 31 - - uid: 459 + - uid: 12379 components: - type: Transform - pos: -35.5,25.5 + pos: -51.5,2.5 parent: 31 - - uid: 460 + - uid: 12380 components: - type: Transform - pos: -37.5,27.5 + pos: -52.5,2.5 parent: 31 - - uid: 461 + - uid: 12381 components: - type: Transform - pos: -37.5,26.5 + pos: -53.5,2.5 parent: 31 - - uid: 464 + - uid: 12382 components: - type: Transform - pos: -37.5,25.5 + pos: -45.5,8.5 parent: 31 - - uid: 465 + - uid: 12383 components: - type: Transform - pos: 32.5,-31.5 + pos: -46.5,8.5 parent: 31 - - uid: 466 + - uid: 12384 components: - type: Transform - pos: 30.5,-31.5 + pos: -47.5,8.5 parent: 31 - - uid: 468 + - uid: 12385 components: - type: Transform - pos: 29.5,-33.5 + pos: -48.5,8.5 parent: 31 - - uid: 470 + - uid: 12386 components: - type: Transform - pos: 31.5,-31.5 + pos: -49.5,8.5 parent: 31 - - uid: 471 + - uid: 12387 components: - type: Transform - pos: 29.5,-30.5 + pos: -50.5,8.5 parent: 31 - - uid: 479 + - uid: 12388 components: - type: Transform - pos: 27.5,-29.5 + pos: -51.5,8.5 parent: 31 - - uid: 480 + - uid: 12389 components: - type: Transform - pos: 27.5,-28.5 + pos: -52.5,8.5 parent: 31 - - uid: 481 + - uid: 12390 components: - type: Transform - pos: 29.5,-28.5 + pos: -53.5,8.5 parent: 31 - - uid: 482 + - uid: 12391 components: - type: Transform - pos: 29.5,-29.5 + pos: -53.5,10.5 parent: 31 - - uid: 483 + - uid: 12392 components: - type: Transform - pos: 27.5,-30.5 + pos: -52.5,10.5 parent: 31 - - uid: 485 + - uid: 12393 components: - type: Transform - pos: 27.5,-32.5 + pos: -51.5,10.5 parent: 31 - - uid: 486 + - uid: 12394 components: - type: Transform - pos: 25.5,-32.5 + pos: -50.5,10.5 parent: 31 - - uid: 487 + - uid: 12395 components: - type: Transform - pos: 27.5,-33.5 + pos: -49.5,10.5 parent: 31 - - uid: 488 + - uid: 12396 components: - type: Transform - pos: 27.5,-34.5 + pos: -48.5,10.5 parent: 31 - - uid: 489 + - uid: 12397 components: - type: Transform - pos: 25.5,-33.5 + pos: -47.5,10.5 parent: 31 - - uid: 499 + - uid: 12398 components: - type: Transform - pos: 23.5,-35.5 + pos: -46.5,10.5 parent: 31 - - uid: 500 + - uid: 12399 components: - type: Transform - pos: 23.5,-34.5 + pos: -45.5,10.5 parent: 31 - - uid: 502 + - uid: 12400 components: - type: Transform - pos: 23.5,-33.5 + pos: -44.5,10.5 parent: 31 - - uid: 504 + - uid: 12526 components: - type: Transform - pos: 23.5,-32.5 + pos: 35.5,27.5 parent: 31 - - uid: 505 +- proto: CableApcStack + entities: + - uid: 94 components: - type: Transform - pos: 23.5,-30.5 + pos: 48.373375,5.713002 parent: 31 - - uid: 506 + - uid: 134 components: - type: Transform - pos: 23.5,-28.5 + pos: 29.54536,1.2261796 parent: 31 - - uid: 507 + - uid: 1021 components: - type: Transform - pos: 23.5,-29.5 + pos: 48.373375,5.713002 parent: 31 - - uid: 508 +- proto: CableApcStack1 + entities: + - uid: 4263 components: - type: Transform - pos: 23.5,-27.5 + pos: 49.699306,-5.6046276 parent: 31 - - uid: 509 + - uid: 9664 components: - type: Transform - pos: 25.5,-28.5 + pos: -3.5609899,-43.099728 parent: 31 - - uid: 510 + - uid: 9669 components: - type: Transform - pos: 25.5,-29.5 + rot: -1.5707963267948966 rad + pos: -3.0297182,-43.247223 parent: 31 - - uid: 511 + - uid: 10901 components: - type: Transform - pos: 25.5,-30.5 + rot: -1.5707963267948966 rad + pos: 49.31561,-5.6046276 parent: 31 - - uid: 512 +- proto: CableApcStack10 + entities: + - uid: 2048 components: - type: Transform - pos: 25.5,-35.5 + pos: -2.4564042,-31.599945 parent: 31 - - uid: 513 +- proto: CableHV + entities: + - uid: 23 + components: + - type: Transform + pos: -32.5,42.5 + parent: 31 + - uid: 29 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 31 + - uid: 104 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 31 + - uid: 128 + components: + - type: Transform + pos: -25.5,18.5 + parent: 31 + - uid: 140 components: - type: Transform - pos: 25.5,-34.5 + pos: -22.5,21.5 + parent: 31 + - uid: 202 + components: + - type: Transform + pos: 55.5,5.5 + parent: 31 + - uid: 290 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 31 + - uid: 412 + components: + - type: Transform + pos: -21.5,22.5 parent: 31 - uid: 544 components: @@ -16597,21 +16736,11 @@ entities: - type: Transform pos: 51.5,3.5 parent: 31 - - uid: 932 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 31 - uid: 948 components: - type: Transform pos: -28.5,-22.5 parent: 31 - - uid: 972 - components: - - type: Transform - pos: 29.5,-34.5 - parent: 31 - uid: 1018 components: - type: Transform @@ -16677,6 +16806,11 @@ entities: - type: Transform pos: -28.5,-27.5 parent: 31 + - uid: 1268 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 31 - uid: 1273 components: - type: Transform @@ -16762,11 +16896,6 @@ entities: - type: Transform pos: 43.5,-3.5 parent: 31 - - uid: 1640 - components: - - type: Transform - pos: -29.5,22.5 - parent: 31 - uid: 1665 components: - type: Transform @@ -16802,6 +16931,16 @@ entities: - type: Transform pos: 27.5,-11.5 parent: 31 + - uid: 1915 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 31 + - uid: 1918 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 31 - uid: 2000 components: - type: Transform @@ -18082,21 +18221,6 @@ entities: - type: Transform pos: 65.5,7.5 parent: 31 - - uid: 4218 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 31 - - uid: 4226 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 31 - - uid: 4227 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 31 - uid: 4233 components: - type: Transform @@ -18152,11 +18276,6 @@ entities: - type: Transform pos: 14.5,-29.5 parent: 31 - - uid: 4343 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 31 - uid: 4349 components: - type: Transform @@ -18212,16 +18331,6 @@ entities: - type: Transform pos: 66.5,3.5 parent: 31 - - uid: 4412 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 31 - - uid: 4413 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 31 - uid: 4442 components: - type: Transform @@ -18242,16 +18351,6 @@ entities: - type: Transform pos: 52.5,3.5 parent: 31 - - uid: 4454 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 31 - - uid: 4462 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 31 - uid: 4465 components: - type: Transform @@ -18282,11 +18381,6 @@ entities: - type: Transform pos: 46.5,1.5 parent: 31 - - uid: 4564 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 31 - uid: 4565 components: - type: Transform @@ -18362,11 +18456,6 @@ entities: - type: Transform pos: 63.5,1.5 parent: 31 - - uid: 4744 - components: - - type: Transform - pos: 29.5,-32.5 - parent: 31 - uid: 4774 components: - type: Transform @@ -18420,43 +18509,23 @@ entities: - uid: 4873 components: - type: Transform - pos: 29.5,-27.5 + pos: -46.5,-27.5 parent: 31 - - uid: 4875 + - uid: 4874 components: - type: Transform - pos: 29.5,-35.5 + pos: -44.5,-27.5 parent: 31 - - uid: 4876 + - uid: 4875 components: - type: Transform - pos: 27.5,-35.5 + pos: -42.5,-29.5 parent: 31 - uid: 4947 components: - type: Transform pos: -22.5,19.5 parent: 31 - - uid: 4953 - components: - - type: Transform - pos: -29.5,26.5 - parent: 31 - - uid: 4955 - components: - - type: Transform - pos: -29.5,27.5 - parent: 31 - - uid: 4956 - components: - - type: Transform - pos: -29.5,23.5 - parent: 31 - - uid: 4960 - components: - - type: Transform - pos: -33.5,27.5 - parent: 31 - uid: 4992 components: - type: Transform @@ -18487,70 +18556,40 @@ entities: - type: Transform pos: 35.5,11.5 parent: 31 - - uid: 5033 - components: - - type: Transform - pos: 35.5,12.5 - parent: 31 - - uid: 5038 - components: - - type: Transform - pos: -31.5,25.5 - parent: 31 - - uid: 5039 - components: - - type: Transform - pos: -35.5,27.5 - parent: 31 - - uid: 5040 - components: - - type: Transform - pos: -29.5,25.5 - parent: 31 - uid: 5041 components: - type: Transform pos: -28.5,24.5 parent: 31 - - uid: 5042 - components: - - type: Transform - pos: -31.5,26.5 - parent: 31 - - uid: 5043 + - uid: 5098 components: - type: Transform - pos: -31.5,27.5 + pos: 36.5,12.5 parent: 31 - - uid: 5051 + - uid: 5168 components: - type: Transform - pos: -29.5,21.5 + pos: -29.5,24.5 parent: 31 - - uid: 5052 + - uid: 5169 components: - type: Transform - pos: -31.5,21.5 + pos: -33.5,30.5 parent: 31 - - uid: 5053 + - uid: 5170 components: - type: Transform - pos: -31.5,22.5 + pos: -30.5,24.5 parent: 31 - - uid: 5054 + - uid: 5174 components: - type: Transform - pos: -33.5,26.5 + pos: -33.5,34.5 parent: 31 - - uid: 5055 - components: - - type: Transform - pos: -33.5,25.5 - parent: 31 - - uid: 5098 + - uid: 5180 components: - type: Transform - pos: 36.5,12.5 + pos: -33.5,29.5 parent: 31 - uid: 5200 components: @@ -18627,6 +18666,16 @@ entities: - type: Transform pos: 15.5,-31.5 parent: 31 + - uid: 5265 + components: + - type: Transform + pos: -33.5,33.5 + parent: 31 + - uid: 5271 + components: + - type: Transform + pos: -33.5,32.5 + parent: 31 - uid: 5299 components: - type: Transform @@ -18642,11 +18691,6 @@ entities: - type: Transform pos: 18.5,-31.5 parent: 31 - - uid: 5307 - components: - - type: Transform - pos: 37.5,12.5 - parent: 31 - uid: 5738 components: - type: Transform @@ -18732,11 +18776,146 @@ entities: - type: Transform pos: 31.5,12.5 parent: 31 + - uid: 6564 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 31 - uid: 6610 components: - type: Transform pos: 49.5,5.5 parent: 31 + - uid: 6647 + components: + - type: Transform + pos: 49.5,7.5 + parent: 31 + - uid: 6658 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 31 + - uid: 6661 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 31 + - uid: 6662 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 31 + - uid: 6664 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 31 + - uid: 6665 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 31 + - uid: 6666 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 31 + - uid: 6667 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 31 + - uid: 6668 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 31 + - uid: 6669 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 31 + - uid: 6670 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 31 + - uid: 6671 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 31 + - uid: 6672 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 31 + - uid: 6673 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 31 + - uid: 6674 + components: + - type: Transform + pos: -35.5,42.5 + parent: 31 + - uid: 6675 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 31 + - uid: 6677 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 31 + - uid: 6678 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 31 + - uid: 6679 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 31 + - uid: 6680 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 31 + - uid: 6683 + components: + - type: Transform + pos: -37.5,42.5 + parent: 31 + - uid: 6684 + components: + - type: Transform + pos: -34.5,42.5 + parent: 31 + - uid: 6690 + components: + - type: Transform + pos: -36.5,42.5 + parent: 31 + - uid: 6702 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 31 + - uid: 6703 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 31 + - uid: 6705 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 31 - uid: 6735 components: - type: Transform @@ -18762,6 +18941,16 @@ entities: - type: Transform pos: 63.5,-2.5 parent: 31 + - uid: 6774 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 31 + - uid: 6779 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 31 - uid: 6817 components: - type: Transform @@ -18987,10 +19176,20 @@ entities: - type: Transform pos: 63.5,6.5 parent: 31 - - uid: 8303 + - uid: 8351 components: - type: Transform - pos: 38.5,12.5 + pos: 34.5,-44.5 + parent: 31 + - uid: 8352 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 31 + - uid: 8353 + components: + - type: Transform + pos: 36.5,-45.5 parent: 31 - uid: 8452 components: @@ -19032,6 +19231,11 @@ entities: - type: Transform pos: -25.5,-29.5 parent: 31 + - uid: 8582 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 31 - uid: 8602 components: - type: Transform @@ -19160,62 +19364,17 @@ entities: - uid: 8627 components: - type: Transform - pos: -42.5,-29.5 + pos: -42.5,-27.5 parent: 31 - uid: 8628 components: - type: Transform - pos: -42.5,-30.5 + pos: -46.5,-29.5 parent: 31 - uid: 8629 components: - type: Transform - pos: -42.5,-31.5 - parent: 31 - - uid: 8630 - components: - - type: Transform - pos: -40.5,-31.5 - parent: 31 - - uid: 8631 - components: - - type: Transform - pos: -40.5,-30.5 - parent: 31 - - uid: 8632 - components: - - type: Transform - pos: -40.5,-29.5 - parent: 31 - - uid: 8633 - components: - - type: Transform - pos: -40.5,-27.5 - parent: 31 - - uid: 8634 - components: - - type: Transform - pos: -40.5,-26.5 - parent: 31 - - uid: 8635 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 31 - - uid: 8636 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 31 - - uid: 8637 - components: - - type: Transform - pos: -42.5,-26.5 - parent: 31 - - uid: 8638 - components: - - type: Transform - pos: -42.5,-25.5 + pos: -44.5,-29.5 parent: 31 - uid: 8639 components: @@ -19242,41 +19401,11 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 31 - - uid: 8644 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 31 - - uid: 8645 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 31 - uid: 8646 components: - type: Transform pos: -31.5,-38.5 parent: 31 - - uid: 8647 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 31 - - uid: 8648 - components: - - type: Transform - pos: -29.5,-38.5 - parent: 31 - - uid: 8649 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 31 - - uid: 8650 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 31 - uid: 8651 components: - type: Transform @@ -19290,12 +19419,7 @@ entities: - uid: 8653 components: - type: Transform - pos: -34.5,-36.5 - parent: 31 - - uid: 8654 - components: - - type: Transform - pos: -35.5,-36.5 + pos: -32.5,-39.5 parent: 31 - uid: 8665 components: @@ -19312,16 +19436,6 @@ entities: - type: Transform pos: -23.5,19.5 parent: 31 - - uid: 9077 - components: - - type: Transform - pos: 38.5,14.5 - parent: 31 - - uid: 9079 - components: - - type: Transform - pos: 38.5,13.5 - parent: 31 - uid: 9166 components: - type: Transform @@ -19747,9264 +19861,8727 @@ entities: - type: Transform pos: -31.5,7.5 parent: 31 -- proto: CableHVStack - entities: - - uid: 538 + - uid: 12256 components: - type: Transform - pos: 29.54536,1.7105546 + pos: -45.5,-28.5 parent: 31 - - uid: 6023 + - uid: 12413 components: - type: Transform - pos: 48.339085,5.504549 + pos: 38.5,8.5 parent: 31 - - uid: 7634 + - uid: 12414 components: - type: Transform - pos: -20.539572,25.33725 + pos: 39.5,8.5 parent: 31 -- proto: CableMV - entities: - - uid: 96 + - uid: 12415 components: - type: Transform - pos: 42.5,1.5 + pos: 40.5,8.5 parent: 31 - - uid: 160 + - uid: 12419 components: - type: Transform - pos: -36.5,-6.5 + pos: 38.5,9.5 parent: 31 - - uid: 407 + - uid: 12420 components: - type: Transform - pos: 13.5,-8.5 + pos: 39.5,9.5 parent: 31 - - uid: 428 + - uid: 12421 components: - type: Transform - pos: -9.5,-28.5 + pos: 40.5,9.5 parent: 31 - - uid: 429 + - uid: 12422 components: - type: Transform - pos: -9.5,-30.5 + pos: 41.5,9.5 parent: 31 - - uid: 434 + - uid: 12423 components: - type: Transform - pos: -7.5,-27.5 + pos: 42.5,9.5 parent: 31 - - uid: 440 + - uid: 12424 components: - type: Transform - pos: -6.5,-21.5 + pos: 42.5,7.5 parent: 31 - - uid: 463 + - uid: 12426 components: - type: Transform - pos: -3.5,-27.5 + pos: 39.5,4.5 parent: 31 - - uid: 577 + - uid: 12427 components: - type: Transform - pos: -11.5,-25.5 + pos: 39.5,5.5 parent: 31 - - uid: 590 + - uid: 12436 components: - type: Transform - pos: -15.5,-25.5 + pos: 50.5,7.5 parent: 31 - - uid: 601 + - uid: 12437 components: - type: Transform - pos: -14.5,-23.5 + pos: 50.5,8.5 parent: 31 - - uid: 605 + - uid: 12444 components: - type: Transform - pos: -10.5,-23.5 + pos: 53.5,8.5 parent: 31 - - uid: 618 + - uid: 12445 components: - type: Transform - pos: 37.5,3.5 + pos: 53.5,9.5 parent: 31 - - uid: 675 + - uid: 12446 components: - type: Transform - pos: -12.5,-10.5 + pos: 53.5,10.5 parent: 31 - - uid: 678 + - uid: 12447 components: - type: Transform - pos: 22.5,-11.5 + pos: 53.5,11.5 parent: 31 - - uid: 679 + - uid: 12448 components: - type: Transform - pos: -14.5,-10.5 + pos: 53.5,12.5 parent: 31 - - uid: 694 + - uid: 12449 components: - type: Transform - pos: -13.5,-10.5 + pos: 53.5,13.5 parent: 31 - - uid: 724 + - uid: 12450 components: - type: Transform - pos: -10.5,-22.5 + pos: 54.5,13.5 parent: 31 - - uid: 725 + - uid: 12451 components: - type: Transform - pos: -10.5,-21.5 + pos: 55.5,13.5 parent: 31 - - uid: 755 + - uid: 12452 components: - type: Transform - pos: 10.5,25.5 + pos: 55.5,14.5 parent: 31 - - uid: 843 + - uid: 12453 components: - type: Transform - pos: -2.5,-27.5 + pos: 55.5,15.5 parent: 31 - - uid: 845 + - uid: 12454 components: - type: Transform - pos: 0.5,-28.5 + pos: 55.5,16.5 parent: 31 - - uid: 890 + - uid: 12455 components: - type: Transform - pos: 12.5,21.5 + pos: 56.5,16.5 parent: 31 - - uid: 931 + - uid: 12456 components: - type: Transform - pos: 8.5,26.5 + pos: 57.5,16.5 parent: 31 - - uid: 986 + - uid: 12457 components: - type: Transform - pos: -0.5,-27.5 + pos: 55.5,17.5 parent: 31 - - uid: 1080 + - uid: 12458 components: - type: Transform - pos: 16.5,-13.5 + pos: 55.5,18.5 parent: 31 - - uid: 1196 + - uid: 12459 components: - type: Transform - pos: -1.5,-10.5 + pos: 55.5,19.5 parent: 31 - - uid: 1242 + - uid: 12460 components: - type: Transform - pos: -28.5,-12.5 + pos: 56.5,19.5 parent: 31 - - uid: 1297 + - uid: 12461 components: - type: Transform - pos: 12.5,22.5 + pos: 57.5,19.5 parent: 31 - - uid: 1569 + - uid: 12462 components: - type: Transform - pos: -15.5,-24.5 + pos: 58.5,19.5 parent: 31 - - uid: 1571 + - uid: 12464 components: - type: Transform - pos: 36.5,3.5 + pos: 56.5,14.5 parent: 31 - - uid: 1572 + - uid: 12465 components: - type: Transform - pos: 35.5,3.5 + pos: 57.5,14.5 parent: 31 - - uid: 1599 + - uid: 12466 components: - type: Transform - pos: -20.5,15.5 + pos: 58.5,14.5 parent: 31 - - uid: 1601 + - uid: 12467 components: - type: Transform - pos: 21.5,-10.5 + pos: 58.5,15.5 parent: 31 - - uid: 1726 + - uid: 12468 components: - type: Transform - pos: 55.5,7.5 + pos: 59.5,15.5 parent: 31 - - uid: 1731 + - uid: 12469 components: - type: Transform - pos: 56.5,7.5 + pos: 57.5,17.5 parent: 31 - - uid: 1844 + - uid: 12470 components: - type: Transform - pos: 57.5,7.5 + pos: 58.5,17.5 parent: 31 - - uid: 1873 + - uid: 12471 components: - type: Transform - pos: 60.5,7.5 + pos: 59.5,17.5 parent: 31 - - uid: 2182 + - uid: 12472 components: - type: Transform - pos: -11.5,-19.5 + pos: 60.5,15.5 parent: 31 - - uid: 2194 + - uid: 12473 components: - type: Transform - pos: -12.5,-27.5 + pos: 59.5,19.5 parent: 31 - - uid: 2264 + - uid: 12474 components: - type: Transform - pos: -11.5,-10.5 + pos: 60.5,19.5 parent: 31 - - uid: 2432 + - uid: 12475 components: - type: Transform - pos: 15.5,-27.5 + pos: 55.5,20.5 parent: 31 - - uid: 2433 + - uid: 12476 components: - type: Transform - pos: 15.5,-26.5 + pos: 55.5,21.5 parent: 31 - - uid: 2487 + - uid: 12477 components: - type: Transform - pos: 26.5,12.5 + pos: 56.5,21.5 parent: 31 - - uid: 2645 + - uid: 12478 components: - type: Transform - pos: -32.5,-7.5 + pos: 57.5,21.5 parent: 31 - - uid: 2696 + - uid: 12479 components: - type: Transform - pos: 20.5,-11.5 + pos: 55.5,22.5 parent: 31 - - uid: 2698 + - uid: 12480 components: - type: Transform - pos: 19.5,-11.5 + pos: 55.5,23.5 parent: 31 - - uid: 2715 + - uid: 12481 components: - type: Transform - pos: -11.5,-35.5 + pos: 56.5,23.5 parent: 31 - - uid: 2738 + - uid: 12482 components: - type: Transform - pos: -16.5,-1.5 + pos: 57.5,23.5 parent: 31 - - uid: 2744 + - uid: 12552 components: - type: Transform - pos: -3.5,-21.5 + pos: -44.5,-28.5 parent: 31 - - uid: 2822 + - uid: 12560 components: - type: Transform - pos: -0.5,-8.5 + pos: -31.5,42.5 parent: 31 - - uid: 2823 + - uid: 12562 components: - type: Transform - pos: -0.5,-9.5 + pos: -30.5,42.5 parent: 31 - - uid: 2842 + - uid: 12566 components: - type: Transform - pos: -11.5,-34.5 + pos: -29.5,42.5 parent: 31 - - uid: 2884 + - uid: 12567 components: - type: Transform - pos: -9.5,-33.5 + pos: -29.5,40.5 parent: 31 - - uid: 2885 + - uid: 12569 components: - type: Transform - pos: -9.5,-27.5 + pos: -30.5,40.5 parent: 31 - - uid: 2887 + - uid: 12581 components: - type: Transform - pos: -9.5,-29.5 + pos: -31.5,40.5 parent: 31 - - uid: 2888 + - uid: 12582 components: - type: Transform - pos: -9.5,-34.5 + pos: -32.5,40.5 parent: 31 - - uid: 2892 + - uid: 12583 components: - type: Transform - pos: 20.5,-13.5 + pos: -34.5,40.5 parent: 31 - - uid: 2904 + - uid: 12584 components: - type: Transform - pos: -9.5,-36.5 + pos: -35.5,40.5 parent: 31 - - uid: 2905 + - uid: 12585 components: - type: Transform - pos: 14.5,-8.5 + pos: -36.5,40.5 parent: 31 - - uid: 2908 + - uid: 12586 components: - type: Transform - pos: -12.5,-11.5 + pos: -37.5,40.5 parent: 31 - - uid: 3068 + - uid: 12587 components: - type: Transform - pos: -4.5,17.5 + pos: -37.5,38.5 parent: 31 - - uid: 3108 + - uid: 12588 components: - type: Transform - pos: 59.5,7.5 + pos: -36.5,38.5 parent: 31 - - uid: 3111 + - uid: 12589 components: - type: Transform - pos: 58.5,7.5 + pos: -35.5,38.5 parent: 31 - - uid: 3144 + - uid: 12590 components: - type: Transform - pos: 43.5,10.5 + pos: -34.5,38.5 parent: 31 - - uid: 3147 + - uid: 12591 components: - type: Transform - pos: 19.5,-13.5 + pos: -32.5,38.5 parent: 31 - - uid: 3148 + - uid: 12592 components: - type: Transform - pos: 26.5,11.5 + pos: -31.5,38.5 parent: 31 - - uid: 3174 + - uid: 12593 components: - type: Transform - pos: 18.5,-11.5 + pos: -30.5,38.5 parent: 31 - - uid: 3184 + - uid: 12594 components: - type: Transform - pos: 12.5,15.5 + pos: -29.5,38.5 parent: 31 - - uid: 3190 + - uid: 12595 components: - type: Transform - pos: 12.5,14.5 + pos: -29.5,36.5 parent: 31 - - uid: 3205 + - uid: 12596 components: - type: Transform - pos: 14.5,13.5 + pos: -30.5,36.5 parent: 31 - - uid: 3221 + - uid: 12597 components: - type: Transform - pos: 18.5,-10.5 + pos: -31.5,36.5 parent: 31 - - uid: 3351 + - uid: 12598 components: - type: Transform - pos: -3.5,17.5 + pos: -32.5,36.5 parent: 31 - - uid: 3352 + - uid: 12599 components: - type: Transform - pos: -2.5,17.5 + pos: -34.5,36.5 parent: 31 - - uid: 3353 + - uid: 12600 components: - type: Transform - pos: -1.5,17.5 + pos: -35.5,36.5 parent: 31 - - uid: 3356 + - uid: 12601 components: - type: Transform - pos: 14.5,-25.5 + pos: -36.5,36.5 parent: 31 - - uid: 3357 + - uid: 12602 components: - type: Transform - pos: -0.5,17.5 + pos: -37.5,36.5 parent: 31 - - uid: 3366 + - uid: 12603 components: - type: Transform - pos: -9.5,-19.5 + pos: -37.5,34.5 parent: 31 - - uid: 3370 + - uid: 12604 components: - type: Transform - pos: -8.5,-19.5 + pos: -36.5,34.5 parent: 31 - - uid: 3372 + - uid: 12605 components: - type: Transform - pos: -11.5,-33.5 + pos: -35.5,34.5 parent: 31 - - uid: 3373 + - uid: 12606 components: - type: Transform - pos: -10.5,-35.5 + pos: -34.5,34.5 parent: 31 - - uid: 3479 + - uid: 12607 components: - type: Transform - pos: -19.5,15.5 + pos: -32.5,34.5 parent: 31 - - uid: 3481 + - uid: 12608 components: - type: Transform - pos: 12.5,16.5 + pos: -31.5,34.5 parent: 31 - - uid: 3589 + - uid: 12609 components: - type: Transform - pos: 12.5,24.5 + pos: -30.5,34.5 parent: 31 - - uid: 3597 + - uid: 12610 components: - type: Transform - pos: 27.5,13.5 + pos: -29.5,34.5 parent: 31 - - uid: 3598 + - uid: 12611 components: - type: Transform - pos: 28.5,13.5 + pos: -29.5,32.5 parent: 31 - - uid: 3600 + - uid: 12612 components: - type: Transform - pos: 26.5,13.5 + pos: -30.5,32.5 parent: 31 - - uid: 3603 + - uid: 12613 components: - type: Transform - pos: 25.5,12.5 + pos: -31.5,32.5 parent: 31 - - uid: 3604 + - uid: 12614 components: - type: Transform - pos: 24.5,12.5 + pos: -32.5,32.5 parent: 31 - - uid: 3605 + - uid: 12615 components: - type: Transform - pos: 23.5,12.5 + pos: -34.5,32.5 parent: 31 - - uid: 3606 + - uid: 12616 components: - type: Transform - pos: 22.5,12.5 + pos: -35.5,32.5 parent: 31 - - uid: 3607 + - uid: 12617 components: - type: Transform - pos: 21.5,12.5 + pos: -36.5,32.5 parent: 31 - - uid: 3608 + - uid: 12618 components: - type: Transform - pos: 20.5,12.5 + pos: -37.5,32.5 parent: 31 - - uid: 3609 + - uid: 12619 components: - type: Transform - pos: 19.5,12.5 + pos: -33.5,31.5 parent: 31 - - uid: 3610 + - uid: 12620 components: - type: Transform - pos: 18.5,12.5 + pos: -33.5,35.5 parent: 31 - - uid: 3611 + - uid: 12621 components: - type: Transform - pos: 17.5,12.5 + pos: -33.5,36.5 parent: 31 - - uid: 3612 + - uid: 12622 components: - type: Transform - pos: 16.5,12.5 + pos: -33.5,37.5 parent: 31 - - uid: 3613 + - uid: 12623 components: - type: Transform - pos: 15.5,12.5 + pos: -33.5,38.5 parent: 31 - - uid: 3614 + - uid: 12624 components: - type: Transform - pos: 14.5,12.5 + pos: -33.5,39.5 parent: 31 - - uid: 3615 + - uid: 12625 components: - type: Transform - pos: 12.5,17.5 + pos: -33.5,40.5 parent: 31 - - uid: 3616 + - uid: 12626 components: - type: Transform - pos: 12.5,18.5 + pos: -33.5,41.5 parent: 31 - - uid: 3618 + - uid: 12627 components: - type: Transform - pos: 11.5,24.5 + pos: -33.5,42.5 parent: 31 - - uid: 3620 + - uid: 12628 components: - type: Transform - pos: 10.5,24.5 + pos: -33.5,43.5 parent: 31 - - uid: 3621 + - uid: 12630 components: - type: Transform - pos: 9.5,23.5 + pos: -33.5,44.5 parent: 31 - - uid: 3622 + - uid: 12705 components: - type: Transform - pos: 9.5,22.5 + pos: -40.5,-27.5 parent: 31 - - uid: 3624 + - uid: 12708 components: - type: Transform - pos: 9.5,25.5 + pos: -49.5,-28.5 parent: 31 - - uid: 3628 + - uid: 12709 components: - type: Transform - pos: 8.5,25.5 + pos: -50.5,-28.5 parent: 31 - - uid: 3629 + - uid: 12710 components: - type: Transform - pos: 7.5,25.5 + pos: -51.5,-28.5 parent: 31 - - uid: 3630 + - uid: 12711 components: - type: Transform - pos: 6.5,25.5 + pos: -52.5,-28.5 parent: 31 - - uid: 3631 + - uid: 12712 components: - type: Transform - pos: 5.5,25.5 + pos: -53.5,-28.5 parent: 31 - - uid: 3632 + - uid: 12713 components: - type: Transform - pos: 4.5,25.5 + pos: -54.5,-28.5 parent: 31 - - uid: 3633 + - uid: 12726 components: - type: Transform - pos: 3.5,25.5 + pos: -48.5,-27.5 parent: 31 - - uid: 3634 + - uid: 12727 components: - type: Transform - pos: 2.5,25.5 + pos: -48.5,-26.5 parent: 31 - - uid: 3635 + - uid: 12728 components: - type: Transform - pos: 1.5,25.5 + pos: -48.5,-25.5 parent: 31 - - uid: 3636 + - uid: 12729 components: - type: Transform - pos: 0.5,25.5 + pos: -50.5,-27.5 parent: 31 - - uid: 3637 + - uid: 12730 components: - type: Transform - pos: 0.5,26.5 + pos: -50.5,-26.5 parent: 31 - - uid: 3639 + - uid: 12731 components: - type: Transform - pos: -0.5,26.5 + pos: -50.5,-25.5 parent: 31 - - uid: 3640 + - uid: 12732 components: - type: Transform - pos: -1.5,26.5 + pos: -52.5,-25.5 parent: 31 - - uid: 3641 + - uid: 12733 components: - type: Transform - pos: -2.5,26.5 + pos: -52.5,-26.5 parent: 31 - - uid: 3642 + - uid: 12734 components: - type: Transform - pos: -2.5,27.5 + pos: -52.5,-27.5 parent: 31 - - uid: 3643 + - uid: 12735 components: - type: Transform - pos: 41.5,2.5 + pos: -54.5,-27.5 parent: 31 - - uid: 3644 + - uid: 12736 components: - type: Transform - pos: 42.5,2.5 + pos: -54.5,-26.5 parent: 31 - - uid: 3645 + - uid: 12737 components: - type: Transform - pos: 43.5,0.5 + pos: -54.5,-25.5 parent: 31 - - uid: 3646 + - uid: 12738 components: - type: Transform - pos: 43.5,1.5 + pos: -54.5,-29.5 parent: 31 - - uid: 3647 + - uid: 12739 components: - type: Transform - pos: 44.5,1.5 + pos: -54.5,-30.5 parent: 31 - - uid: 3648 + - uid: 12740 components: - type: Transform - pos: 45.5,1.5 + pos: -54.5,-31.5 parent: 31 - - uid: 3649 + - uid: 12741 components: - type: Transform - pos: 46.5,1.5 + pos: -52.5,-29.5 parent: 31 - - uid: 3650 + - uid: 12742 components: - type: Transform - pos: 47.5,1.5 + pos: -52.5,-30.5 parent: 31 - - uid: 3651 + - uid: 12743 components: - type: Transform - pos: 48.5,1.5 + pos: -52.5,-31.5 parent: 31 - - uid: 3652 + - uid: 12744 components: - type: Transform - pos: 48.5,0.5 + pos: -50.5,-29.5 parent: 31 - - uid: 3653 + - uid: 12745 components: - type: Transform - pos: 48.5,-0.5 + pos: -50.5,-30.5 parent: 31 - - uid: 3654 + - uid: 12746 components: - type: Transform - pos: 48.5,-1.5 + pos: -50.5,-31.5 parent: 31 - - uid: 3657 + - uid: 12747 components: - type: Transform - pos: 47.5,-1.5 + pos: -48.5,-29.5 parent: 31 - - uid: 3659 + - uid: 12748 components: - type: Transform - pos: 40.5,2.5 + pos: -48.5,-30.5 parent: 31 - - uid: 3660 + - uid: 12749 components: - type: Transform - pos: 39.5,-0.5 + pos: -48.5,-31.5 parent: 31 - - uid: 3661 + - uid: 12801 components: - type: Transform - pos: 39.5,2.5 + pos: -40.5,-29.5 parent: 31 - - uid: 3662 + - uid: 12816 components: - type: Transform - pos: 38.5,2.5 + pos: -32.5,-40.5 parent: 31 - - uid: 3664 + - uid: 12817 components: - type: Transform - pos: 37.5,2.5 + pos: -32.5,-41.5 parent: 31 - - uid: 3665 + - uid: 12818 components: - type: Transform - pos: 34.5,-0.5 + pos: -32.5,-42.5 parent: 31 - - uid: 3666 + - uid: 12819 components: - type: Transform - pos: 33.5,-0.5 + pos: -32.5,-43.5 parent: 31 - - uid: 3667 + - uid: 12820 components: - type: Transform - pos: 32.5,-0.5 + pos: -32.5,-44.5 parent: 31 - - uid: 3668 + - uid: 12821 components: - type: Transform - pos: 32.5,0.5 + pos: -32.5,-45.5 parent: 31 - - uid: 3669 + - uid: 12822 components: - type: Transform - pos: 31.5,0.5 + pos: -32.5,-46.5 parent: 31 - - uid: 3670 + - uid: 12823 components: - type: Transform - pos: 31.5,1.5 + pos: -33.5,-46.5 parent: 31 - - uid: 3671 + - uid: 12824 components: - type: Transform - pos: 43.5,2.5 + pos: -34.5,-46.5 parent: 31 - - uid: 3672 + - uid: 12825 components: - type: Transform - pos: 43.5,3.5 + pos: -35.5,-46.5 parent: 31 - - uid: 3673 + - uid: 12826 components: - type: Transform - pos: 43.5,4.5 + pos: -33.5,-44.5 parent: 31 - - uid: 3674 + - uid: 12827 components: - type: Transform - pos: 43.5,5.5 + pos: -34.5,-44.5 parent: 31 - - uid: 3680 + - uid: 12828 components: - type: Transform - pos: 24.5,18.5 + pos: -35.5,-44.5 parent: 31 - - uid: 3681 + - uid: 12829 components: - type: Transform - pos: 21.5,-8.5 + pos: -33.5,-42.5 parent: 31 - - uid: 3682 + - uid: 12830 components: - type: Transform - pos: 21.5,-7.5 + pos: -34.5,-42.5 parent: 31 - - uid: 3683 + - uid: 12831 components: - type: Transform - pos: 21.5,-6.5 + pos: -35.5,-42.5 parent: 31 - - uid: 3684 + - uid: 12832 components: - type: Transform - pos: 21.5,-5.5 + pos: -33.5,-40.5 parent: 31 - - uid: 3685 + - uid: 12833 components: - type: Transform - pos: 21.5,-4.5 + pos: -34.5,-40.5 parent: 31 - - uid: 3686 + - uid: 12834 components: - type: Transform - pos: 22.5,-4.5 + pos: -35.5,-40.5 parent: 31 - - uid: 3687 + - uid: 12835 components: - type: Transform - pos: 22.5,-3.5 + pos: -31.5,-40.5 parent: 31 - - uid: 3688 + - uid: 12836 components: - type: Transform - pos: 20.5,-9.5 + pos: -30.5,-40.5 parent: 31 - - uid: 3689 + - uid: 12837 components: - type: Transform - pos: 19.5,-9.5 + pos: -29.5,-40.5 parent: 31 - - uid: 3690 + - uid: 12838 components: - type: Transform - pos: 21.5,-9.5 + pos: -31.5,-42.5 parent: 31 - - uid: 3691 + - uid: 12839 components: - type: Transform - pos: 18.5,-9.5 + pos: -30.5,-42.5 parent: 31 - - uid: 3692 + - uid: 12840 components: - type: Transform - pos: 17.5,-9.5 + pos: -29.5,-42.5 parent: 31 - - uid: 3693 + - uid: 12841 components: - type: Transform - pos: 16.5,-9.5 + pos: -31.5,-44.5 parent: 31 - - uid: 3694 + - uid: 12842 components: - type: Transform - pos: 15.5,-9.5 + pos: -30.5,-44.5 parent: 31 - - uid: 3695 + - uid: 12843 components: - type: Transform - pos: 0.5,17.5 + pos: -29.5,-44.5 parent: 31 - - uid: 3696 + - uid: 12844 components: - type: Transform - pos: 1.5,17.5 + pos: -31.5,-46.5 parent: 31 - - uid: 3697 + - uid: 12845 components: - type: Transform - pos: 2.5,17.5 + pos: -30.5,-46.5 parent: 31 - - uid: 3698 + - uid: 12846 components: - type: Transform - pos: 3.5,17.5 + pos: -29.5,-46.5 parent: 31 - - uid: 3699 + - uid: 12905 components: - type: Transform - pos: 3.5,16.5 + pos: 32.5,-31.5 parent: 31 - - uid: 3700 + - uid: 12906 components: - type: Transform - pos: 3.5,15.5 + pos: 26.5,-31.5 parent: 31 - - uid: 3701 + - uid: 12907 components: - type: Transform - pos: 8.5,-9.5 + pos: 24.5,-31.5 parent: 31 - - uid: 3702 + - uid: 12908 components: - type: Transform - pos: 3.5,14.5 + pos: 25.5,-31.5 parent: 31 - - uid: 3704 + - uid: 12909 components: - type: Transform - pos: -8.5,-36.5 + pos: 23.5,-31.5 parent: 31 - - uid: 3705 + - uid: 12910 components: - type: Transform - pos: -27.5,-14.5 + pos: 22.5,-31.5 parent: 31 - - uid: 3706 + - uid: 12911 components: - type: Transform - pos: -26.5,-14.5 + pos: 21.5,-31.5 parent: 31 - - uid: 3711 + - uid: 12912 components: - type: Transform - pos: 15.5,-8.5 + pos: 20.5,-31.5 parent: 31 - - uid: 3712 + - uid: 12913 components: - type: Transform - pos: 15.5,-7.5 + pos: 33.5,-43.5 parent: 31 - - uid: 3713 + - uid: 12914 components: - type: Transform - pos: 15.5,-6.5 + pos: 19.5,-31.5 parent: 31 - - uid: 3714 + - uid: 12915 components: - type: Transform - pos: 15.5,-5.5 + pos: 32.5,-43.5 parent: 31 - - uid: 3715 + - uid: 12916 components: - type: Transform - pos: 15.5,-4.5 + pos: 31.5,-43.5 parent: 31 - - uid: 3716 + - uid: 12917 components: - type: Transform - pos: 15.5,-3.5 + pos: 30.5,-43.5 parent: 31 - - uid: 3717 + - uid: 12918 components: - type: Transform - pos: 15.5,-2.5 + pos: 33.5,-41.5 parent: 31 - - uid: 3718 + - uid: 12919 components: - type: Transform - pos: 15.5,-1.5 + pos: 32.5,-41.5 parent: 31 - - uid: 3719 + - uid: 12920 components: - type: Transform - pos: 15.5,-0.5 + pos: 31.5,-41.5 parent: 31 - - uid: 3720 + - uid: 12921 components: - type: Transform - pos: 15.5,0.5 + pos: 30.5,-41.5 parent: 31 - - uid: 3721 + - uid: 12922 components: - type: Transform - pos: 15.5,1.5 + pos: 33.5,-39.5 parent: 31 - - uid: 3722 + - uid: 12923 components: - type: Transform - pos: 16.5,1.5 + pos: 32.5,-39.5 parent: 31 - - uid: 3723 + - uid: 12924 components: - type: Transform - pos: 16.5,2.5 + pos: 31.5,-39.5 parent: 31 - - uid: 3746 + - uid: 12925 components: - type: Transform - pos: 17.5,-13.5 + pos: 30.5,-39.5 parent: 31 - - uid: 3754 + - uid: 12926 components: - type: Transform - pos: -2.5,-10.5 + pos: 35.5,-39.5 parent: 31 - - uid: 3755 + - uid: 12927 components: - type: Transform - pos: -2.5,-9.5 + pos: 36.5,-39.5 parent: 31 - - uid: 3756 + - uid: 12928 components: - type: Transform - pos: -3.5,-9.5 + pos: 37.5,-39.5 parent: 31 - - uid: 3757 + - uid: 12929 components: - type: Transform - pos: -4.5,-9.5 + pos: 38.5,-39.5 parent: 31 - - uid: 3758 + - uid: 12930 components: - type: Transform - pos: -5.5,-9.5 + pos: 35.5,-41.5 parent: 31 - - uid: 3759 + - uid: 12931 components: - type: Transform - pos: -5.5,-8.5 + pos: 36.5,-41.5 parent: 31 - - uid: 3760 + - uid: 12932 components: - type: Transform - pos: -6.5,-9.5 + pos: 37.5,-41.5 parent: 31 - - uid: 3761 + - uid: 12933 components: - type: Transform - pos: -7.5,-9.5 + pos: 38.5,-41.5 parent: 31 - - uid: 3762 + - uid: 12934 components: - type: Transform - pos: -8.5,-9.5 + pos: 35.5,-43.5 parent: 31 - - uid: 3763 + - uid: 12935 components: - type: Transform - pos: -9.5,-9.5 + pos: 36.5,-43.5 parent: 31 - - uid: 3770 + - uid: 12936 components: - type: Transform - pos: -18.5,-3.5 + pos: 37.5,-43.5 parent: 31 - - uid: 3771 + - uid: 12937 components: - type: Transform - pos: -18.5,-2.5 + pos: 38.5,-43.5 parent: 31 - - uid: 3772 +- proto: CableHVStack + entities: + - uid: 538 components: - type: Transform - pos: -17.5,-2.5 + pos: 29.54536,1.7105546 parent: 31 - - uid: 3773 + - uid: 6023 components: - type: Transform - pos: -16.5,-2.5 + pos: 48.339085,5.504549 parent: 31 - - uid: 3774 + - uid: 7634 components: - type: Transform - pos: -16.5,-3.5 + pos: -20.539572,25.33725 parent: 31 - - uid: 3775 +- proto: CableMV + entities: + - uid: 96 components: - type: Transform - pos: -16.5,-4.5 + pos: 42.5,1.5 parent: 31 - - uid: 3776 + - uid: 160 components: - type: Transform - pos: -12.5,0.5 + pos: -36.5,-6.5 parent: 31 - - uid: 3777 + - uid: 407 components: - type: Transform - pos: -12.5,1.5 + pos: 13.5,-8.5 parent: 31 - - uid: 3778 + - uid: 428 components: - type: Transform - pos: -11.5,1.5 + pos: -9.5,-28.5 parent: 31 - - uid: 3779 + - uid: 429 components: - type: Transform - pos: -11.5,2.5 + pos: -9.5,-30.5 parent: 31 - - uid: 3781 + - uid: 434 components: - type: Transform - pos: -26.5,-4.5 + pos: -7.5,-27.5 parent: 31 - - uid: 3782 + - uid: 440 components: - type: Transform - pos: -25.5,-4.5 + pos: -6.5,-21.5 parent: 31 - - uid: 3783 + - uid: 463 components: - type: Transform - pos: -25.5,-6.5 + pos: -3.5,-27.5 parent: 31 - - uid: 3784 + - uid: 577 components: - type: Transform - pos: -25.5,-7.5 + pos: -11.5,-25.5 parent: 31 - - uid: 3785 + - uid: 590 components: - type: Transform - pos: -25.5,-5.5 + pos: -15.5,-25.5 parent: 31 - - uid: 3786 + - uid: 601 components: - type: Transform - pos: -30.5,9.5 + pos: -14.5,-23.5 parent: 31 - - uid: 3789 + - uid: 605 components: - type: Transform - pos: -15.5,-9.5 + pos: -10.5,-23.5 parent: 31 - - uid: 3790 + - uid: 618 components: - type: Transform - pos: -14.5,-9.5 + pos: 37.5,3.5 parent: 31 - - uid: 3791 + - uid: 675 components: - type: Transform - pos: -14.5,-8.5 + pos: -12.5,-10.5 parent: 31 - - uid: 3792 + - uid: 678 components: - type: Transform - pos: -32.5,-6.5 + pos: 22.5,-11.5 parent: 31 - - uid: 3796 + - uid: 679 components: - type: Transform - pos: -33.5,-6.5 + pos: -14.5,-10.5 parent: 31 - - uid: 3798 + - uid: 694 components: - type: Transform - pos: -25.5,-8.5 + pos: -13.5,-10.5 parent: 31 - - uid: 3799 + - uid: 724 components: - type: Transform - pos: -26.5,-8.5 + pos: -10.5,-22.5 parent: 31 - - uid: 3800 + - uid: 725 components: - type: Transform - pos: -27.5,-8.5 + pos: -10.5,-21.5 parent: 31 - - uid: 3801 + - uid: 755 components: - type: Transform - pos: -28.5,-8.5 + pos: 10.5,25.5 parent: 31 - - uid: 3802 + - uid: 843 components: - type: Transform - pos: -29.5,-8.5 + pos: -2.5,-27.5 parent: 31 - - uid: 3803 + - uid: 845 components: - type: Transform - pos: -34.5,-6.5 + pos: 0.5,-28.5 parent: 31 - - uid: 3804 + - uid: 890 components: - type: Transform - pos: -35.5,-6.5 + pos: 12.5,21.5 parent: 31 - - uid: 3809 + - uid: 931 components: - type: Transform - pos: -32.5,7.5 + pos: 8.5,26.5 parent: 31 - - uid: 3810 + - uid: 986 components: - type: Transform - pos: -32.5,8.5 + pos: -0.5,-27.5 parent: 31 - - uid: 3811 + - uid: 1080 components: - type: Transform - pos: -32.5,9.5 + pos: 16.5,-13.5 parent: 31 - - uid: 3812 + - uid: 1196 components: - type: Transform - pos: -33.5,9.5 + pos: -1.5,-10.5 parent: 31 - - uid: 3813 + - uid: 1242 components: - type: Transform - pos: -34.5,9.5 + pos: -28.5,-12.5 parent: 31 - - uid: 3814 + - uid: 1297 components: - type: Transform - pos: -35.5,9.5 + pos: 12.5,22.5 parent: 31 - - uid: 3815 + - uid: 1569 components: - type: Transform - pos: -36.5,9.5 + pos: -15.5,-24.5 parent: 31 - - uid: 3816 + - uid: 1571 components: - type: Transform - pos: -37.5,9.5 + pos: 36.5,3.5 parent: 31 - - uid: 3817 + - uid: 1572 components: - type: Transform - pos: -38.5,9.5 + pos: 35.5,3.5 parent: 31 - - uid: 3818 + - uid: 1599 components: - type: Transform - pos: -38.5,10.5 + pos: -20.5,15.5 parent: 31 - - uid: 3819 + - uid: 1601 components: - type: Transform - pos: -39.5,10.5 + pos: 21.5,-10.5 parent: 31 - - uid: 3820 + - uid: 1726 components: - type: Transform - pos: -39.5,11.5 + pos: 55.5,7.5 parent: 31 - - uid: 3822 + - uid: 1731 components: - type: Transform - pos: -31.5,9.5 + pos: 56.5,7.5 parent: 31 - - uid: 3837 + - uid: 1844 components: - type: Transform - pos: -12.5,12.5 + pos: 57.5,7.5 parent: 31 - - uid: 3839 + - uid: 1873 components: - type: Transform - pos: 21.5,-13.5 + pos: 60.5,7.5 parent: 31 - - uid: 3846 + - uid: 2182 components: - type: Transform - pos: -6.5,15.5 + pos: -11.5,-19.5 parent: 31 - - uid: 3847 + - uid: 2194 components: - type: Transform - pos: -5.5,15.5 + pos: -12.5,-27.5 parent: 31 - - uid: 3848 + - uid: 2264 components: - type: Transform - pos: -15.5,-4.5 + pos: -11.5,-10.5 parent: 31 - - uid: 3850 + - uid: 2432 components: - type: Transform - pos: -16.5,16.5 + pos: 15.5,-27.5 parent: 31 - - uid: 3870 + - uid: 2433 components: - type: Transform - pos: -4.5,15.5 + pos: 15.5,-26.5 parent: 31 - - uid: 3879 + - uid: 2487 components: - type: Transform - pos: -31.5,-12.5 + pos: 26.5,12.5 parent: 31 - - uid: 3896 + - uid: 2645 components: - type: Transform - pos: -7.5,15.5 + pos: -32.5,-7.5 parent: 31 - - uid: 3919 + - uid: 2696 components: - type: Transform - pos: -15.5,-5.5 + pos: 20.5,-11.5 parent: 31 - - uid: 3920 + - uid: 2698 components: - type: Transform - pos: 13.5,-23.5 + pos: 19.5,-11.5 parent: 31 - - uid: 4054 + - uid: 2715 components: - type: Transform - pos: -5.5,-7.5 + pos: -11.5,-35.5 parent: 31 - - uid: 4139 + - uid: 2738 components: - type: Transform - pos: 8.5,27.5 + pos: -16.5,-1.5 parent: 31 - - uid: 4201 + - uid: 2744 components: - type: Transform - pos: -10.5,15.5 + pos: -3.5,-21.5 parent: 31 - - uid: 4338 + - uid: 2822 components: - type: Transform - pos: 18.5,-13.5 + pos: -0.5,-8.5 parent: 31 - - uid: 4467 + - uid: 2823 components: - type: Transform - pos: -15.5,-6.5 + pos: -0.5,-9.5 parent: 31 - - uid: 4822 + - uid: 2842 components: - type: Transform - pos: 23.5,-11.5 + pos: -11.5,-34.5 parent: 31 - - uid: 4841 + - uid: 2884 components: - type: Transform - pos: 0.5,-27.5 + pos: -9.5,-33.5 parent: 31 - - uid: 4863 + - uid: 2885 components: - type: Transform - pos: 12.5,23.5 + pos: -9.5,-27.5 parent: 31 - - uid: 4868 + - uid: 2887 components: - type: Transform - pos: 1.5,-30.5 + pos: -9.5,-29.5 parent: 31 - - uid: 4999 + - uid: 2888 components: - type: Transform - pos: -0.5,-10.5 + pos: -9.5,-34.5 parent: 31 - - uid: 5377 + - uid: 2892 components: - type: Transform - pos: -15.5,-7.5 + pos: 20.5,-13.5 parent: 31 - - uid: 5379 + - uid: 2904 components: - type: Transform - pos: -14.5,-7.5 + pos: -9.5,-36.5 parent: 31 - - uid: 5650 + - uid: 2905 components: - type: Transform - pos: -4.5,-21.5 + pos: 14.5,-8.5 parent: 31 - - uid: 5692 + - uid: 2908 components: - type: Transform - pos: -9.5,-35.5 + pos: -12.5,-11.5 parent: 31 - - uid: 5701 + - uid: 3068 components: - type: Transform - pos: 14.5,-24.5 + pos: -4.5,17.5 parent: 31 - - uid: 5720 + - uid: 3108 components: - type: Transform - pos: -9.5,-32.5 + pos: 59.5,7.5 parent: 31 - - uid: 5721 + - uid: 3111 components: - type: Transform - pos: -9.5,-31.5 + pos: 58.5,7.5 parent: 31 - - uid: 5725 + - uid: 3144 components: - type: Transform - pos: -6.5,-27.5 + pos: 43.5,10.5 parent: 31 - - uid: 5726 + - uid: 3147 components: - type: Transform - pos: -8.5,-27.5 + pos: 19.5,-13.5 parent: 31 - - uid: 5728 + - uid: 3148 components: - type: Transform - pos: -5.5,-27.5 + pos: 26.5,11.5 parent: 31 - - uid: 5736 + - uid: 3174 components: - type: Transform - pos: -7.5,-19.5 + pos: 18.5,-11.5 parent: 31 - - uid: 5744 + - uid: 3184 components: - type: Transform - pos: -10.5,-19.5 + pos: 12.5,15.5 parent: 31 - - uid: 5748 + - uid: 3190 components: - type: Transform - pos: -10.5,-25.5 + pos: 12.5,14.5 parent: 31 - - uid: 5749 + - uid: 3205 components: - type: Transform - pos: -13.5,-25.5 + pos: 14.5,13.5 parent: 31 - - uid: 5750 + - uid: 3221 components: - type: Transform - pos: -12.5,-25.5 + pos: 18.5,-10.5 parent: 31 - - uid: 5751 + - uid: 3351 components: - type: Transform - pos: -15.5,-23.5 + pos: -3.5,17.5 parent: 31 - - uid: 5753 + - uid: 3352 components: - type: Transform - pos: -4.5,-27.5 + pos: -2.5,17.5 parent: 31 - - uid: 5755 + - uid: 3353 components: - type: Transform - pos: -1.5,-27.5 + pos: -1.5,17.5 parent: 31 - - uid: 5759 + - uid: 3356 components: - type: Transform - pos: 0.5,-30.5 + pos: 14.5,-25.5 parent: 31 - - uid: 5761 + - uid: 3357 components: - type: Transform - pos: 0.5,-29.5 + pos: -0.5,17.5 parent: 31 - - uid: 5782 + - uid: 3366 components: - type: Transform - pos: 14.5,-23.5 + pos: -9.5,-19.5 parent: 31 - - uid: 5981 + - uid: 3370 components: - type: Transform - pos: -12.5,15.5 + pos: -8.5,-19.5 parent: 31 - - uid: 5982 + - uid: 3372 components: - type: Transform - pos: -9.5,15.5 + pos: -11.5,-33.5 parent: 31 - - uid: 6099 + - uid: 3373 components: - type: Transform - pos: -11.5,-27.5 + pos: -10.5,-35.5 parent: 31 - - uid: 6296 + - uid: 3479 components: - type: Transform - pos: -10.5,-20.5 + pos: -19.5,15.5 parent: 31 - - uid: 6371 + - uid: 3481 components: - type: Transform - pos: 34.5,10.5 + pos: 12.5,16.5 parent: 31 - - uid: 6372 + - uid: 3589 components: - type: Transform - pos: 35.5,10.5 + pos: 12.5,24.5 parent: 31 - - uid: 6373 + - uid: 3597 components: - type: Transform - pos: 37.5,10.5 + pos: 27.5,13.5 parent: 31 - - uid: 6450 + - uid: 3598 components: - type: Transform - pos: 43.5,6.5 + pos: 28.5,13.5 parent: 31 - - uid: 6460 + - uid: 3600 components: - type: Transform - pos: 43.5,8.5 + pos: 26.5,13.5 parent: 31 - - uid: 6461 + - uid: 3603 components: - type: Transform - pos: 43.5,7.5 + pos: 25.5,12.5 parent: 31 - - uid: 6530 + - uid: 3604 components: - type: Transform - pos: 48.5,10.5 + pos: 24.5,12.5 parent: 31 - - uid: 6531 + - uid: 3605 components: - type: Transform - pos: 47.5,10.5 + pos: 23.5,12.5 parent: 31 - - uid: 6536 + - uid: 3606 components: - type: Transform - pos: 50.5,10.5 + pos: 22.5,12.5 parent: 31 - - uid: 6554 + - uid: 3607 components: - type: Transform - pos: 36.5,10.5 + pos: 21.5,12.5 parent: 31 - - uid: 6555 + - uid: 3608 components: - type: Transform - pos: 34.5,9.5 + pos: 20.5,12.5 parent: 31 - - uid: 6556 + - uid: 3609 components: - type: Transform - pos: 34.5,8.5 + pos: 19.5,12.5 parent: 31 - - uid: 6588 + - uid: 3610 components: - type: Transform - pos: 34.5,7.5 + pos: 18.5,12.5 parent: 31 - - uid: 6589 + - uid: 3611 components: - type: Transform - pos: 34.5,6.5 + pos: 17.5,12.5 parent: 31 - - uid: 6590 + - uid: 3612 components: - type: Transform - pos: 34.5,5.5 + pos: 16.5,12.5 parent: 31 - - uid: 6591 + - uid: 3613 components: - type: Transform - pos: 34.5,4.5 + pos: 15.5,12.5 parent: 31 - - uid: 6592 + - uid: 3614 components: - type: Transform - pos: 34.5,3.5 + pos: 14.5,12.5 parent: 31 - - uid: 6593 + - uid: 3615 components: - type: Transform - pos: 34.5,2.5 + pos: 12.5,17.5 parent: 31 - - uid: 6594 + - uid: 3616 components: - type: Transform - pos: 34.5,1.5 + pos: 12.5,18.5 parent: 31 - - uid: 6595 + - uid: 3618 components: - type: Transform - pos: 34.5,0.5 + pos: 11.5,24.5 parent: 31 - - uid: 6638 + - uid: 3620 components: - type: Transform - pos: 43.5,9.5 + pos: 10.5,24.5 parent: 31 - - uid: 6643 + - uid: 3621 components: - type: Transform - pos: 49.5,10.5 + pos: 9.5,23.5 parent: 31 - - uid: 6687 + - uid: 3622 components: - type: Transform - pos: 11.5,14.5 + pos: 9.5,22.5 parent: 31 - - uid: 6688 + - uid: 3624 components: - type: Transform - pos: 10.5,14.5 + pos: 9.5,25.5 parent: 31 - - uid: 6689 + - uid: 3628 components: - type: Transform - pos: 9.5,14.5 + pos: 8.5,25.5 parent: 31 - - uid: 6743 + - uid: 3629 components: - type: Transform - pos: 46.5,10.5 + pos: 7.5,25.5 parent: 31 - - uid: 7057 + - uid: 3630 components: - type: Transform - pos: 8.5,14.5 + pos: 6.5,25.5 parent: 31 - - uid: 7106 + - uid: 3631 components: - type: Transform - pos: 24.5,17.5 + pos: 5.5,25.5 parent: 31 - - uid: 7128 + - uid: 3632 components: - type: Transform - pos: 7.5,14.5 + pos: 4.5,25.5 parent: 31 - - uid: 7136 + - uid: 3633 components: - type: Transform - pos: 23.5,-12.5 + pos: 3.5,25.5 parent: 31 - - uid: 7168 + - uid: 3634 components: - type: Transform - pos: 0.5,-8.5 + pos: 2.5,25.5 parent: 31 - - uid: 7209 + - uid: 3635 components: - type: Transform - pos: -26.5,-11.5 + pos: 1.5,25.5 parent: 31 - - uid: 7255 + - uid: 3636 components: - type: Transform - pos: -11.5,-18.5 + pos: 0.5,25.5 parent: 31 - - uid: 7260 + - uid: 3637 components: - type: Transform - pos: -5.5,-21.5 + pos: 0.5,26.5 parent: 31 - - uid: 7404 + - uid: 3639 components: - type: Transform - pos: -16.5,-0.5 + pos: -0.5,26.5 parent: 31 - - uid: 7456 + - uid: 3640 components: - type: Transform - pos: -10.5,-24.5 + pos: -1.5,26.5 parent: 31 - - uid: 7469 + - uid: 3641 components: - type: Transform - pos: -14.5,-25.5 + pos: -2.5,26.5 parent: 31 - - uid: 7589 + - uid: 3642 components: - type: Transform - pos: -10.5,-26.5 + pos: -2.5,27.5 parent: 31 - - uid: 7590 + - uid: 3643 components: - type: Transform - pos: -10.5,-27.5 + pos: 41.5,2.5 parent: 31 - - uid: 7606 + - uid: 3644 components: - type: Transform - pos: 15.5,-25.5 + pos: 42.5,2.5 parent: 31 - - uid: 7635 + - uid: 3645 components: - type: Transform - pos: 7.5,13.5 + pos: 43.5,0.5 parent: 31 - - uid: 7860 + - uid: 3646 components: - type: Transform - pos: 7.5,12.5 + pos: 43.5,1.5 parent: 31 - - uid: 8029 + - uid: 3647 components: - type: Transform - pos: -36.5,-7.5 + pos: 44.5,1.5 parent: 31 - - uid: 8030 + - uid: 3648 components: - type: Transform - pos: -36.5,-8.5 + pos: 45.5,1.5 parent: 31 - - uid: 8031 + - uid: 3649 components: - type: Transform - pos: -37.5,-8.5 + pos: 46.5,1.5 parent: 31 - - uid: 8039 + - uid: 3650 components: - type: Transform - pos: -38.5,-8.5 + pos: 47.5,1.5 parent: 31 - - uid: 8041 + - uid: 3651 components: - type: Transform - pos: -16.5,0.5 + pos: 48.5,1.5 parent: 31 - - uid: 8071 + - uid: 3652 components: - type: Transform - pos: -18.5,16.5 + pos: 48.5,0.5 parent: 31 - - uid: 8077 + - uid: 3653 components: - type: Transform - pos: 12.5,20.5 + pos: 48.5,-0.5 parent: 31 - - uid: 8078 + - uid: 3654 components: - type: Transform - pos: 12.5,19.5 + pos: 48.5,-1.5 parent: 31 - - uid: 8079 + - uid: 3657 components: - type: Transform - pos: 11.5,19.5 + pos: 47.5,-1.5 parent: 31 - - uid: 8080 + - uid: 3659 components: - type: Transform - pos: 10.5,19.5 + pos: 40.5,2.5 parent: 31 - - uid: 8081 + - uid: 3660 components: - type: Transform - pos: 9.5,19.5 + pos: 39.5,-0.5 parent: 31 - - uid: 8082 + - uid: 3661 components: - type: Transform - pos: 9.5,20.5 + pos: 39.5,2.5 parent: 31 - - uid: 8083 + - uid: 3662 components: - type: Transform - pos: 9.5,21.5 + pos: 38.5,2.5 parent: 31 - - uid: 8133 + - uid: 3664 components: - type: Transform - pos: 49.5,1.5 + pos: 37.5,2.5 parent: 31 - - uid: 8144 + - uid: 3665 components: - type: Transform - pos: 61.5,7.5 + pos: 34.5,-0.5 parent: 31 - - uid: 8162 + - uid: 3666 components: - type: Transform - pos: 55.5,5.5 + pos: 33.5,-0.5 parent: 31 - - uid: 8185 + - uid: 3667 components: - type: Transform - pos: 50.5,1.5 + pos: 32.5,-0.5 parent: 31 - - uid: 8186 + - uid: 3668 components: - type: Transform - pos: 51.5,1.5 + pos: 32.5,0.5 parent: 31 - - uid: 8187 + - uid: 3669 components: - type: Transform - pos: 52.5,1.5 + pos: 31.5,0.5 parent: 31 - - uid: 8188 + - uid: 3670 components: - type: Transform - pos: 53.5,1.5 + pos: 31.5,1.5 parent: 31 - - uid: 8189 + - uid: 3671 components: - type: Transform - pos: 54.5,1.5 + pos: 43.5,2.5 parent: 31 - - uid: 8190 + - uid: 3672 components: - type: Transform - pos: 55.5,1.5 + pos: 43.5,3.5 parent: 31 - - uid: 8191 + - uid: 3673 components: - type: Transform - pos: 56.5,1.5 + pos: 43.5,4.5 parent: 31 - - uid: 8192 + - uid: 3674 components: - type: Transform - pos: 57.5,1.5 + pos: 43.5,5.5 parent: 31 - - uid: 8193 + - uid: 3680 components: - type: Transform - pos: 58.5,1.5 + pos: 24.5,18.5 parent: 31 - - uid: 8194 + - uid: 3681 components: - type: Transform - pos: 59.5,1.5 + pos: 21.5,-8.5 parent: 31 - - uid: 8195 + - uid: 3682 components: - type: Transform - pos: 60.5,1.5 + pos: 21.5,-7.5 parent: 31 - - uid: 8196 + - uid: 3683 components: - type: Transform - pos: 60.5,2.5 + pos: 21.5,-6.5 parent: 31 - - uid: 8205 + - uid: 3684 components: - type: Transform - pos: -6.5,-25.5 + pos: 21.5,-5.5 parent: 31 - - uid: 8208 + - uid: 3685 components: - type: Transform - pos: -6.5,-26.5 + pos: 21.5,-4.5 parent: 31 - - uid: 8491 + - uid: 3686 components: - type: Transform - pos: -11.5,-17.5 + pos: 22.5,-4.5 parent: 31 - - uid: 8669 + - uid: 3687 components: - type: Transform - pos: -31.5,-31.5 + pos: 22.5,-3.5 parent: 31 - - uid: 8670 + - uid: 3688 components: - type: Transform - pos: -32.5,-31.5 + pos: 20.5,-9.5 parent: 31 - - uid: 8671 + - uid: 3689 components: - type: Transform - pos: -32.5,-30.5 + pos: 19.5,-9.5 parent: 31 - - uid: 8672 + - uid: 3690 components: - type: Transform - pos: -32.5,-29.5 + pos: 21.5,-9.5 parent: 31 - - uid: 8673 + - uid: 3691 components: - type: Transform - pos: -32.5,-28.5 + pos: 18.5,-9.5 parent: 31 - - uid: 8674 + - uid: 3692 components: - type: Transform - pos: -32.5,-27.5 + pos: 17.5,-9.5 parent: 31 - - uid: 8675 + - uid: 3693 components: - type: Transform - pos: -32.5,-26.5 + pos: 16.5,-9.5 parent: 31 - - uid: 8676 + - uid: 3694 components: - type: Transform - pos: -32.5,-25.5 + pos: 15.5,-9.5 parent: 31 - - uid: 8782 + - uid: 3695 components: - type: Transform - pos: -8.5,15.5 + pos: 0.5,17.5 parent: 31 - - uid: 9050 + - uid: 3696 components: - type: Transform - pos: 18.5,-12.5 + pos: 1.5,17.5 parent: 31 - - uid: 9055 + - uid: 3697 components: - type: Transform - pos: -18.5,15.5 + pos: 2.5,17.5 parent: 31 - - uid: 9076 + - uid: 3698 components: - type: Transform - pos: -15.5,0.5 + pos: 3.5,17.5 parent: 31 - - uid: 9082 + - uid: 3699 components: - type: Transform - pos: -18.5,14.5 + pos: 3.5,16.5 parent: 31 - - uid: 9083 + - uid: 3700 components: - type: Transform - pos: -17.5,16.5 + pos: 3.5,15.5 parent: 31 - - uid: 9084 + - uid: 3701 components: - type: Transform - pos: -17.5,14.5 + pos: 8.5,-9.5 parent: 31 - - uid: 9141 + - uid: 3702 components: - type: Transform - pos: 21.5,-11.5 + pos: 3.5,14.5 parent: 31 - - uid: 9202 + - uid: 3704 components: - type: Transform - pos: 55.5,6.5 + pos: -8.5,-36.5 parent: 31 - - uid: 9276 + - uid: 3705 components: - type: Transform - pos: -9.5,-10.5 + pos: -27.5,-14.5 parent: 31 - - uid: 9278 + - uid: 3706 components: - type: Transform - pos: -10.5,-10.5 + pos: -26.5,-14.5 parent: 31 - - uid: 9505 + - uid: 3711 components: - type: Transform - pos: -2.5,-21.5 + pos: 15.5,-8.5 parent: 31 - - uid: 9618 + - uid: 3712 components: - type: Transform - pos: -16.5,14.5 + pos: 15.5,-7.5 parent: 31 - - uid: 9619 + - uid: 3713 components: - type: Transform - pos: -15.5,14.5 + pos: 15.5,-6.5 parent: 31 - - uid: 9620 + - uid: 3714 components: - type: Transform - pos: -14.5,14.5 + pos: 15.5,-5.5 parent: 31 - - uid: 9621 + - uid: 3715 components: - type: Transform - pos: -13.5,14.5 + pos: 15.5,-4.5 parent: 31 - - uid: 9625 + - uid: 3716 components: - type: Transform - pos: -7.5,-21.5 + pos: 15.5,-3.5 parent: 31 - - uid: 9627 + - uid: 3717 components: - type: Transform - pos: -14.5,0.5 + pos: 15.5,-2.5 parent: 31 - - uid: 9684 + - uid: 3718 components: - type: Transform - pos: -7.5,-20.5 + pos: 15.5,-1.5 parent: 31 - - uid: 9734 + - uid: 3719 components: - type: Transform - pos: -11.5,15.5 + pos: 15.5,-0.5 parent: 31 - - uid: 9747 + - uid: 3720 components: - type: Transform - pos: 44.5,8.5 + pos: 15.5,0.5 parent: 31 - - uid: 9869 + - uid: 3721 components: - type: Transform - pos: -12.5,14.5 + pos: 15.5,1.5 parent: 31 - - uid: 9870 + - uid: 3722 components: - type: Transform - pos: -12.5,13.5 + pos: 16.5,1.5 parent: 31 - - uid: 10229 + - uid: 3723 components: - type: Transform - pos: 62.5,7.5 + pos: 16.5,2.5 parent: 31 - - uid: 10235 + - uid: 3746 components: - type: Transform - pos: 63.5,7.5 + pos: 17.5,-13.5 parent: 31 - - uid: 10269 + - uid: 3754 components: - type: Transform - pos: 50.5,-7.5 + pos: -2.5,-10.5 parent: 31 - - uid: 10270 + - uid: 3755 components: - type: Transform - pos: 53.5,-0.5 + pos: -2.5,-9.5 parent: 31 - - uid: 10305 + - uid: 3756 components: - type: Transform - pos: 53.5,-1.5 + pos: -3.5,-9.5 parent: 31 - - uid: 10306 + - uid: 3757 components: - type: Transform - pos: 53.5,-2.5 + pos: -4.5,-9.5 parent: 31 - - uid: 10356 + - uid: 3758 components: - type: Transform - pos: -15.5,-12.5 + pos: -5.5,-9.5 parent: 31 - - uid: 10357 + - uid: 3759 components: - type: Transform - pos: -26.5,-13.5 + pos: -5.5,-8.5 parent: 31 - - uid: 10360 + - uid: 3760 components: - type: Transform - pos: -27.5,-11.5 + pos: -6.5,-9.5 parent: 31 - - uid: 10361 + - uid: 3761 components: - type: Transform - pos: -28.5,-11.5 + pos: -7.5,-9.5 parent: 31 - - uid: 10362 + - uid: 3762 components: - type: Transform - pos: -29.5,-11.5 + pos: -8.5,-9.5 parent: 31 - - uid: 10363 + - uid: 3763 components: - type: Transform - pos: -30.5,-11.5 + pos: -9.5,-9.5 parent: 31 - - uid: 10364 + - uid: 3770 components: - type: Transform - pos: -31.5,-11.5 + pos: -18.5,-3.5 parent: 31 - - uid: 10365 + - uid: 3771 components: - type: Transform - pos: -32.5,-11.5 + pos: -18.5,-2.5 parent: 31 - - uid: 10366 + - uid: 3772 components: - type: Transform - pos: -32.5,-10.5 + pos: -17.5,-2.5 parent: 31 - - uid: 10367 + - uid: 3773 components: - type: Transform - pos: -32.5,-9.5 + pos: -16.5,-2.5 parent: 31 - - uid: 10368 + - uid: 3774 components: - type: Transform - pos: -32.5,-8.5 + pos: -16.5,-3.5 parent: 31 - - uid: 10369 + - uid: 3775 components: - type: Transform - pos: -31.5,-8.5 + pos: -16.5,-4.5 parent: 31 - - uid: 10370 + - uid: 3776 components: - type: Transform - pos: -30.5,-8.5 + pos: -12.5,0.5 parent: 31 - - uid: 10442 + - uid: 3777 components: - type: Transform - pos: -12.5,-12.5 + pos: -12.5,1.5 parent: 31 - - uid: 10445 + - uid: 3778 components: - type: Transform - pos: -14.5,-12.5 + pos: -11.5,1.5 parent: 31 - - uid: 10447 + - uid: 3779 components: - type: Transform - pos: -13.5,-12.5 + pos: -11.5,2.5 parent: 31 - - uid: 10525 + - uid: 3781 components: - type: Transform - pos: -13.5,0.5 + pos: -26.5,-4.5 parent: 31 - - uid: 10592 + - uid: 3782 components: - type: Transform - pos: 53.5,-3.5 + pos: -25.5,-4.5 parent: 31 - - uid: 10594 + - uid: 3783 components: - type: Transform - pos: 53.5,-4.5 + pos: -25.5,-6.5 parent: 31 - - uid: 10595 + - uid: 3784 components: - type: Transform - pos: 54.5,-4.5 + pos: -25.5,-7.5 parent: 31 - - uid: 10596 + - uid: 3785 components: - type: Transform - pos: 55.5,-4.5 + pos: -25.5,-5.5 parent: 31 - - uid: 10607 + - uid: 3786 components: - type: Transform - pos: 55.5,-3.5 + pos: -30.5,9.5 parent: 31 - - uid: 10609 + - uid: 3789 components: - type: Transform - pos: 50.5,-6.5 + pos: -15.5,-9.5 parent: 31 - - uid: 10610 + - uid: 3790 components: - type: Transform - pos: 52.5,-4.5 + pos: -14.5,-9.5 parent: 31 - - uid: 10611 + - uid: 3791 components: - type: Transform - pos: 51.5,-4.5 + pos: -14.5,-8.5 parent: 31 - - uid: 10612 + - uid: 3792 components: - type: Transform - pos: 50.5,-4.5 + pos: -32.5,-6.5 parent: 31 - - uid: 10614 + - uid: 3796 components: - type: Transform - pos: 49.5,-4.5 + pos: -33.5,-6.5 parent: 31 - - uid: 10848 + - uid: 3798 components: - type: Transform - pos: 50.5,-5.5 + pos: -25.5,-8.5 parent: 31 - - uid: 10867 + - uid: 3799 components: - type: Transform - pos: 55.5,-6.5 + pos: -26.5,-8.5 parent: 31 - - uid: 10868 + - uid: 3800 components: - type: Transform - pos: 53.5,-8.5 + pos: -27.5,-8.5 parent: 31 - - uid: 10869 + - uid: 3801 components: - type: Transform - pos: 53.5,-9.5 + pos: -28.5,-8.5 parent: 31 - - uid: 10871 + - uid: 3802 components: - type: Transform - pos: 55.5,-9.5 + pos: -29.5,-8.5 parent: 31 - - uid: 10872 + - uid: 3803 components: - type: Transform - pos: 52.5,-8.5 + pos: -34.5,-6.5 parent: 31 - - uid: 10873 + - uid: 3804 components: - type: Transform - pos: 51.5,-8.5 + pos: -35.5,-6.5 parent: 31 - - uid: 10874 + - uid: 3809 components: - type: Transform - pos: 50.5,-8.5 + pos: -32.5,7.5 parent: 31 - - uid: 10877 + - uid: 3810 components: - type: Transform - pos: 55.5,-7.5 + pos: -32.5,8.5 parent: 31 - - uid: 10878 + - uid: 3811 components: - type: Transform - pos: 55.5,-8.5 + pos: -32.5,9.5 parent: 31 - - uid: 10963 + - uid: 3812 components: - type: Transform - pos: 51.5,-3.5 + pos: -33.5,9.5 parent: 31 - - uid: 10964 + - uid: 3813 components: - type: Transform - pos: 51.5,-2.5 + pos: -34.5,9.5 parent: 31 - - uid: 10965 + - uid: 3814 components: - type: Transform - pos: 54.5,-9.5 + pos: -35.5,9.5 parent: 31 - - uid: 11073 + - uid: 3815 components: - type: Transform - pos: 3.5,13.5 + pos: -36.5,9.5 parent: 31 - - uid: 11202 + - uid: 3816 components: - type: Transform - pos: 16.5,-27.5 + pos: -37.5,9.5 parent: 31 - - uid: 11203 + - uid: 3817 components: - type: Transform - pos: -28.5,-13.5 + pos: -38.5,9.5 parent: 31 - - uid: 11210 + - uid: 3818 components: - type: Transform - pos: -28.5,-14.5 + pos: -38.5,10.5 parent: 31 - - uid: 11211 + - uid: 3819 components: - type: Transform - pos: 4.5,13.5 + pos: -39.5,10.5 parent: 31 - - uid: 11212 + - uid: 3820 components: - type: Transform - pos: 5.5,13.5 + pos: -39.5,11.5 parent: 31 - - uid: 11248 + - uid: 3822 components: - type: Transform - pos: -31.5,7.5 + pos: -31.5,9.5 parent: 31 - - uid: 11285 + - uid: 3837 components: - type: Transform - pos: 45.5,8.5 + pos: -12.5,12.5 parent: 31 - - uid: 11286 + - uid: 3839 components: - type: Transform - pos: 46.5,8.5 + pos: 21.5,-13.5 parent: 31 - - uid: 11287 + - uid: 3846 components: - type: Transform - pos: 46.5,9.5 + pos: -6.5,15.5 parent: 31 - - uid: 11327 + - uid: 3847 components: - type: Transform - pos: 6.5,13.5 + pos: -5.5,15.5 parent: 31 - - uid: 11333 + - uid: 3848 components: - type: Transform - pos: 20.5,-23.5 + pos: -15.5,-4.5 parent: 31 - - uid: 11337 + - uid: 3850 components: - type: Transform - pos: 20.5,-24.5 + pos: -16.5,16.5 parent: 31 - - uid: 11339 + - uid: 3870 components: - type: Transform - pos: 20.5,-25.5 + pos: -4.5,15.5 parent: 31 - - uid: 11340 + - uid: 3879 components: - type: Transform - pos: 19.5,-25.5 + pos: -31.5,-12.5 parent: 31 - - uid: 11341 + - uid: 3896 components: - type: Transform - pos: 18.5,-25.5 + pos: -7.5,15.5 parent: 31 - - uid: 11342 + - uid: 3919 components: - type: Transform - pos: 17.5,-25.5 + pos: -15.5,-5.5 parent: 31 - - uid: 11343 + - uid: 3920 components: - type: Transform - pos: 16.5,-25.5 + pos: 13.5,-23.5 parent: 31 - - uid: 11345 + - uid: 4054 components: - type: Transform - pos: 24.5,16.5 + pos: -5.5,-7.5 parent: 31 - - uid: 11346 + - uid: 4139 components: - type: Transform - pos: 25.5,16.5 + pos: 8.5,27.5 parent: 31 - - uid: 11347 + - uid: 4201 components: - type: Transform - pos: 26.5,16.5 + pos: -10.5,15.5 parent: 31 - - uid: 11348 + - uid: 4338 components: - type: Transform - pos: 26.5,15.5 + pos: 18.5,-13.5 parent: 31 - - uid: 11349 + - uid: 4467 components: - type: Transform - pos: 26.5,14.5 + pos: -15.5,-6.5 parent: 31 - - uid: 11483 + - uid: 4822 components: - type: Transform - pos: -12.5,-35.5 + pos: 23.5,-11.5 parent: 31 - - uid: 11487 + - uid: 4841 components: - type: Transform - pos: -14.5,-35.5 + pos: 0.5,-27.5 parent: 31 - - uid: 11488 + - uid: 4863 components: - type: Transform - pos: -13.5,-35.5 + pos: 12.5,23.5 parent: 31 - - uid: 11489 + - uid: 4868 components: - type: Transform - pos: -15.5,-35.5 + pos: 1.5,-30.5 parent: 31 - - uid: 11491 + - uid: 4999 components: - type: Transform - pos: -16.5,-35.5 + pos: -0.5,-10.5 parent: 31 - - uid: 11494 + - uid: 5377 components: - type: Transform - pos: -17.5,-35.5 + pos: -15.5,-7.5 parent: 31 - - uid: 11506 + - uid: 5379 components: - type: Transform - pos: -18.5,-35.5 + pos: -14.5,-7.5 parent: 31 - - uid: 11507 + - uid: 5650 components: - type: Transform - pos: -19.5,-35.5 + pos: -4.5,-21.5 parent: 31 - - uid: 11508 + - uid: 5692 components: - type: Transform - pos: -19.5,-34.5 + pos: -9.5,-35.5 parent: 31 - - uid: 11509 + - uid: 5701 components: - type: Transform - pos: -19.5,-33.5 + pos: 14.5,-24.5 parent: 31 - - uid: 11510 + - uid: 5720 components: - type: Transform - pos: -19.5,-32.5 + pos: -9.5,-32.5 parent: 31 - - uid: 11511 + - uid: 5721 components: - type: Transform - pos: -19.5,-31.5 + pos: -9.5,-31.5 parent: 31 - - uid: 11512 + - uid: 5725 components: - type: Transform - pos: -19.5,-30.5 + pos: -6.5,-27.5 parent: 31 - - uid: 11513 + - uid: 5726 components: - type: Transform - pos: -19.5,-29.5 + pos: -8.5,-27.5 parent: 31 - - uid: 11514 + - uid: 5728 components: - type: Transform - pos: -19.5,-28.5 + pos: -5.5,-27.5 parent: 31 -- proto: CableMVStack - entities: - - uid: 48 + - uid: 5736 components: - type: Transform - pos: 48.35775,5.619252 + pos: -7.5,-19.5 parent: 31 - - uid: 152 + - uid: 5744 components: - type: Transform - pos: 29.54536,1.4761796 + pos: -10.5,-19.5 parent: 31 - - uid: 712 + - uid: 5748 components: - type: Transform - pos: 48.35775,5.619252 + pos: -10.5,-25.5 parent: 31 -- proto: CableTerminal - entities: - - uid: 4327 + - uid: 5749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-29.5 + pos: -13.5,-25.5 parent: 31 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 4328 + - uid: 5750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + pos: -12.5,-25.5 parent: 31 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 6414 + - uid: 5751 components: - type: Transform - pos: 40.5,6.5 + pos: -15.5,-23.5 parent: 31 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 6930 + - uid: 5753 components: - type: Transform - pos: 42.5,6.5 + pos: -4.5,-27.5 parent: 31 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 6941 + - uid: 5755 components: - type: Transform - pos: 41.5,6.5 + pos: -1.5,-27.5 parent: 31 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 7913 + - uid: 5759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,3.5 + pos: 0.5,-30.5 parent: 31 - - uid: 8573 + - uid: 5761 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 + pos: 0.5,-29.5 parent: 31 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 10255 + - uid: 5782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-1.5 + pos: 14.5,-23.5 parent: 31 -- proto: CandyBowl - entities: - - uid: 1105 + - uid: 5981 components: - type: Transform - pos: 5.4776692,21.540764 + pos: -12.5,15.5 parent: 31 - - uid: 1912 + - uid: 5982 components: - type: Transform - pos: 6.4716253,-3.2451885 + pos: -9.5,15.5 parent: 31 -- proto: CannabisSeeds - entities: - - uid: 11700 + - uid: 6099 components: - type: Transform - pos: 5.6265216,-33.554047 + pos: -11.5,-27.5 parent: 31 -- proto: CaptainIDCard - entities: - - uid: 4684 + - uid: 6296 components: - type: Transform - pos: 6.5105124,24.655684 + pos: -10.5,-20.5 parent: 31 -- proto: CarbonDioxideCanister - entities: - - uid: 6877 + - uid: 6371 components: - type: Transform - pos: 40.5,23.5 + pos: 34.5,10.5 parent: 31 - - uid: 10010 + - uid: 6372 components: - type: Transform - pos: 36.5,12.5 + pos: 35.5,10.5 parent: 31 -- proto: Carpet - entities: - - uid: 1275 + - uid: 6373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 + pos: 37.5,10.5 parent: 31 - - uid: 1376 + - uid: 6450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,21.5 + pos: 43.5,6.5 parent: 31 - - uid: 1916 + - uid: 6460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-6.5 + pos: 43.5,8.5 parent: 31 - - uid: 1917 + - uid: 6461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 + pos: 43.5,7.5 parent: 31 - - uid: 4059 + - uid: 6530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-5.5 + pos: 48.5,10.5 parent: 31 - - uid: 4160 + - uid: 6531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 + pos: 47.5,10.5 parent: 31 - - uid: 4161 + - uid: 6536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: 50.5,10.5 parent: 31 - - uid: 4700 + - uid: 6554 components: - type: Transform - pos: -7.5,21.5 + pos: 36.5,10.5 parent: 31 - - uid: 8271 + - uid: 6555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 + pos: 34.5,9.5 parent: 31 - - uid: 8919 + - uid: 6556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 + pos: 34.5,8.5 parent: 31 - - uid: 8920 + - uid: 6588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-6.5 + pos: 34.5,7.5 parent: 31 - - uid: 8921 + - uid: 6589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-7.5 + pos: 34.5,6.5 parent: 31 - - uid: 8922 + - uid: 6590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 + pos: 34.5,5.5 parent: 31 - - uid: 8923 + - uid: 6591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-7.5 + pos: 34.5,4.5 parent: 31 - - uid: 8924 + - uid: 6592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-6.5 + pos: 34.5,3.5 parent: 31 - - uid: 8925 + - uid: 6593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-6.5 + pos: 34.5,2.5 parent: 31 - - uid: 8926 + - uid: 6594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 + pos: 34.5,1.5 parent: 31 - - uid: 8927 + - uid: 6595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 + pos: 34.5,0.5 parent: 31 - - uid: 8928 + - uid: 6638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 + pos: 43.5,9.5 parent: 31 - - uid: 8929 + - uid: 6643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-4.5 + pos: 49.5,10.5 parent: 31 - - uid: 8931 + - uid: 6687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 + pos: 11.5,14.5 parent: 31 - - uid: 8932 + - uid: 6688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 + pos: 10.5,14.5 parent: 31 - - uid: 8933 + - uid: 6689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 + pos: 9.5,14.5 parent: 31 - - uid: 9887 + - uid: 6743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-38.5 + pos: 46.5,10.5 parent: 31 - - uid: 9888 + - uid: 7057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 + pos: 8.5,14.5 parent: 31 - - uid: 9890 + - uid: 7106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-38.5 + pos: 24.5,17.5 parent: 31 - - uid: 9891 + - uid: 7128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-39.5 + pos: 7.5,14.5 parent: 31 - - uid: 9914 + - uid: 7136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-38.5 + pos: 23.5,-12.5 parent: 31 - - uid: 9936 + - uid: 7168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-39.5 + pos: 0.5,-8.5 parent: 31 - - uid: 9940 + - uid: 7209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-39.5 + pos: -26.5,-11.5 parent: 31 - - uid: 9942 + - uid: 7255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 + pos: -11.5,-18.5 parent: 31 - - uid: 10321 + - uid: 7260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-8.5 + pos: -5.5,-21.5 parent: 31 - - uid: 10322 + - uid: 7404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 + pos: -16.5,-0.5 parent: 31 - - uid: 11039 + - uid: 7456 components: - type: Transform - pos: -8.5,22.5 + pos: -10.5,-24.5 parent: 31 - - uid: 11040 + - uid: 7469 components: - type: Transform - pos: -9.5,22.5 + pos: -14.5,-25.5 parent: 31 - - uid: 11723 + - uid: 7589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-33.5 + pos: -10.5,-26.5 parent: 31 - - uid: 11724 + - uid: 7590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-34.5 + pos: -10.5,-27.5 parent: 31 - - uid: 11725 + - uid: 7606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-35.5 + pos: 15.5,-25.5 parent: 31 - - uid: 11726 + - uid: 7635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-35.5 + pos: 7.5,13.5 parent: 31 - - uid: 11727 + - uid: 7860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-34.5 + pos: 7.5,12.5 parent: 31 - - uid: 11728 + - uid: 8029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-33.5 + pos: -36.5,-7.5 parent: 31 - - uid: 11729 + - uid: 8030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-32.5 + pos: -36.5,-8.5 parent: 31 - - uid: 11730 + - uid: 8031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-32.5 + pos: -37.5,-8.5 parent: 31 -- proto: CarpetBlack - entities: - - uid: 1449 + - uid: 8039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 + pos: -38.5,-8.5 parent: 31 - - uid: 4184 + - uid: 8041 components: - type: Transform - pos: -1.5,24.5 + pos: -16.5,0.5 parent: 31 - - uid: 4189 + - uid: 8071 components: - type: Transform - pos: -1.5,25.5 + pos: -18.5,16.5 parent: 31 - - uid: 6281 + - uid: 8077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 + pos: 12.5,20.5 parent: 31 - - uid: 6309 + - uid: 8078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,17.5 + pos: 12.5,19.5 parent: 31 - - uid: 7360 + - uid: 8079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-7.5 + pos: 11.5,19.5 parent: 31 - - uid: 7361 + - uid: 8080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-6.5 + pos: 10.5,19.5 parent: 31 - - uid: 7362 + - uid: 8081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-6.5 + pos: 9.5,19.5 parent: 31 - - uid: 7363 + - uid: 8082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 + pos: 9.5,20.5 parent: 31 -- proto: CarpetBlue - entities: - - uid: 20 + - uid: 8083 components: - type: Transform - pos: 11.5,23.5 + pos: 9.5,21.5 parent: 31 - - uid: 63 + - uid: 8133 components: - type: Transform - pos: 7.5,23.5 + pos: 49.5,1.5 parent: 31 - - uid: 73 + - uid: 8144 components: - type: Transform - pos: 11.5,24.5 + pos: 61.5,7.5 parent: 31 - - uid: 491 + - uid: 8162 components: - type: Transform - pos: 6.5,24.5 + pos: 55.5,5.5 parent: 31 - - uid: 568 + - uid: 8185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 + pos: 50.5,1.5 parent: 31 - - uid: 989 + - uid: 8186 components: - type: Transform - pos: 12.5,23.5 + pos: 51.5,1.5 parent: 31 - - uid: 2129 + - uid: 8187 components: - type: Transform - pos: 25.5,-9.5 + pos: 52.5,1.5 parent: 31 - - uid: 3270 + - uid: 8188 components: - type: Transform - pos: 8.5,23.5 + pos: 53.5,1.5 parent: 31 - - uid: 3271 + - uid: 8189 components: - type: Transform - pos: 6.5,23.5 + pos: 54.5,1.5 parent: 31 - - uid: 3273 + - uid: 8190 components: - type: Transform - pos: 7.5,24.5 + pos: 55.5,1.5 parent: 31 - - uid: 4107 + - uid: 8191 components: - type: Transform - pos: -29.5,-1.5 + pos: 56.5,1.5 parent: 31 - - uid: 4108 + - uid: 8192 components: - type: Transform - pos: -29.5,-2.5 + pos: 57.5,1.5 parent: 31 - - uid: 4109 + - uid: 8193 components: - type: Transform - pos: -28.5,-1.5 + pos: 58.5,1.5 parent: 31 - - uid: 4110 + - uid: 8194 components: - type: Transform - pos: -28.5,-2.5 + pos: 59.5,1.5 parent: 31 - - uid: 4922 + - uid: 8195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + pos: 60.5,1.5 parent: 31 - - uid: 5121 + - uid: 8196 components: - type: Transform - pos: 8.5,24.5 + pos: 60.5,2.5 parent: 31 - - uid: 5137 + - uid: 8205 components: - type: Transform - pos: 12.5,24.5 + pos: -6.5,-25.5 parent: 31 - - uid: 7074 + - uid: 8208 components: - type: Transform - pos: 25.5,-10.5 + pos: -6.5,-26.5 parent: 31 - - uid: 7463 + - uid: 8491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 + pos: -11.5,-17.5 parent: 31 - - uid: 8344 + - uid: 8669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 + pos: -31.5,-31.5 parent: 31 - - uid: 11074 + - uid: 8670 components: - type: Transform - pos: -33.5,18.5 + pos: -32.5,-31.5 parent: 31 - - uid: 11075 + - uid: 8671 components: - type: Transform - pos: -33.5,17.5 + pos: -32.5,-30.5 parent: 31 - - uid: 11076 + - uid: 8672 components: - type: Transform - pos: -34.5,17.5 + pos: -32.5,-29.5 parent: 31 -- proto: CarpetGreen - entities: - - uid: 2452 + - uid: 8673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: -32.5,-28.5 parent: 31 - - uid: 4058 + - uid: 8674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 + pos: -32.5,-27.5 parent: 31 - - uid: 4062 + - uid: 8675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: -32.5,-26.5 parent: 31 - - uid: 4099 + - uid: 8676 components: - type: Transform - pos: -29.5,1.5 + pos: -32.5,-25.5 parent: 31 - - uid: 4100 + - uid: 8782 components: - type: Transform - pos: -29.5,0.5 + pos: -8.5,15.5 parent: 31 - - uid: 4101 + - uid: 9050 components: - type: Transform - pos: -28.5,1.5 + pos: 18.5,-12.5 parent: 31 - - uid: 4102 + - uid: 9055 components: - type: Transform - pos: -28.5,0.5 + pos: -18.5,15.5 parent: 31 - - uid: 8423 + - uid: 9076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 + pos: -15.5,0.5 parent: 31 - - uid: 8726 + - uid: 9082 components: - type: Transform - pos: -34.5,-29.5 + pos: -18.5,14.5 parent: 31 - - uid: 8727 + - uid: 9083 components: - type: Transform - pos: -34.5,-28.5 + pos: -17.5,16.5 parent: 31 - - uid: 8728 + - uid: 9084 components: - type: Transform - pos: -35.5,-28.5 + pos: -17.5,14.5 parent: 31 - - uid: 8729 + - uid: 9141 components: - type: Transform - pos: -36.5,-28.5 + pos: 21.5,-11.5 parent: 31 - - uid: 8730 + - uid: 9202 components: - type: Transform - pos: -36.5,-29.5 + pos: 55.5,6.5 parent: 31 - - uid: 8731 + - uid: 9276 components: - type: Transform - pos: -35.5,-29.5 + pos: -9.5,-10.5 parent: 31 - - uid: 8911 + - uid: 9278 components: - type: Transform - pos: -24.5,-2.5 + pos: -10.5,-10.5 parent: 31 - - uid: 8912 + - uid: 9505 components: - type: Transform - pos: -23.5,-2.5 + pos: -2.5,-21.5 parent: 31 - - uid: 8913 + - uid: 9618 components: - type: Transform - pos: -23.5,-1.5 + pos: -16.5,14.5 parent: 31 - - uid: 8914 + - uid: 9619 components: - type: Transform - pos: -24.5,-1.5 + pos: -15.5,14.5 parent: 31 -- proto: CarpetOrange - entities: - - uid: 22 + - uid: 9620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 + pos: -14.5,14.5 parent: 31 - - uid: 40 + - uid: 9621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 + pos: -13.5,14.5 parent: 31 - - uid: 82 + - uid: 9625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 + pos: -7.5,-21.5 parent: 31 - - uid: 102 + - uid: 9627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 + pos: -14.5,0.5 parent: 31 - - uid: 107 + - uid: 9684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 + pos: -7.5,-20.5 parent: 31 - - uid: 119 + - uid: 9734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 + pos: -11.5,15.5 parent: 31 - - uid: 559 + - uid: 9747 components: - type: Transform - pos: -3.5,-0.5 + pos: 44.5,8.5 parent: 31 - - uid: 832 + - uid: 9869 components: - type: Transform - pos: 29.5,8.5 + pos: -12.5,14.5 parent: 31 - - uid: 985 + - uid: 9870 components: - type: Transform - pos: 38.5,-0.5 + pos: -12.5,13.5 parent: 31 - - uid: 1046 + - uid: 10229 components: - type: Transform - pos: -5.5,-0.5 + pos: 62.5,7.5 parent: 31 - - uid: 1154 + - uid: 10235 components: - type: Transform - pos: 38.5,-1.5 + pos: 63.5,7.5 parent: 31 - - uid: 1338 + - uid: 10269 components: - type: Transform - pos: -4.5,-0.5 + pos: 50.5,-7.5 parent: 31 - - uid: 1607 + - uid: 10270 components: - type: Transform - pos: 39.5,-0.5 + pos: 53.5,-0.5 parent: 31 - - uid: 1608 + - uid: 10305 components: - type: Transform - pos: 39.5,-1.5 + pos: 53.5,-1.5 parent: 31 - - uid: 2387 + - uid: 10306 components: - type: Transform - pos: -6.5,-0.5 + pos: 53.5,-2.5 parent: 31 - - uid: 2945 + - uid: 10356 components: - type: Transform - pos: 28.5,8.5 + pos: -15.5,-12.5 parent: 31 - - uid: 3751 + - uid: 10357 components: - type: Transform - pos: -7.5,-0.5 + pos: -26.5,-13.5 parent: 31 - - uid: 3752 + - uid: 10360 components: - type: Transform - pos: -2.5,-0.5 + pos: -27.5,-11.5 parent: 31 - - uid: 6242 + - uid: 10361 components: - type: Transform - pos: 27.5,8.5 + pos: -28.5,-11.5 parent: 31 - - uid: 8426 + - uid: 10362 components: - type: Transform - pos: -2.5,-2.5 + pos: -29.5,-11.5 parent: 31 - - uid: 8427 + - uid: 10363 components: - type: Transform - pos: -3.5,-2.5 + pos: -30.5,-11.5 parent: 31 - - uid: 8428 + - uid: 10364 components: - type: Transform - pos: -4.5,-2.5 + pos: -31.5,-11.5 parent: 31 - - uid: 8429 + - uid: 10365 components: - type: Transform - pos: -4.5,-1.5 + pos: -32.5,-11.5 parent: 31 - - uid: 8430 + - uid: 10366 components: - type: Transform - pos: -3.5,-1.5 + pos: -32.5,-10.5 parent: 31 - - uid: 8431 + - uid: 10367 components: - type: Transform - pos: -2.5,-1.5 + pos: -32.5,-9.5 parent: 31 - - uid: 11388 + - uid: 10368 components: - type: Transform - pos: 40.5,-1.5 + pos: -32.5,-8.5 parent: 31 - - uid: 11389 + - uid: 10369 components: - type: Transform - pos: 41.5,-1.5 + pos: -31.5,-8.5 parent: 31 -- proto: CarpetPink - entities: - - uid: 4103 + - uid: 10370 components: - type: Transform - pos: -29.5,-4.5 + pos: -30.5,-8.5 parent: 31 - - uid: 4104 + - uid: 10442 components: - type: Transform - pos: -29.5,-5.5 + pos: -12.5,-12.5 parent: 31 - - uid: 4105 + - uid: 10445 components: - type: Transform - pos: -28.5,-4.5 + pos: -14.5,-12.5 parent: 31 - - uid: 4106 + - uid: 10447 components: - type: Transform - pos: -28.5,-5.5 + pos: -13.5,-12.5 parent: 31 -- proto: CarpetPurple - entities: - - uid: 1686 + - uid: 10525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 + pos: -13.5,0.5 parent: 31 - - uid: 1698 + - uid: 10592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-23.5 + pos: 53.5,-3.5 parent: 31 - - uid: 2087 + - uid: 10594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 + pos: 53.5,-4.5 parent: 31 - - uid: 2125 + - uid: 10595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-22.5 + pos: 54.5,-4.5 parent: 31 - - uid: 4718 + - uid: 10596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 + pos: 55.5,-4.5 parent: 31 - - uid: 5122 + - uid: 10607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 + pos: 55.5,-3.5 parent: 31 - - uid: 5261 + - uid: 10609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-22.5 + pos: 50.5,-6.5 parent: 31 - - uid: 5672 + - uid: 10610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-24.5 + pos: 52.5,-4.5 parent: 31 - - uid: 5677 + - uid: 10611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 51.5,-4.5 parent: 31 - - uid: 5679 + - uid: 10612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: 50.5,-4.5 parent: 31 - - uid: 5706 + - uid: 10614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 + pos: 49.5,-4.5 parent: 31 - - uid: 5737 + - uid: 10848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 + pos: 50.5,-5.5 parent: 31 - - uid: 5770 + - uid: 10867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 + pos: 55.5,-6.5 parent: 31 - - uid: 5792 + - uid: 10868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 53.5,-8.5 parent: 31 - - uid: 5925 + - uid: 10869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 + pos: 53.5,-9.5 parent: 31 - - uid: 5926 + - uid: 10871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 + pos: 55.5,-9.5 parent: 31 - - uid: 5927 + - uid: 10872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 + pos: 52.5,-8.5 parent: 31 - - uid: 5992 + - uid: 10873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 + pos: 51.5,-8.5 parent: 31 - - uid: 6175 + - uid: 10874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 + pos: 50.5,-8.5 parent: 31 - - uid: 6232 + - uid: 10877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + pos: 55.5,-7.5 parent: 31 - - uid: 6299 + - uid: 10878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-26.5 + pos: 55.5,-8.5 parent: 31 - - uid: 6300 + - uid: 10963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 + pos: 51.5,-3.5 parent: 31 - - uid: 6310 + - uid: 10964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-26.5 + pos: 51.5,-2.5 parent: 31 - - uid: 6318 + - uid: 10965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 + pos: 54.5,-9.5 parent: 31 - - uid: 6321 + - uid: 11073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + pos: 3.5,13.5 parent: 31 - - uid: 6325 + - uid: 11202 components: - type: Transform - pos: 9.5,-29.5 + pos: 16.5,-27.5 parent: 31 - - uid: 6326 + - uid: 11203 components: - type: Transform - pos: 9.5,-30.5 + pos: -28.5,-13.5 parent: 31 - - uid: 6352 + - uid: 11210 components: - type: Transform - pos: 8.5,-30.5 + pos: -28.5,-14.5 parent: 31 - - uid: 6360 + - uid: 11211 components: - type: Transform - pos: 8.5,-29.5 + pos: 4.5,13.5 parent: 31 - - uid: 7700 + - uid: 11212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 + pos: 5.5,13.5 parent: 31 - - uid: 7816 + - uid: 11248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 + pos: -31.5,7.5 parent: 31 - - uid: 8474 + - uid: 11285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 + pos: 45.5,8.5 parent: 31 - - uid: 8475 + - uid: 11286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 + pos: 46.5,8.5 parent: 31 - - uid: 8479 + - uid: 11287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 + pos: 46.5,9.5 parent: 31 - - uid: 8502 + - uid: 11327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 + pos: 6.5,13.5 parent: 31 - - uid: 8506 + - uid: 11333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-17.5 + pos: 20.5,-23.5 parent: 31 - - uid: 8520 + - uid: 11337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-21.5 + pos: 20.5,-24.5 parent: 31 - - uid: 8523 + - uid: 11339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 + pos: 20.5,-25.5 parent: 31 - - uid: 9457 + - uid: 11340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 + pos: 19.5,-25.5 parent: 31 - - uid: 9459 + - uid: 11341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 + pos: 18.5,-25.5 parent: 31 - - uid: 10812 + - uid: 11342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 + pos: 17.5,-25.5 parent: 31 - - uid: 10813 + - uid: 11343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-25.5 + pos: 16.5,-25.5 parent: 31 - - uid: 10814 + - uid: 11345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-24.5 + pos: 24.5,16.5 parent: 31 - - uid: 11283 + - uid: 11346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 + pos: 25.5,16.5 parent: 31 - - uid: 11482 + - uid: 11347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 + pos: 26.5,16.5 parent: 31 - - uid: 11484 + - uid: 11348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 + pos: 26.5,15.5 parent: 31 - - uid: 11485 + - uid: 11349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-22.5 + pos: 26.5,14.5 parent: 31 - - uid: 11486 + - uid: 11483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 31 - - uid: 11623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 31 - - uid: 11624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 31 - - uid: 11625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-22.5 + pos: -12.5,-35.5 parent: 31 - - uid: 11626 + - uid: 11487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 + pos: -14.5,-35.5 parent: 31 - - uid: 11627 + - uid: 11488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-21.5 + pos: -13.5,-35.5 parent: 31 - - uid: 11628 + - uid: 11489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-22.5 + pos: -15.5,-35.5 parent: 31 - - uid: 11629 + - uid: 11491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 + pos: -16.5,-35.5 parent: 31 - - uid: 11630 + - uid: 11494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-21.5 + pos: -17.5,-35.5 parent: 31 - - uid: 11631 + - uid: 11506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 + pos: -18.5,-35.5 parent: 31 - - uid: 11632 + - uid: 11507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-21.5 + pos: -19.5,-35.5 parent: 31 - - uid: 11633 + - uid: 11508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + pos: -19.5,-34.5 parent: 31 - - uid: 11634 + - uid: 11509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 + pos: -19.5,-33.5 parent: 31 - - uid: 11635 + - uid: 11510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-21.5 + pos: -19.5,-32.5 parent: 31 - - uid: 11636 + - uid: 11511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-22.5 + pos: -19.5,-31.5 parent: 31 - - uid: 11637 + - uid: 11512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-22.5 + pos: -19.5,-30.5 parent: 31 - - uid: 11638 + - uid: 11513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-22.5 + pos: -19.5,-29.5 parent: 31 - - uid: 11639 + - uid: 11514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 + pos: -19.5,-28.5 parent: 31 - - uid: 11640 +- proto: CableMVStack + entities: + - uid: 48 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-22.5 + pos: 48.35775,5.619252 parent: 31 - - uid: 11641 + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-20.5 + pos: 29.54536,1.4761796 parent: 31 - - uid: 11642 + - uid: 712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 + pos: 48.35775,5.619252 parent: 31 - - uid: 11643 +- proto: CableTerminal + entities: + - uid: 4327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-18.5 + rot: 3.141592653589793 rad + pos: 14.5,-29.5 parent: 31 - - uid: 11644 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 31 - - uid: 11645 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 + pos: 40.5,6.5 parent: 31 - - uid: 11646 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-16.5 + pos: 38.5,9.5 parent: 31 - - uid: 11647 + - uid: 6836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-17.5 + pos: 39.5,9.5 parent: 31 - - uid: 11648 + - uid: 6855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-18.5 + pos: 40.5,9.5 parent: 31 - - uid: 11649 + - uid: 6930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 + pos: 42.5,6.5 parent: 31 - - uid: 11650 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-20.5 + pos: 41.5,6.5 parent: 31 - - uid: 11654 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 7913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-22.5 + rot: 3.141592653589793 rad + pos: 55.5,3.5 parent: 31 - - uid: 11655 + - uid: 8573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 + rot: 3.141592653589793 rad + pos: -30.5,-32.5 parent: 31 - - uid: 11656 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 10255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 + rot: 3.141592653589793 rad + pos: 52.5,-1.5 parent: 31 - - uid: 11657 + - uid: 12425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-27.5 + pos: 39.5,6.5 parent: 31 - - uid: 11658 +- proto: CandyBowl + entities: + - uid: 1105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 + pos: 5.4776692,21.540764 parent: 31 - - uid: 11659 + - uid: 1912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 + pos: 6.4716253,-3.2451885 parent: 31 - - uid: 11660 +- proto: CannabisSeeds + entities: + - uid: 11700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-27.5 + pos: 5.6265216,-33.554047 parent: 31 - - uid: 11661 +- proto: CaptainIDCard + entities: + - uid: 4684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + pos: 6.5105124,24.655684 parent: 31 - - uid: 11662 +- proto: CarbonDioxideCanister + entities: + - uid: 10010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-27.5 + pos: 36.5,12.5 parent: 31 - - uid: 11671 +- proto: CargoPalletBuy + entities: + - uid: 12155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-29.5 + rot: 3.141592653589793 rad + pos: 22.5,10.5 parent: 31 - - uid: 11672 + - uid: 12156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-30.5 + rot: 3.141592653589793 rad + pos: 22.5,11.5 parent: 31 - - uid: 11673 + - uid: 12157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-31.5 + rot: 3.141592653589793 rad + pos: 23.5,11.5 parent: 31 - - uid: 11674 + - uid: 12158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-31.5 + rot: 3.141592653589793 rad + pos: 23.5,10.5 parent: 31 - - uid: 11675 + - uid: 12159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 + rot: 3.141592653589793 rad + pos: 22.5,9.5 parent: 31 - - uid: 11676 +- proto: CargoPalletSell + entities: + - uid: 12160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-29.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 31 - - uid: 11731 + - uid: 12161 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-30.5 + pos: 20.5,10.5 parent: 31 - - uid: 11732 + - uid: 12162 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-30.5 + pos: 20.5,11.5 parent: 31 - - uid: 11733 + - uid: 12163 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-30.5 + pos: 19.5,11.5 parent: 31 - - uid: 11734 + - uid: 12164 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-24.5 + pos: 19.5,10.5 parent: 31 - - uid: 11735 +- proto: CargoTelepad + entities: + - uid: 12165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-24.5 + pos: 21.5,10.5 parent: 31 - - uid: 11736 +- proto: Carpet + entities: + - uid: 1275 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-24.5 + pos: 0.5,-4.5 parent: 31 - - uid: 11737 + - uid: 1376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + rot: 1.5707963267948966 rad + pos: -8.5,21.5 parent: 31 - - uid: 11738 + - uid: 1916 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-27.5 + pos: -0.5,-6.5 parent: 31 - - uid: 11739 + - uid: 1917 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-26.5 + pos: -0.5,-4.5 parent: 31 -- proto: CarpetSBlue - entities: - - uid: 91 + - uid: 4059 components: - type: Transform - pos: 9.5,19.5 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 parent: 31 - - uid: 1177 + - uid: 4160 components: - type: Transform - pos: 8.5,19.5 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 parent: 31 - - uid: 7155 + - uid: 4161 components: - type: Transform - pos: 9.5,20.5 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 parent: 31 - - uid: 7432 + - uid: 4700 components: - type: Transform - pos: 10.5,16.5 + pos: -7.5,21.5 parent: 31 - - uid: 8418 + - uid: 8271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: -7.5,22.5 parent: 31 - - uid: 9052 + - uid: 8919 components: - type: Transform - pos: 9.5,16.5 + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 parent: 31 -- proto: Catwalk - entities: - - uid: 2 + - uid: 8920 components: - type: Transform - pos: -3.5,21.5 + rot: -1.5707963267948966 rad + pos: -25.5,-6.5 parent: 31 - - uid: 25 + - uid: 8921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,38.5 + rot: -1.5707963267948966 rad + pos: -25.5,-7.5 parent: 31 - - uid: 32 + - uid: 8922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,38.5 + rot: -1.5707963267948966 rad + pos: -23.5,-7.5 parent: 31 - - uid: 187 + - uid: 8923 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-28.5 + pos: -24.5,-7.5 parent: 31 - - uid: 402 + - uid: 8924 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-16.5 + pos: -24.5,-6.5 parent: 31 - - uid: 529 + - uid: 8925 components: - type: Transform - pos: -1.5,21.5 + rot: -1.5707963267948966 rad + pos: -23.5,-6.5 parent: 31 - - uid: 705 + - uid: 8926 components: - type: Transform - pos: -9.5,-10.5 + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 parent: 31 - - uid: 710 + - uid: 8927 components: - type: Transform - pos: -7.5,-10.5 + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 parent: 31 - - uid: 713 + - uid: 8928 components: - type: Transform - pos: -4.5,-10.5 + rot: -1.5707963267948966 rad + pos: -24.5,-4.5 parent: 31 - - uid: 722 + - uid: 8929 components: - type: Transform - pos: -2.5,-10.5 + rot: -1.5707963267948966 rad + pos: -23.5,-4.5 parent: 31 - - uid: 743 + - uid: 8931 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-17.5 + pos: -22.5,-5.5 parent: 31 - - uid: 764 + - uid: 8932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-12.5 + pos: -22.5,-6.5 parent: 31 - - uid: 808 + - uid: 8933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-15.5 + pos: -22.5,-7.5 parent: 31 - - uid: 833 + - uid: 9887 components: - type: Transform - pos: 47.5,-7.5 + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 31 - - uid: 834 + - uid: 9888 components: - type: Transform - pos: 55.5,-8.5 + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 parent: 31 - - uid: 850 + - uid: 9890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-13.5 + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 parent: 31 - - uid: 884 + - uid: 9891 components: - type: Transform - pos: 52.5,-10.5 + rot: 1.5707963267948966 rad + pos: -15.5,-39.5 parent: 31 - - uid: 885 + - uid: 9914 components: - type: Transform - pos: 53.5,-9.5 + rot: 1.5707963267948966 rad + pos: -14.5,-38.5 parent: 31 - - uid: 886 + - uid: 9936 components: - type: Transform - pos: 53.5,-8.5 + rot: 1.5707963267948966 rad + pos: -14.5,-39.5 parent: 31 - - uid: 887 + - uid: 9940 components: - type: Transform - pos: 51.5,-8.5 + rot: 1.5707963267948966 rad + pos: -13.5,-39.5 parent: 31 - - uid: 974 + - uid: 9942 components: - type: Transform - pos: -2.5,21.5 + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 parent: 31 - - uid: 1063 + - uid: 10321 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-14.5 + pos: -24.5,-8.5 parent: 31 - - uid: 1153 + - uid: 10322 components: - type: Transform - pos: -0.5,21.5 + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 parent: 31 - - uid: 1388 + - uid: 11039 components: - type: Transform - pos: 32.5,27.5 + pos: -8.5,22.5 parent: 31 - - uid: 1427 + - uid: 11040 components: - type: Transform - pos: -1.5,-10.5 + pos: -9.5,22.5 parent: 31 - - uid: 1432 + - uid: 11723 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,-33.5 parent: 31 - - uid: 1437 + - uid: 11724 components: - type: Transform - pos: -8.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,-34.5 parent: 31 - - uid: 1438 + - uid: 11725 components: - type: Transform - pos: -5.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,-35.5 parent: 31 - - uid: 1440 + - uid: 11726 components: - type: Transform - pos: -3.5,-10.5 + rot: 3.141592653589793 rad + pos: 6.5,-35.5 parent: 31 - - uid: 1483 + - uid: 11727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,7.5 + rot: 3.141592653589793 rad + pos: 6.5,-34.5 parent: 31 - - uid: 1492 + - uid: 11728 components: - type: Transform - pos: 6.5,14.5 + rot: 3.141592653589793 rad + pos: 6.5,-33.5 parent: 31 - - uid: 1552 + - uid: 11729 components: - type: Transform - pos: -9.5,-8.5 + rot: 3.141592653589793 rad + pos: 6.5,-32.5 parent: 31 - - uid: 1624 + - uid: 11730 components: - type: Transform - pos: 43.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-32.5 parent: 31 - - uid: 1662 +- proto: CarpetBlack + entities: + - uid: 1449 components: - type: Transform - pos: 27.5,-8.5 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 parent: 31 - - uid: 1684 + - uid: 4184 components: - type: Transform - pos: -22.5,-29.5 + pos: -1.5,24.5 parent: 31 - - uid: 1711 + - uid: 4189 components: - type: Transform - pos: 27.5,-12.5 + pos: -1.5,25.5 parent: 31 - - uid: 2146 + - uid: 4234 components: - type: Transform - pos: 43.5,-3.5 + rot: 3.141592653589793 rad + pos: -2.5,-2.5 parent: 31 - - uid: 2157 + - uid: 4239 components: - type: Transform - pos: 12.5,14.5 + rot: 3.141592653589793 rad + pos: -2.5,-1.5 parent: 31 - - uid: 2158 + - uid: 4474 components: - type: Transform - pos: 12.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 parent: 31 - - uid: 2329 + - uid: 4830 components: - type: Transform - pos: 27.5,-13.5 + rot: 3.141592653589793 rad + pos: -3.5,-2.5 parent: 31 - - uid: 2866 + - uid: 4902 components: - type: Transform - pos: 22.5,-19.5 + rot: 3.141592653589793 rad + pos: -4.5,-1.5 parent: 31 - - uid: 3110 + - uid: 4907 components: - type: Transform - pos: 59.5,12.5 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 parent: 31 - - uid: 3279 + - uid: 4920 components: - type: Transform - pos: 43.5,-2.5 + rot: 3.141592653589793 rad + pos: -3.5,-0.5 parent: 31 - - uid: 3412 + - uid: 4952 components: - type: Transform - pos: -19.5,-31.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 31 - - uid: 3414 + - uid: 4983 components: - type: Transform - pos: -19.5,-30.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 31 - - uid: 3656 + - uid: 5029 components: - type: Transform - pos: 55.5,7.5 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 parent: 31 - - uid: 3725 + - uid: 5033 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-38.5 + pos: -7.5,-2.5 parent: 31 - - uid: 3958 + - uid: 5068 components: - type: Transform - pos: 16.5,20.5 + rot: 3.141592653589793 rad + pos: -5.5,-1.5 parent: 31 - - uid: 4219 + - uid: 5092 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-38.5 + pos: -4.5,-2.5 parent: 31 - - uid: 4397 + - uid: 5140 components: - type: Transform - pos: 53.5,-10.5 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 parent: 31 - - uid: 4401 + - uid: 5141 components: - type: Transform - pos: 20.5,-35.5 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 parent: 31 - - uid: 4409 + - uid: 6281 components: - type: Transform - pos: 51.5,-10.5 + rot: 1.5707963267948966 rad + pos: -23.5,17.5 parent: 31 - - uid: 4420 + - uid: 6309 components: - type: Transform - pos: 52.5,-8.5 + rot: 1.5707963267948966 rad + pos: -22.5,17.5 parent: 31 - - uid: 4437 + - uid: 7360 components: - type: Transform - pos: 50.5,-7.5 + rot: 3.141592653589793 rad + pos: -11.5,-7.5 parent: 31 - - uid: 4438 + - uid: 7361 components: - type: Transform - pos: 50.5,-8.5 + rot: 3.141592653589793 rad + pos: -11.5,-6.5 parent: 31 - - uid: 4514 + - uid: 7362 components: - type: Transform - pos: 27.5,-11.5 + rot: 3.141592653589793 rad + pos: -10.5,-6.5 parent: 31 - - uid: 4530 + - uid: 7363 components: - type: Transform - pos: 47.5,-9.5 + rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 31 - - uid: 4537 + - uid: 11464 components: - type: Transform - pos: 48.5,-8.5 + rot: 3.141592653589793 rad + pos: -7.5,-0.5 parent: 31 - - uid: 4871 + - uid: 11471 components: - type: Transform - pos: 28.5,-35.5 + rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 31 - - uid: 4877 + - uid: 12234 components: - type: Transform - pos: 28.5,-27.5 + pos: -3.5,-1.5 parent: 31 - - uid: 5058 +- proto: CarpetBlue + entities: + - uid: 20 components: - type: Transform - pos: 49.5,-8.5 + pos: 11.5,23.5 parent: 31 - - uid: 5246 + - uid: 63 components: - type: Transform - pos: 27.5,-31.5 + pos: 7.5,23.5 parent: 31 - - uid: 5247 + - uid: 73 components: - type: Transform - pos: 28.5,-31.5 + pos: 11.5,24.5 parent: 31 - - uid: 5249 + - uid: 491 components: - type: Transform - pos: 25.5,-31.5 + pos: 6.5,24.5 parent: 31 - - uid: 5265 + - uid: 568 components: - type: Transform - pos: 28.5,-29.5 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 31 - - uid: 5266 + - uid: 989 components: - type: Transform - pos: 28.5,-28.5 + pos: 12.5,23.5 parent: 31 - - uid: 5267 + - uid: 2129 components: - type: Transform - pos: 24.5,-29.5 + pos: 25.5,-9.5 parent: 31 - - uid: 5268 + - uid: 3270 components: - type: Transform - pos: 24.5,-32.5 + pos: 8.5,23.5 parent: 31 - - uid: 5269 + - uid: 3271 components: - type: Transform - pos: 20.5,-34.5 + pos: 6.5,23.5 parent: 31 - - uid: 5270 + - uid: 3273 components: - type: Transform - pos: 24.5,-28.5 + pos: 7.5,24.5 parent: 31 - - uid: 5271 + - uid: 4107 components: - type: Transform - pos: 24.5,-33.5 + pos: -29.5,-1.5 parent: 31 - - uid: 5272 + - uid: 4108 components: - type: Transform - pos: 24.5,-30.5 + pos: -29.5,-2.5 parent: 31 - - uid: 5273 + - uid: 4109 components: - type: Transform - pos: 20.5,-30.5 + pos: -28.5,-1.5 parent: 31 - - uid: 5274 + - uid: 4110 components: - type: Transform - pos: 18.5,-31.5 + pos: -28.5,-2.5 parent: 31 - - uid: 5275 + - uid: 4922 components: - type: Transform - pos: 20.5,-29.5 + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 parent: 31 - - uid: 5276 + - uid: 5121 components: - type: Transform - pos: 26.5,-31.5 + pos: 8.5,24.5 parent: 31 - - uid: 5277 + - uid: 5137 components: - type: Transform - pos: 24.5,-34.5 + pos: 12.5,24.5 parent: 31 - - uid: 5278 + - uid: 7074 components: - type: Transform - pos: 24.5,-35.5 + pos: 25.5,-10.5 parent: 31 - - uid: 5279 + - uid: 7463 components: - type: Transform - pos: 28.5,-34.5 + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 parent: 31 - - uid: 5280 + - uid: 8344 components: - type: Transform - pos: 24.5,-31.5 + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 parent: 31 - - uid: 5281 + - uid: 11074 components: - type: Transform - pos: 19.5,-31.5 + pos: -33.5,18.5 parent: 31 - - uid: 5282 + - uid: 11075 components: - type: Transform - pos: 20.5,-31.5 + pos: -33.5,17.5 parent: 31 - - uid: 5283 + - uid: 11076 components: - type: Transform - pos: 20.5,-28.5 + pos: -34.5,17.5 parent: 31 - - uid: 5284 +- proto: CarpetGreen + entities: + - uid: 2452 components: - type: Transform - pos: 24.5,-27.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 31 - - uid: 5311 + - uid: 4058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,7.5 + rot: 3.141592653589793 rad + pos: 0.5,0.5 parent: 31 - - uid: 5730 + - uid: 4062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 31 - - uid: 5940 + - uid: 4099 components: - type: Transform - pos: 31.5,26.5 + pos: -29.5,1.5 parent: 31 - - uid: 6293 + - uid: 4100 components: - type: Transform - pos: 53.5,-7.5 + pos: -29.5,0.5 parent: 31 - - uid: 6370 + - uid: 4101 components: - type: Transform - pos: 15.5,-28.5 + pos: -28.5,1.5 parent: 31 - - uid: 6386 + - uid: 4102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,7.5 + pos: -28.5,0.5 parent: 31 - - uid: 6412 + - uid: 8423 components: - type: Transform - pos: 15.5,-29.5 + rot: 3.141592653589793 rad + pos: 0.5,1.5 parent: 31 - - uid: 6523 + - uid: 8726 components: - type: Transform - pos: 31.5,25.5 + pos: -34.5,-29.5 parent: 31 - - uid: 6609 + - uid: 8727 components: - type: Transform - pos: 30.5,20.5 + pos: -34.5,-28.5 parent: 31 - - uid: 6648 + - uid: 8728 components: - type: Transform - pos: -27.5,24.5 + pos: -35.5,-28.5 parent: 31 - - uid: 6649 + - uid: 8729 components: - type: Transform - pos: -28.5,24.5 + pos: -36.5,-28.5 parent: 31 - - uid: 6650 + - uid: 8730 components: - type: Transform - pos: -29.5,24.5 + pos: -36.5,-29.5 parent: 31 - - uid: 6651 + - uid: 8731 components: - type: Transform - pos: -30.5,24.5 + pos: -35.5,-29.5 parent: 31 - - uid: 6652 + - uid: 8911 components: - type: Transform - pos: -31.5,24.5 + pos: -24.5,-2.5 parent: 31 - - uid: 6653 + - uid: 8912 components: - type: Transform - pos: -32.5,24.5 + pos: -23.5,-2.5 parent: 31 - - uid: 6654 + - uid: 8913 components: - type: Transform - pos: -33.5,24.5 + pos: -23.5,-1.5 parent: 31 - - uid: 6655 + - uid: 8914 components: - type: Transform - pos: -34.5,24.5 + pos: -24.5,-1.5 parent: 31 - - uid: 6656 +- proto: CarpetOrange + entities: + - uid: 832 components: - type: Transform - pos: -35.5,24.5 + pos: 29.5,8.5 parent: 31 - - uid: 6657 + - uid: 985 components: - type: Transform - pos: -36.5,23.5 + pos: 38.5,-0.5 parent: 31 - - uid: 6658 + - uid: 1154 components: - type: Transform - pos: -36.5,26.5 + pos: 38.5,-1.5 parent: 31 - - uid: 6659 + - uid: 1607 components: - type: Transform - pos: -36.5,27.5 + pos: 39.5,-0.5 parent: 31 - - uid: 6660 + - uid: 1608 components: - type: Transform - pos: -36.5,22.5 + pos: 39.5,-1.5 parent: 31 - - uid: 6661 + - uid: 2945 components: - type: Transform - pos: -36.5,21.5 + pos: 28.5,8.5 parent: 31 - - uid: 6662 + - uid: 6242 components: - type: Transform - pos: -38.5,24.5 + pos: 27.5,8.5 parent: 31 - - uid: 6663 + - uid: 11388 components: - type: Transform - pos: -30.5,25.5 + pos: 40.5,-1.5 parent: 31 - - uid: 6664 + - uid: 11389 components: - type: Transform - pos: -30.5,26.5 + pos: 41.5,-1.5 parent: 31 - - uid: 6665 +- proto: CarpetPink + entities: + - uid: 4103 components: - type: Transform - pos: -30.5,27.5 + pos: -29.5,-4.5 parent: 31 - - uid: 6666 + - uid: 4104 components: - type: Transform - pos: -34.5,23.5 + pos: -29.5,-5.5 parent: 31 - - uid: 6667 + - uid: 4105 components: - type: Transform - pos: -34.5,22.5 + pos: -28.5,-4.5 parent: 31 - - uid: 6668 + - uid: 4106 components: - type: Transform - pos: -34.5,21.5 + pos: -28.5,-5.5 parent: 31 - - uid: 6669 +- proto: CarpetPurple + entities: + - uid: 1686 components: - type: Transform - pos: -36.5,24.5 + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 parent: 31 - - uid: 6670 + - uid: 1698 components: - type: Transform - pos: -37.5,24.5 + rot: -1.5707963267948966 rad + pos: -4.5,-23.5 parent: 31 - - uid: 6671 + - uid: 2087 components: - type: Transform - pos: -36.5,25.5 + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 parent: 31 - - uid: 6672 + - uid: 2125 components: - type: Transform - pos: -32.5,21.5 + rot: 1.5707963267948966 rad + pos: -21.5,-22.5 parent: 31 - - uid: 6673 + - uid: 4718 components: - type: Transform - pos: -32.5,22.5 + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 parent: 31 - - uid: 6674 + - uid: 5122 components: - type: Transform - pos: -32.5,23.5 + rot: 1.5707963267948966 rad + pos: 12.5,-23.5 parent: 31 - - uid: 6675 + - uid: 5261 components: - type: Transform - pos: -32.5,25.5 + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 parent: 31 - - uid: 6676 + - uid: 5672 components: - type: Transform - pos: -32.5,26.5 + rot: 1.5707963267948966 rad + pos: 12.5,-24.5 parent: 31 - - uid: 6677 + - uid: 5677 components: - type: Transform - pos: -32.5,27.5 + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 parent: 31 - - uid: 6678 + - uid: 5679 components: - type: Transform - pos: -34.5,27.5 + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 parent: 31 - - uid: 6679 + - uid: 5706 components: - type: Transform - pos: -34.5,26.5 + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 parent: 31 - - uid: 6680 + - uid: 5737 components: - type: Transform - pos: -34.5,25.5 + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 parent: 31 - - uid: 6681 + - uid: 5770 components: - type: Transform - pos: -30.5,23.5 + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 parent: 31 - - uid: 6682 + - uid: 5792 components: - type: Transform - pos: -30.5,22.5 + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 parent: 31 - - uid: 6683 + - uid: 5925 components: - type: Transform - pos: -30.5,21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 parent: 31 - - uid: 6698 + - uid: 5926 components: - type: Transform - pos: 22.5,-31.5 + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 parent: 31 - - uid: 6699 + - uid: 5927 components: - type: Transform - pos: 23.5,-31.5 + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 parent: 31 - - uid: 6700 + - uid: 5992 components: - type: Transform - pos: 20.5,-33.5 + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 parent: 31 - - uid: 6701 + - uid: 6175 components: - type: Transform - pos: 21.5,-31.5 + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 parent: 31 - - uid: 6702 + - uid: 6232 components: - type: Transform - pos: 20.5,-32.5 + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 parent: 31 - - uid: 6703 + - uid: 6299 components: - type: Transform - pos: 28.5,-33.5 + rot: 1.5707963267948966 rad + pos: 7.5,-26.5 parent: 31 - - uid: 6704 + - uid: 6300 components: - type: Transform - pos: 28.5,-32.5 + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 parent: 31 - - uid: 6705 + - uid: 6310 components: - type: Transform - pos: 28.5,-30.5 + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 parent: 31 - - uid: 6706 + - uid: 6318 components: - type: Transform - pos: 29.5,-31.5 + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 parent: 31 - - uid: 6707 + - uid: 6321 components: - type: Transform - pos: 30.5,-31.5 + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 parent: 31 - - uid: 6708 + - uid: 6325 components: - type: Transform - pos: 31.5,-31.5 + pos: 9.5,-29.5 parent: 31 - - uid: 6709 + - uid: 6326 components: - type: Transform - pos: 32.5,-31.5 + pos: 9.5,-30.5 parent: 31 - - uid: 6861 + - uid: 6352 components: - type: Transform - pos: 31.5,22.5 + pos: 8.5,-30.5 parent: 31 - - uid: 6884 + - uid: 6360 components: - type: Transform - pos: 60.5,12.5 + pos: 8.5,-29.5 parent: 31 - - uid: 6908 + - uid: 7700 components: - type: Transform - pos: 31.5,20.5 + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 parent: 31 - - uid: 7045 + - uid: 7816 components: - type: Transform - pos: 42.5,-4.5 + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 parent: 31 - - uid: 7116 + - uid: 8474 components: - type: Transform - pos: 55.5,-10.5 + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 parent: 31 - - uid: 7163 + - uid: 8475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,13.5 + pos: 9.5,-26.5 parent: 31 - - uid: 7176 + - uid: 8479 components: - type: Transform - pos: 31.5,21.5 + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 parent: 31 - - uid: 7234 + - uid: 8502 components: - type: Transform - pos: 12.5,15.5 + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 parent: 31 - - uid: 7235 + - uid: 8506 components: - type: Transform - pos: 7.5,14.5 + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 parent: 31 - - uid: 7236 + - uid: 8520 components: - type: Transform - pos: 12.5,17.5 + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 parent: 31 - - uid: 7237 + - uid: 8523 components: - type: Transform - pos: 10.5,14.5 + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 parent: 31 - - uid: 7238 + - uid: 9457 components: - type: Transform - pos: 8.5,14.5 + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 parent: 31 - - uid: 7239 + - uid: 9459 components: - type: Transform - pos: 12.5,16.5 + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 parent: 31 - - uid: 7240 + - uid: 10812 components: - type: Transform - pos: 9.5,14.5 + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 parent: 31 - - uid: 7241 + - uid: 10813 components: - type: Transform - pos: 12.5,19.5 - parent: 31 - - uid: 7494 - components: - - type: Transform - pos: 15.5,-27.5 + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 parent: 31 - - uid: 7495 + - uid: 10814 components: - type: Transform - pos: 14.5,-31.5 + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 parent: 31 - - uid: 7499 + - uid: 11283 components: - type: Transform - pos: -9.5,-12.5 + rot: 1.5707963267948966 rad + pos: 6.5,-26.5 parent: 31 - - uid: 7500 + - uid: 11482 components: - type: Transform - pos: -9.5,-11.5 + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 parent: 31 - - uid: 7510 + - uid: 11484 components: - type: Transform - pos: -26.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,-21.5 parent: 31 - - uid: 7511 + - uid: 11485 components: - type: Transform - pos: -27.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,-22.5 parent: 31 - - uid: 7512 + - uid: 11486 components: - type: Transform - pos: -28.5,-11.5 + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 parent: 31 - - uid: 7513 + - uid: 11623 components: - type: Transform - pos: -29.5,-11.5 + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 parent: 31 - - uid: 7514 + - uid: 11624 components: - type: Transform - pos: -31.5,-11.5 + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 parent: 31 - - uid: 7515 + - uid: 11625 components: - type: Transform - pos: -30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 parent: 31 - - uid: 7516 + - uid: 11626 components: - type: Transform - pos: -32.5,-11.5 + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 parent: 31 - - uid: 7517 + - uid: 11627 components: - type: Transform - pos: -33.5,-11.5 + rot: -1.5707963267948966 rad + pos: -24.5,-21.5 parent: 31 - - uid: 7520 + - uid: 11628 components: - type: Transform - pos: -33.5,0.5 + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 parent: 31 - - uid: 7521 + - uid: 11629 components: - type: Transform - pos: -33.5,-0.5 + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 parent: 31 - - uid: 7522 + - uid: 11630 components: - type: Transform - pos: -33.5,-1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 parent: 31 - - uid: 7523 + - uid: 11631 components: - type: Transform - pos: -33.5,-10.5 + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 parent: 31 - - uid: 7524 + - uid: 11632 components: - type: Transform - pos: -33.5,-8.5 + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 parent: 31 - - uid: 7525 + - uid: 11633 components: - type: Transform - pos: -33.5,-7.5 + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 parent: 31 - - uid: 7526 + - uid: 11634 components: - type: Transform - pos: -33.5,-6.5 + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 parent: 31 - - uid: 7527 + - uid: 11635 components: - type: Transform - pos: -33.5,-5.5 + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 parent: 31 - - uid: 7528 + - uid: 11636 components: - type: Transform - pos: -33.5,-4.5 + rot: -1.5707963267948966 rad + pos: -30.5,-22.5 parent: 31 - - uid: 7529 + - uid: 11637 components: - type: Transform - pos: -33.5,-3.5 + rot: -1.5707963267948966 rad + pos: -29.5,-22.5 parent: 31 - - uid: 7530 + - uid: 11638 components: - type: Transform - pos: -33.5,-2.5 + rot: -1.5707963267948966 rad + pos: -28.5,-22.5 parent: 31 - - uid: 7582 + - uid: 11639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,15.5 + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 parent: 31 - - uid: 7609 + - uid: 11640 components: - type: Transform - pos: -32.5,8.5 + rot: -1.5707963267948966 rad + pos: -26.5,-22.5 parent: 31 - - uid: 7610 + - uid: 11641 components: - type: Transform - pos: -32.5,9.5 + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 parent: 31 - - uid: 7611 + - uid: 11642 components: - type: Transform - pos: -32.5,10.5 + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 parent: 31 - - uid: 7612 + - uid: 11643 components: - type: Transform - pos: -32.5,11.5 + rot: -1.5707963267948966 rad + pos: -23.5,-18.5 parent: 31 - - uid: 7613 + - uid: 11644 components: - type: Transform - pos: -32.5,12.5 + rot: -1.5707963267948966 rad + pos: -23.5,-17.5 parent: 31 - - uid: 7614 + - uid: 11645 components: - type: Transform - pos: -32.5,13.5 + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 parent: 31 - - uid: 7616 + - uid: 11646 components: - type: Transform - pos: -31.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-16.5 parent: 31 - - uid: 7617 + - uid: 11647 components: - type: Transform - pos: -30.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 parent: 31 - - uid: 7618 + - uid: 11648 components: - type: Transform - pos: -29.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 parent: 31 - - uid: 7619 + - uid: 11649 components: - type: Transform - pos: -28.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 parent: 31 - - uid: 7620 + - uid: 11650 components: - type: Transform - pos: -27.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 parent: 31 - - uid: 7621 + - uid: 11654 components: - type: Transform - pos: -26.5,14.5 + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 parent: 31 - - uid: 7622 + - uid: 11655 components: - type: Transform - pos: -25.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5,-27.5 parent: 31 - - uid: 7623 + - uid: 11656 components: - type: Transform - pos: -24.5,14.5 + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 parent: 31 - - uid: 7624 + - uid: 11657 components: - type: Transform - pos: -23.5,14.5 + rot: 1.5707963267948966 rad + pos: 7.5,-27.5 parent: 31 - - uid: 7638 + - uid: 11658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,37.5 + rot: 1.5707963267948966 rad + pos: 8.5,-27.5 parent: 31 - - uid: 7654 + - uid: 11659 components: - type: Transform - pos: -8.5,25.5 + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 parent: 31 - - uid: 7655 + - uid: 11660 components: - type: Transform - pos: -9.5,25.5 + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 parent: 31 - - uid: 7656 + - uid: 11661 components: - type: Transform - pos: -11.5,25.5 + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 parent: 31 - - uid: 7657 + - uid: 11662 components: - type: Transform - pos: -12.5,25.5 + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 parent: 31 - - uid: 7658 + - uid: 11671 components: - type: Transform - pos: -13.5,25.5 + rot: -1.5707963267948966 rad + pos: 11.5,-29.5 parent: 31 - - uid: 7659 + - uid: 11672 components: - type: Transform - pos: -14.5,25.5 + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 parent: 31 - - uid: 7660 + - uid: 11673 components: - type: Transform - pos: -15.5,25.5 + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 parent: 31 - - uid: 7661 + - uid: 11674 components: - type: Transform - pos: -16.5,25.5 + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 parent: 31 - - uid: 7662 + - uid: 11675 components: - type: Transform - pos: -17.5,25.5 + rot: -1.5707963267948966 rad + pos: 12.5,-30.5 parent: 31 - - uid: 7664 + - uid: 11676 components: - type: Transform - pos: -18.5,18.5 + rot: -1.5707963267948966 rad + pos: 12.5,-29.5 parent: 31 - - uid: 7665 + - uid: 11731 components: - type: Transform - pos: -18.5,19.5 + rot: 3.141592653589793 rad + pos: 4.5,-30.5 parent: 31 - - uid: 7666 + - uid: 11732 components: - type: Transform - pos: -18.5,20.5 + rot: 3.141592653589793 rad + pos: 3.5,-30.5 parent: 31 - - uid: 7667 + - uid: 11733 components: - type: Transform - pos: -18.5,21.5 + rot: 3.141592653589793 rad + pos: 2.5,-30.5 parent: 31 - - uid: 7668 + - uid: 11734 components: - type: Transform - pos: -18.5,22.5 + rot: 3.141592653589793 rad + pos: 4.5,-24.5 parent: 31 - - uid: 7669 + - uid: 11735 components: - type: Transform - pos: -18.5,23.5 + rot: 3.141592653589793 rad + pos: 3.5,-24.5 parent: 31 - - uid: 7670 + - uid: 11736 components: - type: Transform - pos: -18.5,24.5 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 parent: 31 - - uid: 7705 + - uid: 11737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-26.5 + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 31 - - uid: 7706 + - uid: 11738 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,17.5 + pos: 2.5,-27.5 parent: 31 - - uid: 7708 + - uid: 11739 components: - type: Transform - pos: -27.5,-29.5 + rot: 3.141592653589793 rad + pos: 2.5,-26.5 parent: 31 - - uid: 7723 +- proto: CarpetSBlue + entities: + - uid: 91 components: - type: Transform - pos: -26.5,-29.5 + pos: 9.5,19.5 parent: 31 - - uid: 7779 + - uid: 1177 components: - type: Transform - pos: 14.5,-25.5 + pos: 8.5,19.5 parent: 31 - - uid: 7874 + - uid: 7155 components: - type: Transform - pos: 7.5,-20.5 + pos: 9.5,20.5 parent: 31 - - uid: 7875 + - uid: 7432 components: - type: Transform - pos: 9.5,-20.5 + pos: 10.5,16.5 parent: 31 - - uid: 7876 + - uid: 8418 components: - type: Transform - pos: 8.5,-20.5 + rot: 3.141592653589793 rad + pos: 8.5,20.5 parent: 31 - - uid: 7877 + - uid: 9052 components: - type: Transform - pos: 10.5,-20.5 + pos: 9.5,16.5 parent: 31 - - uid: 7878 +- proto: Catwalk + entities: + - uid: 2 components: - type: Transform - pos: 11.5,-20.5 + pos: -3.5,21.5 parent: 31 - - uid: 7879 + - uid: 187 components: - type: Transform - pos: 12.5,-20.5 + rot: -1.5707963267948966 rad + pos: -28.5,-28.5 parent: 31 - - uid: 7880 + - uid: 402 components: - type: Transform - pos: 14.5,-20.5 + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 parent: 31 - - uid: 7881 + - uid: 455 components: - type: Transform - pos: 14.5,-21.5 + pos: -29.5,33.5 parent: 31 - - uid: 7882 + - uid: 458 components: - type: Transform - pos: 14.5,-22.5 + pos: -29.5,41.5 parent: 31 - - uid: 7883 + - uid: 459 components: - type: Transform - pos: 14.5,-23.5 + pos: -30.5,41.5 parent: 31 - - uid: 7884 + - uid: 529 components: - type: Transform - pos: 14.5,-24.5 + pos: -1.5,21.5 parent: 31 - - uid: 7885 + - uid: 705 components: - type: Transform - pos: 15.5,-25.5 + pos: -9.5,-10.5 parent: 31 - - uid: 7886 + - uid: 710 components: - type: Transform - pos: 17.5,-25.5 + pos: -7.5,-10.5 parent: 31 - - uid: 7887 + - uid: 713 components: - type: Transform - pos: 16.5,-25.5 + pos: -4.5,-10.5 parent: 31 - - uid: 7888 + - uid: 722 components: - type: Transform - pos: 18.5,-25.5 + pos: -2.5,-10.5 parent: 31 - - uid: 7889 + - uid: 743 components: - type: Transform - pos: 19.5,-25.5 + rot: -1.5707963267948966 rad + pos: -28.5,-17.5 parent: 31 - - uid: 7890 + - uid: 764 components: - type: Transform - pos: 20.5,-25.5 + rot: -1.5707963267948966 rad + pos: -28.5,-12.5 parent: 31 - - uid: 7891 + - uid: 808 components: - type: Transform - pos: 21.5,-25.5 + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 parent: 31 - - uid: 7892 + - uid: 833 components: - type: Transform - pos: 22.5,-25.5 + pos: 47.5,-7.5 parent: 31 - - uid: 7893 + - uid: 834 components: - type: Transform - pos: 22.5,-24.5 + pos: 55.5,-8.5 parent: 31 - - uid: 7894 + - uid: 850 components: - type: Transform - pos: 22.5,-23.5 + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 parent: 31 - - uid: 7915 + - uid: 884 components: - type: Transform - pos: 22.5,-18.5 + pos: 52.5,-10.5 parent: 31 - - uid: 7916 + - uid: 885 components: - type: Transform - pos: 22.5,-17.5 + pos: 53.5,-9.5 parent: 31 - - uid: 7917 + - uid: 886 components: - type: Transform - pos: 23.5,-17.5 + pos: 53.5,-8.5 parent: 31 - - uid: 7918 + - uid: 887 components: - type: Transform - pos: 24.5,-17.5 + pos: 51.5,-8.5 parent: 31 - - uid: 7919 + - uid: 972 components: - type: Transform - pos: 25.5,-17.5 + pos: -35.5,37.5 parent: 31 - - uid: 7920 + - uid: 974 components: - type: Transform - pos: 26.5,-17.5 + pos: -2.5,21.5 parent: 31 - - uid: 7921 + - uid: 1063 components: - type: Transform - pos: 26.5,-16.5 + rot: -1.5707963267948966 rad + pos: -28.5,-14.5 parent: 31 - - uid: 7922 + - uid: 1153 components: - type: Transform - pos: 26.5,-15.5 + pos: -0.5,21.5 parent: 31 - - uid: 7923 + - uid: 1388 components: - type: Transform - pos: 26.5,-14.5 + pos: 32.5,27.5 parent: 31 - - uid: 7924 + - uid: 1427 components: - type: Transform - pos: 26.5,-13.5 + pos: -1.5,-10.5 parent: 31 - - uid: 7926 + - uid: 1432 components: - type: Transform - pos: 38.5,-6.5 + pos: -0.5,-10.5 parent: 31 - - uid: 7927 + - uid: 1437 components: - type: Transform - pos: 38.5,-7.5 + pos: -8.5,-10.5 parent: 31 - - uid: 7928 + - uid: 1438 components: - type: Transform - pos: 37.5,-7.5 + pos: -5.5,-10.5 parent: 31 - - uid: 7929 + - uid: 1440 components: - type: Transform - pos: 36.5,-7.5 + pos: -3.5,-10.5 parent: 31 - - uid: 7930 + - uid: 1483 components: - type: Transform - pos: 34.5,-7.5 + rot: 1.5707963267948966 rad + pos: 48.5,7.5 parent: 31 - - uid: 7931 + - uid: 1492 components: - type: Transform - pos: 35.5,-7.5 + pos: 6.5,14.5 parent: 31 - - uid: 7932 + - uid: 1552 components: - type: Transform - pos: 33.5,-7.5 + pos: -9.5,-8.5 parent: 31 - - uid: 7933 + - uid: 1624 components: - type: Transform - pos: 32.5,-7.5 + pos: 43.5,-4.5 parent: 31 - - uid: 7934 + - uid: 1662 components: - type: Transform - pos: 31.5,-7.5 + pos: 27.5,-8.5 parent: 31 - - uid: 7935 + - uid: 1684 components: - type: Transform - pos: 30.5,-7.5 + pos: -22.5,-29.5 parent: 31 - - uid: 7936 + - uid: 1711 components: - type: Transform - pos: 29.5,-7.5 + pos: 27.5,-12.5 parent: 31 - - uid: 7937 + - uid: 2146 components: - type: Transform - pos: 28.5,-7.5 + pos: 43.5,-3.5 parent: 31 - - uid: 7938 + - uid: 2157 components: - type: Transform - pos: 27.5,-7.5 + pos: 12.5,14.5 parent: 31 - - uid: 7939 + - uid: 2158 components: - type: Transform - pos: 26.5,-7.5 + pos: 12.5,18.5 parent: 31 - - uid: 7951 + - uid: 2329 components: - type: Transform - pos: 23.5,-13.5 + pos: 27.5,-13.5 parent: 31 - - uid: 7974 + - uid: 2866 components: - type: Transform - pos: 24.5,-2.5 + pos: 22.5,-19.5 parent: 31 - - uid: 7975 + - uid: 3110 components: - type: Transform - pos: 23.5,-2.5 + pos: 59.5,12.5 parent: 31 - - uid: 7976 + - uid: 3279 components: - type: Transform - pos: 22.5,-2.5 + pos: 43.5,-2.5 parent: 31 - - uid: 7978 + - uid: 3412 components: - type: Transform - pos: 21.5,-1.5 + pos: -19.5,-31.5 parent: 31 - - uid: 7979 + - uid: 3414 components: - type: Transform - pos: 21.5,-0.5 + pos: -19.5,-30.5 parent: 31 - - uid: 7980 + - uid: 3656 components: - type: Transform - pos: 21.5,0.5 + pos: 55.5,7.5 parent: 31 - - uid: 7981 + - uid: 3725 components: - type: Transform - pos: 21.5,1.5 + rot: 3.141592653589793 rad + pos: 8.5,-38.5 parent: 31 - - uid: 8043 + - uid: 3750 components: - type: Transform - pos: 20.5,-27.5 + pos: -37.5,37.5 parent: 31 - - uid: 8076 + - uid: 3751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,14.5 + pos: -35.5,33.5 parent: 31 - - uid: 8119 + - uid: 3752 components: - type: Transform - pos: 56.5,-10.5 + pos: -34.5,37.5 parent: 31 - - uid: 8139 + - uid: 3808 components: - type: Transform - pos: 47.5,-8.5 + pos: -30.5,37.5 parent: 31 - - uid: 8151 + - uid: 3821 components: - type: Transform - pos: 56.5,7.5 + pos: -32.5,33.5 parent: 31 - - uid: 8507 + - uid: 3823 components: - type: Transform - pos: -25.5,-29.5 + pos: -29.5,37.5 parent: 31 - - uid: 8510 + - uid: 3824 components: - type: Transform - pos: -24.5,-29.5 + pos: -36.5,37.5 parent: 31 - - uid: 8655 + - uid: 3829 components: - type: Transform - pos: -38.5,-28.5 + pos: -37.5,33.5 parent: 31 - - uid: 8656 + - uid: 3862 components: - type: Transform - pos: -39.5,-28.5 + pos: -36.5,33.5 parent: 31 - - uid: 8657 + - uid: 3958 components: - type: Transform - pos: -40.5,-28.5 + pos: 16.5,20.5 parent: 31 - - uid: 8658 + - uid: 4218 components: - type: Transform - pos: -41.5,-28.5 + pos: -34.5,33.5 parent: 31 - - uid: 8659 + - uid: 4219 components: - type: Transform - pos: -42.5,-28.5 + rot: 3.141592653589793 rad + pos: 7.5,-38.5 parent: 31 - - uid: 8660 + - uid: 4220 components: - type: Transform - pos: -32.5,-38.5 + pos: -31.5,33.5 parent: 31 - - uid: 8661 + - uid: 4226 components: - type: Transform - pos: -32.5,-37.5 + pos: -30.5,33.5 parent: 31 - - uid: 8662 + - uid: 4227 components: - type: Transform - pos: -32.5,-36.5 + pos: -31.5,37.5 parent: 31 - - uid: 8663 + - uid: 4339 components: - type: Transform - pos: -32.5,-35.5 + pos: -32.5,37.5 parent: 31 - - uid: 8664 + - uid: 4397 components: - type: Transform - pos: -32.5,-34.5 + pos: 53.5,-10.5 parent: 31 - - uid: 8751 + - uid: 4409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 + pos: 51.5,-10.5 parent: 31 - - uid: 8754 + - uid: 4420 components: - type: Transform - pos: -29.5,-26.5 + pos: 52.5,-8.5 parent: 31 - - uid: 8909 + - uid: 4437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,25.5 + pos: 50.5,-7.5 parent: 31 - - uid: 9007 + - uid: 4438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-27.5 + pos: 50.5,-8.5 parent: 31 - - uid: 9009 + - uid: 4514 components: - type: Transform - pos: -30.5,-26.5 + pos: 27.5,-11.5 parent: 31 - - uid: 9010 + - uid: 4530 components: - type: Transform - pos: -29.5,-27.5 + pos: 47.5,-9.5 parent: 31 - - uid: 9060 + - uid: 4537 components: - type: Transform - pos: 16.5,21.5 + pos: 48.5,-8.5 parent: 31 - - uid: 9061 + - uid: 4564 components: - type: Transform - pos: 53.5,6.5 + pos: 30.5,-31.5 parent: 31 - - uid: 9062 + - uid: 5017 components: - type: Transform - pos: 53.5,7.5 + pos: -32.5,-43.5 parent: 31 - - uid: 9088 + - uid: 5018 components: - type: Transform - pos: -29.5,-28.5 + pos: -32.5,-44.5 parent: 31 - - uid: 9252 + - uid: 5019 components: - type: Transform - pos: -29.5,-29.5 + pos: -32.5,-42.5 parent: 31 - - uid: 9263 + - uid: 5020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,36.5 + pos: -32.5,-41.5 parent: 31 - - uid: 9264 + - uid: 5021 components: - type: Transform - pos: -28.5,-29.5 + pos: -32.5,-40.5 parent: 31 - - uid: 9269 + - uid: 5022 components: - type: Transform - pos: -23.5,-29.5 + pos: -32.5,-39.5 parent: 31 - - uid: 9277 + - uid: 5024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -32.5,-46.5 parent: 31 - - uid: 9280 + - uid: 5037 components: - type: Transform - pos: -1.5,-31.5 + pos: -32.5,-45.5 parent: 31 - - uid: 9281 + - uid: 5038 components: - type: Transform - pos: -0.5,-31.5 + pos: 34.5,-39.5 parent: 31 - - uid: 9285 + - uid: 5039 components: - type: Transform - pos: 0.5,-31.5 + pos: 34.5,-40.5 parent: 31 - - uid: 9375 + - uid: 5040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,5.5 + pos: 34.5,-32.5 parent: 31 - - uid: 9451 + - uid: 5042 components: - type: Transform - pos: -22.5,-32.5 + pos: 34.5,-31.5 parent: 31 - - uid: 9452 + - uid: 5043 components: - type: Transform - pos: -23.5,-32.5 + pos: 34.5,-43.5 parent: 31 - - uid: 9543 + - uid: 5055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,13.5 + pos: 34.5,-35.5 parent: 31 - - uid: 9546 + - uid: 5058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,13.5 + pos: 49.5,-8.5 parent: 31 - - uid: 9547 + - uid: 5091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 33.5,-31.5 parent: 31 - - uid: 9548 + - uid: 5130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 34.5,-36.5 parent: 31 - - uid: 9556 + - uid: 5161 components: - type: Transform - pos: 59.5,13.5 + pos: 34.5,-37.5 parent: 31 - - uid: 9597 + - uid: 5162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,25.5 + pos: 34.5,-38.5 parent: 31 - - uid: 9706 + - uid: 5163 components: - type: Transform - pos: 55.5,6.5 + pos: 34.5,-44.5 parent: 31 - - uid: 9728 + - uid: 5166 components: - type: Transform - pos: 53.5,-0.5 + pos: 34.5,-42.5 parent: 31 - - uid: 9763 + - uid: 5167 components: - type: Transform - pos: -17.5,-35.5 + pos: 34.5,-33.5 parent: 31 - - uid: 9764 + - uid: 5171 components: - type: Transform - pos: -16.5,-35.5 + pos: -33.5,32.5 parent: 31 - - uid: 9766 + - uid: 5172 components: - type: Transform - pos: -15.5,-35.5 + pos: -32.5,41.5 parent: 31 - - uid: 9767 + - uid: 5173 components: - type: Transform - pos: -14.5,-35.5 + pos: -37.5,41.5 parent: 31 - - uid: 9768 + - uid: 5175 components: - type: Transform - pos: -18.5,-35.5 + pos: -33.5,30.5 parent: 31 - - uid: 9770 + - uid: 5181 components: - type: Transform - pos: -3.5,-38.5 + pos: -33.5,37.5 parent: 31 - - uid: 9771 + - uid: 5182 components: - type: Transform - pos: -2.5,-38.5 + pos: -33.5,38.5 parent: 31 - - uid: 9772 + - uid: 5183 components: - type: Transform - pos: -1.5,-38.5 + pos: -33.5,39.5 parent: 31 - - uid: 9773 + - uid: 5192 components: - type: Transform - pos: -0.5,-38.5 + pos: -33.5,27.5 parent: 31 - - uid: 9774 + - uid: 5220 components: - type: Transform - pos: 0.5,-38.5 + pos: -33.5,28.5 parent: 31 - - uid: 9775 + - uid: 5246 components: - type: Transform - pos: 1.5,-38.5 + pos: 27.5,-31.5 parent: 31 - - uid: 9776 + - uid: 5247 components: - type: Transform - pos: 2.5,-38.5 + pos: 28.5,-31.5 parent: 31 - - uid: 9777 + - uid: 5249 components: - type: Transform - pos: -4.5,-38.5 + pos: 25.5,-31.5 parent: 31 - - uid: 9778 + - uid: 5268 components: - type: Transform - pos: 8.5,-32.5 + pos: -31.5,41.5 parent: 31 - - uid: 9779 + - uid: 5269 components: - type: Transform - pos: 8.5,-33.5 + pos: -33.5,33.5 parent: 31 - - uid: 9780 + - uid: 5270 components: - type: Transform - pos: 8.5,-34.5 + pos: -33.5,25.5 parent: 31 - - uid: 9781 + - uid: 5272 components: - type: Transform - pos: 8.5,-35.5 + pos: -33.5,40.5 parent: 31 - - uid: 9784 + - uid: 5273 components: - type: Transform - pos: 5.5,-38.5 + pos: -33.5,41.5 parent: 31 - - uid: 9785 + - uid: 5274 components: - type: Transform - pos: 6.5,-38.5 + pos: 18.5,-31.5 parent: 31 - - uid: 9954 + - uid: 5275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 + pos: -33.5,42.5 parent: 31 - - uid: 10011 + - uid: 5276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 + pos: 26.5,-31.5 parent: 31 - - uid: 10231 + - uid: 5277 components: - type: Transform - pos: 50.5,-9.5 + pos: -36.5,41.5 parent: 31 - - uid: 10253 + - uid: 5278 components: - type: Transform - pos: 52.5,-1.5 + pos: -35.5,41.5 parent: 31 - - uid: 10254 + - uid: 5279 components: - type: Transform - pos: 52.5,-0.5 + pos: -34.5,41.5 parent: 31 - - uid: 10277 + - uid: 5280 components: - type: Transform - pos: -30.5,-14.5 + pos: 24.5,-31.5 parent: 31 - - uid: 10278 + - uid: 5281 components: - type: Transform - pos: -30.5,-15.5 + pos: 19.5,-31.5 parent: 31 - - uid: 10279 + - uid: 5282 components: - type: Transform - pos: -30.5,-16.5 + pos: 20.5,-31.5 parent: 31 - - uid: 10503 + - uid: 5283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,37.5 + pos: -33.5,36.5 parent: 31 - - uid: 10504 + - uid: 5284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,36.5 + pos: -33.5,35.5 parent: 31 - - uid: 10505 + - uid: 5307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,36.5 + pos: -33.5,34.5 parent: 31 - - uid: 10506 + - uid: 5309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,35.5 + pos: 32.5,-31.5 parent: 31 - - uid: 10507 + - uid: 5311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,34.5 + rot: 1.5707963267948966 rad + pos: 46.5,7.5 parent: 31 - - uid: 10508 + - uid: 5730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,36.5 + rot: -1.5707963267948966 rad + pos: -28.5,-20.5 parent: 31 - - uid: 10509 + - uid: 5940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,35.5 + pos: 31.5,26.5 parent: 31 - - uid: 10510 + - uid: 6020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,34.5 + pos: 31.5,-31.5 parent: 31 - - uid: 10511 + - uid: 6293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,34.5 + pos: 53.5,-7.5 parent: 31 - - uid: 10512 + - uid: 6356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,34.5 + pos: 34.5,-45.5 parent: 31 - - uid: 10513 + - uid: 6370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,34.5 + pos: 15.5,-28.5 parent: 31 - - uid: 10514 + - uid: 6386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,33.5 + rot: 1.5707963267948966 rad + pos: 47.5,7.5 parent: 31 - - uid: 10515 + - uid: 6412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,32.5 + pos: 15.5,-29.5 parent: 31 - - uid: 10516 + - uid: 6470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,31.5 + pos: 34.5,-41.5 parent: 31 - - uid: 10517 + - uid: 6523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,30.5 + pos: 31.5,25.5 parent: 31 - - uid: 10519 + - uid: 6609 components: - type: Transform - pos: 31.5,19.5 + pos: 30.5,20.5 parent: 31 - - uid: 10653 + - uid: 6648 components: - type: Transform - pos: 45.5,-11.5 + pos: -27.5,24.5 parent: 31 - - uid: 10654 + - uid: 6649 components: - type: Transform - pos: 45.5,-10.5 + pos: -28.5,24.5 parent: 31 - - uid: 10655 + - uid: 6650 components: - type: Transform - pos: 45.5,-9.5 + pos: -29.5,24.5 parent: 31 - - uid: 10656 + - uid: 6651 components: - type: Transform - pos: 45.5,-8.5 + pos: -30.5,24.5 parent: 31 - - uid: 10657 + - uid: 6652 components: - type: Transform - pos: 45.5,-7.5 + pos: -31.5,24.5 parent: 31 - - uid: 10711 + - uid: 6653 components: - type: Transform - pos: 31.5,27.5 + pos: -32.5,24.5 parent: 31 - - uid: 10799 + - uid: 6676 components: - type: Transform - pos: 25.5,-13.5 + pos: 34.5,-34.5 parent: 31 - - uid: 10883 + - uid: 6698 components: - type: Transform - pos: 47.5,-10.5 + pos: 22.5,-31.5 parent: 31 - - uid: 10884 + - uid: 6699 components: - type: Transform - pos: 48.5,-10.5 + pos: 23.5,-31.5 parent: 31 - - uid: 10885 + - uid: 6701 components: - type: Transform - pos: 49.5,-10.5 + pos: 21.5,-31.5 parent: 31 - - uid: 10886 + - uid: 6706 components: - type: Transform - pos: 50.5,-10.5 + pos: 29.5,-31.5 parent: 31 - - uid: 10888 + - uid: 6861 components: - type: Transform - pos: 50.5,-11.5 + pos: 31.5,22.5 parent: 31 - - uid: 10891 + - uid: 6884 components: - type: Transform - pos: 56.5,-8.5 + pos: 60.5,12.5 parent: 31 - - uid: 10893 + - uid: 6908 components: - type: Transform - pos: 55.5,-9.5 + pos: 31.5,20.5 parent: 31 - - uid: 11018 + - uid: 7045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,25.5 + pos: 42.5,-4.5 parent: 31 - - uid: 11019 + - uid: 7116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,25.5 + pos: 55.5,-10.5 parent: 31 - - uid: 11020 + - uid: 7163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,24.5 + rot: 1.5707963267948966 rad + pos: 69.5,13.5 parent: 31 - - uid: 11021 + - uid: 7176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,23.5 + pos: 31.5,21.5 parent: 31 - - uid: 11022 + - uid: 7234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,22.5 + pos: 12.5,15.5 parent: 31 - - uid: 11023 + - uid: 7235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,21.5 + pos: 7.5,14.5 parent: 31 - - uid: 11081 + - uid: 7236 components: - type: Transform - pos: 53.5,19.5 + pos: 12.5,17.5 parent: 31 - - uid: 11083 + - uid: 7237 components: - type: Transform - pos: 54.5,19.5 + pos: 10.5,14.5 parent: 31 - - uid: 11085 + - uid: 7238 components: - type: Transform - pos: 53.5,10.5 + pos: 8.5,14.5 parent: 31 - - uid: 11086 + - uid: 7239 components: - type: Transform - pos: 53.5,11.5 + pos: 12.5,16.5 parent: 31 - - uid: 11087 + - uid: 7240 components: - type: Transform - pos: 53.5,12.5 + pos: 9.5,14.5 parent: 31 - - uid: 11099 + - uid: 7241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,13.5 + pos: 12.5,19.5 parent: 31 - - uid: 11100 + - uid: 7494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 + pos: 15.5,-27.5 parent: 31 - - uid: 11102 + - uid: 7495 components: - type: Transform - pos: 26.5,-3.5 + pos: 14.5,-31.5 parent: 31 - - uid: 11103 + - uid: 7499 components: - type: Transform - pos: 26.5,-4.5 + pos: -9.5,-12.5 parent: 31 - - uid: 11104 + - uid: 7500 components: - type: Transform - pos: 26.5,-5.5 + pos: -9.5,-11.5 parent: 31 - - uid: 11105 + - uid: 7510 components: - type: Transform - pos: 26.5,-2.5 + pos: -26.5,-11.5 parent: 31 - - uid: 11140 + - uid: 7511 components: - type: Transform - pos: 61.5,12.5 + pos: -27.5,-11.5 parent: 31 - - uid: 11249 + - uid: 7512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,7.5 + pos: -28.5,-11.5 parent: 31 - - uid: 11834 + - uid: 7513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 + pos: -29.5,-11.5 parent: 31 - - uid: 11835 + - uid: 7514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,13.5 + pos: -31.5,-11.5 parent: 31 - - uid: 11836 + - uid: 7515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,13.5 + pos: -30.5,-11.5 parent: 31 - - uid: 11837 + - uid: 7516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,13.5 + pos: -32.5,-11.5 parent: 31 - - uid: 11838 + - uid: 7517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,13.5 + pos: -33.5,-11.5 parent: 31 - - uid: 11839 + - uid: 7520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,13.5 + pos: -33.5,0.5 parent: 31 - - uid: 11840 + - uid: 7521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,13.5 + pos: -33.5,-0.5 parent: 31 - - uid: 11979 + - uid: 7522 components: - type: Transform - pos: 75.5,10.5 + pos: -33.5,-1.5 parent: 31 - - uid: 11980 + - uid: 7523 components: - type: Transform - pos: 75.5,9.5 + pos: -33.5,-10.5 parent: 31 - - uid: 11981 + - uid: 7524 components: - type: Transform - pos: 75.5,8.5 + pos: -33.5,-8.5 parent: 31 - - uid: 11982 + - uid: 7525 components: - type: Transform - pos: 76.5,8.5 + pos: -33.5,-7.5 parent: 31 - - uid: 11983 + - uid: 7526 components: - type: Transform - pos: 74.5,8.5 + pos: -33.5,-6.5 parent: 31 - - uid: 11984 + - uid: 7527 components: - type: Transform - pos: 73.5,8.5 + pos: -33.5,-5.5 parent: 31 - - uid: 11985 + - uid: 7528 components: - type: Transform - pos: 76.5,3.5 + pos: -33.5,-4.5 parent: 31 - - uid: 11986 + - uid: 7529 components: - type: Transform - pos: 75.5,3.5 + pos: -33.5,-3.5 parent: 31 - - uid: 11987 + - uid: 7530 components: - type: Transform - pos: 74.5,3.5 + pos: -33.5,-2.5 parent: 31 - - uid: 11988 + - uid: 7582 components: - type: Transform - pos: 73.5,3.5 + rot: 3.141592653589793 rad + pos: 55.5,15.5 parent: 31 - - uid: 11989 + - uid: 7609 components: - type: Transform - pos: 72.5,3.5 + pos: -32.5,8.5 parent: 31 - - uid: 11990 + - uid: 7610 components: - type: Transform - pos: 72.5,4.5 + pos: -32.5,9.5 parent: 31 - - uid: 11991 + - uid: 7611 components: - type: Transform - pos: 72.5,2.5 + pos: -32.5,10.5 parent: 31 - - uid: 11992 + - uid: 7612 components: - type: Transform - pos: 72.5,1.5 + pos: -32.5,11.5 parent: 31 - - uid: 11993 + - uid: 7613 components: - type: Transform - pos: 72.5,0.5 + pos: -32.5,12.5 parent: 31 - - uid: 11994 + - uid: 7614 components: - type: Transform - pos: 71.5,0.5 + pos: -32.5,13.5 parent: 31 - - uid: 11995 + - uid: 7616 components: - type: Transform - pos: 71.5,-0.5 + pos: -31.5,14.5 parent: 31 - - uid: 11996 + - uid: 7617 components: - type: Transform - pos: 70.5,-0.5 + pos: -30.5,14.5 parent: 31 - - uid: 11997 + - uid: 7618 components: - type: Transform - pos: 70.5,-1.5 + pos: -29.5,14.5 parent: 31 - - uid: 11998 + - uid: 7619 components: - type: Transform - pos: 73.5,1.5 + pos: -28.5,14.5 parent: 31 - - uid: 11999 + - uid: 7620 components: - type: Transform - pos: 73.5,2.5 + pos: -27.5,14.5 parent: 31 - - uid: 12000 + - uid: 7621 components: - type: Transform - pos: 74.5,2.5 + pos: -26.5,14.5 parent: 31 - - uid: 12001 + - uid: 7622 components: - type: Transform - pos: 77.5,13.5 + pos: -25.5,14.5 parent: 31 - - uid: 12002 + - uid: 7623 components: - type: Transform - pos: 78.5,11.5 + pos: -24.5,14.5 parent: 31 - - uid: 12003 + - uid: 7624 components: - type: Transform - pos: 78.5,10.5 + pos: -23.5,14.5 parent: 31 - - uid: 12004 + - uid: 7654 components: - type: Transform - pos: 79.5,7.5 + pos: -8.5,25.5 parent: 31 - - uid: 12005 + - uid: 7655 components: - type: Transform - pos: 79.5,5.5 + pos: -9.5,25.5 parent: 31 - - uid: 12006 + - uid: 7656 components: - type: Transform - pos: 79.5,9.5 + pos: -11.5,25.5 parent: 31 - - uid: 12007 + - uid: 7657 components: - type: Transform - pos: 79.5,6.5 + pos: -12.5,25.5 parent: 31 - - uid: 12008 + - uid: 7658 components: - type: Transform - pos: 79.5,4.5 + pos: -13.5,25.5 parent: 31 - - uid: 12009 + - uid: 7659 components: - type: Transform - pos: 79.5,8.5 + pos: -14.5,25.5 parent: 31 - - uid: 12010 + - uid: 7660 components: - type: Transform - pos: 79.5,3.5 + pos: -15.5,25.5 parent: 31 - - uid: 12011 + - uid: 7661 components: - type: Transform - pos: 78.5,1.5 + pos: -16.5,25.5 parent: 31 - - uid: 12012 + - uid: 7662 components: - type: Transform - pos: 79.5,1.5 + pos: -17.5,25.5 parent: 31 - - uid: 12013 + - uid: 7664 components: - type: Transform - pos: 77.5,0.5 + pos: -18.5,18.5 parent: 31 - - uid: 12014 + - uid: 7665 components: - type: Transform - pos: 75.5,-1.5 + pos: -18.5,19.5 parent: 31 - - uid: 12015 + - uid: 7666 components: - type: Transform - pos: 73.5,-3.5 + pos: -18.5,20.5 parent: 31 - - uid: 12016 + - uid: 7667 components: - type: Transform - pos: 72.5,-4.5 + pos: -18.5,21.5 parent: 31 - - uid: 12017 + - uid: 7668 components: - type: Transform - pos: 72.5,-5.5 + pos: -18.5,22.5 parent: 31 - - uid: 12018 + - uid: 7669 components: - type: Transform - pos: 71.5,-5.5 + pos: -18.5,23.5 parent: 31 - - uid: 12019 + - uid: 7670 components: - type: Transform - pos: 73.5,-4.5 + pos: -18.5,24.5 parent: 31 - - uid: 12020 + - uid: 7705 components: - type: Transform - pos: 69.5,-6.5 + rot: -1.5707963267948966 rad + pos: -28.5,-26.5 parent: 31 - - uid: 12021 + - uid: 7706 components: - type: Transform - pos: 67.5,-6.5 + rot: 3.141592653589793 rad + pos: 55.5,17.5 parent: 31 - - uid: 12022 + - uid: 7708 components: - type: Transform - pos: 68.5,-6.5 + pos: -27.5,-29.5 parent: 31 - - uid: 12023 + - uid: 7723 components: - type: Transform - pos: 66.5,-6.5 + pos: -26.5,-29.5 parent: 31 - - uid: 12024 + - uid: 7779 components: - type: Transform - pos: 65.5,-6.5 + pos: 14.5,-25.5 parent: 31 - - uid: 12025 + - uid: 7874 components: - type: Transform - pos: 62.5,-6.5 + pos: 7.5,-20.5 parent: 31 - - uid: 12026 + - uid: 7875 components: - type: Transform - pos: 64.5,-6.5 + pos: 9.5,-20.5 parent: 31 - - uid: 12027 + - uid: 7876 components: - type: Transform - pos: 63.5,-6.5 + pos: 8.5,-20.5 parent: 31 - - uid: 12028 + - uid: 7877 components: - type: Transform - pos: 62.5,-7.5 + pos: 10.5,-20.5 parent: 31 -- proto: Cautery - entities: - - uid: 3040 + - uid: 7878 components: - type: Transform - pos: 19.023205,-18.200846 + pos: 11.5,-20.5 parent: 31 -- proto: Chair - entities: - - uid: 423 + - uid: 7879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,15.5 + pos: 12.5,-20.5 parent: 31 - - uid: 424 + - uid: 7880 components: - type: Transform - pos: 16.5,17.5 + pos: 14.5,-20.5 parent: 31 - - uid: 629 + - uid: 7881 components: - type: Transform - pos: 45.5,-1.5 + pos: 14.5,-21.5 parent: 31 - - uid: 654 + - uid: 7882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 + pos: 14.5,-22.5 parent: 31 - - uid: 896 + - uid: 7883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-3.5 + pos: 14.5,-23.5 parent: 31 - - uid: 2003 + - uid: 7884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,14.5 + pos: 14.5,-24.5 parent: 31 - - uid: 2047 + - uid: 7885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,13.5 + pos: 15.5,-25.5 parent: 31 - - uid: 2051 + - uid: 7886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 + pos: 17.5,-25.5 parent: 31 - - uid: 3379 + - uid: 7887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-13.5 + pos: 16.5,-25.5 parent: 31 - - uid: 3908 + - uid: 7888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-30.5 + pos: 18.5,-25.5 parent: 31 - - uid: 3961 + - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 + pos: 19.5,-25.5 parent: 31 - - uid: 4192 + - uid: 7890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 20.5,-25.5 parent: 31 - - uid: 4291 + - uid: 7891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-3.5 + pos: 21.5,-25.5 parent: 31 - - uid: 4380 + - uid: 7892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-12.5 + pos: 22.5,-25.5 parent: 31 - - uid: 4709 + - uid: 7893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-17.5 + pos: 22.5,-24.5 parent: 31 - - uid: 4714 + - uid: 7894 components: - type: Transform - pos: -24.5,-4.5 + pos: 22.5,-23.5 parent: 31 - - uid: 4715 + - uid: 7915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-7.5 + pos: 22.5,-18.5 parent: 31 - - uid: 5004 + - uid: 7916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 + pos: 22.5,-17.5 parent: 31 - - uid: 6258 + - uid: 7917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 + pos: 23.5,-17.5 parent: 31 - - uid: 6259 + - uid: 7918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 + pos: 24.5,-17.5 parent: 31 - - uid: 6261 + - uid: 7919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 + pos: 25.5,-17.5 parent: 31 - - uid: 6617 + - uid: 7920 components: - type: Transform - pos: 22.5,-16.5 + pos: 26.5,-17.5 parent: 31 - - uid: 7027 + - uid: 7921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 + pos: 26.5,-16.5 parent: 31 - - uid: 7286 + - uid: 7922 components: - type: Transform - pos: 10.5,1.5 + pos: 26.5,-15.5 parent: 31 - - uid: 7287 + - uid: 7923 components: - type: Transform - pos: 9.5,1.5 + pos: 26.5,-14.5 parent: 31 - - uid: 7288 + - uid: 7924 components: - type: Transform - pos: 8.5,1.5 + pos: 26.5,-13.5 parent: 31 - - uid: 7341 + - uid: 7926 components: - type: Transform - pos: -18.5,-4.5 + pos: 38.5,-6.5 parent: 31 - - uid: 7365 + - uid: 7927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-30.5 + pos: 38.5,-7.5 parent: 31 - - uid: 7477 + - uid: 7928 components: - type: Transform - pos: -0.5,14.5 + pos: 37.5,-7.5 parent: 31 - - uid: 7627 + - uid: 7929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,17.5 + pos: 36.5,-7.5 parent: 31 - - uid: 7646 + - uid: 7930 components: - type: Transform - pos: -28.5,-7.5 + pos: 34.5,-7.5 parent: 31 - - uid: 7774 + - uid: 7931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + pos: 35.5,-7.5 parent: 31 - - uid: 7775 + - uid: 7932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,18.5 + pos: 33.5,-7.5 parent: 31 - - uid: 7841 + - uid: 7933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,24.5 + pos: 32.5,-7.5 parent: 31 - - uid: 7842 + - uid: 7934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,24.5 + pos: 31.5,-7.5 parent: 31 - - uid: 7960 + - uid: 7935 components: - type: Transform - pos: 27.5,6.5 + pos: 30.5,-7.5 parent: 31 - - uid: 8283 + - uid: 7936 components: - type: Transform - pos: 50.5,-18.5 + pos: 29.5,-7.5 parent: 31 - - uid: 8284 + - uid: 7937 components: - type: Transform - pos: 48.5,-18.5 + pos: 28.5,-7.5 parent: 31 - - uid: 8285 + - uid: 7938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-23.5 + pos: 27.5,-7.5 parent: 31 - - uid: 8286 + - uid: 7939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-25.5 + pos: 26.5,-7.5 parent: 31 - - uid: 8290 + - uid: 7951 components: - type: Transform - pos: 37.5,-23.5 + pos: 23.5,-13.5 parent: 31 - - uid: 8291 + - uid: 7974 components: - type: Transform - pos: 35.5,-23.5 + pos: 24.5,-2.5 parent: 31 - - uid: 8299 + - uid: 7975 components: - type: Transform - pos: 36.5,-23.5 + pos: 23.5,-2.5 parent: 31 - - uid: 8812 + - uid: 7976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,29.5 + pos: 22.5,-2.5 parent: 31 - - uid: 8869 + - uid: 7978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,6.5 + pos: 21.5,-1.5 parent: 31 - - uid: 8870 + - uid: 7979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,7.5 + pos: 21.5,-0.5 parent: 31 - - uid: 8938 + - uid: 7980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 + pos: 21.5,0.5 parent: 31 - - uid: 8939 + - uid: 7981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 + pos: 21.5,1.5 parent: 31 - - uid: 8952 + - uid: 8076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,8.5 + rot: 3.141592653589793 rad + pos: 55.5,14.5 parent: 31 - - uid: 9239 + - uid: 8119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,4.5 + pos: 56.5,-10.5 parent: 31 - - uid: 9240 + - uid: 8139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,5.5 + pos: 47.5,-8.5 parent: 31 - - uid: 9241 + - uid: 8151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,6.5 + pos: 56.5,7.5 parent: 31 - - uid: 9242 + - uid: 8507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,4.5 + pos: -25.5,-29.5 parent: 31 - - uid: 9243 + - uid: 8510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,5.5 + pos: -24.5,-29.5 parent: 31 - - uid: 9244 + - uid: 8655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,6.5 + pos: -38.5,-28.5 parent: 31 - - uid: 9245 + - uid: 8656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,4.5 + pos: -39.5,-28.5 parent: 31 - - uid: 9246 + - uid: 8657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,5.5 + pos: -40.5,-28.5 parent: 31 - - uid: 9247 + - uid: 8658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,6.5 + pos: -41.5,-28.5 parent: 31 - - uid: 9336 + - uid: 8659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,0.5 + pos: -42.5,-28.5 parent: 31 - - uid: 9337 + - uid: 8660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,1.5 + pos: -32.5,-38.5 parent: 31 - - uid: 9804 + - uid: 8661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-39.5 + pos: -32.5,-37.5 parent: 31 - - uid: 10319 + - uid: 8662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -32.5,-36.5 parent: 31 - - uid: 10320 + - uid: 8663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + pos: -32.5,-35.5 parent: 31 - - uid: 10823 + - uid: 8664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,15.5 + pos: -32.5,-34.5 parent: 31 - - uid: 11088 + - uid: 8751 components: - type: Transform - pos: 46.5,-1.5 + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 parent: 31 - - uid: 11089 + - uid: 8754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 + pos: -29.5,-26.5 parent: 31 -- proto: ChairCursed - entities: - - uid: 11691 + - uid: 8909 components: - type: Transform - pos: 2.5952716,-32.56967 + rot: -1.5707963267948966 rad + pos: -6.5,25.5 parent: 31 - - uid: 11710 + - uid: 9007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.3455758,-34.139465 + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 parent: 31 -- proto: ChairFolding - entities: - - uid: 1042 + - uid: 9009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 + pos: -30.5,-26.5 parent: 31 - - uid: 2309 + - uid: 9010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 + pos: -29.5,-27.5 parent: 31 - - uid: 7079 + - uid: 9060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,9.5 + pos: 16.5,21.5 parent: 31 - - uid: 10755 + - uid: 9061 components: - type: Transform - pos: -40.5,-9.5 + pos: 53.5,6.5 parent: 31 - - uid: 10756 + - uid: 9062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-9.5 + pos: 53.5,7.5 parent: 31 - - uid: 10757 + - uid: 9088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-9.5 + pos: -29.5,-28.5 parent: 31 - - uid: 10762 + - uid: 9252 components: - type: Transform - pos: -42.5,-9.5 + pos: -29.5,-29.5 parent: 31 - - uid: 10763 + - uid: 9264 components: - type: Transform - pos: -41.5,-9.5 + pos: -28.5,-29.5 parent: 31 -- proto: ChairOfficeDark - entities: - - uid: 953 + - uid: 9269 components: - type: Transform - pos: 49.5,4.5 + pos: -23.5,-29.5 parent: 31 - - uid: 961 + - uid: 9277 components: - type: Transform - rot: 1.5707963705062866 rad - pos: -2.5,25.5 + rot: -1.5707963267948966 rad + pos: -28.5,-19.5 parent: 31 - - uid: 962 + - uid: 9280 components: - type: Transform - rot: 1.5707963705062866 rad - pos: -2.5,24.5 + pos: -1.5,-31.5 parent: 31 - - uid: 963 + - uid: 9281 components: - type: Transform - rot: 4.71238902409608 rad - pos: -0.5,25.5 + pos: -0.5,-31.5 parent: 31 - - uid: 964 + - uid: 9285 components: - type: Transform - rot: 4.71238902409608 rad - pos: -0.5,24.5 + pos: 0.5,-31.5 parent: 31 - - uid: 2211 + - uid: 9375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 + rot: 3.141592653589793 rad + pos: 53.5,5.5 parent: 31 - - uid: 2298 + - uid: 9451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-26.5 + pos: -22.5,-32.5 parent: 31 - - uid: 2777 + - uid: 9452 components: - type: Transform - pos: -29.5,-1.5 + pos: -23.5,-32.5 parent: 31 - - uid: 2815 + - uid: 9543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,0.5 + rot: 1.5707963267948966 rad + pos: 64.5,13.5 parent: 31 - - uid: 3154 + - uid: 9546 components: - type: Transform - pos: -1.5,26.5 + rot: 1.5707963267948966 rad + pos: 65.5,13.5 parent: 31 - - uid: 3308 + - uid: 9547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,19.5 + rot: 1.5707963267948966 rad + pos: 67.5,13.5 parent: 31 - - uid: 3991 + - uid: 9548 components: - type: Transform - pos: -1.5,7.5 + rot: 1.5707963267948966 rad + pos: 67.5,13.5 parent: 31 - - uid: 3994 + - uid: 9556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,23.5 + pos: 59.5,13.5 parent: 31 - - uid: 4150 + - uid: 9597 components: - type: Transform - pos: -10.5,8.5 + rot: -1.5707963267948966 rad + pos: -7.5,25.5 parent: 31 - - uid: 4179 + - uid: 9706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 + pos: 55.5,6.5 parent: 31 - - uid: 4186 + - uid: 9728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,31.5 + pos: 53.5,-0.5 parent: 31 - - uid: 4191 + - uid: 9763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,31.5 + pos: -17.5,-35.5 parent: 31 - - uid: 4268 + - uid: 9764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 + pos: -16.5,-35.5 parent: 31 - - uid: 4738 + - uid: 9766 components: - type: Transform - pos: 15.5,9.5 + pos: -15.5,-35.5 parent: 31 - - uid: 4785 + - uid: 9767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-29.5 + pos: -14.5,-35.5 parent: 31 - - uid: 4902 + - uid: 9768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 + pos: -18.5,-35.5 parent: 31 - - uid: 6017 + - uid: 9770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 + pos: -3.5,-38.5 parent: 31 - - uid: 6959 + - uid: 9771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 + pos: -2.5,-38.5 parent: 31 - - uid: 7153 + - uid: 9772 components: - type: Transform - pos: 7.5,20.5 + pos: -1.5,-38.5 parent: 31 - - uid: 7294 + - uid: 9773 components: - type: Transform - pos: 9.5,-27.5 + pos: -0.5,-38.5 parent: 31 - - uid: 7364 + - uid: 9774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 + pos: 0.5,-38.5 parent: 31 - - uid: 8211 + - uid: 9775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 + pos: 1.5,-38.5 parent: 31 - - uid: 8695 + - uid: 9776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-25.5 + pos: 2.5,-38.5 parent: 31 - - uid: 8701 + - uid: 9777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-25.5 + pos: -4.5,-38.5 parent: 31 - - uid: 8702 + - uid: 9778 components: - type: Transform - pos: -35.5,-23.5 + pos: 8.5,-32.5 parent: 31 - - uid: 8706 + - uid: 9779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-24.5 + pos: 8.5,-33.5 parent: 31 - - uid: 8707 + - uid: 9780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 + pos: 8.5,-34.5 parent: 31 - - uid: 8769 + - uid: 9781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 + pos: 8.5,-35.5 parent: 31 - - uid: 8811 + - uid: 9784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,29.5 + pos: 5.5,-38.5 parent: 31 - - uid: 8865 + - uid: 9785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,5.5 + pos: 6.5,-38.5 parent: 31 - - uid: 8893 + - uid: 9954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 + rot: 1.5707963267948966 rad + pos: -33.5,-21.5 parent: 31 - - uid: 9002 + - uid: 10011 components: - type: Transform - pos: -20.5,-1.5 + rot: -1.5707963267948966 rad + pos: -28.5,-16.5 parent: 31 - - uid: 9023 + - uid: 10231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 + pos: 50.5,-9.5 parent: 31 - - uid: 9113 + - uid: 10253 components: - type: Transform - pos: 38.5,0.5 + pos: 52.5,-1.5 parent: 31 - - uid: 9466 + - uid: 10254 components: - type: Transform - pos: -15.5,-38.5 + pos: 52.5,-0.5 parent: 31 - - uid: 9726 + - uid: 10277 components: - type: Transform - pos: 49.5,-4.5 + pos: -30.5,-14.5 parent: 31 - - uid: 11711 + - uid: 10278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.173701,-33.826965 + pos: -30.5,-15.5 parent: 31 - - uid: 12051 + - uid: 10279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.83288,1.5887873 + pos: -30.5,-16.5 parent: 31 - - uid: 12052 + - uid: 10519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.879753,3.6512873 + pos: 31.5,19.5 parent: 31 - - uid: 12053 + - uid: 10653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.89538,4.588787 + pos: 45.5,-11.5 parent: 31 -- proto: ChairOfficeLight - entities: - - uid: 1383 + - uid: 10654 components: - type: Transform - pos: 15.5,-2.5 + pos: 45.5,-10.5 parent: 31 - - uid: 2288 + - uid: 10655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-23.5 + pos: 45.5,-9.5 parent: 31 - - uid: 2829 + - uid: 10656 components: - type: Transform - pos: 15.5,-5.5 + pos: 45.5,-8.5 parent: 31 - - uid: 4697 + - uid: 10657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-8.5 + pos: 45.5,-7.5 parent: 31 - - uid: 5095 + - uid: 10711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 + pos: 31.5,27.5 parent: 31 - - uid: 5732 + - uid: 10799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.70261,-19.400406 + pos: 25.5,-13.5 parent: 31 - - uid: 7077 + - uid: 10883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 + pos: 47.5,-10.5 parent: 31 - - uid: 7272 + - uid: 10884 components: - type: Transform - pos: 0.5,-26.5 + pos: 48.5,-10.5 parent: 31 - - uid: 7615 + - uid: 10885 components: - type: Transform - pos: 6.5,-10.5 + pos: 49.5,-10.5 parent: 31 - - uid: 8450 + - uid: 10886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.452609,-19.181656 + pos: 50.5,-10.5 parent: 31 - - uid: 9120 + - uid: 10888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 + pos: 50.5,-11.5 parent: 31 - - uid: 9294 + - uid: 10891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 + pos: 56.5,-8.5 parent: 31 - - uid: 10404 + - uid: 10893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-20.5 + pos: 55.5,-9.5 parent: 31 -- proto: ChairPilotSeat - entities: - - uid: 1039 + - uid: 11018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 + rot: -1.5707963267948966 rad + pos: -5.5,25.5 parent: 31 -- proto: ChairRitual - entities: - - uid: 9690 + - uid: 11019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-41.5 + rot: -1.5707963267948966 rad + pos: -4.5,25.5 parent: 31 - - uid: 9691 + - uid: 11020 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-41.5 + pos: -4.5,24.5 parent: 31 - - uid: 11722 + - uid: 11021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.373835,-24.217701 + rot: -1.5707963267948966 rad + pos: -4.5,23.5 parent: 31 -- proto: ChairWood - entities: - - uid: 1337 + - uid: 11022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 + rot: -1.5707963267948966 rad + pos: -4.5,22.5 parent: 31 - - uid: 2037 + - uid: 11023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 + rot: -1.5707963267948966 rad + pos: -4.5,21.5 parent: 31 - - uid: 2038 + - uid: 11081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 + pos: 53.5,19.5 parent: 31 - - uid: 2039 + - uid: 11083 components: - type: Transform - pos: 11.5,-22.5 + pos: 54.5,19.5 parent: 31 - - uid: 2391 + - uid: 11085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 + pos: 53.5,10.5 parent: 31 - - uid: 2405 + - uid: 11086 components: - type: Transform - pos: 10.5,-22.5 + pos: 53.5,11.5 parent: 31 - - uid: 2440 + - uid: 11087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-25.5 + pos: 53.5,12.5 parent: 31 - - uid: 3153 + - uid: 11099 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-25.5 + pos: 55.5,13.5 parent: 31 - - uid: 3406 + - uid: 11100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 + rot: 3.141592653589793 rad + pos: 56.5,13.5 parent: 31 - - uid: 4060 + - uid: 11102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 + pos: 26.5,-3.5 parent: 31 - - uid: 7295 + - uid: 11103 components: - type: Transform - pos: 7.5,-22.5 + pos: 26.5,-4.5 parent: 31 - - uid: 7299 + - uid: 11104 components: - type: Transform - pos: 4.468987,-25.766485 + pos: 26.5,-5.5 parent: 31 - - uid: 7575 + - uid: 11105 components: - type: Transform - pos: -2.5,-0.5 + pos: 26.5,-2.5 parent: 31 - - uid: 7577 + - uid: 11140 components: - type: Transform - pos: -3.5,-0.5 + pos: 61.5,12.5 parent: 31 - - uid: 8104 + - uid: 11249 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.531487,-27.172735 + pos: -32.5,7.5 parent: 31 - - uid: 8424 + - uid: 11834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 66.5,13.5 parent: 31 - - uid: 8434 + - uid: 11835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 + rot: 1.5707963267948966 rad + pos: 68.5,13.5 parent: 31 - - uid: 10701 + - uid: 11836 components: - type: Transform - pos: -32.110504,-22.362251 + rot: 1.5707963267948966 rad + pos: 63.5,13.5 parent: 31 - - uid: 10702 + - uid: 11837 components: - type: Transform - pos: -31.46988,-22.018501 + rot: 1.5707963267948966 rad + pos: 62.5,13.5 parent: 31 - - uid: 10703 + - uid: 11838 components: - type: Transform - pos: -32.639442,-22.09787 + rot: 1.5707963267948966 rad + pos: 72.5,13.5 parent: 31 - - uid: 11139 + - uid: 11839 components: - type: Transform - pos: -26.498642,-24.59787 + rot: 1.5707963267948966 rad + pos: 74.5,13.5 parent: 31 - - uid: 11261 + - uid: 11840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.483017,-26.363495 + rot: 1.5707963267948966 rad + pos: 75.5,13.5 parent: 31 -- proto: CheapRollerBed - entities: - - uid: 7252 + - uid: 11979 components: - type: Transform - pos: 24.47556,-5.97663 + pos: 75.5,10.5 parent: 31 - - uid: 7253 + - uid: 11980 components: - type: Transform - pos: 24.491184,-6.41413 + pos: 75.5,9.5 parent: 31 -- proto: CheckerBoard - entities: - - uid: 10764 + - uid: 11981 components: - type: Transform - pos: -48.183727,-9.500211 + pos: 75.5,8.5 parent: 31 -- proto: chem_master - entities: - - uid: 606 + - uid: 11982 components: - type: Transform - pos: 19.5,-0.5 + pos: 76.5,8.5 parent: 31 - - uid: 5075 + - uid: 11983 components: - type: Transform - pos: 15.5,1.5 + pos: 74.5,8.5 parent: 31 -- proto: ChemDispenser - entities: - - uid: 5076 + - uid: 11984 components: - type: Transform - pos: 19.5,-1.5 + pos: 73.5,8.5 parent: 31 - - uid: 5079 + - uid: 11985 components: - type: Transform - pos: 16.5,1.5 + pos: 76.5,3.5 parent: 31 -- proto: ChemistryHotplate - entities: - - uid: 4207 + - uid: 11986 components: - type: Transform - pos: 18.5,1.5 + pos: 75.5,3.5 parent: 31 -- proto: ChessBoard - entities: - - uid: 841 + - uid: 11987 components: - type: Transform - pos: -21.49966,9.580566 + pos: 74.5,3.5 parent: 31 - - uid: 10815 + - uid: 11988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.515862,-26.37586 + pos: 73.5,3.5 parent: 31 -- proto: Cigarette - entities: - - uid: 8903 + - uid: 11989 components: - type: Transform - pos: 31.747108,6.5736575 + pos: 72.5,3.5 parent: 31 -- proto: CigarGold - entities: - - uid: 9753 + - uid: 11990 components: - type: Transform - pos: -15.382986,-39.43112 + pos: 72.5,4.5 parent: 31 - - uid: 11134 + - uid: 11991 components: - type: Transform - pos: 28.739138,9.837011 + pos: 72.5,2.5 parent: 31 -- proto: CigarGoldCase - entities: - - uid: 1199 + - uid: 11992 components: - type: Transform - pos: -3.728004,16.448915 + pos: 72.5,1.5 parent: 31 -- proto: CigarSpent - entities: - - uid: 11707 + - uid: 11993 components: - type: Transform - pos: 3.6758833,-33.400673 + pos: 72.5,0.5 parent: 31 -- proto: CigPackMixed - entities: - - uid: 3307 + - uid: 11994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.484562,-5.364609 + pos: 71.5,0.5 parent: 31 -- proto: CircuitImprinter - entities: - - uid: 821 + - uid: 11995 components: - type: Transform - pos: -13.5,-22.5 + pos: 71.5,-0.5 parent: 31 -- proto: CleanerDispenser - entities: - - uid: 554 + - uid: 11996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-13.5 + pos: 70.5,-0.5 parent: 31 -- proto: ClosetBombFilled - entities: - - uid: 5116 + - uid: 11997 components: - type: Transform - pos: -14.5,13.5 + pos: 70.5,-1.5 parent: 31 -- proto: ClosetChefFilled - entities: - - uid: 799 + - uid: 11998 components: - type: Transform - pos: -12.5,1.5 + pos: 73.5,1.5 parent: 31 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 759 + - uid: 11999 components: - type: Transform - pos: 5.5,-21.5 + pos: 73.5,2.5 parent: 31 - - 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: 761 + - uid: 12000 components: - type: Transform - pos: -23.5,11.5 + pos: 74.5,2.5 parent: 31 - - uid: 828 + - uid: 12001 components: - type: Transform - pos: 54.5,-5.5 + pos: 77.5,13.5 parent: 31 - - uid: 2181 + - uid: 12002 components: - type: Transform - pos: 15.5,14.5 + pos: 78.5,11.5 parent: 31 - - uid: 3736 + - uid: 12003 components: - type: Transform - pos: -0.5,-17.5 + pos: 78.5,10.5 parent: 31 - - uid: 4381 + - uid: 12004 components: - type: Transform - pos: 33.5,-10.5 + pos: 79.5,7.5 parent: 31 - - uid: 6907 + - uid: 12005 components: - type: Transform - pos: 30.5,14.5 + pos: 79.5,5.5 parent: 31 - - uid: 7161 + - uid: 12006 components: - type: Transform - pos: 23.5,7.5 + pos: 79.5,9.5 parent: 31 - - uid: 7497 + - uid: 12007 components: - type: Transform - pos: 14.5,-29.5 + pos: 79.5,6.5 parent: 31 - - uid: 7791 + - uid: 12008 components: - type: Transform - pos: -20.5,22.5 + pos: 79.5,4.5 parent: 31 - - uid: 8805 + - uid: 12009 components: - type: Transform - pos: 7.5,28.5 + pos: 79.5,8.5 parent: 31 - - uid: 9323 + - uid: 12010 components: - type: Transform - pos: -34.5,7.5 + pos: 79.5,3.5 parent: 31 - - uid: 9447 + - uid: 12011 components: - type: Transform - pos: -22.5,-31.5 + pos: 78.5,1.5 parent: 31 - - uid: 9740 + - uid: 12012 components: - type: Transform - pos: 15.5,-21.5 + pos: 79.5,1.5 parent: 31 - - uid: 9790 + - uid: 12013 components: - type: Transform - pos: -18.5,-36.5 + pos: 77.5,0.5 parent: 31 - - uid: 9791 + - uid: 12014 components: - type: Transform - pos: 9.5,-32.5 + pos: 75.5,-1.5 parent: 31 - - uid: 10645 + - uid: 12015 components: - type: Transform - pos: 39.5,-14.5 + pos: 73.5,-3.5 parent: 31 - - uid: 10754 + - uid: 12016 components: - type: Transform - pos: -53.5,-9.5 + pos: 72.5,-4.5 parent: 31 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 11448 + - uid: 12017 components: - type: Transform - pos: 15.5,-23.5 + pos: 72.5,-5.5 parent: 31 - - uid: 11449 + - uid: 12018 components: - type: Transform - pos: 42.5,-13.5 + pos: 71.5,-5.5 parent: 31 - - uid: 11450 + - uid: 12019 components: - type: Transform - pos: -20.5,12.5 + pos: 73.5,-4.5 parent: 31 -- proto: ClosetFireFilled - entities: - - uid: 3507 + - uid: 12020 components: - type: Transform - pos: 30.5,13.5 + pos: 69.5,-6.5 parent: 31 - - uid: 3922 + - uid: 12021 components: - type: Transform - pos: -1.5,-17.5 + pos: 67.5,-6.5 parent: 31 - - uid: 4237 + - uid: 12022 components: - type: Transform - pos: 54.5,-3.5 + pos: 68.5,-6.5 parent: 31 - - uid: 7792 + - uid: 12023 components: - type: Transform - pos: -20.5,23.5 + pos: 66.5,-6.5 parent: 31 - - uid: 7912 + - uid: 12024 components: - type: Transform - pos: 23.5,0.5 + pos: 65.5,-6.5 parent: 31 - - uid: 8804 + - uid: 12025 components: - type: Transform - pos: 8.5,28.5 + pos: 62.5,-6.5 parent: 31 - - uid: 9739 + - uid: 12026 components: - type: Transform - pos: 15.5,-22.5 + pos: 64.5,-6.5 parent: 31 - - uid: 9792 + - uid: 12027 components: - type: Transform - pos: -6.5,-37.5 + pos: 63.5,-6.5 parent: 31 - - uid: 10132 + - uid: 12028 components: - type: Transform - pos: 16.5,14.5 + pos: 62.5,-7.5 parent: 31 - - uid: 10753 + - uid: 12439 components: - type: Transform - pos: -53.5,-10.5 + pos: 49.5,7.5 parent: 31 -- proto: ClosetJanitorFilled - entities: - - uid: 2189 + - uid: 12440 components: - type: Transform - pos: -17.5,-10.5 + pos: 50.5,7.5 parent: 31 -- proto: ClosetL3VirologyFilled - entities: - - uid: 6695 + - uid: 12441 components: - type: Transform - pos: 14.5,-7.5 + pos: 50.5,8.5 parent: 31 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 550 + - uid: 12500 components: - type: Transform - pos: 46.5,-0.5 + pos: 55.5,16.5 parent: 31 - - uid: 1412 + - uid: 12501 components: - type: Transform - pos: -7.5,-8.5 + pos: 57.5,16.5 parent: 31 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7058 + - uid: 12502 components: - type: Transform - pos: 29.5,-9.5 + pos: 56.5,16.5 parent: 31 - - uid: 7518 + - uid: 12503 components: - type: Transform - pos: -11.5,-12.5 + pos: 57.5,17.5 parent: 31 - - uid: 7789 + - uid: 12504 components: - type: Transform - pos: -19.5,12.5 + pos: 58.5,17.5 parent: 31 - - uid: 7911 + - uid: 12505 components: - type: Transform - pos: 23.5,1.5 + pos: 59.5,17.5 parent: 31 - - uid: 7948 + - uid: 12506 components: - type: Transform - pos: 24.5,-25.5 + pos: 58.5,15.5 parent: 31 - - uid: 9465 + - uid: 12507 components: - type: Transform - pos: -9.5,-39.5 + pos: 59.5,15.5 parent: 31 - - uid: 9570 + - uid: 12508 components: - type: Transform - pos: -27.5,13.5 + pos: 60.5,15.5 parent: 31 - - uid: 9571 + - uid: 12509 components: - type: Transform - pos: -5.5,20.5 + pos: 57.5,15.5 parent: 31 - - uid: 9572 + - uid: 12510 components: - type: Transform - pos: 27.5,-18.5 + pos: 55.5,18.5 parent: 31 - - uid: 9675 + - uid: 12511 components: - type: Transform - pos: -1.5,-41.5 + pos: 55.5,19.5 parent: 31 - - uid: 9793 + - uid: 12512 components: - type: Transform - pos: 5.5,-37.5 + pos: 56.5,19.5 parent: 31 - - uid: 9794 + - uid: 12513 components: - type: Transform - pos: -11.5,-36.5 + pos: 57.5,19.5 parent: 31 - - uid: 9862 + - uid: 12514 components: - type: Transform - pos: 11.5,-19.5 + pos: 58.5,19.5 parent: 31 - - uid: 10221 + - uid: 12515 components: - type: Transform - pos: -30.5,-13.5 + pos: 59.5,19.5 parent: 31 - - uid: 10646 + - uid: 12516 components: - type: Transform - pos: 45.5,-13.5 + pos: 60.5,19.5 parent: 31 - - uid: 11123 + - uid: 12517 components: - type: Transform - pos: -4.5,29.5 + pos: 55.5,20.5 parent: 31 - - uid: 11229 + - uid: 12518 components: - type: Transform - pos: -27.5,-15.5 + pos: 55.5,21.5 parent: 31 - - 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: 11244 + - uid: 12519 components: - type: Transform - pos: -31.5,9.5 + pos: 56.5,21.5 parent: 31 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 5127 + - uid: 12520 components: - type: Transform - pos: 52.5,1.5 + pos: 57.5,21.5 parent: 31 - - uid: 7068 + - uid: 12521 components: - type: Transform - pos: 53.5,1.5 + pos: 55.5,22.5 parent: 31 - - uid: 7571 + - uid: 12522 components: - type: Transform - pos: -11.5,-11.5 + pos: 55.5,23.5 parent: 31 - - uid: 8159 + - uid: 12523 components: - type: Transform - pos: -7.5,-25.5 + pos: 56.5,23.5 parent: 31 - - uid: 12046 + - uid: 12524 components: - type: Transform - pos: 59.5,6.5 + pos: 57.5,23.5 parent: 31 -- proto: ClosetSteelBase - entities: - - uid: 7853 + - uid: 12714 components: - type: Transform - pos: 27.5,-22.5 + pos: -43.5,-28.5 parent: 31 - - 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: - - 7856 - - 7859 - - 7854 - - 7857 - - 7855 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetWallEmergency - entities: - - uid: 9865 + - uid: 12715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,0.5 + pos: -44.5,-28.5 parent: 31 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 7301 + - uid: 12716 components: - type: Transform - pos: -5.5,-24.5 + pos: -45.5,-28.5 parent: 31 - - uid: 9868 + - uid: 12717 components: - type: Transform - pos: 28.5,7.5 + pos: -46.5,-28.5 parent: 31 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 339 + - uid: 12718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,8.5 + pos: -47.5,-28.5 parent: 31 - - uid: 7105 + - uid: 12719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 + pos: -48.5,-28.5 parent: 31 - - uid: 7302 + - uid: 12720 components: - type: Transform - pos: -6.5,-24.5 + pos: -49.5,-28.5 parent: 31 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 9864 + - uid: 12721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 + pos: -50.5,-28.5 parent: 31 -- proto: ClothingBeltChampion - entities: - - uid: 4197 + - uid: 12722 components: - type: Transform - pos: -3.60061,17.54974 + pos: -51.5,-28.5 parent: 31 -- proto: ClothingBeltUtility - entities: - - uid: 4757 + - uid: 12723 components: - type: Transform - pos: 10.66112,-19.235216 + pos: -52.5,-28.5 parent: 31 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 7482 + - uid: 12724 components: - type: Transform - pos: 35.56775,-3.545828 + pos: -53.5,-28.5 parent: 31 -- proto: ClothingEyesEyepatch - entities: - - uid: 3964 + - uid: 12725 components: - type: Transform - pos: 35.470943,-15.2492285 + pos: -54.5,-28.5 parent: 31 -- proto: ClothingEyesGlasses +- proto: Cautery entities: - - uid: 7107 - components: - - type: Transform - parent: 7110 - - type: Physics - canCollide: False - - uid: 11264 + - uid: 3040 components: - type: Transform - pos: -9.178577,-18.39677 + pos: 19.023205,-18.200846 parent: 31 - - uid: 11265 +- proto: Chair + entities: + - uid: 423 components: - type: Transform - pos: -9.162952,-18.61552 + rot: 3.141592653589793 rad + pos: 16.5,15.5 parent: 31 - - uid: 11266 + - uid: 424 components: - type: Transform - pos: -9.162952,-18.20927 + pos: 16.5,17.5 parent: 31 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 8213 + - uid: 629 components: - type: Transform - pos: 35.614624,-3.264578 + pos: 45.5,-1.5 parent: 31 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 4235 + - uid: 654 components: - type: Transform - pos: -10.276402,-6.3744125 + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 parent: 31 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 7580 + - uid: 896 components: - type: Transform - pos: 32.538,-3.0937886 + rot: 3.141592653589793 rad + pos: 45.5,-3.5 parent: 31 -- proto: ClothingEyesHudMedical - entities: - - uid: 6512 + - uid: 2003 components: - type: Transform - pos: 16.646324,-6.5235434 + rot: 1.5707963267948966 rad + pos: -5.5,14.5 parent: 31 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 11225 + - uid: 2047 components: - type: Transform - pos: -29.520256,-9.469171 + rot: 1.5707963267948966 rad + pos: -5.5,13.5 parent: 31 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 2523 + - uid: 2051 components: - type: Transform - pos: -29.506107,7.62424 + rot: 1.5707963267948966 rad + pos: -5.5,12.5 parent: 31 - - uid: 7572 + - uid: 3379 components: - type: Transform - pos: -11.565304,-10.576338 + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 parent: 31 - - uid: 7581 + - uid: 3908 components: - type: Transform - pos: 32.479706,-2.7047698 + rot: 3.141592653589793 rad + pos: 50.5,-30.5 parent: 31 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 6427 + - uid: 3961 components: - type: Transform - pos: 51.410316,17.602825 + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 parent: 31 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 2212 + - uid: 4192 components: - type: Transform - pos: 19.45916,-20.403913 + rot: -1.5707963267948966 rad + pos: 4.5,24.5 parent: 31 - - uid: 7102 + - uid: 4291 components: - type: Transform - parent: 7110 - - type: Physics - canCollide: False -- proto: ClothingHandsGlovesLeather - entities: - - uid: 9670 + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 31 + - uid: 4380 components: - type: Transform - pos: -4.544421,-41.335396 + rot: -1.5707963267948966 rad + pos: 35.5,-12.5 parent: 31 -- proto: ClothingHandsGlovesMercFingerless - entities: - - uid: 988 + - uid: 4709 components: - type: Transform - pos: 30.104523,-19.311977 + rot: 1.5707963267948966 rad + pos: -17.5,-17.5 parent: 31 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 10029 + - uid: 4714 components: - type: Transform - pos: 19.51705,-18.456926 + pos: -24.5,-4.5 parent: 31 -- proto: ClothingHeadHatAnimalCatBlack - entities: - - uid: 7971 + - uid: 4715 components: - type: Transform - pos: 26.502825,-1.4970446 + rot: 3.141592653589793 rad + pos: -23.5,-7.5 parent: 31 -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 3367 + - uid: 5004 components: - type: Transform - pos: -4.5089555,-12.629585 + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 parent: 31 -- proto: ClothingHeadHatBeret - entities: - - uid: 819 + - uid: 6258 components: - type: Transform - pos: -22.754051,9.462572 + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 parent: 31 -- proto: ClothingHeadHatBeretBrigmedic - entities: - - uid: 6607 + - uid: 6259 components: - type: Transform - pos: 14.371354,-5.1023016 + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 parent: 31 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 9261 + - uid: 6261 components: - type: Transform - pos: 0.36587167,-19.353008 + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 parent: 31 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 7484 + - uid: 6617 components: - type: Transform - pos: -21.550486,17.73303 + pos: 22.5,-16.5 parent: 31 - - uid: 7857 + - uid: 7027 components: - type: Transform - parent: 7853 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatFlowerWreath - entities: - - uid: 3235 + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 31 + - uid: 7286 components: - type: Transform - pos: 49.449142,-25.427004 + pos: 10.5,1.5 parent: 31 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 10803 + - uid: 7287 components: - type: Transform - pos: 23.016964,-16.05082 + pos: 9.5,1.5 parent: 31 -- proto: ClothingHeadHatPirate - entities: - - uid: 4503 + - uid: 7288 components: - type: Transform - pos: 36.423782,-15.13722 + pos: 8.5,1.5 parent: 31 -- proto: ClothingHeadHatPumpkin - entities: - - uid: 7407 + - uid: 7341 components: - type: Transform - pos: 48.273617,-26.666399 + pos: -18.5,-4.5 parent: 31 -- proto: ClothingHeadHatUshanka - entities: - - uid: 844 + - uid: 7365 components: - type: Transform - pos: -15.464306,-10.5187645 + rot: 3.141592653589793 rad + pos: 48.5,-30.5 parent: 31 - - uid: 7570 + - uid: 7627 components: - type: Transform - pos: -15.5245695,-10.430269 + rot: -1.5707963267948966 rad + pos: -28.5,17.5 parent: 31 -- proto: ClothingHeadHatWelding - entities: - - uid: 71 + - uid: 7646 components: - type: Transform - pos: -1.6376766,-24.290537 + pos: -28.5,-7.5 parent: 31 -- proto: ClothingHeadsetGrey - entities: - - uid: 10480 + - uid: 7774 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.173836,-5.2182446 + pos: 1.5,19.5 parent: 31 -- proto: ClothingMaskBreath - entities: - - uid: 4147 + - uid: 7775 components: - type: Transform - pos: -11.563622,-27.408012 + rot: 1.5707963267948966 rad + pos: 1.5,18.5 parent: 31 - - uid: 10661 + - uid: 7841 components: - type: Transform - pos: 43.593338,-13.568842 + rot: 3.141592653589793 rad + pos: -15.5,24.5 parent: 31 -- proto: ClothingMaskBreathMedical - entities: - - uid: 10027 + - uid: 7842 components: - type: Transform - pos: 18.631598,-18.486423 + rot: 3.141592653589793 rad + pos: -14.5,24.5 parent: 31 -- proto: ClothingMaskGas - entities: - - uid: 7970 + - uid: 7960 components: - type: Transform - pos: 37.548763,-3.266727 + pos: 27.5,6.5 parent: 31 -- proto: ClothingMaskGasMerc - entities: - - uid: 952 + - uid: 8283 components: - type: Transform - pos: 29.33713,-19.311977 + pos: 50.5,-18.5 parent: 31 -- proto: ClothingMaskGasSecurity - entities: - - uid: 7139 + - uid: 8284 components: - type: Transform - pos: 3.4708445,-42.623608 + pos: 48.5,-18.5 parent: 31 -- proto: ClothingMaskNeckGaiter - entities: - - uid: 3141 + - uid: 8285 components: - type: Transform - pos: 4.570995,-42.497837 + rot: -1.5707963267948966 rad + pos: 55.5,-23.5 parent: 31 -- proto: ClothingMaskSterile - entities: - - uid: 7101 - components: - - type: Transform - parent: 7110 - - type: Physics - canCollide: False - - uid: 9034 + - uid: 8286 components: - type: Transform - pos: 19.448904,-20.24775 + rot: -1.5707963267948966 rad + pos: 55.5,-25.5 parent: 31 -- proto: ClothingNeckBling - entities: - - uid: 718 + - uid: 8290 components: - type: Transform - pos: -3.31936,17.67474 + pos: 37.5,-23.5 parent: 31 -- proto: ClothingNeckCloakTrans - entities: - - uid: 9748 + - uid: 8291 components: - type: Transform - pos: -28.4315,17.631725 + pos: 35.5,-23.5 parent: 31 -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 11135 + - uid: 8299 components: - type: Transform - pos: 43.27403,-8.317395 + pos: 36.5,-23.5 parent: 31 -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 7843 + - uid: 8812 components: - type: Transform - pos: -13.566107,24.548891 + rot: -1.5707963267948966 rad + pos: -1.5,29.5 parent: 31 -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 9028 + - uid: 8869 components: - type: Transform - pos: 54.455875,-22.53784 + rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 31 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 10690 + - uid: 8870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.557934,-39.78134 + rot: -1.5707963267948966 rad + pos: 16.5,7.5 parent: 31 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 7895 + - uid: 8938 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.198872,-5.9850674 + pos: 5.5,-15.5 parent: 31 -- proto: ClothingNeckTieRed - entities: - - uid: 7109 - components: - - type: Transform - parent: 7110 - - type: Physics - canCollide: False - - uid: 7856 - components: - - type: Transform - parent: 7853 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorBasic - entities: - - uid: 1206 + - uid: 8939 components: - type: Transform - pos: -11.694116,19.672714 + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 parent: 31 - - uid: 9622 + - uid: 8952 components: - type: Transform - pos: -11.490991,19.672714 + rot: -1.5707963267948966 rad + pos: -28.5,8.5 parent: 31 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 36 + - uid: 9239 components: - type: Transform - pos: -11.170591,19.266254 + rot: 1.5707963267948966 rad + pos: -40.5,4.5 parent: 31 - - uid: 42 + - uid: 9240 components: - type: Transform - pos: -11.436216,19.297504 + rot: 1.5707963267948966 rad + pos: -40.5,5.5 parent: 31 - - uid: 43 + - uid: 9241 components: - type: Transform - pos: -11.733091,19.297504 + rot: 1.5707963267948966 rad + pos: -40.5,6.5 parent: 31 -- proto: ClothingOuterArmorReflective - entities: - - uid: 8020 + - uid: 9242 components: - type: Transform - pos: -11.209741,19.672714 + rot: -1.5707963267948966 rad + pos: -38.5,4.5 parent: 31 -- proto: ClothingOuterCoatDetective - entities: - - uid: 7480 + - uid: 9243 components: - type: Transform - pos: -21.602036,17.352358 + rot: -1.5707963267948966 rad + pos: -38.5,5.5 parent: 31 - - uid: 7854 - components: - - type: Transform - parent: 7853 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatJensen - entities: - - uid: 9758 + - uid: 9244 components: - type: Transform - pos: -2.537119,-39.46948 + rot: -1.5707963267948966 rad + pos: -38.5,6.5 parent: 31 - - uid: 11245 + - uid: 9245 components: - type: Transform - pos: -31.464373,10.564828 + rot: 1.5707963267948966 rad + pos: -37.5,4.5 parent: 31 -- proto: ClothingOuterCoatLab - entities: - - uid: 4231 + - uid: 9246 components: - type: Transform - parent: 7110 - - type: Physics - canCollide: False -- proto: ClothingOuterCoatPirate - entities: - - uid: 7065 + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 31 + - uid: 9247 components: - type: Transform - pos: 36.486282,-15.465345 + rot: 1.5707963267948966 rad + pos: -37.5,6.5 parent: 31 -- proto: ClothingOuterSanta - entities: - - uid: 108 + - uid: 9336 components: - type: Transform - pos: -11.396052,16.59143 + rot: -1.5707963267948966 rad + pos: -35.5,0.5 parent: 31 - - uid: 4166 + - uid: 9337 components: - type: Transform - pos: -11.396052,16.59143 + rot: -1.5707963267948966 rad + pos: -35.5,1.5 parent: 31 - - uid: 4457 + - uid: 9804 components: - type: Transform - pos: -11.396052,16.59143 + rot: 3.141592653589793 rad + pos: -2.5,-39.5 parent: 31 - - uid: 8422 + - uid: 10319 components: - type: Transform - pos: -11.396052,16.59143 + rot: 1.5707963267948966 rad + pos: -7.5,-14.5 parent: 31 - - uid: 8447 + - uid: 10320 components: - type: Transform - pos: -11.396052,16.59143 + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 parent: 31 - - uid: 11334 + - uid: 10823 components: - type: Transform - pos: -11.396052,16.59143 + rot: 3.141592653589793 rad + pos: 15.5,15.5 parent: 31 - - uid: 11335 + - uid: 11088 components: - type: Transform - pos: -11.396052,16.59143 + pos: 46.5,-1.5 parent: 31 - - uid: 11336 + - uid: 11089 components: - type: Transform - pos: -11.396052,16.59143 + rot: 3.141592653589793 rad + pos: 46.5,-3.5 parent: 31 -- proto: ClothingOuterVestHazard +- proto: ChairCursed entities: - - uid: 10789 + - uid: 11691 components: - type: Transform - pos: 24.612627,13.574452 + pos: 2.5952716,-32.56967 parent: 31 - - uid: 10802 + - uid: 11710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.631699,-16.632479 + rot: 3.141592653589793 rad + pos: 3.3455758,-34.139465 parent: 31 -- proto: ClothingOuterWinterCE +- proto: ChairFolding entities: - - uid: 9035 + - uid: 1042 components: - type: Transform - pos: 38.383812,-0.3536343 + rot: 3.141592653589793 rad + pos: -9.5,-19.5 parent: 31 -- proto: ClothingOuterWinterCentcom - entities: - - uid: 9036 + - uid: 2309 components: - type: Transform - pos: 49.408,-22.48963 + rot: 3.141592653589793 rad + pos: -8.5,-19.5 parent: 31 -- proto: ClothingOuterWinterCMO - entities: - - uid: 7088 + - uid: 7079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.358017,-10.661482 + rot: 1.5707963267948966 rad + pos: 27.5,9.5 parent: 31 -- proto: ClothingOuterWinterCoat - entities: - - uid: 7644 + - uid: 10755 components: - type: Transform - pos: 7.310254,-13.535391 + pos: -40.5,-9.5 parent: 31 - - uid: 11226 + - uid: 10756 components: - type: Transform - pos: -30.51289,-9.469171 + rot: 1.5707963267948966 rad + pos: -49.5,-9.5 parent: 31 -- proto: ClothingOuterWinterHoP - entities: - - uid: 10828 + - uid: 10757 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.3903475,16.346748 + pos: -46.5,-9.5 parent: 31 -- proto: ClothingOuterWinterHoS - entities: - - uid: 9031 + - uid: 10762 components: - type: Transform - pos: -7.499014,20.716234 + pos: -42.5,-9.5 parent: 31 -- proto: ClothingOuterWinterQM - entities: - - uid: 9925 + - uid: 10763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.360077,8.344849 + pos: -41.5,-9.5 parent: 31 -- proto: ClothingOuterWinterRD +- proto: ChairOfficeDark entities: - - uid: 9116 + - uid: 953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.6681519,-23.621525 + pos: 49.5,4.5 parent: 31 -- proto: ClothingShoesBootsJack - entities: - - uid: 10692 + - uid: 961 components: - type: Transform - pos: 41.713104,-10.668272 + rot: 1.5707963705062866 rad + pos: -2.5,25.5 parent: 31 -- proto: ClothingShoesBootsMag - entities: - - uid: 1014 + - uid: 962 components: - type: Transform - pos: 10.330068,10.623066 + rot: 1.5707963705062866 rad + pos: -2.5,24.5 parent: 31 - - uid: 1541 + - uid: 963 components: - type: Transform - pos: 10.3269205,11.58763 + rot: 4.71238902409608 rad + pos: -0.5,25.5 parent: 31 - - uid: 3136 + - uid: 964 components: - type: Transform - pos: 10.6550455,11.540755 + rot: 4.71238902409608 rad + pos: -0.5,24.5 parent: 31 - - uid: 7151 + - uid: 2211 components: - type: Transform - pos: 10.642568,10.482441 + rot: -1.5707963267948966 rad + pos: 29.5,9.5 parent: 31 - - uid: 10980 + - uid: 2298 components: - type: Transform - pos: 58.78938,-5.6705165 + rot: 3.141592653589793 rad + pos: -16.5,-26.5 parent: 31 -- proto: ClothingShoesBootsMerc - entities: - - uid: 1109 + - uid: 2777 components: - type: Transform - pos: -6.4295473,32.285225 + pos: -29.5,-1.5 parent: 31 -- proto: ClothingShoesBootsPerformer - entities: - - uid: 8319 + - uid: 2815 components: - type: Transform - pos: 29.355263,-21.266848 + rot: 3.141592653589793 rad + pos: -30.5,0.5 parent: 31 -- proto: ClothingShoesCult - entities: - - uid: 2066 + - uid: 3154 components: - type: Transform - pos: 4.5165205,-41.275776 + pos: -1.5,26.5 parent: 31 -- proto: ClothingShoesFlippers - entities: - - uid: 7969 + - uid: 3308 components: - type: Transform - pos: 37.55209,-3.407352 + rot: -1.5707963267948966 rad + pos: -7.5,19.5 parent: 31 -- proto: ClothingShoesLeather - entities: - - uid: 7098 + - uid: 3991 components: - type: Transform - parent: 7110 - - type: Physics - canCollide: False - - uid: 10585 + pos: -1.5,7.5 + parent: 31 + - uid: 3994 components: - type: Transform - pos: 30.458075,-9.757927 + rot: 3.141592653589793 rad + pos: -1.5,23.5 parent: 31 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 7858 + - uid: 4150 components: - type: Transform - pos: 26.546747,-24.62174 + pos: -10.5,8.5 parent: 31 - - uid: 11362 - components: - - type: Transform - pos: -5.414235,-29.644104 - parent: 31 -- proto: ClothingUniformColorRainbow - entities: - - uid: 8410 + - uid: 4179 components: - type: Transform - pos: 37.603355,-3.5149672 + rot: 3.141592653589793 rad + pos: 23.5,12.5 parent: 31 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 7972 + - uid: 4186 components: - type: Transform - pos: 14.57035,20.510712 + rot: -1.5707963267948966 rad + pos: 1.5,31.5 parent: 31 -- proto: ClothingUniformJumpsuitAncient - entities: - - uid: 8953 + - uid: 4191 components: - type: Transform - pos: -27.587215,7.5242066 + rot: 3.141592653589793 rad + pos: 6.5,31.5 parent: 31 -- proto: ClothingUniformJumpsuitBartender - entities: - - uid: 11109 + - uid: 4268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.617214,17.30891 + pos: 21.5,-10.5 parent: 31 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 7108 + - uid: 4738 components: - type: Transform - parent: 7110 - - type: Physics - canCollide: False - - uid: 7458 + pos: 15.5,9.5 + parent: 31 + - uid: 4785 components: - type: Transform - pos: -23.237986,17.742983 + rot: 3.141592653589793 rad + pos: 9.5,-29.5 parent: 31 - - uid: 7973 + - uid: 6017 components: - type: Transform - pos: 14.460975,20.651337 + rot: 3.141592653589793 rad + pos: 7.5,-4.5 parent: 31 -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 9190 + - uid: 6959 components: - type: Transform - pos: -23.456736,17.524233 + rot: 3.141592653589793 rad + pos: 15.5,-7.5 parent: 31 -- proto: ClothingUniformJumpsuitMercenary - entities: - - uid: 3571 + - uid: 7153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.429188,-19.665958 + pos: 7.5,20.5 parent: 31 -- proto: ComfyChair - entities: - - uid: 205 + - uid: 7294 components: - type: Transform - pos: -21.5,10.5 + pos: 9.5,-27.5 parent: 31 - - uid: 417 + - uid: 7364 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-20.5 + pos: 19.5,9.5 parent: 31 - - uid: 519 + - uid: 8211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,16.5 + rot: 1.5707963267948966 rad + pos: -5.5,-31.5 parent: 31 - - uid: 732 + - uid: 8695 components: - type: Transform - pos: -31.5,18.5 + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 parent: 31 - - uid: 736 + - uid: 8701 components: - type: Transform - pos: 7.5,25.5 + rot: -1.5707963267948966 rad + pos: -34.5,-25.5 parent: 31 - - type: Construction - edge: 0 - - uid: 816 + - uid: 8702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,8.5 + pos: -35.5,-23.5 parent: 31 - - uid: 1209 + - uid: 8706 components: - type: Transform - pos: -30.5,-4.5 + rot: -1.5707963267948966 rad + pos: -34.5,-24.5 parent: 31 - - uid: 1715 + - uid: 8707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-24.5 parent: 31 - - uid: 2131 + - uid: 8769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 + rot: -1.5707963267948966 rad + pos: -3.5,13.5 parent: 31 - - uid: 2439 + - uid: 8811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 + rot: 1.5707963267948966 rad + pos: 8.5,29.5 parent: 31 - - uid: 2824 + - uid: 8865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 31 - - uid: 2893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 + pos: 31.5,5.5 parent: 31 - - uid: 3594 + - uid: 8893 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,0.5 + pos: 41.5,3.5 parent: 31 - - uid: 4007 + - uid: 9002 components: - type: Transform - pos: 0.5,-4.5 + pos: -20.5,-1.5 parent: 31 - - uid: 4164 + - uid: 9023 components: - type: Transform - pos: -0.5,1.5 + rot: 3.141592653589793 rad + pos: 13.5,11.5 parent: 31 - - uid: 4882 + - uid: 9113 components: - type: Transform - pos: -8.5,21.5 + pos: 38.5,0.5 parent: 31 - - uid: 5065 + - uid: 9466 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,23.5 + pos: -15.5,-38.5 parent: 31 - - uid: 7165 + - uid: 9726 components: - type: Transform - pos: 12.5,-30.5 + pos: 49.5,-4.5 parent: 31 - - uid: 7331 + - uid: 11711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + pos: 6.173701,-33.826965 parent: 31 - - uid: 7373 + - uid: 12051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-20.5 + pos: 59.83288,1.5887873 parent: 31 - - uid: 7851 + - uid: 12052 components: - type: Transform - pos: 27.5,-24.5 + rot: 1.5707963267948966 rad + pos: 59.879753,3.6512873 parent: 31 - - uid: 8721 + - uid: 12053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-28.5 + pos: 59.89538,4.588787 parent: 31 - - uid: 8722 +- proto: ChairOfficeLight + entities: + - uid: 1383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 + pos: 15.5,-2.5 parent: 31 - - uid: 8723 + - uid: 2288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-29.5 + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 parent: 31 - - uid: 10202 + - uid: 2829 components: - type: Transform - pos: -22.5,10.5 + pos: 15.5,-5.5 parent: 31 - - uid: 10213 + - uid: 4697 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,8.5 + pos: 6.5,-8.5 parent: 31 -- proto: ComputerAlert - entities: - - uid: 8800 + - uid: 5095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,31.5 + rot: 3.141592653589793 rad + pos: 15.5,0.5 parent: 31 - - uid: 12050 + - uid: 5732 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,4.5 + pos: -16.70261,-19.400406 parent: 31 -- proto: ComputerAnalysisConsole - entities: - - uid: 9292 + - uid: 7077 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-30.5 + pos: 9.5,-16.5 parent: 31 - - type: DeviceLinkSource - linkedPorts: - 9418: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: computerBodyScanner - entities: - - uid: 7285 + - uid: 7272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-15.5 + pos: 0.5,-26.5 parent: 31 -- proto: ComputerCargoBounty - entities: - - uid: 8796 + - uid: 7615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,9.5 + pos: 6.5,-10.5 parent: 31 -- proto: ComputerCargoOrders - entities: - - uid: 3602 + - uid: 8450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.452609,-19.181656 + parent: 31 + - uid: 9120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,8.5 + pos: 18.5,-0.5 parent: 31 - - uid: 4309 + - uid: 9294 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,9.5 + pos: -11.5,-30.5 parent: 31 -- proto: ComputerCargoShuttle - entities: - - uid: 4254 + - uid: 10404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 parent: 31 -- proto: ComputerCloningConsole +- proto: ChairPilotSeat entities: - - uid: 11686 + - uid: 1039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 + rot: 3.141592653589793 rad + pos: 3.5,31.5 parent: 31 -- proto: ComputerComms +- proto: ChairRitual entities: - - uid: 1370 + - uid: 9690 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 6.5,-41.5 parent: 31 - - uid: 2721 + - uid: 9691 components: - type: Transform - pos: 3.5,32.5 + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 parent: 31 -- proto: ComputerCrewMonitoring - entities: - - uid: 955 + - uid: 11722 components: - type: Transform - pos: 23.5,-9.5 + rot: 3.141592653589793 rad + pos: -19.373835,-24.217701 parent: 31 - - uid: 2448 +- proto: ChairWood + entities: + - uid: 1337 components: - type: Transform - pos: 0.5,32.5 + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 parent: 31 - - uid: 7674 + - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-4.5 + pos: 9.5,-24.5 parent: 31 -- proto: ComputerCriminalRecords - entities: - - uid: 2964 + - uid: 2038 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,7.5 + pos: 12.5,-23.5 parent: 31 - - uid: 8803 + - uid: 2039 components: - type: Transform - pos: 8.5,30.5 + pos: 11.5,-22.5 parent: 31 -- proto: ComputerId - entities: - - uid: 810 + - uid: 2391 components: - type: Transform - pos: 7.5,21.5 + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 parent: 31 - - uid: 870 + - uid: 2405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,31.5 + pos: 10.5,-22.5 parent: 31 - - uid: 1113 + - uid: 2440 components: - type: Transform - pos: -3.5,-19.5 + rot: 3.141592653589793 rad + pos: 11.5,-25.5 parent: 31 - - uid: 2065 + - uid: 3153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,21.5 + rot: 3.141592653589793 rad + pos: 10.5,-25.5 parent: 31 - - uid: 2204 + - uid: 6600 components: - type: Transform - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: -7.2700133,-1.3889818 parent: 31 - - uid: 6840 + - uid: 6603 components: - type: Transform - pos: 24.5,-9.5 + rot: -1.5707963267948966 rad + pos: -5.7856383,-1.3421068 parent: 31 - - uid: 11014 + - uid: 7295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: 7.5,-22.5 parent: 31 -- proto: ComputerPowerMonitoring - entities: - - uid: 4306 + - uid: 7299 components: - type: Transform - pos: 42.5,4.5 + pos: 4.468987,-25.766485 parent: 31 - - uid: 12048 + - uid: 7575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,3.5 + pos: -2.5,-0.5 parent: 31 -- proto: ComputerRadar - entities: - - uid: 579 + - uid: 7577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,22.5 + pos: -3.5,-0.5 parent: 31 - - uid: 2447 + - uid: 8104 components: - type: Transform - pos: 6.5,32.5 + rot: 3.141592653589793 rad + pos: 4.531487,-27.172735 parent: 31 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 4244 + - uid: 8424 components: - type: Transform - pos: -4.5,-19.5 + rot: 3.141592653589793 rad + pos: -2.5,-2.5 parent: 31 - - uid: 9456 + - uid: 8434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-2.5 parent: 31 -- proto: ComputerSalvageExpedition - entities: - - uid: 33 + - uid: 10701 components: - type: Transform - pos: 28.5,21.5 + pos: -32.110504,-22.362251 parent: 31 -- proto: ComputerShuttleCargo - entities: - - uid: 2374 + - uid: 10702 components: - type: Transform - pos: 23.5,13.5 + pos: -31.46988,-22.018501 parent: 31 -- proto: ComputerShuttleSalvage - entities: - - uid: 3424 + - uid: 10703 components: - type: Transform - pos: 34.5,35.5 + pos: -32.639442,-22.09787 parent: 31 -- proto: ComputerSolarControl - entities: - - uid: 4305 + - uid: 11139 components: - type: Transform - pos: 41.5,4.5 + pos: -26.498642,-24.59787 parent: 31 - - uid: 5184 + - uid: 11261 components: - type: Transform - pos: -21.5,25.5 + rot: 3.141592653589793 rad + pos: -26.483017,-26.363495 parent: 31 - - uid: 11207 + - uid: 12236 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-27.5 + pos: -7.202247,-0.58850634 parent: 31 - - uid: 12049 + - uid: 12237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,1.5 + pos: -5.749122,-0.57288134 parent: 31 -- proto: ComputerStationRecords +- proto: CheapRollerBed entities: - - uid: 8515 + - uid: 7252 components: - type: Transform - pos: -3.5,14.5 + pos: 24.47556,-5.97663 parent: 31 - - uid: 9752 + - uid: 7253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,29.5 + pos: 24.491184,-6.41413 parent: 31 - - uid: 11431 +- proto: CheckerBoard + entities: + - uid: 10764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-39.5 + pos: -48.183727,-9.500211 parent: 31 -- proto: ComputerSurveillanceCameraMonitor +- proto: chem_master entities: - - uid: 534 + - uid: 606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,29.5 + pos: 19.5,-0.5 parent: 31 - - uid: 2218 + - uid: 5075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 + pos: 15.5,1.5 parent: 31 -- proto: ComputerTechnologyDiskTerminal +- proto: ChemDispenser entities: - - uid: 591 + - uid: 5076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 + pos: 19.5,-1.5 parent: 31 -- proto: ConveyorBelt + - uid: 5079 + components: + - type: Transform + pos: 16.5,1.5 + parent: 31 +- proto: ChemistryHotplate entities: - - uid: 1771 + - uid: 4207 components: - type: Transform - pos: 20.5,20.5 + pos: 18.5,1.5 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 3387 +- proto: ChessBoard + entities: + - uid: 841 components: - type: Transform - pos: 20.5,21.5 + pos: -21.49966,9.580566 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 3548 + - uid: 10815 components: - type: Transform - pos: 20.5,23.5 + rot: 3.141592653589793 rad + pos: 4.515862,-26.37586 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 3549 +- proto: Cigar + entities: + - uid: 12197 components: - type: Transform - pos: 20.5,24.5 + pos: -1.3652976,1.7407897 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 3550 + - uid: 12198 components: - type: Transform - pos: 20.5,22.5 + pos: 0.61907744,-5.2435856 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 7550 +- proto: CigarCase + entities: + - uid: 12180 components: - type: Transform - pos: 20.5,19.5 + rot: 3.141592653589793 rad + pos: -2.6248672,-6.3685474 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 8899 +- proto: Cigarette + entities: + - uid: 8903 components: - type: Transform - pos: 20.5,18.5 + pos: 31.747108,6.5736575 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 9138 + - uid: 12186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,27.5 + pos: -6.265492,-4.2591724 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 9139 + - uid: 12187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,26.5 + pos: -4.749867,-4.2279224 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 9265 + - uid: 12188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 + pos: -2.4217422,-5.6029224 parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 9886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 10033 +- proto: CigarGold + entities: + - uid: 9753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-18.5 + pos: -15.382986,-39.43112 parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 10040 + - uid: 11134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-17.5 + pos: 28.739138,9.837011 parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 10043 +- proto: CigarGoldCase + entities: + - uid: 1199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 + pos: -3.613819,18.708372 parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 10045 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: CigarGoldSpent + entities: + - uid: 12182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,25.5 + pos: 0.7501328,-5.3216724 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10046 +- proto: CigarSpent + entities: + - uid: 11707 components: - type: Transform - pos: 19.5,28.5 + pos: 3.6758833,-33.400673 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 10047 +- proto: CigPackMixed + entities: + - uid: 3307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,18.5 + rot: -1.5707963267948966 rad + pos: 46.484562,-5.364609 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10048 +- proto: CircuitImprinter + entities: + - uid: 821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,19.5 + pos: -13.5,-22.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10049 +- proto: CleanerDispenser + entities: + - uid: 554 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: -18.5,-13.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10050 +- proto: ClockworkGrilleBroken + entities: + - uid: 10513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,21.5 + rot: -1.5707963267948966 rad + pos: 34.5,26.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10051 +- proto: ClosetBombFilled + entities: + - uid: 5116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,22.5 + pos: -14.5,13.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10052 +- proto: ClosetChefFilled + entities: + - uid: 799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,23.5 + pos: -12.5,1.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10053 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,24.5 + pos: 5.5,-21.5 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - 7945 - - uid: 10054 + - 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: 761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,28.5 + pos: -23.5,11.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10089 + - uid: 828 components: - type: Transform - pos: 20.5,25.5 + pos: 54.5,-5.5 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 10090 + - uid: 2181 components: - type: Transform - pos: 20.5,26.5 + pos: 15.5,14.5 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 10091 + - uid: 3736 components: - type: Transform - pos: 19.5,27.5 + pos: -0.5,-17.5 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 10092 + - uid: 4381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,26.5 + pos: 33.5,-10.5 parent: 31 - - type: DeviceLinkSink - links: - - 1084 - - uid: 10093 + - uid: 6907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,26.5 + pos: 30.5,14.5 parent: 31 - - type: DeviceLinkSink - links: - - 7945 - - uid: 10109 + - uid: 7161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-16.5 + pos: 23.5,7.5 parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 10110 + - uid: 7497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 + pos: 14.5,-29.5 parent: 31 - - type: DeviceLinkSink - links: - - 10218 - - uid: 10215 + - uid: 7791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-16.5 + pos: -20.5,22.5 parent: 31 - - type: DeviceLinkSink - links: - - 10218 -- proto: CrateArtifactContainer - entities: - - uid: 99 + - uid: 8805 components: - type: Transform - pos: -8.5,-31.5 + pos: 7.5,28.5 parent: 31 -- proto: CrateCoffin - entities: - - uid: 8457 + - uid: 9323 components: - type: Transform - pos: -32.5,-23.5 + pos: -34.5,7.5 parent: 31 -- proto: CrateEmptySpawner - entities: - - uid: 3135 + - uid: 9447 components: - type: Transform - pos: -17.5,13.5 + pos: -22.5,-31.5 parent: 31 - - uid: 8045 + - uid: 9740 components: - type: Transform - pos: 10.5,13.5 + pos: 15.5,-21.5 parent: 31 - - uid: 10012 + - uid: 9790 components: - type: Transform - pos: 18.5,15.5 + pos: -18.5,-36.5 parent: 31 -- proto: CrateEngineeringAMEJar - entities: - - uid: 8315 + - uid: 9791 components: - type: Transform - pos: 46.5,9.5 + pos: 9.5,-32.5 parent: 31 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 7464 + - uid: 10645 components: - type: Transform - pos: 48.5,8.5 + pos: 39.5,-14.5 parent: 31 - - uid: 8990 + - uid: 10754 components: - type: Transform - pos: 48.5,7.5 + pos: -53.5,-9.5 parent: 31 -- proto: CrateEngineeringCableHV +- proto: ClosetEmergencyN2FilledRandom entities: - - uid: 11208 + - uid: 11448 components: - type: Transform - pos: 16.5,-29.5 + pos: 15.5,-23.5 parent: 31 -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 6437 + - uid: 11449 components: - type: Transform - pos: 39.5,8.5 + pos: 42.5,-13.5 parent: 31 - - uid: 6442 + - uid: 11450 components: - type: Transform - pos: 40.5,8.5 + pos: -20.5,12.5 parent: 31 -- proto: CrateEngineeringSingularityGenerator +- proto: ClosetFireFilled entities: - - uid: 11051 + - uid: 3507 components: - type: Transform - pos: 38.5,8.5 + pos: 30.5,13.5 parent: 31 -- proto: CrateEngineeringTeslaCoil - entities: - - uid: 11373 + - uid: 3922 components: - type: Transform - pos: 55.5,11.5 + pos: -1.5,-17.5 parent: 31 - - uid: 11374 + - uid: 4237 components: - type: Transform - pos: 55.5,10.5 + pos: 54.5,-3.5 parent: 31 - - uid: 11375 + - uid: 7792 components: - type: Transform - pos: 56.5,11.5 + pos: -20.5,23.5 parent: 31 - - uid: 11376 + - uid: 7912 components: - type: Transform - pos: 57.5,11.5 + pos: 23.5,0.5 parent: 31 -- proto: CrateFilledSpawner - entities: - - uid: 1637 + - uid: 8804 components: - type: Transform - pos: 22.5,7.5 + pos: 8.5,28.5 parent: 31 - - uid: 7140 + - uid: 9739 components: - type: Transform - pos: 20.5,7.5 + pos: 15.5,-22.5 parent: 31 - - uid: 7141 + - uid: 9792 components: - type: Transform - pos: 21.5,7.5 + pos: -6.5,-37.5 parent: 31 - - uid: 9796 + - uid: 10132 components: - type: Transform - pos: -19.5,-36.5 + pos: 16.5,14.5 parent: 31 -- proto: CrateHydroponics - entities: - - uid: 9679 + - uid: 10753 components: - type: Transform - pos: 1.5,-42.5 + pos: -53.5,-10.5 parent: 31 -- proto: CrateMedicalScrubs +- proto: ClosetJanitorFilled entities: - - uid: 11451 + - uid: 2189 components: - type: Transform - pos: 10.5,-13.5 + pos: -17.5,-10.5 parent: 31 -- proto: CrateMedicalSurgery +- proto: ClosetL3VirologyFilled entities: - - uid: 7264 + - uid: 6695 components: - type: Transform - pos: 20.5,-17.5 + pos: 14.5,-7.5 parent: 31 -- proto: CrateNPCHamlet +- proto: ClosetMaintenanceFilledRandom entities: - - uid: 2458 + - uid: 550 components: - type: Transform - pos: 0.5,29.5 + pos: 46.5,-0.5 parent: 31 -- proto: CratePrivateSecure - entities: - - uid: 2363 + - uid: 1412 components: - type: Transform - pos: -2.5,16.5 + pos: -7.5,-8.5 parent: 31 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14963 moles: - 1.7459903 - 6.568249 @@ -29018,22355 +28595,26838 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2480 - - 2481 - - 3041 - - 3485 - - 3831 - - 3832 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrashCart - entities: - - uid: 4318 + - uid: 7058 components: - type: Transform - pos: 40.5,-3.5 + pos: 29.5,-9.5 parent: 31 - - uid: 6904 + - uid: 7518 components: - type: Transform - pos: 23.5,-18.5 + pos: -11.5,-12.5 parent: 31 - - uid: 7087 + - uid: 7789 components: - type: Transform - pos: -7.5,-12.5 + pos: -19.5,12.5 parent: 31 -- proto: CrateTrashCartFilled - entities: - - uid: 10468 + - uid: 7911 components: - type: Transform - pos: -31.5,-13.5 + pos: 23.5,1.5 parent: 31 -- proto: CrateTrashCartJani - entities: - - uid: 125 + - uid: 7948 components: - type: Transform - pos: -20.5,-11.5 + pos: 24.5,-25.5 parent: 31 -- proto: CrayonBox - entities: - - uid: 263 + - uid: 9465 components: - type: Transform - pos: -19.62684,-5.2181053 + pos: -9.5,-39.5 parent: 31 -- proto: Crematorium - entities: - - uid: 10312 + - uid: 9570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-24.5 + pos: -27.5,13.5 parent: 31 -- proto: CrewMonitoringServer - entities: - - uid: 879 + - uid: 9571 components: - type: Transform - pos: 57.5,-9.5 + pos: -5.5,20.5 parent: 31 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: CrowbarRed - entities: - - uid: 2093 + - uid: 9572 components: - type: Transform - pos: -3.7752368,12.511271 + pos: 27.5,-18.5 parent: 31 - - uid: 7562 + - uid: 9675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.74314,-11.621845 + pos: -1.5,-41.5 parent: 31 - - uid: 8834 + - uid: 9793 components: - type: Transform - pos: 8.498364,31.458696 + pos: 5.5,-37.5 parent: 31 - - uid: 9114 + - uid: 9794 components: - type: Transform - pos: -10.463156,-6.5336485 + pos: -11.5,-36.5 parent: 31 -- proto: CryogenicSleepUnit - entities: - - uid: 9172 + - uid: 9862 components: - type: Transform - pos: -42.5,-3.5 + pos: 11.5,-19.5 parent: 31 - - uid: 9184 + - uid: 10221 components: - type: Transform - pos: -40.5,-3.5 + pos: -30.5,-13.5 parent: 31 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 9197 + - uid: 10646 components: - type: Transform - pos: -40.5,-5.5 + pos: 45.5,-13.5 parent: 31 -- proto: CryogenicSleepUnitSpawnerPrisoner - entities: - - uid: 7306 + - uid: 11123 components: - type: Transform - pos: -15.5,9.5 + pos: -4.5,29.5 parent: 31 -- proto: CryoPod - entities: - - uid: 5231 + - uid: 11229 components: - type: Transform - pos: 7.5,-15.5 + pos: -27.5,-15.5 parent: 31 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 6015 + - 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: 11244 components: - type: Transform - pos: 7.2794514,-13.17127 + pos: -31.5,9.5 parent: 31 -- proto: CultAltarSpawner +- proto: ClosetRadiationSuitFilled entities: - - uid: 9689 + - uid: 5127 components: - type: Transform - pos: 7.5,-41.5 + pos: 52.5,1.5 parent: 31 -- proto: CurtainsPurpleOpen - entities: - - uid: 2847 + - uid: 7068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-17.5 + pos: 53.5,1.5 parent: 31 - - uid: 4887 + - uid: 7571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-17.5 + pos: -11.5,-11.5 parent: 31 - - uid: 7344 + - uid: 8159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-22.5 + pos: -7.5,-25.5 parent: 31 - - uid: 8100 + - uid: 12046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-21.5 + pos: 59.5,6.5 parent: 31 - - uid: 8500 +- proto: ClosetSteelBase + entities: + - uid: 7853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-17.5 + pos: 27.5,-22.5 parent: 31 - - uid: 9462 + - 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: + - 7856 + - 7859 + - 7854 + - 7857 + - 7855 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWallEmergency + entities: + - uid: 9865 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-17.5 + pos: -34.5,0.5 parent: 31 - - uid: 10706 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 7301 components: - type: Transform - pos: -25.5,-25.5 + pos: -5.5,-24.5 parent: 31 - - uid: 10707 + - uid: 9868 components: - type: Transform - pos: -26.5,-25.5 + pos: 28.5,7.5 parent: 31 - - uid: 11712 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-20.5 + pos: -33.5,8.5 parent: 31 - - uid: 11713 + - uid: 7105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-21.5 + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 parent: 31 - - uid: 11714 + - uid: 7302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-22.5 + pos: -6.5,-24.5 parent: 31 -- proto: CurtainsRedOpen +- proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 175 + - uid: 9864 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-31.5 + pos: -31.5,-3.5 parent: 31 - - uid: 221 +- proto: ClothingBeltChampion + entities: + - uid: 4197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-31.5 + pos: -3.520069,18.786497 parent: 31 - - uid: 7317 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingBeltUtility + entities: + - uid: 4757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-31.5 + pos: 10.66112,-19.235216 parent: 31 - - uid: 11690 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 7482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-35.5 + pos: 35.56775,-3.545828 parent: 31 -- proto: CyborgEndoskeleton +- proto: ClothingEyesEyepatch entities: - - uid: 942 + - uid: 3964 components: - type: Transform - pos: -0.49411595,-30.373203 + pos: 35.470943,-15.2492285 parent: 31 -- proto: d20Dice +- proto: ClothingEyesGlasses entities: - - uid: 2357 + - uid: 7107 components: - type: Transform - pos: -23.834803,-5.3811545 - parent: 31 - - uid: 4723 + parent: 7110 + - type: Physics + canCollide: False + - uid: 11264 components: - type: Transform - pos: 11.36982,-23.570984 + pos: -9.178577,-18.39677 parent: 31 -- proto: d6Dice - entities: - - uid: 4249 + - uid: 11265 components: - type: Transform - pos: 10.80732,-23.477234 + pos: -9.162952,-18.61552 parent: 31 - - uid: 7292 + - uid: 11266 components: - type: Transform - pos: 10.46357,-23.664734 + pos: -9.162952,-18.20927 parent: 31 -- proto: d8Dice +- proto: ClothingEyesGlassesMeson entities: - - uid: 2358 - components: - - type: Transform - pos: -24.287928,-6.3967795 - parent: 31 - - uid: 7293 + - uid: 8213 components: - type: Transform - pos: 11.27607,-24.265812 + pos: 35.614624,-3.264578 parent: 31 -- proto: DefaultStationBeacon +- proto: ClothingEyesGlassesSunglasses entities: - - uid: 774 + - uid: 4235 components: - type: Transform - pos: -39.5,5.5 + pos: -10.276402,-6.3744125 parent: 31 - - type: NavMapBeacon - text: evac - - uid: 1374 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 7580 components: - type: Transform - pos: 44.5,-24.5 + pos: 32.538,-3.0937886 parent: 31 - - type: NavMapBeacon - text: observatory -- proto: DefaultStationBeaconAME +- proto: ClothingEyesHudMedical entities: - - uid: 7280 + - uid: 6512 components: - type: Transform - pos: 47.5,8.5 + pos: 16.646324,-6.5235434 parent: 31 -- proto: DefaultStationBeaconAnomalyGenerator +- proto: ClothingHandsGlovesColorBlack entities: - - uid: 11361 + - uid: 11225 components: - type: Transform - pos: -5.5,-30.5 + pos: -29.520256,-9.469171 parent: 31 -- proto: DefaultStationBeaconArmory +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 10088 + - uid: 2523 components: - type: Transform - pos: -12.5,19.5 + pos: -29.506107,7.62424 parent: 31 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 812 + - uid: 7572 components: - type: Transform - pos: -44.5,-10.5 + pos: -11.565304,-10.576338 parent: 31 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 11363 + - uid: 7581 components: - type: Transform - pos: -12.5,-29.5 + pos: 32.479706,-2.7047698 parent: 31 -- proto: DefaultStationBeaconAtmospherics +- proto: ClothingHandsGlovesCombat entities: - - uid: 11312 + - uid: 6427 components: - type: Transform - pos: 31.5,12.5 + pos: 51.410316,17.602825 parent: 31 -- proto: DefaultStationBeaconBar +- proto: ClothingHandsGlovesLatex entities: - - uid: 11319 + - uid: 2212 components: - type: Transform - pos: -5.5,-5.5 + pos: 19.45916,-20.403913 parent: 31 -- proto: DefaultStationBeaconBotany - entities: - - uid: 11320 + - uid: 7102 components: - type: Transform - pos: -18.5,-0.5 - parent: 31 -- proto: DefaultStationBeaconBridge + parent: 7110 + - type: Physics + canCollide: False +- proto: ClothingHandsGlovesLeather entities: - - uid: 11269 + - uid: 9670 components: - type: Transform - pos: 3.5,30.5 + pos: -4.544421,-41.335396 parent: 31 -- proto: DefaultStationBeaconBrig +- proto: ClothingHandsGlovesMercFingerless entities: - - uid: 8881 + - uid: 988 components: - type: Transform - pos: -10.5,8.5 + pos: 30.104523,-19.311977 parent: 31 -- proto: DefaultStationBeaconCaptainsQuarters +- proto: ClothingHandsGlovesNitrile entities: - - uid: 11268 + - uid: 10029 components: - type: Transform - pos: 8.5,25.5 + pos: 19.51705,-18.456926 parent: 31 -- proto: DefaultStationBeaconCargoBay +- proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 3509 + - uid: 7971 components: - type: Transform - pos: 21.5,16.5 + pos: 26.502825,-1.4970446 parent: 31 -- proto: DefaultStationBeaconCargoReception +- proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 2494 + - uid: 3367 components: - type: Transform - pos: 14.5,10.5 + pos: -4.5089555,-12.629585 parent: 31 -- proto: DefaultStationBeaconCERoom +- proto: ClothingHeadHatBeret entities: - - uid: 3513 + - uid: 819 components: - type: Transform - pos: 39.5,-0.5 + pos: -22.754051,9.462572 parent: 31 -- proto: DefaultStationBeaconChapel +- proto: ClothingHeadHatBeretBrigmedic entities: - - uid: 11653 + - uid: 6607 components: - type: Transform - pos: -21.5,-20.5 + pos: 14.371354,-5.1023016 parent: 31 -- proto: DefaultStationBeaconChemistry +- proto: ClothingHeadHatBowlerHat entities: - - uid: 7256 + - uid: 9261 components: - type: Transform - pos: 16.5,-0.5 + pos: 0.36587167,-19.353008 parent: 31 -- proto: DefaultStationBeaconCMORoom +- proto: ClothingHeadHatFedoraBrown entities: - - uid: 7276 + - uid: 7484 components: - type: Transform - pos: 23.5,-10.5 + pos: -21.550486,17.73303 parent: 31 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 8316 + - uid: 7857 components: - type: Transform - pos: 8.5,-15.5 - parent: 31 -- proto: DefaultStationBeaconCryosleep + parent: 7853 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatFlowerWreath entities: - - uid: 9207 + - uid: 3235 components: - type: Transform - pos: -41.5,-4.5 + pos: 49.449142,-25.427004 parent: 31 -- proto: DefaultStationBeaconDisposals +- proto: ClothingHeadHatHardhatOrange entities: - - uid: 7954 + - uid: 10803 components: - type: Transform - pos: -30.5,-16.5 + pos: 23.016964,-16.05082 parent: 31 -- proto: DefaultStationBeaconEngineering +- proto: ClothingHeadHatPirate entities: - - uid: 7281 + - uid: 4503 components: - type: Transform - pos: 33.5,4.5 + pos: 36.423782,-15.13722 parent: 31 - - uid: 11056 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 7407 components: - type: Transform - pos: 57.5,10.5 + pos: 48.273617,-26.666399 parent: 31 - - type: NavMapBeacon - text: Tesla Storage -- proto: DefaultStationBeaconEscapePod +- proto: ClothingHeadHatUshanka entities: - - uid: 11467 + - uid: 844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-17.5 + pos: -15.464306,-10.5187645 parent: 31 - - uid: 11468 + - uid: 7570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-41.5 + pos: -15.5245695,-10.430269 parent: 31 -- proto: DefaultStationBeaconEVAStorage +- proto: ClothingHeadHatWelding entities: - - uid: 7640 + - uid: 71 components: - type: Transform - pos: 8.5,9.5 + pos: -1.6376766,-24.290537 parent: 31 -- proto: DefaultStationBeaconHOPOffice +- proto: ClothingHeadsetGrey entities: - - uid: 2464 + - uid: 10480 components: - type: Transform - pos: 8.5,19.5 + rot: 1.5707963267948966 rad + pos: 49.173836,-5.2182446 parent: 31 -- proto: DefaultStationBeaconHOSRoom +- proto: ClothingMaskBreath entities: - - uid: 778 + - uid: 4147 components: - type: Transform - pos: -8.5,20.5 + pos: -11.563622,-27.408012 parent: 31 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 11323 + - uid: 10661 components: - type: Transform - pos: -18.5,-11.5 + pos: 43.593338,-13.568842 parent: 31 -- proto: DefaultStationBeaconKitchen +- proto: ClothingMaskBreathMedical entities: - - uid: 11318 + - uid: 10027 components: - type: Transform - pos: -12.5,-0.5 + pos: 18.631598,-18.486423 parent: 31 -- proto: DefaultStationBeaconLibrary +- proto: ClothingMaskGas entities: - - uid: 11325 + - uid: 7970 components: - type: Transform - pos: 9.5,-26.5 + pos: 37.548763,-3.266727 parent: 31 -- proto: DefaultStationBeaconMantis +- proto: ClothingMaskGasMerc entities: - - uid: 11757 + - uid: 952 components: - type: Transform - pos: 4.5,-33.5 + pos: 29.33713,-19.311977 parent: 31 -- proto: DefaultStationBeaconMedbay +- proto: ClothingMaskGasSecurity entities: - - uid: 5767 + - uid: 7139 components: - type: Transform - pos: 9.5,-9.5 + pos: 3.4708445,-42.623608 parent: 31 -- proto: DefaultStationBeaconMedical +- proto: ClothingMaskNeckGaiter entities: - - uid: 1215 + - uid: 3141 components: - type: Transform - pos: 9.5,-2.5 + pos: 4.570995,-42.497837 parent: 31 -- proto: DefaultStationBeaconMorgue +- proto: ClothingMaskSterile entities: - - uid: 7275 + - uid: 7101 components: - type: Transform - pos: 13.5,-15.5 - parent: 31 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 11316 + parent: 7110 + - type: Physics + canCollide: False + - uid: 9034 components: - type: Transform - pos: -17.5,9.5 + pos: 19.448904,-20.24775 parent: 31 -- proto: DefaultStationBeaconPowerBank +- proto: ClothingNeckBling entities: - - uid: 11352 + - uid: 718 components: - type: Transform - pos: 41.5,5.5 + pos: -3.566944,18.770872 parent: 31 -- proto: DefaultStationBeaconProber + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingNeckCloakTrans entities: - - uid: 11652 + - uid: 9748 components: - type: Transform - pos: -13.5,-24.5 + pos: -28.4315,17.631725 parent: 31 -- proto: DefaultStationBeaconQMRoom +- proto: ClothingNeckNonBinaryPin entities: - - uid: 11353 + - uid: 11135 components: - type: Transform - pos: 27.5,9.5 + pos: 43.27403,-8.317395 parent: 31 -- proto: DefaultStationBeaconRDRoom +- proto: ClothingNeckScarfStripedBlue entities: - - uid: 11354 + - uid: 7843 components: - type: Transform - pos: -4.5,-21.5 + pos: -13.566107,24.548891 parent: 31 -- proto: DefaultStationBeaconRND +- proto: ClothingNeckScarfStripedGreen entities: - - uid: 11355 + - uid: 9028 components: - type: Transform - pos: -15.5,-23.5 + pos: 54.455875,-22.53784 parent: 31 -- proto: DefaultStationBeaconRobotics +- proto: ClothingNeckScarfStripedRed entities: - - uid: 11360 + - uid: 10690 components: - type: Transform - pos: -1.5,-27.5 + rot: 1.5707963267948966 rad + pos: -16.557934,-39.78134 parent: 31 -- proto: DefaultStationBeaconSalvage +- proto: ClothingNeckScarfStripedZebra entities: - - uid: 11321 + - uid: 7895 components: - type: Transform - pos: 27.5,18.5 + rot: -1.5707963267948966 rad + pos: -19.198872,-5.9850674 parent: 31 -- proto: DefaultStationBeaconScience +- proto: ClothingNeckTieRed entities: - - uid: 1208 + - uid: 7109 components: - type: Transform - pos: -9.5,-20.5 - parent: 31 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 1136 + parent: 7110 + - type: Physics + canCollide: False + - uid: 7856 components: - type: Transform - pos: -7.5,11.5 - parent: 31 -- proto: DefaultStationBeaconServerRoom + parent: 7853 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasic entities: - - uid: 11356 + - uid: 1206 components: - type: Transform - pos: -1.5,-21.5 + pos: -11.694116,19.672714 parent: 31 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 11358 + - uid: 9622 components: - type: Transform - pos: 60.5,2.5 + pos: -11.490991,19.672714 parent: 31 -- proto: DefaultStationBeaconSolars +- proto: ClothingOuterArmorBulletproof entities: - - uid: 11364 + - uid: 36 components: - type: Transform - pos: 15.5,-29.5 + pos: -11.170591,19.266254 parent: 31 - - uid: 11365 + - uid: 42 components: - type: Transform - pos: -31.5,-32.5 + pos: -11.436216,19.297504 parent: 31 - - uid: 11366 + - uid: 43 components: - type: Transform - pos: -22.5,24.5 + pos: -11.733091,19.297504 parent: 31 -- proto: DefaultStationBeaconTechVault +- proto: ClothingOuterArmorReflective entities: - - uid: 1316 + - uid: 8020 components: - type: Transform - pos: 27.5,1.5 + pos: -11.209741,19.672714 parent: 31 -- proto: DefaultStationBeaconTEG +- proto: ClothingOuterCoatDetective entities: - - uid: 11314 + - uid: 7480 components: - type: Transform - pos: 38.5,14.5 + pos: -21.602036,17.352358 parent: 31 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 11357 + - uid: 7854 components: - type: Transform - pos: 50.5,-5.5 - parent: 31 -- proto: DefaultStationBeaconToolRoom + parent: 7853 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatJensen entities: - - uid: 11317 + - uid: 9758 components: - type: Transform - pos: -27.5,9.5 + pos: -2.537119,-39.46948 parent: 31 -- proto: DefaultStationBeaconVault - entities: - - uid: 11315 + - uid: 11245 components: - type: Transform - pos: -1.5,17.5 + pos: -31.464373,10.564828 parent: 31 -- proto: DefaultStationBeaconWardensOffice +- proto: ClothingOuterCoatLab entities: - - uid: 762 + - uid: 4231 components: - type: Transform - pos: -1.5,8.5 + parent: 7110 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatPirate + entities: + - uid: 7065 + components: + - type: Transform + pos: 36.486282,-15.465345 parent: 31 -- proto: DefibrillatorCabinetFilled +- proto: ClothingOuterSanta entities: - - uid: 7340 + - uid: 108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-12.5 + pos: -11.396052,16.59143 parent: 31 - - uid: 9834 + - uid: 4166 components: - type: Transform - pos: 1.5,29.5 + pos: -11.396052,16.59143 parent: 31 - - uid: 9835 + - uid: 4457 components: - type: Transform - pos: -32.5,6.5 + pos: -11.396052,16.59143 parent: 31 - - uid: 10032 + - uid: 8422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-17.5 + pos: -11.396052,16.59143 parent: 31 -- proto: DeployableBarrier - entities: - - uid: 2502 + - uid: 8447 components: - type: Transform - pos: -6.5,17.5 + pos: -11.396052,16.59143 parent: 31 - - uid: 9369 + - uid: 11334 components: - type: Transform - pos: -5.5,17.5 + pos: -11.396052,16.59143 parent: 31 -- proto: DeskBell - entities: - - uid: 2195 + - uid: 11335 components: - type: Transform - pos: 7.9000525,-3.1977162 + pos: -11.396052,16.59143 parent: 31 -- proto: DiceBag + - uid: 11336 + components: + - type: Transform + pos: -11.396052,16.59143 + parent: 31 +- proto: ClothingOuterVestHazard entities: - - uid: 10207 + - uid: 10789 components: - type: Transform - pos: 10.362751,-24.393734 + pos: 24.612627,13.574452 parent: 31 - - uid: 10208 + - uid: 10802 components: - type: Transform - pos: 10.756269,-24.370586 + rot: -1.5707963267948966 rad + pos: 23.631699,-16.632479 parent: 31 -- proto: DiseaseDiagnoser +- proto: ClothingOuterWinterCE entities: - - uid: 8435 + - uid: 9035 components: - type: Transform - pos: 19.5,-5.5 + pos: 38.383812,-0.3536343 parent: 31 -- proto: DisgustingSweptSoup +- proto: ClothingOuterWinterCentcom entities: - - uid: 9020 + - uid: 9036 components: - type: Transform - pos: -12.586034,24.541399 + pos: 49.408,-22.48963 parent: 31 -- proto: DisposalBend +- proto: ClothingOuterWinterCMO entities: - - uid: 61 + - uid: 7088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-27.5 + rot: -1.5707963267948966 rad + pos: 25.358017,-10.661482 parent: 31 - - uid: 238 +- proto: ClothingOuterWinterCoat + entities: + - uid: 7644 components: - type: Transform - rot: 4.71238902409608 rad - pos: 37.5,3.5 + pos: 7.310254,-13.535391 parent: 31 - - uid: 310 + - uid: 11226 components: - type: Transform - pos: 8.5,17.5 + pos: -30.51289,-9.469171 parent: 31 - - uid: 399 +- proto: ClothingOuterWinterHoP + entities: + - uid: 10828 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-27.5 + pos: 10.3903475,16.346748 parent: 31 - - uid: 838 +- proto: ClothingOuterWinterHoS + entities: + - uid: 9031 components: - type: Transform - rot: 3.141592697301183 rad - pos: -29.5,10.5 + pos: -7.499014,20.716234 parent: 31 - - uid: 839 +- proto: ClothingOuterWinterQM + entities: + - uid: 9925 components: - type: Transform - pos: -28.5,10.5 + rot: -1.5707963267948966 rad + pos: 29.360077,8.344849 parent: 31 - - uid: 848 +- proto: ClothingOuterWinterRD + entities: + - uid: 9116 components: - type: Transform - pos: -8.5,-25.5 + rot: -1.5707963267948966 rad + pos: -3.6681519,-23.621525 parent: 31 - - uid: 849 +- proto: ClothingShoesBootsJack + entities: + - uid: 10692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-20.5 + pos: 41.713104,-10.668272 parent: 31 - - uid: 874 +- proto: ClothingShoesBootsMag + entities: + - uid: 1014 components: - type: Transform - pos: 7.5,11.5 + pos: 10.330068,10.623066 parent: 31 - - uid: 927 + - uid: 1541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 + pos: 10.3269205,11.58763 parent: 31 - - uid: 2012 + - uid: 3136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 + pos: 10.6550455,11.540755 parent: 31 - - uid: 2299 + - uid: 7151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 + pos: 10.642568,10.482441 parent: 31 - - uid: 2315 + - uid: 10980 components: - type: Transform - pos: -5.5,12.5 + pos: 58.78938,-5.6705165 parent: 31 - - uid: 2335 +- proto: ClothingShoesBootsMerc + entities: + - uid: 1109 components: - type: Transform - pos: -4.5,-16.5 + pos: -6.4295473,32.285225 parent: 31 - - uid: 2874 +- proto: ClothingShoesBootsPerformer + entities: + - uid: 8319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 + pos: 29.355263,-21.266848 parent: 31 - - uid: 3883 +- proto: ClothingShoesCult + entities: + - uid: 2066 components: - type: Transform - pos: 3.5,28.5 + pos: 4.5165205,-41.275776 parent: 31 - - uid: 4056 +- proto: ClothingShoesFlippers + entities: + - uid: 7969 components: - type: Transform - pos: -10.5,-18.5 + pos: 37.55209,-3.407352 parent: 31 - - uid: 4090 +- proto: ClothingShoesLeather + entities: + - uid: 7098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 31 - - uid: 4206 + parent: 7110 + - type: Physics + canCollide: False + - uid: 10585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-14.5 + pos: 30.458075,-9.757927 parent: 31 - - uid: 4703 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 7858 components: - type: Transform - pos: -30.5,-14.5 + pos: 26.546747,-24.62174 parent: 31 - - uid: 4790 + - uid: 11362 components: - type: Transform - pos: 6.5,-27.5 + pos: -5.414235,-29.644104 parent: 31 - - uid: 5100 +- proto: ClothingUniformColorRainbow + entities: + - uid: 8410 components: - type: Transform - pos: 14.5,-0.5 + pos: 37.603355,-3.5149672 parent: 31 - - uid: 5292 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 7972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-16.5 + pos: 14.57035,20.510712 parent: 31 - - uid: 5742 +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 8953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-29.5 + pos: -27.587215,7.5242066 parent: 31 - - uid: 5758 +- proto: ClothingUniformJumpsuitBartender + entities: + - uid: 11109 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 31 - - uid: 6586 - components: - - type: Transform - pos: 33.5,-17.5 + pos: -34.617214,17.30891 parent: 31 - - uid: 7420 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 7108 components: - type: Transform - pos: 18.5,-10.5 - parent: 31 - - uid: 7430 + parent: 7110 + - type: Physics + canCollide: False + - uid: 7973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,3.5 + pos: 14.460975,20.651337 parent: 31 - - uid: 7631 +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 3571 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-29.5 + pos: 30.429188,-19.665958 parent: 31 - - uid: 8092 +- proto: ComfyChair + entities: + - uid: 205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,1.5 + pos: -21.5,10.5 parent: 31 - - uid: 8093 + - uid: 417 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,0.5 + pos: -3.5,-20.5 parent: 31 - - uid: 8445 + - uid: 519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 + rot: 3.141592653589793 rad + pos: -31.5,16.5 parent: 31 - - uid: 9338 + - uid: 732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,3.5 + pos: -31.5,18.5 parent: 31 - - uid: 10147 + - uid: 736 components: - type: Transform - pos: 49.5,-29.5 + pos: 7.5,25.5 parent: 31 - - uid: 10149 + - type: Construction + edge: 0 + - uid: 816 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-29.5 + pos: -22.5,8.5 parent: 31 - - uid: 10150 + - uid: 1209 components: - type: Transform - pos: 47.5,-28.5 + pos: -30.5,-4.5 parent: 31 - - uid: 10151 + - uid: 1715 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-28.5 + pos: 38.5,-1.5 parent: 31 - - uid: 10152 + - uid: 2131 components: - type: Transform - pos: 45.5,-26.5 + rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 31 - - uid: 10153 + - uid: 2439 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-26.5 + pos: 0.5,-6.5 parent: 31 - - uid: 10154 + - uid: 2824 components: - type: Transform - pos: 44.5,-25.5 + rot: -1.5707963267948966 rad + pos: 0.5,0.5 parent: 31 - - uid: 10167 + - uid: 2893 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-25.5 + pos: 8.5,17.5 parent: 31 - - uid: 10188 + - uid: 3594 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-17.5 + pos: -4.5,0.5 parent: 31 - - uid: 10194 + - uid: 4007 components: - type: Transform - pos: 19.5,-11.5 + pos: 0.5,-4.5 parent: 31 - - uid: 10195 + - uid: 4164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-11.5 + pos: -0.5,1.5 parent: 31 - - uid: 10206 + - uid: 4882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: -8.5,21.5 parent: 31 - - uid: 10284 + - uid: 5065 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,5.5 + pos: 7.5,23.5 parent: 31 - - uid: 10295 + - uid: 7165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,15.5 + pos: 12.5,-30.5 parent: 31 - - uid: 11896 + - uid: 7331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,1.5 + pos: 23.5,-10.5 parent: 31 -- proto: DisposalJunction - entities: - - uid: 176 + - uid: 7373 components: - type: Transform - rot: 4.71238902409608 rad - pos: -28.5,3.5 + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 parent: 31 - - uid: 177 + - uid: 7851 components: - type: Transform - rot: 4.71238902409608 rad - pos: -22.5,3.5 + pos: 27.5,-24.5 parent: 31 - - uid: 945 + - uid: 8721 components: - type: Transform - pos: -34.5,5.5 + rot: 1.5707963267948966 rad + pos: -36.5,-28.5 parent: 31 - - uid: 2016 + - uid: 8722 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-11.5 + pos: -35.5,-29.5 parent: 31 - - uid: 2290 + - uid: 8723 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-0.5 + pos: -34.5,-29.5 parent: 31 - - uid: 2386 + - uid: 10202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 + pos: -22.5,10.5 parent: 31 - - uid: 4038 + - uid: 10213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 + rot: 3.141592653589793 rad + pos: -21.5,8.5 parent: 31 - - uid: 4149 +- proto: CommsComputerCircuitboard + entities: + - uid: 12579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 + pos: -3.7380998,16.490118 parent: 31 - - uid: 4806 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ComputerAlert + entities: + - uid: 8800 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-25.5 + pos: 7.5,31.5 parent: 31 - - uid: 7265 + - uid: 12050 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: 60.5,4.5 parent: 31 - - uid: 9587 +- proto: ComputerAnalysisConsole + entities: + - uid: 9292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 + rot: 1.5707963267948966 rad + pos: -12.5,-30.5 parent: 31 - - uid: 10297 + - type: DeviceLinkSource + linkedPorts: + 9418: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 7285 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-18.5 + pos: 20.5,-15.5 parent: 31 -- proto: DisposalJunctionFlipped +- proto: ComputerCargoBounty entities: - - uid: 166 + - uid: 8796 components: - type: Transform - rot: 4.71238902409608 rad - pos: 34.5,3.5 + rot: 1.5707963267948966 rad + pos: 18.5,9.5 parent: 31 - - uid: 170 +- proto: ComputerCargoOrders + entities: + - uid: 3602 components: - type: Transform - pos: 3.5,4.5 + rot: 1.5707963267948966 rad + pos: 26.5,8.5 parent: 31 - - uid: 313 + - uid: 4309 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,4.5 + pos: 16.5,9.5 parent: 31 - - uid: 352 +- proto: ComputerCargoShuttle + entities: + - uid: 4254 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,3.5 + pos: 24.5,15.5 parent: 31 - - uid: 365 +- proto: ComputerCloningConsole + entities: + - uid: 11686 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,3.5 + pos: 10.5,-16.5 parent: 31 - - uid: 1026 +- proto: ComputerComms + entities: + - uid: 1370 components: - type: Transform - pos: 3.5,17.5 + rot: 1.5707963267948966 rad + pos: 6.5,23.5 parent: 31 - - uid: 3408 + - uid: 2721 components: - type: Transform - pos: -32.5,-8.5 + pos: 3.5,32.5 parent: 31 - - uid: 3794 +- proto: ComputerCrewMonitoring + entities: + - uid: 955 components: - type: Transform - pos: -15.5,-25.5 + pos: 23.5,-9.5 parent: 31 -- proto: DisposalPipe - entities: - - uid: 56 + - uid: 2448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,4.5 + pos: 0.5,32.5 parent: 31 - - uid: 169 + - uid: 7674 components: - type: Transform - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 parent: 31 - - uid: 171 +- proto: ComputerCriminalRecords + entities: + - uid: 2964 components: - type: Transform - pos: 3.5,7.5 + rot: -1.5707963267948966 rad + pos: -0.5,7.5 parent: 31 - - uid: 180 + - uid: 8803 components: - type: Transform - pos: 3.5,8.5 + pos: 8.5,30.5 parent: 31 - - uid: 181 +- proto: ComputerId + entities: + - uid: 810 components: - type: Transform - pos: 3.5,9.5 + pos: 7.5,21.5 parent: 31 - - uid: 189 + - uid: 870 components: - type: Transform - pos: -28.5,5.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 31 - - uid: 190 + - uid: 1113 components: - type: Transform - pos: -28.5,6.5 + pos: -3.5,-19.5 parent: 31 - - uid: 191 + - uid: 2065 components: - type: Transform - pos: -28.5,7.5 + rot: -1.5707963267948966 rad + pos: -7.5,21.5 parent: 31 - - uid: 192 + - uid: 2204 components: - type: Transform - pos: -28.5,8.5 + pos: 29.5,10.5 parent: 31 - - uid: 193 + - uid: 6840 components: - type: Transform - pos: -28.5,9.5 - parent: 31 - - uid: 212 - components: - - type: Transform - pos: 24.5,5.5 + pos: 24.5,-9.5 parent: 31 - - uid: 213 + - uid: 11014 components: - type: Transform - pos: 24.5,6.5 + rot: 1.5707963267948966 rad + pos: 37.5,0.5 parent: 31 - - uid: 214 +- proto: ComputerPalletConsole + entities: + - uid: 6865 components: - type: Transform - pos: 24.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,7.5 parent: 31 - - uid: 223 +- proto: ComputerPowerMonitoring + entities: + - uid: 4306 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,1.5 + pos: 42.5,4.5 parent: 31 - - uid: 224 + - uid: 12048 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,0.5 + rot: -1.5707963267948966 rad + pos: 60.5,3.5 parent: 31 - - uid: 225 +- proto: ComputerRadar + entities: + - uid: 579 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,-0.5 + rot: -1.5707963267948966 rad + pos: 32.5,22.5 parent: 31 - - uid: 226 + - uid: 2447 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,-1.5 + pos: 6.5,32.5 parent: 31 - - uid: 227 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 4244 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,-2.5 + pos: -4.5,-19.5 parent: 31 - - uid: 228 + - uid: 9456 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,-3.5 + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 parent: 31 - - uid: 231 +- proto: ComputerShuttleCargo + entities: + - uid: 2374 components: - type: Transform - rot: 4.71238902409608 rad - pos: 30.5,3.5 + pos: 23.5,13.5 parent: 31 - - uid: 232 +- proto: ComputerShuttleSalvage + entities: + - uid: 6644 components: - type: Transform - rot: 4.71238902409608 rad - pos: 36.5,3.5 + pos: 28.5,21.5 parent: 31 - - uid: 233 +- proto: ComputerSolarControl + entities: + - uid: 4305 components: - type: Transform - rot: 4.71238902409608 rad - pos: 35.5,3.5 + pos: 41.5,4.5 parent: 31 - - uid: 234 + - uid: 5184 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,2.5 + pos: -21.5,25.5 parent: 31 - - uid: 235 + - uid: 11207 components: - type: Transform - rot: 4.71238902409608 rad - pos: 33.5,3.5 + rot: 1.5707963267948966 rad + pos: 14.5,-27.5 parent: 31 - - uid: 236 + - uid: 12049 components: - type: Transform - rot: 4.71238902409608 rad - pos: 32.5,3.5 + rot: -1.5707963267948966 rad + pos: 60.5,1.5 parent: 31 - - uid: 237 +- proto: ComputerStationRecords + entities: + - uid: 8515 components: - type: Transform - rot: 4.71238902409608 rad - pos: 31.5,3.5 + pos: -3.5,14.5 parent: 31 - - uid: 239 + - uid: 9752 components: - type: Transform - pos: 37.5,4.5 + rot: 1.5707963267948966 rad + pos: -2.5,29.5 parent: 31 - - uid: 240 + - uid: 11431 components: - type: Transform - pos: 37.5,5.5 + rot: 3.141592653589793 rad + pos: -13.5,-39.5 parent: 31 - - uid: 243 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 534 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,28.5 + pos: 9.5,29.5 parent: 31 - - uid: 244 + - uid: 2218 components: - type: Transform - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 48.5,-4.5 parent: 31 - - uid: 246 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,3.5 + pos: -14.5,-24.5 parent: 31 - - uid: 265 +- proto: ConveyorBelt + entities: + - uid: 1771 components: - type: Transform - pos: 3.5,27.5 + pos: 20.5,20.5 parent: 31 - - uid: 270 + - type: DeviceLinkSink + links: + - 1084 + - uid: 3387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,28.5 + pos: 20.5,21.5 parent: 31 - - uid: 271 + - type: DeviceLinkSink + links: + - 1084 + - uid: 3548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,28.5 + pos: 20.5,23.5 parent: 31 - - uid: 272 + - type: DeviceLinkSink + links: + - 1084 + - uid: 3549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,28.5 + pos: 20.5,24.5 parent: 31 - - uid: 277 + - type: DeviceLinkSink + links: + - 1084 + - uid: 3550 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-8.5 + pos: 20.5,22.5 parent: 31 - - uid: 278 + - type: DeviceLinkSink + links: + - 1084 + - uid: 7550 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-7.5 + pos: 20.5,19.5 parent: 31 - - uid: 279 + - type: DeviceLinkSink + links: + - 1084 + - uid: 8899 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-6.5 + pos: 20.5,18.5 parent: 31 - - uid: 280 + - type: DeviceLinkSink + links: + - 1084 + - uid: 9138 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-5.5 + rot: 3.141592653589793 rad + pos: 23.5,27.5 parent: 31 - - uid: 281 + - type: DeviceLinkSink + links: + - 7945 + - uid: 9139 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-4.5 + rot: 3.141592653589793 rad + pos: 23.5,26.5 parent: 31 - - uid: 282 + - type: DeviceLinkSink + links: + - 7945 + - uid: 9265 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-3.5 + rot: -1.5707963267948966 rad + pos: -35.5,-16.5 parent: 31 - - uid: 283 + - type: DeviceLinkSink + links: + - 10218 + - uid: 9886 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-2.5 + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 parent: 31 - - uid: 284 + - type: DeviceLinkSink + links: + - 10218 + - uid: 10033 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-1.5 + rot: 3.141592653589793 rad + pos: -31.5,-18.5 parent: 31 - - uid: 285 + - type: DeviceLinkSink + links: + - 10218 + - uid: 10040 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,-17.5 parent: 31 - - uid: 286 + - type: DeviceLinkSink + links: + - 10218 + - uid: 10043 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,0.5 + rot: -1.5707963267948966 rad + pos: -31.5,-16.5 parent: 31 - - uid: 287 + - type: DeviceLinkSink + links: + - 10218 + - uid: 10045 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,1.5 + rot: 3.141592653589793 rad + pos: 22.5,25.5 parent: 31 - - uid: 288 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10046 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,2.5 + pos: 19.5,28.5 parent: 31 - - uid: 289 + - type: DeviceLinkSink + links: + - 1084 + - uid: 10047 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-10.5 + rot: 3.141592653589793 rad + pos: 22.5,18.5 parent: 31 - - uid: 291 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10048 components: - type: Transform - rot: 4.71238902409608 rad - pos: 5.5,-11.5 + rot: 3.141592653589793 rad + pos: 22.5,19.5 parent: 31 - - uid: 292 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10049 components: - type: Transform - rot: 4.71238902409608 rad - pos: 6.5,-11.5 + rot: 3.141592653589793 rad + pos: 22.5,20.5 parent: 31 - - uid: 293 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10050 components: - type: Transform - rot: 4.71238902409608 rad - pos: 7.5,-11.5 + rot: 3.141592653589793 rad + pos: 22.5,21.5 parent: 31 - - uid: 294 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10051 components: - type: Transform - rot: 4.71238902409608 rad - pos: 8.5,-11.5 + rot: 3.141592653589793 rad + pos: 22.5,22.5 parent: 31 - - uid: 295 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10052 components: - type: Transform - rot: 4.71238902409608 rad - pos: 4.5,-11.5 + rot: 3.141592653589793 rad + pos: 22.5,23.5 parent: 31 - - uid: 296 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10053 components: - type: Transform - rot: 4.71238902409608 rad - pos: 9.5,-11.5 + rot: 3.141592653589793 rad + pos: 22.5,24.5 parent: 31 - - uid: 301 + - type: DeviceLinkSink + links: + - 1084 + - 7945 + - uid: 10054 components: - type: Transform - pos: -5.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,28.5 parent: 31 - - uid: 302 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10089 components: - type: Transform - rot: 3.141592697301183 rad - pos: 12.5,0.5 + pos: 20.5,25.5 parent: 31 - - uid: 304 + - type: DeviceLinkSink + links: + - 1084 + - uid: 10090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 20.5,26.5 parent: 31 - - uid: 311 + - type: DeviceLinkSink + links: + - 1084 + - uid: 10091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,17.5 + pos: 19.5,27.5 parent: 31 - - uid: 314 + - type: DeviceLinkSink + links: + - 1084 + - uid: 10092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 31 - - uid: 315 - components: - - type: Transform - rot: 3.141592697301183 rad - pos: 12.5,2.5 + pos: 19.5,26.5 parent: 31 - - uid: 316 + - type: DeviceLinkSink + links: + - 1084 + - uid: 10093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,4.5 + pos: 22.5,26.5 parent: 31 - - uid: 317 + - type: DeviceLinkSink + links: + - 7945 + - uid: 10109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,4.5 + rot: -1.5707963267948966 rad + pos: -32.5,-16.5 parent: 31 - - uid: 318 + - type: DeviceLinkSink + links: + - 10218 + - uid: 10110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,4.5 + rot: -1.5707963267948966 rad + pos: -33.5,-16.5 parent: 31 - - uid: 319 + - type: DeviceLinkSink + links: + - 10218 + - uid: 10215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 + rot: -1.5707963267948966 rad + pos: -36.5,-16.5 parent: 31 - - uid: 320 + - type: DeviceLinkSink + links: + - 10218 +- proto: CrateArtifactContainer + entities: + - uid: 99 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 + pos: -8.5,-31.5 parent: 31 - - uid: 321 +- proto: CrateCoffin + entities: + - uid: 8457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,4.5 + pos: -32.5,-23.5 parent: 31 - - uid: 322 +- proto: CrateEmptySpawner + entities: + - uid: 3135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,4.5 + pos: -17.5,13.5 parent: 31 - - uid: 323 + - uid: 8045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 + pos: 10.5,13.5 parent: 31 - - uid: 324 + - uid: 10012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,4.5 + pos: 18.5,15.5 parent: 31 - - uid: 325 +- proto: CrateEngineeringCableHV + entities: + - uid: 11208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,4.5 + pos: 16.5,-29.5 parent: 31 - - uid: 326 +- proto: CrateEngineeringTeslaCoil + entities: + - uid: 11373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 + pos: 55.5,11.5 parent: 31 - - uid: 327 + - uid: 11374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,4.5 + pos: 55.5,10.5 parent: 31 - - uid: 330 + - uid: 11375 components: - type: Transform - pos: 3.5,6.5 + pos: 56.5,11.5 parent: 31 - - uid: 334 + - uid: 11376 components: - type: Transform - rot: 3.141592697301183 rad - pos: 3.5,-9.5 + pos: 57.5,11.5 parent: 31 - - uid: 342 +- proto: CrateFilledSpawner + entities: + - uid: 1637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,2.5 + pos: 22.5,7.5 parent: 31 - - uid: 344 + - uid: 7140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-27.5 + pos: 20.5,7.5 parent: 31 - - uid: 348 + - uid: 9796 components: - type: Transform - pos: -22.5,4.5 + pos: -19.5,-36.5 parent: 31 - - uid: 349 +- proto: CrateHydroponics + entities: + - uid: 9679 components: - type: Transform - pos: -22.5,5.5 + pos: 1.5,-42.5 parent: 31 - - uid: 353 +- proto: CrateMaterialPlasma + entities: + - uid: 12432 components: - type: Transform - rot: 4.71238902409608 rad - pos: -6.5,3.5 + pos: 47.5,9.5 parent: 31 - - uid: 355 + - uid: 12443 components: - type: Transform - rot: 4.71238902409608 rad - pos: -4.5,3.5 + pos: 48.5,9.5 parent: 31 - - uid: 356 +- proto: CrateMaterialSteel + entities: + - uid: 12246 components: - type: Transform - rot: 4.71238902409608 rad - pos: -3.5,3.5 + pos: 38.5,12.5 parent: 31 - - uid: 357 + - uid: 12247 components: - type: Transform - rot: 4.71238902409608 rad - pos: -2.5,3.5 + pos: 39.5,12.5 parent: 31 - - uid: 358 +- proto: CrateMedicalScrubs + entities: + - uid: 11451 components: - type: Transform - rot: 4.71238902409608 rad - pos: -1.5,3.5 - parent: 31 - - uid: 359 - components: - - type: Transform - rot: 4.71238902409608 rad - pos: -0.5,3.5 + pos: 10.5,-13.5 parent: 31 - - uid: 361 +- proto: CrateMedicalSurgery + entities: + - uid: 7264 components: - type: Transform - rot: 4.71238902409608 rad - pos: 1.5,3.5 + pos: 20.5,-17.5 parent: 31 - - uid: 362 +- proto: CrateNPCHamlet + entities: + - uid: 2458 components: - type: Transform - rot: 4.71238902409608 rad - pos: -8.5,3.5 + pos: 0.5,29.5 parent: 31 - - uid: 363 +- proto: CratePrivateSecure + entities: + - uid: 2363 components: - type: Transform - rot: 4.71238902409608 rad - pos: -9.5,3.5 + pos: -2.5,16.5 parent: 31 - - uid: 364 + - 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: + - 2480 + - 2481 + - 3041 + - 3485 + - 3831 + - 3832 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCart + entities: + - uid: 4318 components: - type: Transform - rot: 4.71238902409608 rad - pos: -10.5,3.5 + pos: 40.5,-3.5 parent: 31 - - uid: 367 + - uid: 6904 components: - type: Transform - rot: 4.71238902409608 rad - pos: -13.5,3.5 + pos: 23.5,-18.5 parent: 31 - - uid: 368 + - uid: 7087 components: - type: Transform - rot: 4.71238902409608 rad - pos: -14.5,3.5 + pos: -7.5,-12.5 parent: 31 - - uid: 369 +- proto: CrateTrashCartFilled + entities: + - uid: 10468 components: - type: Transform - rot: 4.71238902409608 rad - pos: -15.5,3.5 + pos: -31.5,-13.5 parent: 31 - - uid: 370 +- proto: CrateTrashCartJani + entities: + - uid: 125 components: - type: Transform - rot: 4.71238902409608 rad - pos: -16.5,3.5 + pos: -20.5,-11.5 parent: 31 - - uid: 371 +- proto: CrayonBox + entities: + - uid: 263 components: - type: Transform - rot: 4.71238902409608 rad - pos: -17.5,3.5 + pos: -19.62684,-5.2181053 parent: 31 - - uid: 372 +- proto: Crematorium + entities: + - uid: 10312 components: - type: Transform - rot: 4.71238902409608 rad - pos: -18.5,3.5 + rot: 3.141592653589793 rad + pos: -31.5,-24.5 parent: 31 - - uid: 373 +- proto: CrewMonitoringServer + entities: + - uid: 879 components: - type: Transform - rot: 4.71238902409608 rad - pos: -19.5,3.5 + pos: 57.5,-9.5 parent: 31 - - uid: 374 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: CrowbarRed + entities: + - uid: 2093 components: - type: Transform - rot: 4.71238902409608 rad - pos: -20.5,3.5 + pos: -3.7752368,12.511271 parent: 31 - - uid: 375 + - uid: 7562 components: - type: Transform - rot: 4.71238902409608 rad - pos: -21.5,3.5 + rot: -1.5707963267948966 rad + pos: -52.74314,-11.621845 parent: 31 - - uid: 377 + - uid: 8834 components: - type: Transform - rot: 4.71238902409608 rad - pos: -23.5,3.5 + pos: 8.498364,31.458696 parent: 31 - - uid: 378 + - uid: 9114 components: - type: Transform - rot: 4.71238902409608 rad - pos: -24.5,3.5 + pos: -10.463156,-6.5336485 parent: 31 - - uid: 379 +- proto: CryogenicSleepUnit + entities: + - uid: 9172 components: - type: Transform - rot: 4.71238902409608 rad - pos: -25.5,3.5 + pos: -42.5,-3.5 parent: 31 - - uid: 380 + - uid: 9184 components: - type: Transform - rot: 4.71238902409608 rad - pos: -26.5,3.5 + pos: -40.5,-3.5 parent: 31 - - uid: 381 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 9197 components: - type: Transform - rot: 4.71238902409608 rad - pos: -27.5,3.5 + pos: -40.5,-5.5 parent: 31 - - uid: 382 +- proto: CryogenicSleepUnitSpawnerPrisoner + entities: + - uid: 7306 components: - type: Transform - pos: -28.5,4.5 + pos: -15.5,9.5 parent: 31 - - uid: 383 +- proto: CryoPod + entities: + - uid: 5231 components: - type: Transform - rot: 4.71238902409608 rad - pos: -29.5,3.5 + pos: 7.5,-15.5 parent: 31 - - uid: 384 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 6015 components: - type: Transform - rot: 4.71238902409608 rad - pos: -30.5,3.5 + pos: 7.2794514,-13.17127 parent: 31 - - uid: 385 +- proto: CultAltarSpawner + entities: + - uid: 9689 components: - type: Transform - rot: 4.71238902409608 rad - pos: -31.5,3.5 + pos: 7.5,-41.5 parent: 31 - - uid: 386 +- proto: CurtainsBlackOpen + entities: + - uid: 4977 components: - type: Transform - pos: -32.5,2.5 + pos: -15.5,-0.5 parent: 31 - - uid: 387 + - uid: 12222 components: - type: Transform - pos: -32.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 parent: 31 - - uid: 388 + - uid: 12223 components: - type: Transform - pos: -32.5,0.5 + rot: -1.5707963267948966 rad + pos: -6.5,2.5 parent: 31 - - uid: 389 + - uid: 12224 components: - type: Transform - pos: -32.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 parent: 31 - - uid: 390 + - uid: 12225 components: - type: Transform - pos: -32.5,-1.5 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 parent: 31 - - uid: 391 + - uid: 12226 components: - type: Transform - pos: -32.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,2.5 parent: 31 - - uid: 392 + - uid: 12227 components: - type: Transform - pos: -32.5,-3.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 31 - - uid: 393 + - uid: 12228 components: - type: Transform - pos: -32.5,-4.5 + rot: 3.141592653589793 rad + pos: 1.5,-0.5 parent: 31 - - uid: 394 + - uid: 12229 components: - type: Transform - pos: -32.5,-5.5 + rot: 3.141592653589793 rad + pos: 1.5,-1.5 parent: 31 - - uid: 395 + - uid: 12230 components: - type: Transform - pos: -32.5,-6.5 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 parent: 31 - - uid: 396 + - uid: 12231 components: - type: Transform - pos: -32.5,-7.5 + pos: -15.5,0.5 parent: 31 - - uid: 405 + - uid: 12232 components: - type: Transform - pos: -15.5,-23.5 + pos: -15.5,1.5 parent: 31 - - uid: 406 +- proto: CurtainsPurpleOpen + entities: + - uid: 2847 components: - type: Transform - pos: -15.5,-24.5 + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 parent: 31 - - uid: 414 + - uid: 4887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 parent: 31 - - uid: 624 + - uid: 7344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 + rot: 3.141592653589793 rad + pos: -27.5,-22.5 parent: 31 - - uid: 758 + - uid: 8100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 + rot: 3.141592653589793 rad + pos: -27.5,-21.5 parent: 31 - - uid: 788 + - uid: 8500 components: - type: Transform - pos: -14.5,-17.5 + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 parent: 31 - - uid: 846 + - uid: 9462 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-27.5 + pos: -21.5,-17.5 parent: 31 - - uid: 847 + - uid: 10706 components: - type: Transform - pos: -15.5,-26.5 + pos: -25.5,-25.5 parent: 31 - - uid: 921 + - uid: 10707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: -26.5,-25.5 parent: 31 - - uid: 947 + - uid: 11712 components: - type: Transform - pos: -15.5,-21.5 + rot: -1.5707963267948966 rad + pos: -6.5,-20.5 parent: 31 - - uid: 1031 + - uid: 11713 components: - type: Transform - pos: -15.5,-22.5 + rot: 3.141592653589793 rad + pos: -6.5,-21.5 parent: 31 - - uid: 1062 + - uid: 11714 components: - type: Transform - pos: 7.5,5.5 + rot: 3.141592653589793 rad + pos: -6.5,-22.5 parent: 31 - - uid: 1101 +- proto: CurtainsRedOpen + entities: + - uid: 175 components: - type: Transform - pos: 7.5,6.5 + rot: -1.5707963267948966 rad + pos: 2.5,-31.5 parent: 31 - - uid: 1221 + - uid: 221 components: - type: Transform - pos: 7.5,7.5 + rot: -1.5707963267948966 rad + pos: 4.5,-31.5 parent: 31 - - uid: 1362 + - uid: 7317 components: - type: Transform - pos: 7.5,8.5 + rot: -1.5707963267948966 rad + pos: 3.5,-31.5 parent: 31 - - uid: 1375 + - uid: 11690 components: - type: Transform - pos: 7.5,10.5 + rot: -1.5707963267948966 rad + pos: 6.5,-35.5 parent: 31 - - uid: 1493 +- proto: CyborgEndoskeleton + entities: + - uid: 942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 + pos: -0.49411595,-30.373203 parent: 31 - - uid: 1701 +- proto: d20Dice + entities: + - uid: 2357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-27.5 + pos: -23.834803,-5.3811545 parent: 31 - - uid: 2014 + - uid: 4723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-13.5 + pos: 11.36982,-23.570984 parent: 31 - - uid: 2015 +- proto: d6Dice + entities: + - uid: 4249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-12.5 + pos: 10.80732,-23.477234 parent: 31 - - uid: 2141 + - uid: 7292 components: - type: Transform - pos: -8.5,-27.5 + pos: 10.46357,-23.664734 parent: 31 - - uid: 2143 +- proto: d8Dice + entities: + - uid: 2358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 + pos: -24.287928,-6.3967795 parent: 31 - - uid: 2160 + - uid: 7293 components: - type: Transform - pos: 3.5,21.5 + pos: 11.27607,-24.265812 parent: 31 - - uid: 2260 +- proto: DefaultStationBeacon + entities: + - uid: 774 components: - type: Transform - pos: -28.5,-20.5 + pos: -39.5,5.5 parent: 31 - - uid: 2296 + - type: NavMapBeacon + text: evac + - uid: 1374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 + pos: 44.5,-24.5 parent: 31 - - uid: 2305 + - type: NavMapBeacon + text: observatory +- proto: DefaultStationBeaconAME + entities: + - uid: 7280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 + pos: 47.5,8.5 parent: 31 - - uid: 2306 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 11361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 + pos: -5.5,-30.5 parent: 31 - - uid: 2308 +- proto: DefaultStationBeaconArmory + entities: + - uid: 10088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 + pos: -12.5,19.5 parent: 31 - - uid: 2314 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-16.5 + pos: -44.5,-10.5 parent: 31 - - uid: 2336 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 11363 components: - type: Transform - pos: -28.5,-19.5 + pos: -12.5,-29.5 parent: 31 - - uid: 2337 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 11312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-16.5 + pos: 31.5,12.5 parent: 31 - - uid: 2338 +- proto: DefaultStationBeaconBar + entities: + - uid: 11319 components: - type: Transform - pos: -28.5,-21.5 + pos: -5.5,-5.5 parent: 31 - - uid: 2385 +- proto: DefaultStationBeaconBotany + entities: + - uid: 11320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-9.5 + pos: -18.5,-0.5 parent: 31 - - uid: 2390 +- proto: DefaultStationBeaconBridge + entities: + - uid: 11269 components: - type: Transform - pos: -10.5,-19.5 + pos: 3.5,30.5 parent: 31 - - uid: 2456 +- proto: DefaultStationBeaconBrig + entities: + - uid: 8881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-16.5 + pos: -10.5,8.5 parent: 31 - - uid: 2527 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 11268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,17.5 + pos: 8.5,25.5 parent: 31 - - uid: 2621 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 3509 components: - type: Transform - pos: -28.5,-22.5 + pos: 21.5,16.5 parent: 31 - - uid: 2841 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 2494 components: - type: Transform - pos: -28.5,-23.5 + pos: 14.5,10.5 parent: 31 - - uid: 2857 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 3513 components: - type: Transform - pos: -8.5,-26.5 + pos: 39.5,-0.5 parent: 31 - - uid: 2858 +- proto: DefaultStationBeaconChapel + entities: + - uid: 11653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-24.5 + pos: -21.5,-20.5 parent: 31 - - uid: 2859 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 7256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-23.5 + pos: 16.5,-0.5 parent: 31 - - uid: 2861 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 7276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-22.5 + pos: 23.5,-10.5 parent: 31 - - uid: 2862 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 8316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 + pos: 8.5,-15.5 parent: 31 - - uid: 2863 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 9207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-8.5 + pos: -41.5,-4.5 parent: 31 - - uid: 2864 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 7954 components: - type: Transform - pos: -8.5,-30.5 + pos: -30.5,-16.5 parent: 31 - - uid: 3354 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 7281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-10.5 + pos: 33.5,4.5 parent: 31 - - uid: 3377 + - uid: 11056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,4.5 + pos: 57.5,10.5 parent: 31 - - uid: 3381 + - type: NavMapBeacon + text: Tesla Storage +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 11467 components: - type: Transform - pos: -8.5,-29.5 + rot: 3.141592653589793 rad + pos: 31.5,-17.5 parent: 31 - - uid: 3382 + - uid: 11468 components: - type: Transform - pos: -8.5,-28.5 + rot: 3.141592653589793 rad + pos: -8.5,-41.5 parent: 31 - - uid: 3383 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 7640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-25.5 + pos: 8.5,9.5 parent: 31 - - uid: 3593 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 2464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 + pos: 8.5,19.5 parent: 31 - - uid: 3596 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 778 components: - type: Transform - pos: -32.5,-10.5 + pos: -8.5,20.5 parent: 31 - - uid: 3731 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 11323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 + pos: -18.5,-11.5 parent: 31 - - uid: 3741 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 11318 components: - type: Transform - pos: -32.5,-13.5 + pos: -12.5,-0.5 parent: 31 - - uid: 3742 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 11325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-27.5 + pos: 9.5,-26.5 parent: 31 - - uid: 3745 +- proto: DefaultStationBeaconMantis + entities: + - uid: 11757 components: - type: Transform - pos: -8.5,-31.5 + pos: 4.5,-33.5 parent: 31 - - uid: 3747 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 5767 components: - type: Transform - pos: -32.5,-12.5 + pos: 9.5,-9.5 parent: 31 - - uid: 3748 +- proto: DefaultStationBeaconMedical + entities: + - uid: 1215 components: - type: Transform - pos: -32.5,-11.5 + pos: 9.5,-2.5 parent: 31 - - uid: 3868 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 7275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,17.5 + pos: 13.5,-15.5 parent: 31 - - uid: 3876 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 11316 components: - type: Transform - pos: -28.5,-17.5 + pos: -17.5,9.5 parent: 31 - - uid: 3877 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 11352 components: - type: Transform - pos: 3.5,20.5 + pos: 41.5,5.5 parent: 31 - - uid: 3939 +- proto: DefaultStationBeaconProber + entities: + - uid: 11652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + pos: -13.5,-24.5 parent: 31 - - uid: 4036 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 11353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 + pos: 27.5,9.5 parent: 31 - - uid: 4118 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 11354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 + pos: -4.5,-21.5 parent: 31 - - uid: 4158 +- proto: DefaultStationBeaconRND + entities: + - uid: 11355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 + pos: -15.5,-23.5 parent: 31 - - uid: 4183 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 11360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-16.5 + pos: -1.5,-27.5 parent: 31 - - uid: 4199 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 11321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-16.5 + pos: 27.5,18.5 parent: 31 - - uid: 4211 +- proto: DefaultStationBeaconScience + entities: + - uid: 1208 components: - type: Transform - pos: -5.5,9.5 + pos: -9.5,-20.5 parent: 31 - - uid: 4325 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 1136 components: - type: Transform - pos: 12.5,1.5 + pos: -7.5,11.5 parent: 31 - - uid: 4329 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 11356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 + pos: -1.5,-21.5 parent: 31 - - uid: 4728 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 11358 components: - type: Transform - pos: 3.5,-21.5 + pos: 60.5,2.5 parent: 31 - - uid: 4739 +- proto: DefaultStationBeaconSolars + entities: + - uid: 11364 components: - type: Transform - pos: 3.5,-20.5 + pos: 15.5,-29.5 parent: 31 - - uid: 4747 + - uid: 11365 components: - type: Transform - pos: 3.5,-24.5 + pos: -31.5,-32.5 parent: 31 - - uid: 4748 + - uid: 11366 components: - type: Transform - pos: 3.5,-23.5 + pos: -22.5,24.5 parent: 31 - - uid: 4749 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 1316 components: - type: Transform - pos: 3.5,-22.5 + pos: 27.5,1.5 parent: 31 - - uid: 4792 +- proto: DefaultStationBeaconTEG + entities: + - uid: 11314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-28.5 + pos: 38.5,14.5 parent: 31 - - uid: 4793 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 11357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-29.5 + pos: 50.5,-5.5 parent: 31 - - uid: 4798 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 11317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 + pos: -27.5,9.5 parent: 31 - - uid: 4799 +- proto: DefaultStationBeaconVault + entities: + - uid: 11315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-27.5 + pos: -1.5,17.5 parent: 31 - - uid: 4800 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 762 components: - type: Transform - pos: 3.5,-16.5 + pos: -1.5,8.5 parent: 31 - - uid: 4801 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 7340 components: - type: Transform - pos: 3.5,-14.5 + rot: 3.141592653589793 rad + pos: 11.5,-12.5 parent: 31 - - uid: 4802 + - uid: 9834 components: - type: Transform - pos: 3.5,-15.5 + pos: 1.5,29.5 parent: 31 - - uid: 4803 + - uid: 9835 components: - type: Transform - pos: 3.5,-18.5 + pos: -32.5,6.5 parent: 31 - - uid: 4804 + - uid: 10032 components: - type: Transform - pos: 3.5,-17.5 + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 parent: 31 - - uid: 4805 + - uid: 11438 components: - type: Transform - pos: 3.5,-19.5 + pos: 0.5,15.5 parent: 31 - - uid: 4811 +- proto: DeployableBarrier + entities: + - uid: 2502 components: - type: Transform - pos: 3.5,-26.5 + pos: -6.5,17.5 parent: 31 - - uid: 4812 + - uid: 9369 components: - type: Transform - pos: 3.5,-25.5 + pos: -5.5,17.5 parent: 31 - - uid: 4878 +- proto: DeskBell + entities: + - uid: 2195 components: - type: Transform - pos: -5.5,8.5 + pos: 7.9000525,-3.1977162 parent: 31 - - uid: 4969 +- proto: DiceBag + entities: + - uid: 10207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-21.5 + pos: 10.362751,-24.393734 parent: 31 - - uid: 5085 + - uid: 10208 components: - type: Transform - pos: -5.5,11.5 + pos: 10.756269,-24.370586 parent: 31 - - uid: 5099 +- proto: DiseaseDiagnoser + entities: + - uid: 8435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-1.5 + pos: 19.5,-5.5 parent: 31 - - uid: 5144 +- proto: DisgustingSweptSoup + entities: + - uid: 9020 components: - type: Transform - pos: -5.5,10.5 + pos: -12.586034,24.541399 parent: 31 - - uid: 5191 +- proto: DisposalBend + entities: + - uid: 61 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 + rot: 3.141592653589793 rad + pos: 3.5,-27.5 parent: 31 - - uid: 5232 + - uid: 238 components: - type: Transform - pos: -5.5,6.5 + rot: 4.71238902409608 rad + pos: 37.5,3.5 parent: 31 - - uid: 5234 + - uid: 310 components: - type: Transform - pos: -5.5,4.5 + pos: 8.5,17.5 parent: 31 - - uid: 5235 + - uid: 399 components: - type: Transform - pos: -5.5,5.5 + rot: -1.5707963267948966 rad + pos: -15.5,-27.5 parent: 31 - - uid: 5250 + - uid: 838 components: - type: Transform - pos: -32.5,-9.5 + rot: 3.141592697301183 rad + pos: -29.5,10.5 parent: 31 - - uid: 5291 + - uid: 839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-8.5 + pos: -28.5,10.5 parent: 31 - - uid: 5733 + - uid: 848 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 31 + - uid: 849 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-29.5 + pos: -15.5,-20.5 parent: 31 - - uid: 5740 + - uid: 874 + components: + - type: Transform + pos: 7.5,11.5 + parent: 31 + - uid: 927 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-29.5 + pos: -14.5,-16.5 parent: 31 - - uid: 5756 + - uid: 2012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-28.5 + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 parent: 31 - - uid: 5760 + - uid: 2299 components: - type: Transform - pos: -28.5,-27.5 + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 parent: 31 - - uid: 5763 + - uid: 2315 components: - type: Transform - pos: -28.5,-28.5 + pos: -5.5,12.5 parent: 31 - - uid: 5771 + - uid: 2335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-29.5 + pos: -4.5,-16.5 parent: 31 - - uid: 7082 + - uid: 2874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-29.5 + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 parent: 31 - - uid: 7224 + - uid: 3883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-29.5 + pos: 3.5,28.5 parent: 31 - - uid: 7356 + - uid: 4056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -10.5,-18.5 parent: 31 - - uid: 7380 + - uid: 4090 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: -14.5,-18.5 parent: 31 - - uid: 7381 + - uid: 4206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 + rot: 3.141592653589793 rad + pos: -32.5,-14.5 parent: 31 - - uid: 7415 + - uid: 4703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-29.5 + pos: -30.5,-14.5 parent: 31 - - uid: 7421 + - uid: 4790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + pos: 6.5,-27.5 parent: 31 - - uid: 7427 + - uid: 5100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 + pos: 14.5,-0.5 parent: 31 - - uid: 7451 + - uid: 5292 components: - type: Transform - pos: 7.5,9.5 + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 parent: 31 - - uid: 7452 + - uid: 5742 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,11.5 + pos: -28.5,-29.5 parent: 31 - - uid: 7584 + - uid: 5758 components: - type: Transform - pos: -28.5,-26.5 + rot: 1.5707963267948966 rad + pos: -20.5,-27.5 parent: 31 - - uid: 7630 + - uid: 6586 components: - type: Transform - pos: -28.5,-25.5 + pos: 33.5,-17.5 parent: 31 - - uid: 7962 + - uid: 7420 components: - type: Transform - pos: 29.5,5.5 + pos: 18.5,-10.5 parent: 31 - - uid: 8171 + - uid: 7430 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-2.5 + pos: 29.5,3.5 parent: 31 - - uid: 8442 + - uid: 7631 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,3.5 + pos: -20.5,-29.5 parent: 31 - - uid: 8446 + - uid: 8092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,2.5 + rot: 1.5707963267948966 rad + pos: 62.5,1.5 parent: 31 - - uid: 9171 + - uid: 8093 components: - type: Transform - pos: -4.5,6.5 + rot: -1.5707963267948966 rad + pos: 62.5,0.5 parent: 31 - - uid: 9221 + - uid: 8445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 parent: 31 - - uid: 9229 + - uid: 9338 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,12.5 + pos: -34.5,3.5 parent: 31 - - uid: 9230 + - uid: 10147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,13.5 + pos: 49.5,-29.5 parent: 31 - - uid: 9324 + - uid: 10149 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,16.5 + pos: 47.5,-29.5 parent: 31 - - uid: 9340 + - uid: 10150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,3.5 + pos: 47.5,-28.5 parent: 31 - - uid: 9341 + - uid: 10151 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,4.5 + pos: 45.5,-28.5 parent: 31 - - uid: 9378 + - uid: 10152 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 31 + - uid: 10153 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,15.5 + pos: 44.5,-26.5 parent: 31 - - uid: 9458 + - uid: 10154 components: - type: Transform - pos: -28.5,-24.5 + pos: 44.5,-25.5 parent: 31 - - uid: 9513 + - uid: 10167 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,14.5 + pos: 33.5,-25.5 parent: 31 - - uid: 9520 + - uid: 10188 components: - type: Transform - pos: 3.5,22.5 + rot: 3.141592653589793 rad + pos: 19.5,-17.5 parent: 31 - - uid: 9521 + - uid: 10194 components: - type: Transform - pos: 3.5,23.5 + pos: 19.5,-11.5 parent: 31 - - uid: 9522 + - uid: 10195 components: - type: Transform - pos: 3.5,24.5 + rot: 3.141592653589793 rad + pos: 18.5,-11.5 parent: 31 - - uid: 9523 + - uid: 10206 components: - type: Transform - pos: 3.5,25.5 + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 parent: 31 - - uid: 9524 + - uid: 10284 components: - type: Transform - pos: 3.5,26.5 + rot: 3.141592653589793 rad + pos: -35.5,5.5 parent: 31 - - uid: 9544 + - uid: 10295 components: - type: Transform - pos: 10.5,-6.5 + rot: 1.5707963267948966 rad + pos: -35.5,15.5 parent: 31 - - uid: 9559 + - uid: 11896 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,4.5 + pos: 67.5,1.5 parent: 31 - - uid: 9588 - components: - - type: Transform - pos: 12.5,3.5 +- proto: DisposalJunction + entities: + - uid: 176 + components: + - type: Transform + rot: 4.71238902409608 rad + pos: -28.5,3.5 parent: 31 - - uid: 9599 + - uid: 177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + rot: 4.71238902409608 rad + pos: -22.5,3.5 parent: 31 - - uid: 9633 + - uid: 945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,10.5 + pos: -34.5,5.5 parent: 31 - - uid: 9638 + - uid: 2016 components: - type: Transform - pos: 13.5,8.5 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 parent: 31 - - uid: 9649 + - uid: 2290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,4.5 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 parent: 31 - - uid: 9650 + - uid: 2386 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,4.5 + pos: 14.5,-10.5 parent: 31 - - uid: 9651 + - uid: 4038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + rot: 1.5707963267948966 rad + pos: -12.5,-18.5 parent: 31 - - uid: 9652 + - uid: 4149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,4.5 + pos: -5.5,3.5 parent: 31 - - uid: 9653 + - uid: 4806 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,4.5 + pos: -10.5,-25.5 parent: 31 - - uid: 9655 + - uid: 7265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 7.5,4.5 parent: 31 - - uid: 9847 + - uid: 9587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 31 - - uid: 9849 + - uid: 10297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,19.5 + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 parent: 31 - - uid: 10148 +- proto: DisposalJunctionFlipped + entities: + - uid: 166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-29.5 + rot: 4.71238902409608 rad + pos: 34.5,3.5 parent: 31 - - uid: 10155 + - uid: 170 components: - type: Transform - pos: 45.5,-27.5 + pos: 3.5,4.5 parent: 31 - - uid: 10156 + - uid: 313 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + pos: 12.5,4.5 parent: 31 - - uid: 10157 + - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-25.5 + pos: -7.5,3.5 parent: 31 - - uid: 10158 + - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-25.5 + pos: -11.5,3.5 parent: 31 - - uid: 10159 + - uid: 1026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-25.5 + pos: 3.5,17.5 parent: 31 - - uid: 10160 + - uid: 3408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 + pos: -32.5,-8.5 parent: 31 - - uid: 10161 + - uid: 3794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 + pos: -15.5,-25.5 parent: 31 - - uid: 10162 +- proto: DisposalPipe + entities: + - uid: 56 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-25.5 + rot: 1.5707963267948966 rad + pos: 23.5,4.5 parent: 31 - - uid: 10163 + - uid: 169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-25.5 + pos: 3.5,5.5 parent: 31 - - uid: 10164 + - uid: 171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 + pos: 3.5,7.5 parent: 31 - - uid: 10165 + - uid: 180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-25.5 + pos: 3.5,8.5 parent: 31 - - uid: 10166 + - uid: 181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-25.5 + pos: 3.5,9.5 parent: 31 - - uid: 10168 + - uid: 189 components: - type: Transform - pos: 33.5,-24.5 + pos: -28.5,5.5 parent: 31 - - uid: 10169 + - uid: 190 components: - type: Transform - pos: 33.5,-23.5 + pos: -28.5,6.5 parent: 31 - - uid: 10170 + - uid: 191 components: - type: Transform - pos: 33.5,-22.5 + pos: -28.5,7.5 parent: 31 - - uid: 10171 + - uid: 192 components: - type: Transform - pos: 33.5,-21.5 + pos: -28.5,8.5 parent: 31 - - uid: 10172 + - uid: 193 components: - type: Transform - pos: 33.5,-20.5 + pos: -28.5,9.5 parent: 31 - - uid: 10173 + - uid: 212 components: - type: Transform - pos: 33.5,-19.5 + pos: 24.5,5.5 parent: 31 - - uid: 10174 + - uid: 213 components: - type: Transform - pos: 33.5,-18.5 + pos: 24.5,6.5 parent: 31 - - uid: 10175 + - uid: 214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-17.5 + pos: 24.5,7.5 parent: 31 - - uid: 10176 + - uid: 223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,1.5 parent: 31 - - uid: 10177 + - uid: 224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,0.5 parent: 31 - - uid: 10178 + - uid: 225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,-0.5 parent: 31 - - uid: 10179 + - uid: 226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,-1.5 parent: 31 - - uid: 10180 + - uid: 227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,-2.5 parent: 31 - - uid: 10181 + - uid: 228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,-3.5 parent: 31 - - uid: 10182 + - uid: 231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + rot: 4.71238902409608 rad + pos: 30.5,3.5 parent: 31 - - uid: 10183 + - uid: 232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 + rot: 4.71238902409608 rad + pos: 36.5,3.5 parent: 31 - - uid: 10184 + - uid: 233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 + rot: 4.71238902409608 rad + pos: 35.5,3.5 parent: 31 - - uid: 10185 + - uid: 234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 + rot: 3.141592697301183 rad + pos: 34.5,2.5 parent: 31 - - uid: 10186 + - uid: 235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 + rot: 4.71238902409608 rad + pos: 33.5,3.5 parent: 31 - - uid: 10187 + - uid: 236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-17.5 + rot: 4.71238902409608 rad + pos: 32.5,3.5 parent: 31 - - uid: 10189 + - uid: 237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-16.5 + rot: 4.71238902409608 rad + pos: 31.5,3.5 parent: 31 - - uid: 10190 + - uid: 239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 + pos: 37.5,4.5 parent: 31 - - uid: 10191 + - uid: 240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 + pos: 37.5,5.5 parent: 31 - - uid: 10192 + - uid: 243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-13.5 + rot: -1.5707963267948966 rad + pos: 1.5,28.5 parent: 31 - - uid: 10193 + - uid: 244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 + pos: 3.5,10.5 parent: 31 - - uid: 10203 + - uid: 246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-10.5 + pos: 2.5,3.5 parent: 31 - - uid: 10204 + - uid: 265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 + pos: 3.5,27.5 parent: 31 - - uid: 10205 + - uid: 270 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-10.5 + pos: 0.5,28.5 parent: 31 - - uid: 10280 + - uid: 271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-14.5 + pos: -0.5,28.5 parent: 31 - - uid: 10281 + - uid: 272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-15.5 + rot: -1.5707963267948966 rad + pos: -1.5,28.5 parent: 31 - - uid: 10282 + - uid: 277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-16.5 + rot: 3.141592697301183 rad + pos: 3.5,-8.5 parent: 31 - - uid: 10283 + - uid: 278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-17.5 + rot: 3.141592697301183 rad + pos: 3.5,-7.5 parent: 31 - - uid: 10285 + - uid: 279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,6.5 + rot: 3.141592697301183 rad + pos: 3.5,-6.5 parent: 31 - - uid: 10286 + - uid: 280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,7.5 + rot: 3.141592697301183 rad + pos: 3.5,-5.5 parent: 31 - - uid: 10287 + - uid: 281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,8.5 + rot: 3.141592697301183 rad + pos: 3.5,-4.5 parent: 31 - - uid: 10288 + - uid: 282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,9.5 + rot: 3.141592697301183 rad + pos: 3.5,-3.5 parent: 31 - - uid: 10289 + - uid: 283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 + rot: 3.141592697301183 rad + pos: 3.5,-2.5 parent: 31 - - uid: 10290 + - uid: 284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,11.5 + rot: 3.141592697301183 rad + pos: 3.5,-1.5 parent: 31 - - uid: 10291 + - uid: 285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,12.5 + rot: 3.141592697301183 rad + pos: 3.5,-0.5 parent: 31 - - uid: 10292 + - uid: 286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,13.5 + rot: 3.141592697301183 rad + pos: 3.5,0.5 parent: 31 - - uid: 10293 + - uid: 287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,14.5 + rot: 3.141592697301183 rad + pos: 3.5,1.5 parent: 31 - - uid: 10298 + - uid: 288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-18.5 + rot: 3.141592697301183 rad + pos: 3.5,2.5 parent: 31 - - uid: 10444 + - uid: 289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 + rot: 3.141592697301183 rad + pos: 3.5,-10.5 parent: 31 - - uid: 11254 + - uid: 291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 + rot: 4.71238902409608 rad + pos: 5.5,-11.5 parent: 31 - - uid: 12037 + - uid: 292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 + rot: 4.71238902409608 rad + pos: 6.5,-11.5 parent: 31 - - uid: 12038 + - uid: 293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,1.5 + rot: 4.71238902409608 rad + pos: 7.5,-11.5 parent: 31 - - uid: 12039 + - uid: 294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,1.5 + rot: 4.71238902409608 rad + pos: 8.5,-11.5 parent: 31 - - uid: 12040 + - uid: 295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,1.5 + rot: 4.71238902409608 rad + pos: 4.5,-11.5 parent: 31 - - uid: 12041 + - uid: 296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,1.5 + rot: 4.71238902409608 rad + pos: 9.5,-11.5 parent: 31 -- proto: DisposalTrunk - entities: - - uid: 178 + - uid: 301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,1.5 + pos: -5.5,7.5 parent: 31 - - uid: 215 + - uid: 302 components: - type: Transform - pos: 24.5,8.5 + rot: 3.141592697301183 rad + pos: 12.5,0.5 parent: 31 - - uid: 229 + - uid: 304 components: - type: Transform - rot: 3.141592697301183 rad - pos: 34.5,-4.5 + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 parent: 31 - - uid: 241 + - uid: 311 components: - type: Transform - pos: 37.5,6.5 + rot: -1.5707963267948966 rad + pos: 6.5,17.5 parent: 31 - - uid: 273 + - uid: 314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,28.5 + pos: 13.5,4.5 parent: 31 - - uid: 350 + - uid: 315 components: - type: Transform - pos: -22.5,6.5 + rot: 3.141592697301183 rad + pos: 12.5,2.5 parent: 31 - - uid: 837 + - uid: 316 components: - type: Transform - pos: -29.5,11.5 + rot: 1.5707963267948966 rad + pos: 14.5,4.5 parent: 31 - - uid: 1474 + - uid: 317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,11.5 + pos: 15.5,4.5 parent: 31 - - uid: 2313 + - uid: 318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-32.5 + rot: 1.5707963267948966 rad + pos: 16.5,4.5 parent: 31 - - uid: 2322 + - uid: 319 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,12.5 + pos: 17.5,4.5 parent: 31 - - uid: 2334 + - uid: 320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-19.5 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 parent: 31 - - uid: 2437 + - uid: 321 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 19.5,4.5 parent: 31 - - uid: 2531 + - uid: 322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 parent: 31 - - uid: 4795 + - uid: 323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-30.5 + rot: 1.5707963267948966 rad + pos: 21.5,4.5 parent: 31 - - uid: 5097 + - uid: 324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,4.5 parent: 31 - - uid: 5223 + - uid: 325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 + rot: 1.5707963267948966 rad + pos: 27.5,4.5 parent: 31 - - uid: 5671 + - uid: 326 components: - type: Transform - pos: 14.5,-8.5 + rot: 1.5707963267948966 rad + pos: 26.5,4.5 parent: 31 - - uid: 7120 + - uid: 327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + rot: 1.5707963267948966 rad + pos: 28.5,4.5 parent: 31 - - uid: 7961 + - uid: 330 components: - type: Transform - pos: 29.5,6.5 + pos: 3.5,6.5 parent: 31 - - uid: 7987 + - uid: 334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + rot: 3.141592697301183 rad + pos: 3.5,-9.5 parent: 31 - - uid: 8091 + - uid: 342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 31 - - uid: 8444 + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 31 + - uid: 344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,1.5 + rot: -1.5707963267948966 rad + pos: -17.5,-27.5 parent: 31 - - uid: 9339 + - uid: 348 components: - type: Transform - pos: -34.5,6.5 + pos: -22.5,4.5 parent: 31 - - uid: 10020 + - uid: 349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-18.5 + pos: -22.5,5.5 parent: 31 - - uid: 10146 + - uid: 353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-30.5 + rot: 4.71238902409608 rad + pos: -6.5,3.5 parent: 31 - - uid: 10294 + - uid: 355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,15.5 + rot: 4.71238902409608 rad + pos: -4.5,3.5 parent: 31 - - uid: 10300 + - uid: 356 components: - type: Transform - pos: -25.5,-15.5 + rot: 4.71238902409608 rad + pos: -3.5,3.5 parent: 31 - - uid: 12042 + - uid: 357 components: - type: Transform - pos: 67.5,2.5 + rot: 4.71238902409608 rad + pos: -2.5,3.5 parent: 31 -- proto: DisposalUnit - entities: - - uid: 195 + - uid: 358 components: - type: Transform - pos: -29.5,11.5 + rot: 4.71238902409608 rad + pos: -1.5,3.5 parent: 31 - - uid: 210 + - uid: 359 components: - type: Transform - pos: 6.5,11.5 + rot: 4.71238902409608 rad + pos: -0.5,3.5 parent: 31 - - uid: 216 + - uid: 361 components: - type: Transform - pos: 24.5,8.5 + rot: 4.71238902409608 rad + pos: 1.5,3.5 parent: 31 - - uid: 230 + - uid: 362 components: - type: Transform - pos: 34.5,-4.5 + rot: 4.71238902409608 rad + pos: -8.5,3.5 parent: 31 - - uid: 242 + - uid: 363 components: - type: Transform - pos: 37.5,6.5 + rot: 4.71238902409608 rad + pos: -9.5,3.5 parent: 31 - - uid: 274 + - uid: 364 components: - type: Transform - pos: -2.5,28.5 + rot: 4.71238902409608 rad + pos: -10.5,3.5 parent: 31 - - uid: 332 + - uid: 367 components: - type: Transform - pos: 29.5,6.5 + rot: 4.71238902409608 rad + pos: -13.5,3.5 parent: 31 - - uid: 366 + - uid: 368 components: - type: Transform - pos: -11.5,1.5 + rot: 4.71238902409608 rad + pos: -14.5,3.5 parent: 31 - - uid: 376 + - uid: 369 components: - type: Transform - pos: -22.5,6.5 + rot: 4.71238902409608 rad + pos: -15.5,3.5 parent: 31 - - uid: 1102 + - uid: 370 components: - type: Transform - pos: 14.5,-2.5 + rot: 4.71238902409608 rad + pos: -16.5,3.5 parent: 31 - - uid: 2266 + - uid: 371 components: - type: Transform - pos: -12.5,-19.5 + rot: 4.71238902409608 rad + pos: -17.5,3.5 parent: 31 - - uid: 2520 + - uid: 372 components: - type: Transform - pos: 14.5,-8.5 + rot: 4.71238902409608 rad + pos: -18.5,3.5 parent: 31 - - uid: 3726 + - uid: 373 components: - type: Transform - pos: -25.5,-15.5 + rot: 4.71238902409608 rad + pos: -19.5,3.5 parent: 31 - - uid: 4078 + - uid: 374 components: - type: Transform - pos: -27.5,-7.5 + rot: 4.71238902409608 rad + pos: -20.5,3.5 parent: 31 - - uid: 4368 + - uid: 375 components: - type: Transform - pos: -9.5,12.5 + rot: 4.71238902409608 rad + pos: -21.5,3.5 parent: 31 - - uid: 4772 + - uid: 377 components: - type: Transform - pos: 6.5,-30.5 + rot: 4.71238902409608 rad + pos: -23.5,3.5 parent: 31 - - uid: 5226 + - uid: 378 components: - type: Transform - pos: 8.5,16.5 + rot: 4.71238902409608 rad + pos: -24.5,3.5 parent: 31 - - uid: 7587 + - uid: 379 components: - type: Transform - pos: -14.5,-20.5 + rot: 4.71238902409608 rad + pos: -25.5,3.5 parent: 31 - - uid: 8094 + - uid: 380 components: - type: Transform - pos: 60.5,0.5 + rot: 4.71238902409608 rad + pos: -26.5,3.5 parent: 31 - - uid: 8130 + - uid: 381 components: - type: Transform - pos: -4.5,-17.5 + rot: 4.71238902409608 rad + pos: -27.5,3.5 parent: 31 - - uid: 8443 + - uid: 382 components: - type: Transform - pos: -8.5,1.5 + pos: -28.5,4.5 parent: 31 - - uid: 9343 + - uid: 383 components: - type: Transform - pos: -34.5,6.5 + rot: 4.71238902409608 rad + pos: -29.5,3.5 parent: 31 - - uid: 9417 + - uid: 384 components: - type: Transform - pos: -8.5,-32.5 + rot: 4.71238902409608 rad + pos: -30.5,3.5 parent: 31 - - uid: 10145 + - uid: 385 components: - type: Transform - pos: 49.5,-30.5 + rot: 4.71238902409608 rad + pos: -31.5,3.5 parent: 31 - - uid: 10296 + - uid: 386 components: - type: Transform - pos: -34.5,15.5 + pos: -32.5,2.5 parent: 31 - - uid: 10475 + - uid: 387 components: - type: Transform - pos: 12.5,-3.5 + pos: -32.5,1.5 parent: 31 -- proto: DisposalYJunction - entities: - - uid: 5735 + - uid: 388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-18.5 + pos: -32.5,0.5 parent: 31 - - uid: 6931 + - uid: 389 components: - type: Transform - pos: -32.5,3.5 + pos: -32.5,-0.5 parent: 31 - - uid: 7429 + - uid: 390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 + pos: -32.5,-1.5 parent: 31 - - uid: 9558 + - uid: 391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 + pos: -32.5,-2.5 parent: 31 -- proto: DogBed - entities: - - uid: 1244 + - uid: 392 components: - type: Transform - pos: 10.5,20.5 + pos: -32.5,-3.5 parent: 31 - - uid: 4735 + - uid: 393 components: - type: Transform - pos: 21.5,-9.5 + pos: -32.5,-4.5 parent: 31 - - uid: 6966 + - uid: 394 components: - type: Transform - pos: 28.5,8.5 + pos: -32.5,-5.5 parent: 31 - - uid: 8419 + - uid: 395 components: - type: Transform - pos: 8.5,26.5 + pos: -32.5,-6.5 parent: 31 -- proto: DonkpocketBoxSpawner - entities: - - uid: 8044 + - uid: 396 components: - type: Transform - pos: 18.5,-24.5 + pos: -32.5,-7.5 parent: 31 -- proto: DoorElectronics - entities: - - uid: 4269 + - uid: 405 components: - type: Transform - pos: 29.27434,-1.3043437 + pos: -15.5,-23.5 parent: 31 - - uid: 4284 + - uid: 406 components: - type: Transform - pos: 29.614664,-1.306627 + pos: -15.5,-24.5 parent: 31 -- proto: DresserCaptainFilled - entities: - - uid: 11383 + - uid: 414 components: - type: Transform - pos: 11.5,23.5 + rot: 1.5707963267948966 rad + pos: -11.5,-25.5 parent: 31 -- proto: DresserChiefEngineerFilled - entities: - - uid: 6968 + - uid: 624 components: - type: Transform - pos: 41.5,-0.5 + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 parent: 31 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 11386 + - uid: 758 components: - type: Transform - pos: 24.5,-11.5 + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 parent: 31 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 7085 + - uid: 788 components: - type: Transform - pos: 7.5,16.5 + pos: -14.5,-17.5 parent: 31 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 11382 + - uid: 846 components: - type: Transform - pos: -8.5,22.5 + rot: -1.5707963267948966 rad + pos: -16.5,-27.5 parent: 31 -- proto: DresserQuarterMasterFilled - entities: - - uid: 4909 + - uid: 847 components: - type: Transform - pos: 26.5,10.5 + pos: -15.5,-26.5 parent: 31 -- proto: DresserResearchDirectorFilled - entities: - - uid: 5153 + - uid: 921 components: - type: Transform - pos: -5.5,-19.5 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 parent: 31 -- proto: DrinkBottleRum - entities: - - uid: 10630 + - uid: 947 components: - type: Transform - pos: 42.56693,-8.254273 + pos: -15.5,-21.5 parent: 31 -- proto: DrinkBottleVodka - entities: - - uid: 10588 + - uid: 1031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.293089,-12.048656 + pos: -15.5,-22.5 parent: 31 - - uid: 10589 + - uid: 1062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.584726,-11.104703 + pos: 7.5,5.5 parent: 31 - - uid: 10590 + - uid: 1101 components: - type: Transform - pos: -14.761818,-11.281694 + pos: 7.5,6.5 parent: 31 -- proto: DrinkDeadRumGlass - entities: - - uid: 10660 + - uid: 1221 components: - type: Transform - pos: 41.438732,-8.355759 + pos: 7.5,7.5 parent: 31 -- proto: DrinkDetFlask - entities: - - uid: 7855 + - uid: 1362 components: - type: Transform - parent: 7853 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkDoctorsDelightGlass - entities: - - uid: 1110 + pos: 7.5,8.5 + parent: 31 + - uid: 1375 components: - type: Transform - pos: 22.757565,-9.802636 + pos: 7.5,10.5 parent: 31 -- proto: DrinkGildlagerBottleFull - entities: - - uid: 9626 + - uid: 1493 components: - type: Transform - pos: -3.2734265,17.981327 + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 parent: 31 -- proto: DrinkGlass - entities: - - uid: 10625 + - uid: 1701 components: - type: Transform - pos: 40.353294,-10.29438 + rot: -1.5707963267948966 rad + pos: -18.5,-27.5 parent: 31 - - uid: 10626 + - uid: 2014 components: - type: Transform - pos: 40.382812,-10.471372 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 parent: 31 - - uid: 10627 + - uid: 2015 components: - type: Transform - pos: 40.530388,-10.353377 + rot: 3.141592653589793 rad + pos: 3.5,-12.5 parent: 31 -- proto: DrinkGoldenCup - entities: - - uid: 535 + - uid: 2141 components: - type: Transform - pos: -3.053735,18.815365 + pos: -8.5,-27.5 parent: 31 -- proto: DrinkGreenTeaGlass - entities: - - uid: 10662 + - uid: 2143 components: - type: Transform - pos: 42.91449,-8.318105 + rot: -1.5707963267948966 rad + pos: 7.5,17.5 parent: 31 -- proto: DrinkHotCoco - entities: - - uid: 2173 + - uid: 2160 components: - type: Transform - pos: 7.752981,-13.56489 + pos: 3.5,21.5 parent: 31 -- proto: DrinkHotCoffee - entities: - - uid: 10538 + - uid: 2260 components: - type: Transform - pos: -17.21707,-26.040907 + pos: -28.5,-20.5 parent: 31 - - uid: 10790 + - uid: 2296 components: - type: Transform - pos: 22.658688,13.036925 + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 parent: 31 -- proto: DrinkIcedTeaCan - entities: - - uid: 10759 + - uid: 2305 components: - type: Transform - pos: -48.660885,-9.377042 + rot: 1.5707963267948966 rad + pos: -6.5,12.5 parent: 31 -- proto: DrinkIcedTeaGlass - entities: - - uid: 9922 + - uid: 2306 components: - type: Transform - pos: -3.5586867,-1.3939255 + rot: 1.5707963267948966 rad + pos: -7.5,12.5 parent: 31 -- proto: DrinkLemonJuice - entities: - - uid: 10820 + - uid: 2308 components: - type: Transform - pos: 45.26447,-20.914085 + rot: 1.5707963267948966 rad + pos: -8.5,12.5 parent: 31 -- proto: DrinkMeadGlass - entities: - - uid: 2952 + - uid: 2314 components: - type: Transform - pos: -31.680155,17.680439 + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 parent: 31 -- proto: DrinkMilkCarton - entities: - - uid: 2283 + - uid: 2336 components: - type: Transform - pos: -11.776268,-3.7349403 + pos: -28.5,-19.5 parent: 31 -- proto: DrinkMilkshake - entities: - - uid: 1589 + - uid: 2337 components: - type: Transform - pos: 60.502117,-8.214837 + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 parent: 31 -- proto: DrinkMugMetal - entities: - - uid: 4205 + - uid: 2338 components: - type: Transform - pos: -10.86558,-31.534925 + pos: -28.5,-21.5 parent: 31 -- proto: DrinkMugRed - entities: - - uid: 674 + - uid: 2385 components: - type: Transform - pos: -4.1449943,14.039462 + rot: 3.141592653589793 rad + pos: 14.5,-9.5 parent: 31 -- proto: DrinkRamen - entities: - - uid: 7848 + - uid: 2390 components: - type: Transform - pos: -13.225656,24.798891 + pos: -10.5,-19.5 parent: 31 -- proto: DrinkRootBeerGlass - entities: - - uid: 7691 + - uid: 2456 components: - type: Transform - pos: 16.50716,16.62439 + rot: -1.5707963267948966 rad + pos: -7.5,-16.5 parent: 31 -- proto: DrinkShaker - entities: - - uid: 10628 + - uid: 2527 components: - type: Transform - pos: 42.86208,-10.353377 + rot: -1.5707963267948966 rad + pos: 4.5,17.5 parent: 31 -- proto: DrinkTequilaSunriseGlass - entities: - - uid: 10649 + - uid: 2621 components: - type: Transform - pos: 43.593338,-8.411646 + pos: -28.5,-22.5 parent: 31 -- proto: DrinkVodkaBottleFull - entities: - - uid: 1409 + - uid: 2841 components: - type: Transform - pos: -15.794847,-11.134202 + pos: -28.5,-23.5 parent: 31 - - uid: 10586 + - uid: 2857 components: - type: Transform - pos: -15.4701805,-10.721223 + pos: -8.5,-26.5 parent: 31 -- proto: DrinkVodkaGlass - entities: - - uid: 10587 + - uid: 2858 components: - type: Transform - pos: -15.440666,-11.399689 + rot: 3.141592653589793 rad + pos: -10.5,-24.5 parent: 31 -- proto: DrinkWaterBottleFull - entities: - - uid: 622 + - uid: 2859 components: - type: Transform - pos: -9.481841,-18.214483 + rot: 3.141592653589793 rad + pos: -10.5,-23.5 parent: 31 - - uid: 2480 + - uid: 2861 components: - type: Transform - parent: 2363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2481 + rot: 3.141592653589793 rad + pos: -10.5,-22.5 + parent: 31 + - uid: 2862 components: - type: Transform - parent: 2363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3041 + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 31 + - uid: 2863 components: - type: Transform - parent: 2363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10794 + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 31 + - uid: 2864 components: - type: Transform - pos: 45.32292,-20.249031 + pos: -8.5,-30.5 parent: 31 -- proto: DrinkWaterCup - entities: - - uid: 4089 + - uid: 3354 components: - type: Transform - pos: -9.776992,-18.538967 + rot: 3.141592653589793 rad + pos: -33.5,-10.5 parent: 31 - - uid: 10795 + - uid: 3377 components: - type: Transform - pos: 45.647587,-20.367025 + rot: 1.5707963267948966 rad + pos: 25.5,4.5 parent: 31 - - uid: 10796 + - uid: 3381 components: - type: Transform - pos: 45.529526,-20.544016 + pos: -8.5,-29.5 parent: 31 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 7459 + - uid: 3382 components: - type: Transform - pos: -23.675486,16.461733 + pos: -8.5,-28.5 parent: 31 -- proto: DrinkWhiskeyGlass - entities: - - uid: 7539 + - uid: 3383 components: - type: Transform - pos: -15.830059,-39.34384 + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 parent: 31 -- proto: ElectricGuitarInstrument - entities: - - uid: 9275 + - uid: 3593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.346447,-6.2505536 + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 parent: 31 -- proto: EmergencyLight - entities: - - uid: 309 + - uid: 3596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,5.5 + pos: -32.5,-10.5 parent: 31 - - uid: 346 + - uid: 3731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-4.5 + pos: -27.5,-16.5 parent: 31 - - uid: 585 + - uid: 3741 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 31 + - uid: 3742 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-3.5 + pos: -19.5,-27.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1187 + - uid: 3745 components: - type: Transform - pos: 39.5,6.5 + pos: -8.5,-31.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1224 + - uid: 3747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 + pos: -32.5,-12.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1226 + - uid: 3748 components: - type: Transform - pos: -4.5,14.5 + pos: -32.5,-11.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1248 + - uid: 3868 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,30.5 + pos: 5.5,17.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1293 + - uid: 3876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-3.5 + pos: -28.5,-17.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1299 + - uid: 3877 components: - type: Transform - pos: -39.5,10.5 + pos: 3.5,20.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1345 + - uid: 3939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 + rot: 1.5707963267948966 rad + pos: 2.5,28.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 1512 + - uid: 4036 components: - type: Transform - pos: 23.5,13.5 + rot: -1.5707963267948966 rad + pos: -13.5,-16.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 2080 + - uid: 4118 components: - type: Transform - pos: -23.5,11.5 + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 5354 + - uid: 4158 components: - type: Transform - pos: 23.5,5.5 + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 parent: 31 - - uid: 7249 + - uid: 4183 components: - type: Transform - pos: -14.5,5.5 + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 parent: 31 - - uid: 7254 + - uid: 4199 components: - type: Transform - pos: 3.5,32.5 + rot: -1.5707963267948966 rad + pos: -10.5,-16.5 parent: 31 - - uid: 8839 + - uid: 4211 components: - type: Transform - pos: -4.5,1.5 + pos: -5.5,9.5 parent: 31 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 10310 + - uid: 4325 components: - type: Transform - pos: -9.5,-25.5 + pos: 12.5,1.5 parent: 31 - - uid: 10311 + - uid: 4329 components: - type: Transform - pos: -6.5,-14.5 + rot: -1.5707963267948966 rad + pos: -11.5,-16.5 parent: 31 -- proto: EmergencyMedipen - entities: - - uid: 7355 + - uid: 4728 components: - type: Transform - pos: -19.375961,-7.548489 + pos: 3.5,-21.5 parent: 31 - - uid: 10988 + - uid: 4739 components: - type: Transform - pos: 12.5220375,-4.6149173 + pos: 3.5,-20.5 parent: 31 -- proto: EmergencyRollerBed - entities: - - uid: 1202 + - uid: 4747 components: - type: Transform - pos: 19.443876,-7.543538 + pos: 3.5,-24.5 parent: 31 -- proto: Emitter - entities: - - uid: 4870 + - uid: 4748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,2.5 + pos: 3.5,-23.5 parent: 31 -- proto: EncryptionKeyCargo - entities: - - uid: 9154 + - uid: 4749 components: - type: Transform - parent: 9096 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 3410 + pos: 3.5,-22.5 + parent: 31 + - uid: 4792 components: - type: Transform - parent: 3371 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 9066 + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 31 + - uid: 4793 components: - type: Transform - parent: 9065 - - type: Physics - canCollide: False - - uid: 10896 + rot: 3.141592653589793 rad + pos: 6.5,-29.5 + parent: 31 + - uid: 4798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.434895,-3.386529 + pos: 5.5,-27.5 parent: 31 - - uid: 10897 + - uid: 4799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.611988,-3.445526 + pos: 4.5,-27.5 parent: 31 -- proto: EncryptionKeyEngineering - entities: - - uid: 10233 + - uid: 4800 components: - type: Transform - parent: 10232 - - type: Physics - canCollide: False - - uid: 10898 + pos: 3.5,-16.5 + parent: 31 + - uid: 4801 components: - type: Transform - pos: 48.936653,-5.4514256 + pos: 3.5,-14.5 parent: 31 -- proto: EncryptionKeyMedical - entities: - - uid: 8122 + - uid: 4802 components: - type: Transform - parent: 8120 - - type: Physics - canCollide: False - - uid: 10894 + pos: 3.5,-15.5 + parent: 31 + - uid: 4803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.474125,-11.511058 + pos: 3.5,-18.5 parent: 31 -- proto: EncryptionKeyScience - entities: - - uid: 4604 + - uid: 4804 components: - type: Transform - parent: 4590 - - type: Physics - canCollide: False - - uid: 10895 + pos: 3.5,-17.5 + parent: 31 + - uid: 4805 components: - type: Transform - pos: 56.448124,-11.363565 + pos: 3.5,-19.5 parent: 31 -- proto: EncryptionKeySecurity - entities: - - uid: 8164 + - uid: 4811 components: - type: Transform - parent: 8163 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 9188 + pos: 3.5,-26.5 + parent: 31 + - uid: 4812 components: - type: Transform - parent: 9179 - - type: Physics - canCollide: False -- proto: ExosuitFabricator - entities: - - uid: 9537 + pos: 3.5,-25.5 + parent: 31 + - uid: 4878 components: - type: Transform - pos: -0.5,-24.5 + pos: -5.5,8.5 parent: 31 -- proto: ExplosivesSignMed - entities: - - uid: 8897 + - uid: 4969 components: - type: Transform - pos: -11.5,17.5 + rot: 3.141592653589793 rad + pos: -10.5,-21.5 parent: 31 -- proto: ExtendedEmergencyOxygenTank - entities: - - uid: 3730 + - uid: 5085 components: - type: Transform - pos: -11.445563,-27.496508 + pos: -5.5,11.5 parent: 31 -- proto: ExtinguisherCabinet - entities: - - uid: 10537 + - uid: 5099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-31.5 + rot: 3.141592653589793 rad + pos: 14.5,-1.5 parent: 31 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 517 + - uid: 5144 components: - type: Transform - pos: -10.5,12.5 + pos: -5.5,10.5 parent: 31 - - uid: 1868 + - uid: 5191 components: - type: Transform - pos: 5.5,23.5 + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 parent: 31 - - uid: 4807 + - uid: 5232 components: - type: Transform - pos: 14.5,-3.5 + pos: -5.5,6.5 parent: 31 - - uid: 4895 + - uid: 5234 components: - type: Transform - pos: -34.5,-10.5 + pos: -5.5,4.5 parent: 31 - - uid: 4899 + - uid: 5235 components: - type: Transform - pos: -30.5,10.5 + pos: -5.5,5.5 parent: 31 - - uid: 4900 + - uid: 5250 components: - type: Transform - pos: -34.5,-2.5 + pos: -32.5,-9.5 parent: 31 - - uid: 4901 + - uid: 5291 components: - type: Transform - pos: -16.5,-8.5 + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 parent: 31 - - uid: 4908 + - uid: 5733 components: - type: Transform - pos: 32.5,-5.5 + rot: 1.5707963267948966 rad + pos: -23.5,-29.5 parent: 31 - - uid: 4913 + - uid: 5740 components: - type: Transform - pos: 17.5,8.5 + rot: 1.5707963267948966 rad + pos: -27.5,-29.5 parent: 31 - - uid: 4914 + - uid: 5756 components: - type: Transform - pos: 9.5,12.5 + rot: 3.141592653589793 rad + pos: -20.5,-28.5 parent: 31 - - uid: 4916 + - uid: 5760 components: - type: Transform - pos: -6.5,18.5 + pos: -28.5,-27.5 parent: 31 - - uid: 4917 + - uid: 5763 components: - type: Transform - pos: 0.5,16.5 + pos: -28.5,-28.5 parent: 31 - - uid: 4918 + - uid: 5771 components: - type: Transform - pos: 11.5,17.5 + rot: 1.5707963267948966 rad + pos: -22.5,-29.5 parent: 31 - - uid: 4923 + - uid: 7082 components: - type: Transform - pos: 11.5,-28.5 + rot: 1.5707963267948966 rad + pos: -24.5,-29.5 parent: 31 - - uid: 5305 + - uid: 7224 components: - type: Transform - pos: 17.5,-29.5 + rot: 1.5707963267948966 rad + pos: -21.5,-29.5 parent: 31 - - uid: 5306 + - uid: 7356 components: - type: Transform - pos: -24.5,23.5 + rot: 1.5707963267948966 rad + pos: -26.5,-29.5 parent: 31 - - uid: 7435 + - uid: 7380 components: - type: Transform - pos: -12.5,-26.5 + rot: 3.141592653589793 rad + pos: -10.5,-20.5 parent: 31 - - uid: 8894 + - uid: 7381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,4.5 + rot: 1.5707963267948966 rad + pos: -14.5,-25.5 parent: 31 - - uid: 8905 + - uid: 7415 components: - type: Transform - pos: 5.5,29.5 + rot: 1.5707963267948966 rad + pos: -25.5,-29.5 parent: 31 - - uid: 10889 + - uid: 7421 components: - type: Transform - pos: 55.5,-5.5 + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 parent: 31 - - uid: 11387 + - uid: 7427 components: - type: Transform - pos: 42.5,-1.5 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 parent: 31 -- proto: FaxMachineBase - entities: - - uid: 683 + - uid: 7451 components: - type: Transform - pos: 14.5,-4.5 + pos: 7.5,9.5 parent: 31 - - type: FaxMachine - destinationAddress: Medical - name: Medical - - uid: 1264 + - uid: 7452 components: - type: Transform - pos: 40.5,4.5 + rot: 3.141592653589793 rad + pos: 3.5,11.5 parent: 31 - - type: FaxMachine - name: engineering - - uid: 2045 + - uid: 7584 components: - type: Transform - pos: -17.5,-25.5 + pos: -28.5,-26.5 parent: 31 - - type: FaxMachine - destinationAddress: Science - name: Science - - uid: 8323 + - uid: 7630 components: - type: Transform - pos: 9.5,-28.5 + pos: -28.5,-25.5 parent: 31 - - type: FaxMachine - name: library - - uid: 8994 + - uid: 7962 components: - type: Transform - pos: 13.5,12.5 + pos: 29.5,5.5 parent: 31 - - type: FaxMachine - destinationAddress: Cargo - name: Cargo - - uid: 9687 + - uid: 8171 components: - type: Transform - pos: 8.5,18.5 + rot: 3.141592653589793 rad + pos: 12.5,-2.5 parent: 31 - - type: FaxMachine - name: hop's office - - uid: 10825 + - uid: 8442 components: - type: Transform - pos: 1.5,32.5 + rot: -1.5707963267948966 rad + pos: 0.5,3.5 parent: 31 - - type: FaxMachine - destinationAddress: bridge - name: bridge -- proto: FaxMachineCaptain - entities: - - uid: 9686 + - uid: 8446 components: - type: Transform - pos: 7.5,24.5 + rot: 3.141592653589793 rad + pos: -7.5,2.5 parent: 31 - - type: FaxMachine - name: captain's office -- proto: filingCabinetDrawerRandom - entities: - - uid: 4637 + - uid: 9171 components: - type: Transform - pos: -10.5,-30.5 + pos: -4.5,6.5 parent: 31 - - uid: 8890 + - uid: 9221 components: - type: Transform - pos: 9.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,9.5 parent: 31 -- proto: filingCabinetRandom - entities: - - uid: 4216 + - uid: 9229 components: - type: Transform - pos: 6.5,26.5 + rot: 3.141592653589793 rad + pos: 3.5,12.5 parent: 31 - - uid: 5628 + - uid: 9230 components: - type: Transform - pos: 6.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,13.5 parent: 31 - - uid: 7542 + - uid: 9324 components: - type: Transform - pos: -12.5,-39.5 + rot: 3.141592653589793 rad + pos: 3.5,16.5 parent: 31 - - uid: 7710 + - uid: 9340 components: - type: Transform - pos: 15.5,12.5 + rot: -1.5707963267948966 rad + pos: -33.5,3.5 parent: 31 - - uid: 8492 + - uid: 9341 components: - type: Transform - pos: -2.5,14.5 + rot: 3.141592653589793 rad + pos: -34.5,4.5 parent: 31 -- proto: filingCabinetTallRandom - entities: - - uid: 1424 + - uid: 9378 components: - type: Transform - pos: -0.5,31.5 + rot: 3.141592653589793 rad + pos: 3.5,15.5 parent: 31 -- proto: FireAlarm - entities: - - uid: 888 + - uid: 9458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-24.5 + pos: -28.5,-24.5 parent: 31 - - type: DeviceList - devices: - - 11750 - - 613 - - 669 - - 2872 - - 2891 - - 7379 - - 11751 - - 11752 - - 11753 - - 11754 - - 11755 - - 11756 - - uid: 9041 + - uid: 9513 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,2.5 + pos: 3.5,14.5 parent: 31 - - type: DeviceList - devices: - - 9972 - - 9971 - - 9970 - - 995 - - 179 - - 337 - - uid: 9985 + - uid: 9520 + components: + - type: Transform + pos: 3.5,22.5 + parent: 31 + - uid: 9521 + components: + - type: Transform + pos: 3.5,23.5 + parent: 31 + - uid: 9522 + components: + - type: Transform + pos: 3.5,24.5 + parent: 31 + - uid: 9523 + components: + - type: Transform + pos: 3.5,25.5 + parent: 31 + - uid: 9524 + components: + - type: Transform + pos: 3.5,26.5 + parent: 31 + - uid: 9544 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 31 + - uid: 9559 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-14.5 + pos: 5.5,4.5 parent: 31 - - type: DeviceList - devices: - - 9988 - - 9989 - - 9990 - - uid: 9992 + - uid: 9588 + components: + - type: Transform + pos: 12.5,3.5 + parent: 31 + - uid: 9599 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,8.5 + pos: 4.5,4.5 parent: 31 - - type: DeviceList - devices: - - 8954 - - 8956 - - 852 - - 1027 - - 1028 - - 8885 - - 8884 - - 8883 - - 3959 - - 3944 - - 3943 - - 3989 - - 3987 - - 3988 - - 9988 - - 9989 - - 9990 - - 576 - - 1330 - - 1167 - - 7460 - - uid: 9993 + - uid: 9633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,1.5 + rot: 1.5707963267948966 rad + pos: 17.5,10.5 parent: 31 - - type: DeviceList - devices: - - 3928 - - 3934 - - 3935 - - 3969 - - 3970 - - 9972 - - 9971 - - 9970 - - 9994 - - 9995 - - uid: 9997 + - uid: 9638 + components: + - type: Transform + pos: 13.5,8.5 + parent: 31 + - uid: 9649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,1.5 + pos: 11.5,4.5 parent: 31 - - type: DeviceList - devices: - - 3977 - - 3976 - - 3975 - - uid: 10002 + - uid: 9650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,27.5 + pos: 10.5,4.5 parent: 31 - - type: DeviceList - devices: - - 8816 - - 8813 - - 8810 - - 8814 - - 8815 - - 9969 - - uid: 10004 + - uid: 9651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 31 + - uid: 9652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 31 + - uid: 9653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 31 + - uid: 9655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 31 + - uid: 9847 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,15.5 + pos: 3.5,18.5 parent: 31 - - type: DeviceList - devices: - - 8885 - - 8883 - - 8884 - - 5115 - - uid: 10006 + - uid: 9849 components: - type: Transform - pos: 18.5,6.5 + rot: 3.141592653589793 rad + pos: 3.5,19.5 parent: 31 - - type: DeviceList - devices: - - 4028 - - 4030 - - 4026 - - 8856 - - 8858 - - 8857 - - uid: 10023 + - uid: 10148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-3.5 + pos: 48.5,-29.5 parent: 31 - - type: DeviceList - devices: - - 3943 - - 3944 - - 3959 - - 1167 - - 1330 - - 576 - - 4525 - - 4528 - - 4529 - - uid: 10243 + - uid: 10155 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 31 + - uid: 10156 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-13.5 + pos: 46.5,-28.5 parent: 31 - - type: DeviceList - devices: - - 10313 - - 10314 - - 10315 - - 10240 - - 10241 - - 10242 - - uid: 10409 + - uid: 10157 components: - type: Transform - pos: -17.5,-13.5 + rot: -1.5707963267948966 rad + pos: 43.5,-25.5 parent: 31 - - type: DeviceList - devices: - - 10313 - - 10314 - - 10315 - - uid: 10410 + - uid: 10158 components: - type: Transform - pos: -1.5,-13.5 + rot: -1.5707963267948966 rad + pos: 42.5,-25.5 parent: 31 - - type: DeviceList - devices: - - 10316 - - 10317 - - 10318 - - uid: 10419 + - uid: 10159 components: - type: Transform - pos: -11.5,-23.5 + rot: -1.5707963267948966 rad + pos: 41.5,-25.5 parent: 31 - - type: DeviceList - devices: - - 3857 - - 3866 - - 3428 - - 3724 - - uid: 11003 + - uid: 10160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 parent: 31 - - type: DeviceList - devices: - - 3989 - - 3987 - - 3988 - - 8940 - - 673 -- proto: FireAxeCabinetFilled - entities: - - uid: 4031 + - uid: 10161 components: - type: Transform - pos: -1.5,32.5 + rot: -1.5707963267948966 rad + pos: 39.5,-25.5 parent: 31 - - uid: 11444 + - uid: 10162 components: - type: Transform - pos: 52.5,18.5 + rot: -1.5707963267948966 rad + pos: 38.5,-25.5 parent: 31 -- proto: Firelock - entities: - - uid: 45 + - uid: 10163 components: - type: Transform - pos: -32.5,-12.5 + rot: -1.5707963267948966 rad + pos: 37.5,-25.5 parent: 31 - - uid: 179 + - uid: 10164 components: - type: Transform - pos: -10.5,4.5 + rot: -1.5707963267948966 rad + pos: 36.5,-25.5 parent: 31 - - uid: 308 + - uid: 10165 components: - type: Transform - pos: -29.5,-18.5 + rot: -1.5707963267948966 rad + pos: 35.5,-25.5 parent: 31 - - uid: 328 + - uid: 10166 components: - type: Transform - pos: -22.5,14.5 + rot: -1.5707963267948966 rad + pos: 34.5,-25.5 parent: 31 - - uid: 337 + - uid: 10168 components: - type: Transform - pos: -10.5,3.5 + pos: 33.5,-24.5 parent: 31 - - uid: 409 + - uid: 10169 components: - type: Transform - pos: -6.5,-8.5 + pos: 33.5,-23.5 parent: 31 - - uid: 575 + - uid: 10170 components: - type: Transform - pos: 15.5,-3.5 + pos: 33.5,-22.5 parent: 31 - - uid: 576 + - uid: 10171 components: - type: Transform - pos: -7.5,2.5 + pos: 33.5,-21.5 parent: 31 - - uid: 684 + - uid: 10172 components: - type: Transform - pos: 21.5,-22.5 + pos: 33.5,-20.5 parent: 31 - - uid: 995 + - uid: 10173 components: - type: Transform - pos: -10.5,5.5 + pos: 33.5,-19.5 parent: 31 - - uid: 1015 + - uid: 10174 components: - type: Transform - pos: -22.5,13.5 + pos: 33.5,-18.5 parent: 31 - - uid: 1167 + - uid: 10175 components: - type: Transform - pos: -5.5,2.5 + rot: -1.5707963267948966 rad + pos: 32.5,-17.5 parent: 31 - - uid: 1330 + - uid: 10176 components: - type: Transform - pos: -6.5,2.5 + rot: -1.5707963267948966 rad + pos: 31.5,-17.5 parent: 31 - - uid: 2180 + - uid: 10177 components: - type: Transform - pos: 22.5,-22.5 + rot: -1.5707963267948966 rad + pos: 30.5,-17.5 parent: 31 - - uid: 3413 + - uid: 10178 components: - type: Transform - pos: -20.5,-28.5 + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 parent: 31 - - uid: 3855 + - uid: 10179 components: - type: Transform - pos: -19.5,17.5 + rot: -1.5707963267948966 rad + pos: 28.5,-17.5 parent: 31 - - uid: 3962 + - uid: 10180 components: - type: Transform - pos: -6.5,-9.5 + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 parent: 31 - - uid: 3968 + - uid: 10181 components: - type: Transform - pos: -32.5,-9.5 + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 parent: 31 - - uid: 3971 + - uid: 10182 components: - type: Transform - pos: -6.5,-10.5 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 31 - - uid: 3982 + - uid: 10183 components: - type: Transform - pos: 13.5,-19.5 + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 parent: 31 - - uid: 3984 + - uid: 10184 components: - type: Transform - pos: 13.5,-20.5 + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 parent: 31 - - uid: 3992 + - uid: 10185 components: - type: Transform - pos: 37.5,-5.5 + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 parent: 31 - - uid: 3996 + - uid: 10186 components: - type: Transform - pos: -33.5,-9.5 + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 parent: 31 - - uid: 4002 + - uid: 10187 components: - type: Transform - pos: 25.5,-1.5 + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 parent: 31 - - uid: 4003 + - uid: 10189 components: - type: Transform - pos: 25.5,-2.5 + rot: 3.141592653589793 rad + pos: 19.5,-16.5 parent: 31 - - uid: 4010 + - uid: 10190 components: - type: Transform - pos: -1.5,6.5 + rot: 3.141592653589793 rad + pos: 19.5,-15.5 parent: 31 - - uid: 4015 + - uid: 10191 components: - type: Transform - pos: 38.5,-5.5 + rot: 3.141592653589793 rad + pos: 19.5,-14.5 parent: 31 - - uid: 4019 + - uid: 10192 components: - type: Transform - pos: 11.5,14.5 + rot: 3.141592653589793 rad + pos: 19.5,-13.5 parent: 31 - - uid: 4041 + - uid: 10193 components: - type: Transform - pos: -10.5,24.5 + rot: 3.141592653589793 rad + pos: 19.5,-12.5 parent: 31 - - uid: 4042 + - uid: 10203 components: - type: Transform - pos: -10.5,25.5 + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 parent: 31 - - uid: 4044 + - uid: 10204 components: - type: Transform - pos: -18.5,17.5 + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 parent: 31 - - uid: 4975 + - uid: 10205 components: - type: Transform - pos: -22.5,21.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 31 - - uid: 5034 + - uid: 10280 components: - type: Transform - pos: 26.5,-19.5 + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 parent: 31 - - uid: 5035 + - uid: 10281 components: - type: Transform - pos: 23.5,-24.5 + rot: 3.141592653589793 rad + pos: -30.5,-15.5 parent: 31 - - uid: 5104 + - uid: 10282 components: - type: Transform - pos: 13.5,-0.5 + rot: 3.141592653589793 rad + pos: -30.5,-16.5 parent: 31 - - uid: 5115 + - uid: 10283 components: - type: Transform - pos: 6.5,20.5 + rot: 3.141592653589793 rad + pos: -30.5,-17.5 parent: 31 - - uid: 5217 + - uid: 10285 components: - type: Transform - pos: -27.5,16.5 + rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 31 + - uid: 10286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 31 + - uid: 10287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,8.5 + parent: 31 + - uid: 10288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 31 + - uid: 10289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 31 + - uid: 10290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 31 + - uid: 10291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,12.5 + parent: 31 + - uid: 10292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,13.5 + parent: 31 + - uid: 10293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,14.5 + parent: 31 + - uid: 10298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 31 + - uid: 10444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 31 + - uid: 11254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 31 + - uid: 12037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,0.5 + parent: 31 + - uid: 12038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,1.5 + parent: 31 + - uid: 12039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,1.5 + parent: 31 + - uid: 12040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,1.5 + parent: 31 + - uid: 12041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,1.5 + parent: 31 +- proto: DisposalTrunk + entities: + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 31 + - uid: 215 + components: + - type: Transform + pos: 24.5,8.5 + parent: 31 + - uid: 229 + components: + - type: Transform + rot: 3.141592697301183 rad + pos: 34.5,-4.5 + parent: 31 + - uid: 241 + components: + - type: Transform + pos: 37.5,6.5 + parent: 31 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 31 + - uid: 350 + components: + - type: Transform + pos: -22.5,6.5 + parent: 31 + - uid: 837 + components: + - type: Transform + pos: -29.5,11.5 + parent: 31 + - uid: 1474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 31 + - uid: 2313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-32.5 + parent: 31 + - uid: 2322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 31 + - uid: 2334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-19.5 + parent: 31 + - uid: 2437 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 31 + - uid: 2531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 31 + - uid: 4795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 31 + - uid: 5097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 31 + - uid: 5223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 31 + - uid: 5671 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 31 + - uid: 7120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 31 + - uid: 7961 + components: + - type: Transform + pos: 29.5,6.5 + parent: 31 + - uid: 7987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 31 + - uid: 8091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 31 + - uid: 8444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 31 + - uid: 9339 + components: + - type: Transform + pos: -34.5,6.5 + parent: 31 + - uid: 10020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 31 + - uid: 10146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-30.5 + parent: 31 + - uid: 10294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 31 + - uid: 10300 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 31 + - uid: 12042 + components: + - type: Transform + pos: 67.5,2.5 + parent: 31 +- proto: DisposalUnit + entities: + - uid: 195 + components: + - type: Transform + pos: -29.5,11.5 + parent: 31 + - uid: 210 + components: + - type: Transform + pos: 6.5,11.5 + parent: 31 + - uid: 216 + components: + - type: Transform + pos: 24.5,8.5 + parent: 31 + - uid: 230 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 31 + - uid: 242 + components: + - type: Transform + pos: 37.5,6.5 + parent: 31 + - uid: 274 + components: + - type: Transform + pos: -2.5,28.5 + parent: 31 + - uid: 332 + components: + - type: Transform + pos: 29.5,6.5 + parent: 31 + - uid: 366 + components: + - type: Transform + pos: -11.5,1.5 + parent: 31 + - uid: 376 + components: + - type: Transform + pos: -22.5,6.5 + parent: 31 + - uid: 1102 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 31 + - uid: 2266 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 31 + - uid: 2520 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 31 + - uid: 3726 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 31 + - uid: 4078 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 31 + - uid: 4368 + components: + - type: Transform + pos: -9.5,12.5 + parent: 31 + - uid: 4772 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 31 + - uid: 5226 + components: + - type: Transform + pos: 8.5,16.5 + parent: 31 + - uid: 7587 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 31 + - uid: 8094 + components: + - type: Transform + pos: 60.5,0.5 + parent: 31 + - uid: 8130 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 31 + - uid: 8443 + components: + - type: Transform + pos: -8.5,1.5 + parent: 31 + - uid: 9343 + components: + - type: Transform + pos: -34.5,6.5 + parent: 31 + - uid: 9417 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 31 + - uid: 10145 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 31 + - uid: 10296 + components: + - type: Transform + pos: -34.5,15.5 + parent: 31 + - uid: 10475 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 31 +- proto: DisposalYJunction + entities: + - uid: 5735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 31 + - uid: 6931 + components: + - type: Transform + pos: -32.5,3.5 + parent: 31 + - uid: 7429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 31 + - uid: 9558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 31 +- proto: DogBed + entities: + - uid: 1244 + components: + - type: Transform + pos: 10.5,20.5 + parent: 31 + - uid: 4735 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 31 + - uid: 6966 + components: + - type: Transform + pos: 28.5,8.5 + parent: 31 + - uid: 8419 + components: + - type: Transform + pos: 8.5,26.5 + parent: 31 +- proto: DonkpocketBoxSpawner + entities: + - uid: 8044 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 31 +- proto: DoorElectronics + entities: + - uid: 4269 + components: + - type: Transform + pos: 29.27434,-1.3043437 + parent: 31 + - uid: 4284 + components: + - type: Transform + pos: 29.614664,-1.306627 + parent: 31 +- proto: DresserCaptainFilled + entities: + - uid: 11383 + components: + - type: Transform + pos: 11.5,23.5 + parent: 31 +- proto: DresserChiefEngineerFilled + entities: + - uid: 6968 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 31 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 11386 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 31 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7085 + components: + - type: Transform + pos: 7.5,16.5 + parent: 31 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 11382 + components: + - type: Transform + pos: -8.5,22.5 + parent: 31 +- proto: DresserQuarterMasterFilled + entities: + - uid: 4909 + components: + - type: Transform + pos: 26.5,10.5 + parent: 31 +- proto: DresserResearchDirectorFilled + entities: + - uid: 5153 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 31 +- proto: DrinkBottleRum + entities: + - uid: 10630 + components: + - type: Transform + pos: 42.56693,-8.254273 + parent: 31 +- proto: DrinkBottleVodka + entities: + - uid: 10588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.293089,-12.048656 + parent: 31 + - uid: 10589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.584726,-11.104703 + parent: 31 + - uid: 10590 + components: + - type: Transform + pos: -14.761818,-11.281694 + parent: 31 +- proto: DrinkDeadRumGlass + entities: + - uid: 10660 + components: + - type: Transform + pos: 41.438732,-8.355759 + parent: 31 +- proto: DrinkDetFlask + entities: + - uid: 7855 + components: + - type: Transform + parent: 7853 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 1110 + components: + - type: Transform + pos: 22.757565,-9.802636 + parent: 31 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 9626 + components: + - type: Transform + pos: -3.238819,18.880247 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: DrinkGlass + entities: + - uid: 10625 + components: + - type: Transform + pos: 40.353294,-10.29438 + parent: 31 + - uid: 10626 + components: + - type: Transform + pos: 40.382812,-10.471372 + parent: 31 + - uid: 10627 + components: + - type: Transform + pos: 40.530388,-10.353377 + parent: 31 +- proto: DrinkGoldenCup + entities: + - uid: 535 + components: + - type: Transform + pos: -3.053735,18.815365 + parent: 31 +- proto: DrinkGreenTeaGlass + entities: + - uid: 10662 + components: + - type: Transform + pos: 42.91449,-8.318105 + parent: 31 +- proto: DrinkHotCoco + entities: + - uid: 2173 + components: + - type: Transform + pos: 7.752981,-13.56489 + parent: 31 +- proto: DrinkHotCoffee + entities: + - uid: 10538 + components: + - type: Transform + pos: -17.21707,-26.040907 + parent: 31 + - uid: 10790 + components: + - type: Transform + pos: 22.658688,13.036925 + parent: 31 +- proto: DrinkIcedTeaCan + entities: + - uid: 10759 + components: + - type: Transform + pos: -48.660885,-9.377042 + parent: 31 +- proto: DrinkIcedTeaGlass + entities: + - uid: 9922 + components: + - type: Transform + pos: -2.992663,-1.3206873 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12169 + components: + - type: Transform + pos: -2.680163,-1.1956873 + parent: 31 +- proto: DrinkLemonJuice + entities: + - uid: 10820 + components: + - type: Transform + pos: 45.26447,-20.914085 + parent: 31 +- proto: DrinkMeadGlass + entities: + - uid: 2952 + components: + - type: Transform + pos: -31.680155,17.680439 + parent: 31 +- proto: DrinkMilkCarton + entities: + - uid: 2283 + components: + - type: Transform + pos: -11.776268,-3.7349403 + parent: 31 +- proto: DrinkMilkshake + entities: + - uid: 1589 + components: + - type: Transform + pos: 60.502117,-8.214837 + parent: 31 +- proto: DrinkMugMetal + entities: + - uid: 4205 + components: + - type: Transform + pos: -10.86558,-31.534925 + parent: 31 +- proto: DrinkMugRed + entities: + - uid: 674 + components: + - type: Transform + pos: -4.1449943,14.039462 + parent: 31 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 12194 + components: + - type: Transform + pos: -3.4315104,-6.2435474 + parent: 31 +- proto: DrinkRamen + entities: + - uid: 7848 + components: + - type: Transform + pos: -13.225656,24.798891 + parent: 31 +- proto: DrinkRootBeerGlass + entities: + - uid: 7691 + components: + - type: Transform + pos: 16.50716,16.62439 + parent: 31 +- proto: DrinkSakeBottleFull + entities: + - uid: 12193 + components: + - type: Transform + pos: -3.6971354,-6.3372974 + parent: 31 +- proto: DrinkSakeCup + entities: + - uid: 12177 + components: + - type: Transform + pos: -2.4155946,-4.260042 + parent: 31 + - uid: 12178 + components: + - type: Transform + pos: -2.3530946,-4.494417 + parent: 31 +- proto: DrinkShaker + entities: + - uid: 10628 + components: + - type: Transform + pos: 42.86208,-10.353377 + parent: 31 +- proto: DrinkShotGlass + entities: + - uid: 12189 + components: + - type: Transform + pos: -5.952992,-4.4935474 + parent: 31 + - uid: 12190 + components: + - type: Transform + pos: -5.218617,-4.3060474 + parent: 31 + - uid: 12191 + components: + - type: Transform + pos: -2.6404922,-5.5560474 + parent: 31 +- proto: DrinkTequilaSunriseGlass + entities: + - uid: 10649 + components: + - type: Transform + pos: 43.593338,-8.411646 + parent: 31 +- proto: DrinkTokkuri + entities: + - uid: 12176 + components: + - type: Transform + pos: -2.6187196,-4.525667 + parent: 31 +- proto: DrinkVodkaBottleFull + entities: + - uid: 1409 + components: + - type: Transform + pos: -15.794847,-11.134202 + parent: 31 + - uid: 10586 + components: + - type: Transform + pos: -15.4701805,-10.721223 + parent: 31 +- proto: DrinkVodkaGlass + entities: + - uid: 10587 + components: + - type: Transform + pos: -15.440666,-11.399689 + parent: 31 +- proto: DrinkWaterBottleFull + entities: + - uid: 622 + components: + - type: Transform + pos: -9.481841,-18.214483 + parent: 31 + - uid: 2480 + components: + - type: Transform + parent: 2363 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2481 + components: + - type: Transform + parent: 2363 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3041 + components: + - type: Transform + parent: 2363 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10794 + components: + - type: Transform + pos: 45.32292,-20.249031 + parent: 31 +- proto: DrinkWaterCup + entities: + - uid: 4089 + components: + - type: Transform + pos: -9.776992,-18.538967 + parent: 31 + - uid: 10795 + components: + - type: Transform + pos: 45.647587,-20.367025 + parent: 31 + - uid: 10796 + components: + - type: Transform + pos: 45.529526,-20.544016 + parent: 31 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 7459 + components: + - type: Transform + pos: -23.675486,16.461733 + parent: 31 +- proto: DrinkWhiskeyGlass + entities: + - uid: 7539 + components: + - type: Transform + pos: -15.830059,-39.34384 + parent: 31 +- proto: DrinkWineBottleFull + entities: + - uid: 12195 + components: + - type: Transform + pos: -3.1815104,-6.3841724 + parent: 31 +- proto: ElectricGuitarInstrument + entities: + - uid: 9275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.346447,-6.2505536 + parent: 31 +- proto: EmergencyLight + entities: + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,5.5 + parent: 31 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 31 + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1187 + components: + - type: Transform + pos: 39.5,6.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1226 + components: + - type: Transform + pos: -4.5,14.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1299 + components: + - type: Transform + pos: -39.5,10.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 1512 + components: + - type: Transform + pos: 23.5,13.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 2080 + components: + - type: Transform + pos: -23.5,11.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 5354 + components: + - type: Transform + pos: 23.5,5.5 + parent: 31 + - uid: 7249 + components: + - type: Transform + pos: -14.5,5.5 + parent: 31 + - uid: 7254 + components: + - type: Transform + pos: 3.5,32.5 + parent: 31 + - uid: 8839 + components: + - type: Transform + pos: -4.5,1.5 + parent: 31 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10310 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 31 + - uid: 10311 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 31 +- proto: EmergencyMedipen + entities: + - uid: 7355 + components: + - type: Transform + pos: -19.375961,-7.548489 + parent: 31 + - uid: 10988 + components: + - type: Transform + pos: 12.5220375,-4.6149173 + parent: 31 +- proto: EmergencyRollerBed + entities: + - uid: 1202 + components: + - type: Transform + pos: 19.443876,-7.543538 + parent: 31 +- proto: Emitter + entities: + - uid: 4870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,2.5 + parent: 31 +- proto: EncryptionKeyCargo + entities: + - uid: 9154 + components: + - type: Transform + parent: 9096 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 3410 + components: + - type: Transform + parent: 3371 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 9066 + components: + - type: Transform + parent: 9065 + - type: Physics + canCollide: False + - uid: 10896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.434895,-3.386529 + parent: 31 + - uid: 10897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.611988,-3.445526 + parent: 31 +- proto: EncryptionKeyEngineering + entities: + - uid: 10233 + components: + - type: Transform + parent: 10232 + - type: Physics + canCollide: False + - uid: 10898 + components: + - type: Transform + pos: 48.936653,-5.4514256 + parent: 31 +- proto: EncryptionKeyMedical + entities: + - uid: 8122 + components: + - type: Transform + parent: 8120 + - type: Physics + canCollide: False + - uid: 10894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.474125,-11.511058 + parent: 31 +- proto: EncryptionKeyScience + entities: + - uid: 4604 + components: + - type: Transform + parent: 4590 + - type: Physics + canCollide: False + - uid: 10895 + components: + - type: Transform + pos: 56.448124,-11.363565 + parent: 31 +- proto: EncryptionKeySecurity + entities: + - uid: 8164 + components: + - type: Transform + parent: 8163 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 9188 + components: + - type: Transform + parent: 9179 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 9537 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 31 +- proto: ExplosivesSignMed + entities: + - uid: 8897 + components: + - type: Transform + pos: -11.5,17.5 + parent: 31 +- proto: ExtendedEmergencyOxygenTank + entities: + - uid: 3730 + components: + - type: Transform + pos: -11.445563,-27.496508 + parent: 31 +- proto: ExtinguisherCabinet + entities: + - uid: 10537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 31 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 517 + components: + - type: Transform + pos: -10.5,12.5 + parent: 31 + - uid: 1868 + components: + - type: Transform + pos: 5.5,23.5 + parent: 31 + - uid: 4807 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 31 + - uid: 4895 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 31 + - uid: 4899 + components: + - type: Transform + pos: -30.5,10.5 + parent: 31 + - uid: 4900 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 31 + - uid: 4901 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 31 + - uid: 4908 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 31 + - uid: 4913 + components: + - type: Transform + pos: 17.5,8.5 + parent: 31 + - uid: 4914 + components: + - type: Transform + pos: 9.5,12.5 + parent: 31 + - uid: 4916 + components: + - type: Transform + pos: -6.5,18.5 + parent: 31 + - uid: 4917 + components: + - type: Transform + pos: 0.5,16.5 + parent: 31 + - uid: 4918 + components: + - type: Transform + pos: 11.5,17.5 + parent: 31 + - uid: 4923 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 31 + - uid: 5305 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 31 + - uid: 5306 + components: + - type: Transform + pos: -24.5,23.5 + parent: 31 + - uid: 7435 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 31 + - uid: 8894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,4.5 + parent: 31 + - uid: 8905 + components: + - type: Transform + pos: 5.5,29.5 + parent: 31 + - uid: 10889 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 31 + - uid: 11387 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 31 +- proto: FaxMachineBase + entities: + - uid: 683 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 31 + - type: FaxMachine + name: Medical + destinationAddress: Medical + - uid: 1264 + components: + - type: Transform + pos: 40.5,4.5 + parent: 31 + - type: FaxMachine + name: engineering + - uid: 2045 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 31 + - type: FaxMachine + name: Science + destinationAddress: Science + - uid: 8323 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 31 + - type: FaxMachine + name: library + - uid: 8994 + components: + - type: Transform + pos: 13.5,12.5 + parent: 31 + - type: FaxMachine + name: Cargo + destinationAddress: Cargo + - uid: 9687 + components: + - type: Transform + pos: 8.5,18.5 + parent: 31 + - type: FaxMachine + name: hop's office + - uid: 10825 + components: + - type: Transform + pos: 1.5,32.5 + parent: 31 + - type: FaxMachine + name: bridge + destinationAddress: bridge +- proto: FaxMachineCaptain + entities: + - uid: 9686 + components: + - type: Transform + pos: 7.5,24.5 + parent: 31 + - type: FaxMachine + name: captain's office +- proto: filingCabinetDrawerRandom + entities: + - uid: 4637 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 31 + - uid: 8890 + components: + - type: Transform + pos: 9.5,18.5 + parent: 31 +- proto: filingCabinetRandom + entities: + - uid: 4216 + components: + - type: Transform + pos: 6.5,26.5 + parent: 31 + - uid: 5628 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 31 + - uid: 7542 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 31 + - uid: 7710 + components: + - type: Transform + pos: 15.5,12.5 + parent: 31 + - uid: 8492 + components: + - type: Transform + pos: -2.5,14.5 + parent: 31 +- proto: filingCabinetTallRandom + entities: + - uid: 1424 + components: + - type: Transform + pos: -0.5,31.5 + parent: 31 +- proto: FireAlarm + entities: + - uid: 888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 31 + - type: DeviceList + devices: + - 11750 + - 613 + - 669 + - 2872 + - 2891 + - 7379 + - 11751 + - 11752 + - 11753 + - 11754 + - 11755 + - 11756 + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 31 + - type: DeviceList + devices: + - 9972 + - 9971 + - 9970 + - 995 + - 179 + - 337 + - uid: 9985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 31 + - type: DeviceList + devices: + - 9988 + - 9989 + - 9990 + - uid: 9992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 31 + - type: DeviceList + devices: + - 8954 + - 8956 + - 852 + - 1027 + - 1028 + - 8885 + - 8884 + - 8883 + - 3959 + - 3944 + - 3943 + - 3989 + - 3987 + - 3988 + - 9988 + - 9989 + - 9990 + - 576 + - 1330 + - 1167 + - 7460 + - uid: 9993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,1.5 + parent: 31 + - type: DeviceList + devices: + - 3928 + - 3934 + - 3935 + - 3969 + - 3970 + - 9972 + - 9971 + - 9970 + - 9994 + - 9995 + - uid: 9997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,1.5 + parent: 31 + - type: DeviceList + devices: + - 3977 + - 3976 + - 3975 + - uid: 10002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 31 + - type: DeviceList + devices: + - 8816 + - 8813 + - 8810 + - 8814 + - 8815 + - 9969 + - uid: 10004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 31 + - type: DeviceList + devices: + - 8885 + - 8883 + - 8884 + - 5115 + - uid: 10006 + components: + - type: Transform + pos: 18.5,6.5 + parent: 31 + - type: DeviceList + devices: + - 4028 + - 4030 + - 4026 + - 8856 + - 8858 + - 8857 + - uid: 10023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 31 + - type: DeviceList + devices: + - 3943 + - 3944 + - 3959 + - 1167 + - 1330 + - 576 + - 4525 + - 4528 + - 4529 + - uid: 10243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 31 + - type: DeviceList + devices: + - 10313 + - 10314 + - 10315 + - 10240 + - 10241 + - 10242 + - uid: 10409 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 31 + - type: DeviceList + devices: + - 10313 + - 10314 + - 10315 + - uid: 10410 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 31 + - type: DeviceList + devices: + - 10316 + - 10317 + - 10318 + - uid: 10419 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 31 + - type: DeviceList + devices: + - 3857 + - 3866 + - 3428 + - 3724 + - uid: 11003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 31 + - type: DeviceList + devices: + - 3989 + - 3987 + - 3988 + - 8940 + - 673 +- proto: FireAxeCabinetFilled + entities: + - uid: 4031 + components: + - type: Transform + pos: -1.5,32.5 + parent: 31 + - uid: 11444 + components: + - type: Transform + pos: 52.5,18.5 + parent: 31 +- proto: Firelock + entities: + - uid: 45 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 31 + - uid: 179 + components: + - type: Transform + pos: -10.5,4.5 + parent: 31 + - uid: 308 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 31 + - uid: 328 + components: + - type: Transform + pos: -22.5,14.5 + parent: 31 + - uid: 337 + components: + - type: Transform + pos: -10.5,3.5 + parent: 31 + - uid: 409 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 31 + - uid: 575 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 31 + - uid: 576 + components: + - type: Transform + pos: -7.5,2.5 + parent: 31 + - uid: 684 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 31 + - uid: 995 + components: + - type: Transform + pos: -10.5,5.5 + parent: 31 + - uid: 1015 + components: + - type: Transform + pos: -22.5,13.5 + parent: 31 + - uid: 1167 + components: + - type: Transform + pos: -5.5,2.5 + parent: 31 + - uid: 1330 + components: + - type: Transform + pos: -6.5,2.5 + parent: 31 + - uid: 2180 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 31 + - uid: 3413 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 31 + - uid: 3855 + components: + - type: Transform + pos: -19.5,17.5 + parent: 31 + - uid: 3962 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 31 + - uid: 3968 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 31 + - uid: 3971 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 31 + - uid: 3982 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 31 + - uid: 3984 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 31 + - uid: 3992 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 31 + - uid: 3996 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 31 + - uid: 4002 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 31 + - uid: 4003 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 31 + - uid: 4010 + components: + - type: Transform + pos: -1.5,6.5 + parent: 31 + - uid: 4015 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 31 + - uid: 4019 + components: + - type: Transform + pos: 11.5,14.5 + parent: 31 + - uid: 4041 + components: + - type: Transform + pos: -10.5,24.5 + parent: 31 + - uid: 4042 + components: + - type: Transform + pos: -10.5,25.5 + parent: 31 + - uid: 4044 + components: + - type: Transform + pos: -18.5,17.5 + parent: 31 + - uid: 4975 + components: + - type: Transform + pos: -22.5,21.5 + parent: 31 + - uid: 5034 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 31 + - uid: 5035 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 31 + - uid: 5104 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 31 + - uid: 5115 + components: + - type: Transform + pos: 6.5,20.5 + parent: 31 + - uid: 5217 + components: + - type: Transform + pos: -27.5,16.5 + parent: 31 + - uid: 5312 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 31 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 31 + - uid: 11101 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 31 + - uid: 11621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 31 + - uid: 11622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 31 + - uid: 11751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 11752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 11753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 11754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 +- proto: FirelockEdge + entities: + - uid: 693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 31 + - uid: 3737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 31 + - uid: 3738 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 31 + - uid: 3740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-18.5 + parent: 31 + - uid: 4378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 31 + - uid: 7040 + components: + - type: Transform + pos: -18.5,3.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 10021 + - uid: 7041 + components: + - type: Transform + pos: -19.5,3.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 10021 + - uid: 7042 + components: + - type: Transform + pos: -16.5,3.5 + parent: 31 + - uid: 7051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-24.5 + parent: 31 + - uid: 7052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 31 + - uid: 8482 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 31 + - uid: 10307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 31 + - uid: 11755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-28.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 11756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 +- proto: FirelockElectronics + entities: + - uid: 13 + components: + - type: Transform + pos: -29.687315,9.038336 + parent: 31 + - uid: 55 + components: + - type: Transform + pos: -29.711033,9.429151 + parent: 31 + - uid: 4298 + components: + - type: Transform + pos: 29.352465,-1.4202437 + parent: 31 + - uid: 4324 + components: + - type: Transform + pos: 29.633715,-1.4827437 + parent: 31 +- proto: FirelockGlass + entities: + - uid: 24 + components: + - type: Transform + pos: 20.5,18.5 + parent: 31 + - uid: 613 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 669 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 673 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 31 + - uid: 852 + components: + - type: Transform + pos: 5.5,5.5 + parent: 31 + - uid: 1027 + components: + - type: Transform + pos: 5.5,4.5 + parent: 31 + - uid: 1028 + components: + - type: Transform + pos: 5.5,3.5 + parent: 31 + - uid: 1185 + components: + - type: Transform + pos: 21.5,18.5 + parent: 31 + - uid: 1505 + components: + - type: Transform + pos: 15.5,8.5 + parent: 31 + - uid: 2872 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 2891 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 3428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 31 + - uid: 3724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 31 + - uid: 3857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-23.5 + parent: 31 + - uid: 3866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-25.5 + parent: 31 + - uid: 3928 + components: + - type: Transform + pos: -26.5,3.5 + parent: 31 + - uid: 3934 + components: + - type: Transform + pos: -26.5,4.5 + parent: 31 + - uid: 3935 + components: + - type: Transform + pos: -26.5,5.5 + parent: 31 + - uid: 3943 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 31 + - uid: 3944 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 31 + - uid: 3959 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 31 + - uid: 3969 + components: + - type: Transform + pos: -24.5,7.5 + parent: 31 + - uid: 3970 + components: + - type: Transform + pos: -23.5,7.5 + parent: 31 + - uid: 3975 + components: + - type: Transform + pos: -33.5,3.5 + parent: 31 + - uid: 3976 + components: + - type: Transform + pos: -33.5,4.5 + parent: 31 + - uid: 3977 + components: + - type: Transform + pos: -33.5,5.5 + parent: 31 + - uid: 3987 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 31 + - uid: 3988 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 31 + - uid: 3989 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 31 + - uid: 4026 + components: + - type: Transform + pos: 11.5,3.5 + parent: 31 + - uid: 4028 + components: + - type: Transform + pos: 11.5,5.5 + parent: 31 + - uid: 4030 + components: + - type: Transform + pos: 11.5,4.5 + parent: 31 + - uid: 4210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 31 + - uid: 4215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 31 + - uid: 4334 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 31 + - uid: 4345 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 31 + - uid: 4525 + components: + - type: Transform + pos: -10.5,1.5 + parent: 31 + - uid: 4528 + components: + - type: Transform + pos: -10.5,0.5 + parent: 31 + - uid: 4529 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 31 + - uid: 4613 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 31 + - uid: 6957 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 31 + - uid: 7178 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 31 + - uid: 7325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 31 + - uid: 7379 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 + - uid: 7460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 31 + - uid: 8399 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 31 + - uid: 8810 + components: + - type: Transform + pos: 2.5,29.5 + parent: 31 + - uid: 8813 + components: + - type: Transform + pos: 1.5,28.5 + parent: 31 + - uid: 8814 + components: + - type: Transform + pos: 3.5,29.5 + parent: 31 + - uid: 8815 + components: + - type: Transform + pos: 4.5,29.5 + parent: 31 + - uid: 8816 + components: + - type: Transform + pos: 5.5,28.5 + parent: 31 + - uid: 8856 + components: + - type: Transform + pos: 24.5,5.5 + parent: 31 + - uid: 8857 + components: + - type: Transform + pos: 24.5,3.5 + parent: 31 + - uid: 8858 + components: + - type: Transform + pos: 24.5,4.5 + parent: 31 + - uid: 8883 + components: + - type: Transform + pos: 2.5,15.5 + parent: 31 + - uid: 8884 + components: + - type: Transform + pos: 3.5,15.5 + parent: 31 + - uid: 8885 + components: + - type: Transform + pos: 4.5,15.5 + parent: 31 + - uid: 8940 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 31 + - uid: 8954 + components: + - type: Transform + pos: 1.5,3.5 + parent: 31 + - uid: 8956 + components: + - type: Transform + pos: 1.5,5.5 + parent: 31 + - uid: 9782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-36.5 + parent: 31 + - uid: 9783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 31 + - uid: 9958 + components: + - type: Transform + pos: 36.5,3.5 + parent: 31 + - uid: 9959 + components: + - type: Transform + pos: 36.5,4.5 + parent: 31 + - uid: 9960 + components: + - type: Transform + pos: 36.5,5.5 + parent: 31 + - uid: 9961 + components: + - type: Transform + pos: 33.5,7.5 + parent: 31 + - uid: 9962 + components: + - type: Transform + pos: 30.5,3.5 + parent: 31 + - uid: 9963 + components: + - type: Transform + pos: 30.5,5.5 + parent: 31 + - uid: 9964 + components: + - type: Transform + pos: 33.5,1.5 + parent: 31 + - uid: 9965 + components: + - type: Transform + pos: 25.5,17.5 + parent: 31 + - uid: 9966 + components: + - type: Transform + pos: 25.5,16.5 + parent: 31 + - uid: 9967 + components: + - type: Transform + pos: 21.5,14.5 + parent: 31 + - uid: 9968 + components: + - type: Transform + pos: 20.5,14.5 + parent: 31 + - uid: 9969 + components: + - type: Transform + pos: 3.5,26.5 + parent: 31 + - uid: 9970 + components: + - type: Transform + pos: -21.5,3.5 + parent: 31 + - uid: 9971 + components: + - type: Transform + pos: -21.5,4.5 + parent: 31 + - uid: 9972 + components: + - type: Transform + pos: -21.5,5.5 + parent: 31 + - uid: 9973 + components: + - type: Transform + pos: 54.5,2.5 + parent: 31 + - uid: 9981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 31 + - uid: 9982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 31 + - uid: 9988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 31 + - uid: 9989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 31 + - uid: 9990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 31 + - uid: 9994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 31 + - uid: 9995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 31 + - uid: 9999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 31 + - uid: 10000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 31 + - uid: 10008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,8.5 + parent: 31 + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 31 + - uid: 10099 + components: + - type: Transform + pos: 22.5,18.5 + parent: 31 + - uid: 10240 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 31 + - uid: 10241 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 31 + - uid: 10242 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 31 + - uid: 10245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 31 + - uid: 10246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 31 + - uid: 10313 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 31 + - uid: 10314 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 31 + - uid: 10315 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 31 + - uid: 10316 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 31 + - uid: 10317 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 31 + - uid: 10318 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 31 + - uid: 10658 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 31 + - uid: 10900 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 31 + - uid: 11000 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 31 + - uid: 11091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 31 + - uid: 11092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 31 + - uid: 11495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 31 + - uid: 11498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 31 + - uid: 11499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 31 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 31 + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 31 + - uid: 11503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 31 + - uid: 11504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 31 + - uid: 11750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 888 +- proto: Fireplace + entities: + - uid: 3749 + components: + - type: Transform + pos: 0.5,1.5 + parent: 31 + - uid: 8988 + components: + - type: Transform + pos: 7.5,26.5 + parent: 31 +- proto: Flash + entities: + - uid: 2092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5096004,12.452274 + parent: 31 + - uid: 2499 + components: + - type: Transform + pos: 8.497082,31.408243 + parent: 31 +- proto: FlashlightLantern + entities: + - uid: 7122 + components: + - type: Transform + pos: -2.4670525,30.482414 + parent: 31 + - uid: 9950 + components: + - type: Transform + pos: 27.403997,15.554827 + parent: 31 + - uid: 10696 + components: + - type: Transform + pos: -0.47756696,-12.240095 + parent: 31 +- proto: FlashlightSeclite + entities: + - uid: 9117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.223138,16.03936 + parent: 31 +- proto: FloorDrain + entities: + - uid: 262 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 31 + - type: Fixtures + fixtures: {} + - uid: 2300 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 31 + - type: Fixtures + fixtures: {} + - uid: 4337 + components: + - type: Transform + pos: 12.5,27.5 + parent: 31 + - type: Fixtures + fixtures: {} + - uid: 9108 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 31 + - type: Fixtures + fixtures: {} + - uid: 9109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 31 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemArcadeBlue + entities: + - uid: 7988 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7989 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7990 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7991 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7992 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7993 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7994 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7995 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7996 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7997 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7998 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 7999 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8000 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8001 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8002 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8003 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8004 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8005 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8006 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8007 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8008 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8009 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8010 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8011 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8012 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8013 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8014 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8015 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8016 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 + - uid: 8017 + components: + - type: Transform + pos: 27.598589,-5.5317454 + parent: 31 +- proto: FloraTreeLarge05 + entities: + - uid: 7374 + components: + - type: Transform + pos: 49.515545,-24.586845 + parent: 31 +- proto: FoamBlade + entities: + - uid: 10498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.435028,-32.52688 + parent: 31 +- proto: FoodApple + entities: + - uid: 10797 + components: + - type: Transform + pos: 45.728592,-20.95496 + parent: 31 +- proto: FoodBanana + entities: + - uid: 1218 + components: + - type: Transform + pos: -19.287416,-7.253504 + parent: 31 + - uid: 1549 + components: + - type: Transform + pos: -19.31693,-7.194507 + parent: 31 +- proto: FoodBowlBig + entities: + - uid: 8950 + components: + - type: Transform + pos: 10.876451,-23.826777 + parent: 31 +- proto: FoodBoxDonut + entities: + - uid: 261 + components: + - type: Transform + pos: -4.454084,13.160239 + parent: 31 + - uid: 8989 + components: + - type: Transform + pos: -1.5376439,25.04381 + parent: 31 +- proto: FoodCakeSuppermatter + entities: + - uid: 12060 + components: + - type: Transform + pos: 57.510113,3.4794123 + parent: 31 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 8441 + components: + - type: Transform + pos: -14.835613,-0.50339985 + parent: 31 + - type: Tag + tags: [] +- proto: FoodCondimentPacketSalt + entities: + - uid: 9576 + components: + - type: Transform + pos: 29.558077,-6.33541 + parent: 31 +- proto: FoodDonkpocketPizza + entities: + - uid: 418 + components: + - type: Transform + pos: -8.183176,-18.420973 + parent: 31 +- proto: FoodDonutChocolate + entities: + - uid: 46 + components: + - type: Transform + pos: -2.214967,7.851863 + parent: 31 +- proto: FoodFrozenSandwich + entities: + - uid: 5708 + components: + - type: Transform + pos: -7.48876,-35.481796 + parent: 31 + - uid: 5709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.630615,-35.540794 + parent: 31 +- proto: FoodMealSashimi + entities: + - uid: 11300 + components: + - type: Transform + pos: -6.490023,-1.3167214 + parent: 31 + - uid: 12245 + components: + - type: Transform + pos: -6.474398,-0.36359644 + parent: 31 +- proto: FoodMeatCrab + entities: + - uid: 12241 + components: + - type: Transform + pos: -9.299337,-4.3948464 + parent: 31 + - uid: 12242 + components: + - type: Transform + pos: -9.299337,-4.5198464 + parent: 31 + - uid: 12243 + components: + - type: Transform + pos: -9.299337,-4.7385964 + parent: 31 + - uid: 12244 + components: + - type: Transform + pos: -9.299337,-4.8323464 + parent: 31 +- proto: FoodMeatFish + entities: + - uid: 6886 + components: + - type: Transform + pos: -9.564962,-4.4729714 + parent: 31 + - uid: 6903 + components: + - type: Transform + pos: -9.564962,-4.3479714 + parent: 31 + - uid: 11479 + components: + - type: Transform + pos: -9.564962,-4.6448464 + parent: 31 + - uid: 12240 + components: + - type: Transform + pos: -9.564962,-4.7698464 + parent: 31 +- proto: FoodPieBananaCream + entities: + - uid: 1314 + components: + - type: Transform + pos: -19.730143,-7.194507 + parent: 31 +- proto: FoodPizzaArnoldSlice + entities: + - uid: 9053 + components: + - type: Transform + pos: -29.477003,17.566315 + parent: 31 +- proto: FoodPizzaPineapple + entities: + - uid: 8745 + components: + - type: Transform + pos: -35.517406,-25.152033 + parent: 31 +- proto: FoodPlateSmall + entities: + - uid: 6646 + components: + - type: Transform + pos: -3.414538,-1.2894373 + parent: 31 + - uid: 11302 + components: + - type: Transform + pos: -2.523913,-1.3363123 + parent: 31 + - uid: 12208 + components: + - type: Transform + pos: -10.520765,0.62183887 + parent: 31 + - uid: 12209 + components: + - type: Transform + pos: -10.395765,-0.33128613 + parent: 31 + - uid: 12210 + components: + - type: Transform + pos: -10.489515,1.5437138 + parent: 31 + - uid: 12238 + components: + - type: Transform + pos: -6.5043883,-0.35773182 + parent: 31 + - uid: 12239 + components: + - type: Transform + pos: -6.5668883,-1.2483568 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodPoppy + entities: + - uid: 4196 + components: + - type: Transform + pos: -2.270069,18.786497 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 9762 + components: + - type: Transform + pos: -16.049828,-39.578854 + parent: 31 +- proto: FoodShakerSalt + entities: + - uid: 9577 + components: + - type: Transform + pos: 29.948702,-6.58541 + parent: 31 + - uid: 9578 + components: + - type: Transform + pos: 29.136202,-6.538535 + parent: 31 +- proto: FoodSnackChocolate + entities: + - uid: 1913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.419368,-3.3883321 + parent: 31 + - uid: 5636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.617393,-3.3883321 + parent: 31 +- proto: FoodTinBeans + entities: + - uid: 3485 + components: + - type: Transform + parent: 2363 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3831 + components: + - type: Transform + parent: 2363 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3832 + components: + - type: Transform + parent: 2363 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinMRE + entities: + - uid: 7837 + components: + - type: Transform + pos: -26.53067,19.803333 + parent: 31 +- proto: FoodWatermelonSlice + entities: + - uid: 10793 + components: + - type: Transform + pos: 45.529526,-21.25198 + parent: 31 +- proto: Fork + entities: + - uid: 12172 + components: + - type: Transform + pos: -3.758288,-1.4300623 + parent: 31 + - uid: 12173 + components: + - type: Transform + pos: -2.867663,-1.3988123 + parent: 31 +- proto: ForkPlastic + entities: + - uid: 12212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.44264,0.24683887 + parent: 31 + - uid: 12213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.41139,1.1999638 + parent: 31 + - uid: 12214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.44264,-0.58128613 + parent: 31 +- proto: FuelDispenser + entities: + - uid: 5080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 31 + - uid: 11338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 31 +- proto: GasAnalyzer + entities: + - uid: 3985 + components: + - type: Transform + pos: -11.359732,-27.422089 + parent: 31 +- proto: GasFilter + entities: + - uid: 7125 + components: + - type: MetaData + name: waste filter + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasFilterFlipped + entities: + - uid: 4431 + components: + - type: Transform + pos: 71.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,6.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,6.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,6.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6850 + components: + - type: Transform + pos: 71.5,7.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMinerAmmonia + entities: + - uid: 6657 + components: + - type: Transform + pos: 46.5,22.5 + parent: 31 +- proto: GasMinerCarbonDioxide + entities: + - uid: 6655 + components: + - type: Transform + pos: 40.5,22.5 + parent: 31 +- proto: GasMinerNitrogenStation + entities: + - uid: 6545 + components: + - type: Transform + pos: 34.5,22.5 + parent: 31 +- proto: GasMinerNitrousOxide + entities: + - uid: 6654 + components: + - type: Transform + pos: 38.5,22.5 + parent: 31 +- proto: GasMinerOxygenStation + entities: + - uid: 6538 + components: + - type: Transform + pos: 36.5,22.5 + parent: 31 +- proto: GasMinerPlasma + entities: + - uid: 6656 + components: + - type: Transform + pos: 42.5,22.5 + parent: 31 +- proto: GasMixerFlipped + entities: + - uid: 7310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 31 + - uid: 7477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 31 + - uid: 12140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 31 + - uid: 12141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,15.5 + parent: 31 + - uid: 12142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,15.5 + parent: 31 +- proto: GasOutletInjector + entities: + - uid: 672 + components: + - type: Transform + pos: 42.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2177 + components: + - type: Transform + pos: 34.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2668 + components: + - type: Transform + pos: 40.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3461 + components: + - type: Transform + pos: 38.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4034 + components: + - type: Transform + pos: 36.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 31 + - uid: 11062 + components: + - type: Transform + pos: 46.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11069 + components: + - type: Transform + pos: 44.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPassiveVent + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,23.5 + parent: 31 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,23.5 + parent: 31 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,23.5 + parent: 31 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 31 + - uid: 3124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,23.5 + parent: 31 + - uid: 3477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,23.5 + parent: 31 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,3.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,3.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4560 + components: + - type: Transform + pos: 66.5,1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4641 + components: + - type: Transform + pos: 67.5,1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 31 + - uid: 5752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 31 + - uid: 6211 + components: + - type: Transform + pos: 33.5,19.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,3.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6864 + components: + - type: Transform + pos: 68.5,1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9392 + components: + - type: Transform + pos: 48.5,19.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 31 + - uid: 12128 + components: + - type: Transform + pos: 66.5,13.5 + parent: 31 +- proto: GasPipeBend + entities: + - uid: 1 + components: + - type: Transform + pos: 39.5,23.5 + parent: 31 + - uid: 21 + components: + - type: Transform + pos: 41.5,23.5 + parent: 31 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,6.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,11.5 + parent: 31 + - uid: 667 + components: + - type: Transform + pos: 45.5,23.5 + parent: 31 + - uid: 898 + components: + - type: Transform + pos: 43.5,23.5 + parent: 31 + - uid: 954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 981 + components: + - type: Transform + pos: 10.5,24.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1634 + components: + - type: Transform + pos: -4.5,25.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1914 + components: + - type: Transform + pos: 64.5,13.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2417 + components: + - type: Transform + pos: 37.5,23.5 + parent: 31 + - uid: 3011 + components: + - type: Transform + pos: 35.5,23.5 + parent: 31 + - uid: 3206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3207 + components: + - type: Transform + pos: 24.5,11.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3841 + components: + - type: Transform + pos: -23.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,13.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,2.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4400 + components: + - type: Transform + pos: 54.5,25.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,24.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,7.5 + parent: 31 + - uid: 4435 + components: + - type: Transform + pos: 68.5,4.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4482 + components: + - type: Transform + pos: 31.5,19.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4543 + components: + - type: Transform + pos: 63.5,12.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,6.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4649 + components: + - type: Transform + pos: 55.5,2.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,2.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4788 + components: + - type: Transform + pos: 55.5,23.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4796 + components: + - type: Transform + pos: 63.5,7.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4932 + components: + - type: Transform + pos: 47.5,23.5 + parent: 31 + - uid: 5456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 31 + - uid: 5553 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5554 + components: + - type: Transform + pos: 11.5,0.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5582 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5589 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5702 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,13.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-29.5 + parent: 31 + - uid: 5778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5779 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,19.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5944 + components: + - type: Transform + pos: 8.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5971 + components: + - type: Transform + pos: -5.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5991 + components: + - type: Transform + pos: -4.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6025 + components: + - type: Transform + pos: -11.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 31 + - uid: 6106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,2.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,0.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6266 + components: + - type: Transform + pos: 39.5,0.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6753 + components: + - type: Transform + pos: 70.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6762 + components: + - type: Transform + pos: 67.5,7.5 + parent: 31 + - uid: 6764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,19.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,24.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,23.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7092 + components: + - type: Transform + pos: 23.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,3.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 31 + - uid: 8232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8426 + components: + - type: Transform + pos: 57.5,15.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,13.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8430 + components: + - type: Transform + pos: 62.5,14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8458 + components: + - type: Transform + pos: 59.5,13.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,0.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9263 + components: + - type: Transform + pos: 33.5,12.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9353 + components: + - type: Transform + pos: -24.5,14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10913 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10955 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-9.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11050 + components: + - type: Transform + pos: 50.5,13.5 + parent: 31 + - uid: 11567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11591 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11797 + components: + - type: Transform + pos: 75.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11799 + components: + - type: Transform + pos: 76.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,3.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,3.5 parent: 31 - - uid: 5312 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11865 components: - type: Transform - pos: 15.5,-26.5 + rot: -1.5707963267948966 rad + pos: 72.5,0.5 parent: 31 - - uid: 10302 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11866 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-20.5 + pos: 71.5,0.5 parent: 31 - - uid: 11101 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11867 components: - type: Transform - pos: 27.5,-9.5 + rot: -1.5707963267948966 rad + pos: 71.5,-0.5 parent: 31 - - uid: 11621 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-24.5 + rot: 1.5707963267948966 rad + pos: 70.5,-0.5 parent: 31 - - uid: 11622 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11869 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 70.5,-1.5 parent: 31 - - uid: 11751 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-32.5 + pos: 68.5,0.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 11752 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-31.5 + rot: 3.141592653589793 rad + pos: 32.5,12.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 11753 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 + pos: 32.5,13.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 11754 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 + rot: 3.141592653589793 rad + pos: 33.5,13.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 -- proto: FirelockEdge - entities: - - uid: 693 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12250 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,3.5 + pos: 32.5,14.5 parent: 31 - - uid: 3737 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12580 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-18.5 + pos: 31.5,13.5 parent: 31 - - uid: 3738 +- proto: GasPipeBroken + entities: + - uid: 1352 components: - type: Transform - pos: -15.5,-18.5 + pos: 34.5,14.5 parent: 31 - - uid: 3740 +- proto: GasPipeFourway + entities: + - uid: 583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-18.5 + pos: -7.5,-19.5 parent: 31 - - uid: 4378 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-25.5 + pos: 2.5,3.5 parent: 31 - - uid: 7040 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5322 components: - type: Transform - pos: -18.5,3.5 + pos: 4.5,5.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 10021 - - uid: 7041 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5325 components: - type: Transform - pos: -19.5,3.5 + pos: 4.5,-1.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 10021 - - uid: 7042 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5361 components: - type: Transform - pos: -16.5,3.5 + pos: 2.5,0.5 parent: 31 - - uid: 7051 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 + pos: 2.5,24.5 parent: 31 - - uid: 7052 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-23.5 + pos: 4.5,25.5 parent: 31 - - uid: 8482 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5828 components: - type: Transform - pos: -16.5,-18.5 + pos: 4.5,20.5 parent: 31 - - uid: 10307 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 + pos: 32.5,5.5 parent: 31 - - uid: 11755 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-28.5 + pos: 33.5,3.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 11756 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-29.5 + pos: -23.5,3.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 -- proto: FirelockElectronics - entities: - - uid: 13 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6083 components: - type: Transform - pos: -29.687315,9.038336 + pos: -24.5,5.5 parent: 31 - - uid: 55 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6144 components: - type: Transform - pos: -29.711033,9.429151 + pos: -35.5,5.5 parent: 31 - - uid: 4298 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6150 components: - type: Transform - pos: 29.352465,-1.4202437 + pos: -36.5,3.5 parent: 31 - - uid: 4324 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6444 components: - type: Transform - pos: 29.633715,-1.4827437 + pos: 33.5,9.5 parent: 31 -- proto: FirelockGlass - entities: - - uid: 24 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7414 components: - type: Transform - pos: 20.5,18.5 + pos: 2.5,-16.5 parent: 31 - - uid: 613 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11407 components: - type: Transform - pos: 4.5,-23.5 + pos: -37.5,-5.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 669 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11798 components: - type: Transform - pos: 2.5,-23.5 + pos: 75.5,8.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 673 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 57 components: - type: Transform - pos: 10.5,-6.5 + pos: 8.5,18.5 parent: 31 - - uid: 852 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 109 components: - type: Transform - pos: 5.5,5.5 + pos: 39.5,20.5 parent: 31 - - uid: 1027 + - uid: 110 components: - type: Transform - pos: 5.5,4.5 + pos: 39.5,19.5 parent: 31 - - uid: 1028 + - uid: 111 components: - type: Transform - pos: 5.5,3.5 + pos: 41.5,18.5 parent: 31 - - uid: 1185 + - uid: 115 components: - type: Transform - pos: 21.5,18.5 + rot: 1.5707963267948966 rad + pos: 11.5,25.5 parent: 31 - - uid: 1505 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 132 components: - type: Transform - pos: 15.5,8.5 + rot: 1.5707963267948966 rad + pos: 36.5,3.5 parent: 31 - - uid: 2872 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 159 components: - type: Transform - pos: 1.5,-29.5 + pos: 39.5,21.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 2891 + - uid: 347 components: - type: Transform - pos: 1.5,-28.5 + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 3428 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-33.5 + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 parent: 31 - - uid: 3724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-27.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 31 - - uid: 3857 + - uid: 467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-23.5 + pos: 45.5,22.5 parent: 31 - - uid: 3866 + - uid: 561 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-25.5 + pos: 35.5,20.5 parent: 31 - - uid: 3928 + - uid: 602 components: - type: Transform - pos: -26.5,3.5 + rot: 3.141592653589793 rad + pos: 42.5,19.5 parent: 31 - - uid: 3934 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 715 components: - type: Transform - pos: -26.5,4.5 + pos: 37.5,19.5 parent: 31 - - uid: 3935 + - uid: 750 components: - type: Transform - pos: -26.5,5.5 + pos: -24.5,12.5 parent: 31 - - uid: 3943 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 773 components: - type: Transform - pos: 1.5,-2.5 + rot: 3.141592653589793 rad + pos: 40.5,18.5 parent: 31 - - uid: 3944 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 789 components: - type: Transform - pos: 1.5,-1.5 + rot: 3.141592653589793 rad + pos: 38.5,20.5 parent: 31 - - uid: 3959 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 800 components: - type: Transform - pos: 1.5,-0.5 + pos: -9.5,-20.5 parent: 31 - - uid: 3969 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 813 components: - type: Transform - pos: -24.5,7.5 + pos: 39.5,22.5 parent: 31 - - uid: 3970 + - uid: 822 components: - type: Transform - pos: -23.5,7.5 + rot: 3.141592653589793 rad + pos: 40.5,19.5 parent: 31 - - uid: 3975 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 899 components: - type: Transform - pos: -33.5,3.5 + pos: -4.5,24.5 parent: 31 - - uid: 3976 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 925 components: - type: Transform - pos: -33.5,4.5 + rot: 3.141592653589793 rad + pos: 44.5,20.5 parent: 31 - - uid: 3977 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 928 components: - type: Transform - pos: -33.5,5.5 + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 parent: 31 - - uid: 3987 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 978 components: - type: Transform - pos: 5.5,-1.5 + rot: 3.141592653589793 rad + pos: 38.5,19.5 parent: 31 - - uid: 3988 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 980 components: - type: Transform - pos: 5.5,-0.5 + rot: 1.5707963267948966 rad + pos: 9.5,25.5 parent: 31 - - uid: 3989 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 991 components: - type: Transform - pos: 5.5,-2.5 + rot: 3.141592653589793 rad + pos: 42.5,18.5 parent: 31 - - uid: 4026 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1067 components: - type: Transform - pos: 11.5,3.5 + rot: 3.141592653589793 rad + pos: 44.5,19.5 parent: 31 - - uid: 4028 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1086 components: - type: Transform - pos: 11.5,5.5 + pos: -9.5,-17.5 parent: 31 - - uid: 4030 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1093 components: - type: Transform - pos: 11.5,4.5 + pos: -9.5,-18.5 parent: 31 - - uid: 4210 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-29.5 + rot: 1.5707963267948966 rad + pos: 8.5,25.5 parent: 31 - - uid: 4215 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-38.5 + pos: -24.5,10.5 parent: 31 - - uid: 4334 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1289 components: - type: Transform - pos: 8.5,-8.5 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 31 - - uid: 4345 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1470 components: - type: Transform - pos: 8.5,-10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-16.5 parent: 31 - - uid: 4525 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1473 components: - type: Transform - pos: -10.5,1.5 + pos: -9.5,-19.5 parent: 31 - - uid: 4528 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1486 components: - type: Transform - pos: -10.5,0.5 + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 parent: 31 - - uid: 4529 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1487 components: - type: Transform - pos: -10.5,-0.5 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 31 - - uid: 4613 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1490 components: - type: Transform - pos: 37.5,-8.5 + pos: -7.5,-17.5 parent: 31 - - uid: 6957 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1514 components: - type: Transform - pos: 28.5,-17.5 + rot: 3.141592653589793 rad + pos: 35.5,21.5 parent: 31 - - uid: 7178 + - uid: 1515 components: - type: Transform - pos: 38.5,-8.5 + pos: 33.5,18.5 parent: 31 - - uid: 7325 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + pos: 36.5,20.5 parent: 31 - - uid: 7379 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1533 components: - type: Transform - pos: 1.5,-26.5 + pos: 39.5,18.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 - - uid: 7460 + - uid: 1543 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,4.5 + pos: 36.5,5.5 parent: 31 - - uid: 8399 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1544 components: - type: Transform - pos: 45.5,-6.5 + rot: 1.5707963267948966 rad + pos: 38.5,5.5 parent: 31 - - uid: 8810 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1590 components: - type: Transform - pos: 2.5,29.5 + rot: 3.141592653589793 rad + pos: 4.5,11.5 parent: 31 - - uid: 8813 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1689 components: - type: Transform - pos: 1.5,28.5 + rot: -1.5707963267948966 rad + pos: -4.5,-19.5 parent: 31 - - uid: 8814 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1714 components: - type: Transform - pos: 3.5,29.5 + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 parent: 31 - - uid: 8815 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1716 components: - type: Transform - pos: 4.5,29.5 + rot: 1.5707963267948966 rad + pos: 22.5,11.5 parent: 31 - - uid: 8816 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1724 components: - type: Transform - pos: 5.5,28.5 + rot: 1.5707963267948966 rad + pos: 35.5,5.5 parent: 31 - - uid: 8856 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1725 components: - type: Transform - pos: 24.5,5.5 + rot: 1.5707963267948966 rad + pos: 33.5,5.5 parent: 31 - - uid: 8857 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1739 components: - type: Transform - pos: 24.5,3.5 + pos: -25.5,16.5 parent: 31 - - uid: 8858 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1773 components: - type: Transform - pos: 24.5,4.5 + rot: -1.5707963267948966 rad + pos: -22.5,-11.5 parent: 31 - - uid: 8883 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1781 components: - type: Transform - pos: 2.5,15.5 + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 parent: 31 - - uid: 8884 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1804 components: - type: Transform - pos: 3.5,15.5 + rot: 3.141592653589793 rad + pos: 35.5,19.5 parent: 31 - - uid: 8885 + - uid: 1810 components: - type: Transform - pos: 4.5,15.5 + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 parent: 31 - - uid: 8940 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2206 components: - type: Transform - pos: 9.5,-6.5 + rot: 3.141592653589793 rad + pos: -36.5,16.5 parent: 31 - - uid: 8954 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2207 components: - type: Transform - pos: 1.5,3.5 + rot: 3.141592653589793 rad + pos: -36.5,15.5 parent: 31 - - uid: 8956 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2216 components: - type: Transform - pos: 1.5,5.5 + pos: -9.5,-16.5 parent: 31 - - uid: 9782 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-36.5 + pos: 34.5,19.5 parent: 31 - - uid: 9783 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-36.5 + pos: 34.5,18.5 parent: 31 - - uid: 9958 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2401 components: - type: Transform - pos: 36.5,3.5 + rot: 3.141592653589793 rad + pos: 42.5,20.5 parent: 31 - - uid: 9959 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2414 components: - type: Transform - pos: 36.5,4.5 + pos: 37.5,20.5 parent: 31 - - uid: 9960 + - uid: 2559 components: - type: Transform - pos: 36.5,5.5 + rot: 3.141592653589793 rad + pos: 44.5,18.5 parent: 31 - - uid: 9961 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2669 components: - type: Transform - pos: 33.5,7.5 + rot: 3.141592653589793 rad + pos: -36.5,17.5 parent: 31 - - uid: 9962 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2741 components: - type: Transform - pos: 30.5,3.5 + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 parent: 31 - - uid: 9963 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2886 components: - type: Transform - pos: 30.5,5.5 + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 parent: 31 - - uid: 9964 + - uid: 2947 components: - type: Transform - pos: 33.5,1.5 + rot: 3.141592653589793 rad + pos: -38.5,16.5 parent: 31 - - uid: 9965 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2948 components: - type: Transform - pos: 25.5,17.5 + rot: 3.141592653589793 rad + pos: -38.5,17.5 parent: 31 - - uid: 9966 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2950 components: - type: Transform - pos: 25.5,16.5 + rot: 3.141592653589793 rad + pos: -38.5,14.5 parent: 31 - - uid: 9967 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3042 components: - type: Transform - pos: 21.5,14.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 31 - - uid: 9968 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3043 components: - type: Transform - pos: 20.5,14.5 + rot: 1.5707963267948966 rad + pos: 25.5,9.5 parent: 31 - - uid: 9969 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3044 components: - type: Transform - pos: 3.5,26.5 + pos: 20.5,13.5 parent: 31 - - uid: 9970 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3045 components: - type: Transform - pos: -21.5,3.5 + pos: 22.5,11.5 parent: 31 - - uid: 9971 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3046 components: - type: Transform - pos: -21.5,4.5 + pos: 20.5,12.5 parent: 31 - - uid: 9972 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3047 components: - type: Transform - pos: -21.5,5.5 + pos: 22.5,12.5 parent: 31 - - uid: 9973 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3048 components: - type: Transform - pos: 54.5,2.5 + pos: 20.5,14.5 parent: 31 - - uid: 9981 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 + pos: 22.5,13.5 parent: 31 - - uid: 9982 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3238 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-22.5 + pos: 9.5,24.5 parent: 31 - - uid: 9988 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3411 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-12.5 + pos: -5.5,-14.5 parent: 31 - - uid: 9989 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3590 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-12.5 + pos: 20.5,-9.5 parent: 31 - - uid: 9990 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 + pos: 4.5,-20.5 parent: 31 - - uid: 9994 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3753 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,1.5 + pos: 36.5,17.5 parent: 31 - - uid: 9995 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,1.5 + pos: 35.5,18.5 parent: 31 - - uid: 9999 + - uid: 4024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,6.5 + rot: -1.5707963267948966 rad + pos: -22.5,-12.5 parent: 31 - - uid: 10000 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + rot: -1.5707963267948966 rad + pos: -23.5,-12.5 parent: 31 - - uid: 10008 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,8.5 + rot: 3.141592653589793 rad + pos: 35.5,16.5 parent: 31 - - uid: 10017 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4096 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-9.5 + pos: 47.5,16.5 parent: 31 - - uid: 10099 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4135 components: - type: Transform - pos: 22.5,18.5 + pos: -7.5,-18.5 parent: 31 - - uid: 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4136 components: - type: Transform - pos: -22.5,-10.5 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 parent: 31 - - uid: 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4137 components: - type: Transform - pos: -23.5,-10.5 + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 parent: 31 - - uid: 10242 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4138 components: - type: Transform - pos: -24.5,-10.5 + pos: -8.5,-22.5 parent: 31 - - uid: 10245 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4141 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-8.5 + pos: -7.5,-21.5 parent: 31 - - uid: 10246 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4142 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-8.5 + pos: -5.5,-21.5 parent: 31 - - uid: 10313 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4152 components: - type: Transform - pos: -19.5,-14.5 + rot: -1.5707963267948966 rad + pos: 49.5,15.5 parent: 31 - - uid: 10314 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4174 components: - type: Transform - pos: -19.5,-15.5 + rot: -1.5707963267948966 rad + pos: 51.5,15.5 parent: 31 - - uid: 10315 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4176 components: - type: Transform - pos: -19.5,-16.5 + rot: 3.141592653589793 rad + pos: 38.5,18.5 parent: 31 - - uid: 10316 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4177 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: 50.5,15.5 parent: 31 - - uid: 10317 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4200 components: - type: Transform - pos: 0.5,-15.5 + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 parent: 31 - - uid: 10318 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4236 components: - type: Transform - pos: 0.5,-16.5 + rot: 3.141592653589793 rad + pos: -5.5,12.5 parent: 31 - - uid: 10658 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4319 components: - type: Transform - pos: 40.5,-12.5 + pos: 20.5,16.5 parent: 31 - - uid: 10900 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4320 components: - type: Transform - pos: 49.5,-1.5 + rot: -1.5707963267948966 rad + pos: 22.5,17.5 parent: 31 - - uid: 11000 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4321 components: - type: Transform - pos: 9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,17.5 parent: 31 - - uid: 11091 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,20.5 + pos: 21.5,17.5 parent: 31 - - uid: 11092 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4323 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,18.5 + pos: 24.5,17.5 parent: 31 - - uid: 11495 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 + rot: 3.141592653589793 rad + pos: 63.5,11.5 parent: 31 - - uid: 11498 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 + rot: 3.141592653589793 rad + pos: 63.5,10.5 parent: 31 - - uid: 11499 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 + rot: 3.141592653589793 rad + pos: 70.5,6.5 parent: 31 - - uid: 11501 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-22.5 + rot: -1.5707963267948966 rad + pos: 65.5,2.5 parent: 31 - - uid: 11502 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-17.5 + rot: -1.5707963267948966 rad + pos: 69.5,2.5 parent: 31 - - uid: 11503 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-23.5 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 parent: 31 - - uid: 11504 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4417 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-21.5 + pos: 65.5,9.5 parent: 31 - - uid: 11750 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-31.5 + pos: 70.5,7.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 888 -- proto: Fireplace - entities: - - uid: 3749 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4439 components: - type: Transform - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 parent: 31 - - uid: 8988 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4463 components: - type: Transform - pos: 7.5,26.5 + rot: -1.5707963267948966 rad + pos: -6.5,25.5 parent: 31 -- proto: Flash - entities: - - uid: 2092 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4472 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5096004,12.452274 + pos: 69.5,8.5 parent: 31 - - uid: 2499 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4475 components: - type: Transform - pos: 8.497082,31.408243 + pos: 30.5,21.5 parent: 31 -- proto: FlashlightLantern - entities: - - uid: 7122 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4476 components: - type: Transform - pos: -2.4670525,30.482414 + pos: 66.5,5.5 parent: 31 - - uid: 9950 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4481 components: - type: Transform - pos: 27.403997,15.554827 + pos: 69.5,8.5 parent: 31 - - uid: 10696 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4485 components: - type: Transform - pos: -0.47756696,-12.240095 + pos: -37.5,-8.5 parent: 31 -- proto: FlashlightSeclite - entities: - - uid: 9117 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.223138,16.03936 + pos: -37.5,-9.5 parent: 31 -- proto: FloodlightBroken - entities: - - uid: 9086 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4545 components: - type: Transform - pos: 36.474823,33.73011 + rot: 3.141592653589793 rad + pos: 70.5,3.5 parent: 31 -- proto: FloorDrain - entities: - - uid: 262 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4548 components: - type: Transform - pos: 15.5,-17.5 + rot: 3.141592653589793 rad + pos: 70.5,7.5 parent: 31 - - type: Fixtures - fixtures: {} - - uid: 2300 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4551 components: - type: Transform - pos: -18.5,-11.5 + rot: 1.5707963267948966 rad + pos: 67.5,9.5 parent: 31 - - type: Fixtures - fixtures: {} - - uid: 4337 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4554 components: - type: Transform - pos: 12.5,27.5 + rot: 3.141592653589793 rad + pos: 8.5,-15.5 parent: 31 - - type: Fixtures - fixtures: {} - - uid: 9108 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4570 components: - type: Transform - pos: 17.5,-0.5 + rot: -1.5707963267948966 rad + pos: 70.5,6.5 parent: 31 - - type: Fixtures - fixtures: {} - - uid: 9109 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-4.5 + rot: 1.5707963267948966 rad + pos: 66.5,7.5 parent: 31 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemArcadeBlue - entities: - - uid: 7988 + - uid: 4651 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 1.5707963267948966 rad + pos: 64.5,9.5 parent: 31 - - uid: 7989 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4682 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: -9.5,-15.5 parent: 31 - - uid: 7990 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4685 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 1.5707963267948966 rad + pos: 25.5,10.5 parent: 31 - - uid: 7991 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4687 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: -1.5707963267948966 rad + pos: 23.5,11.5 parent: 31 - - uid: 7992 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4696 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: -24.5,11.5 parent: 31 - - uid: 7993 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4698 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: -1.5707963267948966 rad + pos: -7.5,25.5 parent: 31 - - uid: 7994 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4704 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 parent: 31 - - uid: 7995 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4729 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 1.5707963267948966 rad + pos: 40.5,3.5 parent: 31 - - uid: 7996 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4730 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 1.5707963267948966 rad + pos: 39.5,3.5 parent: 31 - - uid: 7997 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4732 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 1.5707963267948966 rad + pos: 37.5,3.5 parent: 31 - - uid: 7998 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4737 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: -24.5,9.5 parent: 31 - - uid: 7999 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4828 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 3.141592653589793 rad + pos: 70.5,4.5 parent: 31 - - uid: 8000 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4833 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 62.5,5.5 parent: 31 - - uid: 8001 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4845 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 30.5,23.5 parent: 31 - - uid: 8002 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4847 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 30.5,20.5 parent: 31 - - uid: 8003 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4856 components: - type: Transform - pos: 27.598589,-5.5317454 + rot: 3.141592653589793 rad + pos: 40.5,20.5 parent: 31 - - uid: 8004 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4949 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 47.5,22.5 parent: 31 - - uid: 8005 + - uid: 4976 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 41.5,22.5 parent: 31 - - uid: 8006 + - uid: 5012 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 45.5,18.5 parent: 31 - - uid: 8007 + - uid: 5013 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 43.5,18.5 parent: 31 - - uid: 8008 + - uid: 5015 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 43.5,19.5 parent: 31 - - uid: 8009 + - uid: 5016 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 45.5,20.5 parent: 31 - - uid: 8010 + - uid: 5030 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 36.5,19.5 parent: 31 - - uid: 8011 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5031 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 36.5,18.5 parent: 31 - - uid: 8012 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5044 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 43.5,21.5 parent: 31 - - uid: 8013 + - uid: 5045 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 45.5,21.5 parent: 31 - - uid: 8014 + - uid: 5046 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 43.5,20.5 parent: 31 - - uid: 8015 + - uid: 5047 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 45.5,19.5 parent: 31 - - uid: 8016 + - uid: 5048 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 41.5,19.5 parent: 31 - - uid: 8017 + - uid: 5049 components: - type: Transform - pos: 27.598589,-5.5317454 + pos: 41.5,20.5 parent: 31 -- proto: FloraTreeLarge05 - entities: - - uid: 7374 + - uid: 5050 components: - type: Transform - pos: 49.515545,-24.586845 + pos: 41.5,21.5 parent: 31 -- proto: FoamBlade - entities: - - uid: 10498 + - uid: 5056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.435028,-32.52688 + pos: 43.5,22.5 parent: 31 -- proto: FoodApple - entities: - - uid: 10797 + - uid: 5123 components: - type: Transform - pos: 45.728592,-20.95496 + pos: -37.5,-10.5 parent: 31 -- proto: FoodBanana - entities: - - uid: 1218 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5126 components: - type: Transform - pos: -19.287416,-7.253504 + rot: 3.141592653589793 rad + pos: 35.5,22.5 parent: 31 - - uid: 1549 + - uid: 5133 components: - type: Transform - pos: -19.31693,-7.194507 + pos: 37.5,18.5 parent: 31 -- proto: FoodBowlBig - entities: - - uid: 8950 + - uid: 5155 components: - type: Transform - pos: 10.876451,-23.826777 + rot: 1.5707963267948966 rad + pos: 32.5,9.5 parent: 31 -- proto: FoodBoxDonut - entities: - - uid: 261 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5240 components: - type: Transform - pos: -4.454084,13.160239 + rot: 1.5707963267948966 rad + pos: -20.5,19.5 parent: 31 - - uid: 8989 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5308 components: - type: Transform - pos: -1.5376439,25.04381 + pos: 48.5,18.5 parent: 31 -- proto: FoodCakeSuppermatter - entities: - - uid: 12060 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5323 components: - type: Transform - pos: 57.510113,3.4794123 + pos: 2.5,2.5 parent: 31 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 8441 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5324 components: - type: Transform - pos: -14.835613,-0.50339985 + pos: 2.5,1.5 parent: 31 - - type: Tag - tags: [] -- proto: FoodCondimentPacketSalt - entities: - - uid: 9576 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5326 components: - type: Transform - pos: 29.558077,-6.33541 + pos: 2.5,-0.5 parent: 31 -- proto: FoodDonkpocketPizza - entities: - - uid: 418 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5327 components: - type: Transform - pos: -8.183176,-18.420973 + pos: 2.5,-1.5 parent: 31 -- proto: FoodDonutChocolate - entities: - - uid: 46 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5328 components: - type: Transform - pos: -2.214967,7.851863 + pos: 2.5,-2.5 parent: 31 -- proto: FoodFrozenSandwich - entities: - - uid: 5708 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5329 components: - type: Transform - pos: -7.48876,-35.481796 + pos: 2.5,-3.5 parent: 31 - - uid: 5709 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.630615,-35.540794 + pos: 2.5,-4.5 parent: 31 -- proto: FoodMeat - entities: - - uid: 9057 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5331 components: - type: Transform - pos: -10.159095,-4.4711595 + pos: 2.5,-5.5 parent: 31 - - uid: 9058 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5333 components: - type: Transform - pos: -11.76847,-4.7055345 + pos: 2.5,-7.5 parent: 31 - - uid: 9059 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5334 components: - type: Transform - pos: -13.440345,-4.4399095 + pos: 2.5,-8.5 parent: 31 -- proto: FoodPieBananaCream - entities: - - uid: 1314 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5335 components: - type: Transform - pos: -19.730143,-7.194507 + pos: 2.5,-9.5 parent: 31 -- proto: FoodPizzaArnoldSlice - entities: - - uid: 9053 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5336 components: - type: Transform - pos: -29.477003,17.566315 + pos: 2.5,-10.5 parent: 31 -- proto: FoodPizzaPineapple - entities: - - uid: 8745 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5337 components: - type: Transform - pos: -35.517406,-25.152033 + pos: 2.5,-11.5 parent: 31 -- proto: FoodPoppy - entities: - - uid: 4196 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5338 components: - type: Transform - pos: -3.75686,18.190365 + pos: 2.5,-12.5 parent: 31 - - uid: 9762 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5339 components: - type: Transform - pos: -16.049828,-39.578854 + pos: 2.5,-13.5 parent: 31 -- proto: FoodShakerSalt - entities: - - uid: 9577 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5340 components: - type: Transform - pos: 29.948702,-6.58541 + pos: 2.5,-14.5 parent: 31 - - uid: 9578 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5341 components: - type: Transform - pos: 29.136202,-6.538535 + pos: 2.5,-15.5 parent: 31 -- proto: FoodSnackChocolate - entities: - - uid: 1913 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.419368,-3.3883321 + pos: 2.5,-17.5 parent: 31 - - uid: 5636 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.617393,-3.3883321 + pos: 2.5,-18.5 parent: 31 -- proto: FoodSoupElectron - entities: - - uid: 8433 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5346 components: - type: Transform - pos: -6.4781985,-1.2809834 + pos: 2.5,-20.5 parent: 31 -- proto: FoodTinBeans - entities: - - uid: 3485 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5347 components: - type: Transform - parent: 2363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3831 + pos: 2.5,-21.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5348 components: - type: Transform - parent: 2363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3832 + pos: 2.5,-22.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5350 components: - type: Transform - parent: 2363 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodTinMRE - entities: - - uid: 7837 + pos: 2.5,-24.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5351 components: - type: Transform - pos: -26.53067,19.803333 + pos: 2.5,-25.5 parent: 31 -- proto: FoodWatermelonSlice - entities: - - uid: 10793 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5352 components: - type: Transform - pos: 45.529526,-21.25198 + pos: 2.5,-26.5 parent: 31 -- proto: ForensicScanner - entities: - - uid: 4952 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5353 components: - type: Transform - pos: -0.37258464,13.434727 + pos: 2.5,-27.5 parent: 31 -- proto: FuelDispenser - entities: - - uid: 5080 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 + pos: 4.5,4.5 parent: 31 - - uid: 11338 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-5.5 + pos: 4.5,3.5 parent: 31 -- proto: GasAnalyzer - entities: - - uid: 3985 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5357 components: - type: Transform - pos: -11.359732,-27.422089 + pos: 4.5,2.5 parent: 31 -- proto: GasFilter - entities: - - uid: 7125 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5358 components: - - type: MetaData - name: waste filter - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-16.5 + pos: 4.5,1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasFilterFlipped - entities: - - uid: 4431 + color: '#0055CCFF' + - uid: 5359 components: - type: Transform - pos: 71.5,9.5 + pos: 4.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4432 + color: '#0055CCFF' + - uid: 5360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,6.5 + pos: 4.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4556 + color: '#0055CCFF' + - uid: 5362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,6.5 + pos: 4.5,-2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4559 + color: '#0055CCFF' + - uid: 5363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,6.5 + pos: 4.5,-3.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6850 + color: '#0055CCFF' + - uid: 5364 components: - type: Transform - pos: 71.5,7.5 + pos: 4.5,-4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasMinerCarbonDioxide - entities: - - uid: 4907 + color: '#0055CCFF' + - uid: 5366 components: - type: Transform - pos: 40.5,22.5 + pos: 4.5,-6.5 parent: 31 -- proto: GasMinerNitrogen - entities: - - uid: 4888 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5367 components: - type: Transform - pos: 34.5,22.5 + pos: 4.5,-7.5 parent: 31 -- proto: GasMinerOxygen - entities: - - uid: 4830 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5368 components: - type: Transform - pos: 36.5,22.5 + pos: 4.5,-8.5 parent: 31 -- proto: GasMinerWaterVapor - entities: - - uid: 6836 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5369 components: - type: Transform - pos: 46.5,22.5 + pos: 4.5,-9.5 parent: 31 -- proto: GasOutletInjector - entities: - - uid: 672 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5370 components: - type: Transform - pos: 42.5,21.5 + pos: 4.5,-10.5 parent: 31 - - uid: 2177 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5371 components: - type: Transform - pos: 34.5,21.5 + pos: 4.5,-11.5 parent: 31 - - uid: 2668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5372 components: - type: Transform - pos: 40.5,21.5 + pos: 4.5,-12.5 parent: 31 - - uid: 3461 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5373 components: - type: Transform - pos: 38.5,21.5 + pos: 4.5,-13.5 parent: 31 - - uid: 4034 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5375 components: - type: Transform - pos: 36.5,21.5 + pos: 4.5,-15.5 parent: 31 - - uid: 11045 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 + pos: 4.5,-16.5 parent: 31 - - uid: 11062 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5378 components: - type: Transform - pos: 46.5,21.5 + pos: 4.5,-18.5 parent: 31 - - uid: 11069 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5381 components: - type: Transform - pos: 44.5,21.5 + pos: 4.5,-21.5 parent: 31 -- proto: GasPassiveVent - entities: - - uid: 7 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,23.5 + pos: 4.5,-22.5 parent: 31 - - uid: 49 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,23.5 + pos: 4.5,-23.5 parent: 31 - - uid: 52 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,23.5 + pos: 4.5,-24.5 parent: 31 - - uid: 127 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,23.5 + pos: 4.5,-25.5 parent: 31 - - uid: 3124 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,23.5 + pos: 4.5,-26.5 parent: 31 - - uid: 3477 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,23.5 + pos: 4.5,-27.5 parent: 31 - - uid: 4443 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,3.5 + pos: 4.5,-28.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4477 + color: '#0055CCFF' + - uid: 5389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,3.5 + rot: -1.5707963267948966 rad + pos: 7.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4560 + color: '#0055CCFF' + - uid: 5390 components: - type: Transform - pos: 66.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4641 + - uid: 5391 components: - type: Transform - pos: 67.5,1.5 + rot: -1.5707963267948966 rad + pos: 5.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5547 + - uid: 5393 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-4.5 + pos: 4.5,3.5 parent: 31 - - uid: 5752 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-29.5 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 parent: 31 - - uid: 6211 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5395 components: - type: Transform - pos: 33.5,19.5 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 parent: 31 - - uid: 6856 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,3.5 + rot: -1.5707963267948966 rad + pos: 8.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6864 + - uid: 5400 components: - type: Transform - pos: 68.5,1.5 + rot: -1.5707963267948966 rad + pos: 10.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11025 + color: '#990000FF' + - uid: 5401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,23.5 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 parent: 31 -- proto: GasPipeBend - entities: - - uid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5402 components: - type: Transform - pos: 39.5,23.5 + rot: -1.5707963267948966 rad + pos: 12.5,3.5 parent: 31 - - uid: 21 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5403 components: - type: Transform - pos: 41.5,23.5 + rot: -1.5707963267948966 rad + pos: 13.5,3.5 parent: 31 - - uid: 129 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,6.5 + rot: -1.5707963267948966 rad + pos: 14.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 644 + color: '#990000FF' + - uid: 5406 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,11.5 + pos: 16.5,3.5 parent: 31 - - uid: 667 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5407 components: - type: Transform - pos: 45.5,23.5 + rot: -1.5707963267948966 rad + pos: 17.5,3.5 parent: 31 - - uid: 898 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5408 components: - type: Transform - pos: 43.5,23.5 + rot: -1.5707963267948966 rad + pos: 18.5,3.5 parent: 31 - - uid: 954 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,10.5 + pos: 19.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 981 + color: '#990000FF' + - uid: 5410 components: - type: Transform - pos: 10.5,24.5 + rot: -1.5707963267948966 rad + pos: 20.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 1250 + - uid: 5411 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,25.5 + pos: 21.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1634 + - uid: 5412 components: - type: Transform - pos: -4.5,25.5 + rot: -1.5707963267948966 rad + pos: 20.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2417 + - uid: 5413 components: - type: Transform - pos: 37.5,23.5 + rot: -1.5707963267948966 rad + pos: 19.5,5.5 parent: 31 - - uid: 3011 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5414 components: - type: Transform - pos: 35.5,23.5 + rot: -1.5707963267948966 rad + pos: 18.5,5.5 parent: 31 - - uid: 3206 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,10.5 + rot: -1.5707963267948966 rad + pos: 17.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3207 + color: '#0055CCFF' + - uid: 5416 components: - type: Transform - pos: 24.5,11.5 + rot: -1.5707963267948966 rad + pos: 16.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3841 + color: '#0055CCFF' + - uid: 5417 components: - type: Transform - pos: -23.5,9.5 + rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3946 + color: '#0055CCFF' + - uid: 5418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,13.5 + rot: -1.5707963267948966 rad + pos: 14.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4316 + color: '#0055CCFF' + - uid: 5420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,16.5 + rot: -1.5707963267948966 rad + pos: 12.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4373 + - uid: 5421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,2.5 + rot: -1.5707963267948966 rad + pos: 11.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4400 + - uid: 5423 components: - type: Transform - pos: 54.5,25.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4430 + - uid: 5427 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,24.5 + pos: 23.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4434 + - uid: 5428 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,7.5 + pos: 24.5,3.5 parent: 31 - - uid: 4435 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5429 components: - type: Transform - pos: 68.5,4.5 + rot: 1.5707963267948966 rad + pos: 25.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4482 + - uid: 5431 components: - type: Transform - pos: 31.5,19.5 + rot: 1.5707963267948966 rad + pos: 27.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4543 + - uid: 5432 components: - type: Transform - pos: 63.5,12.5 + rot: 1.5707963267948966 rad + pos: 28.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4553 + - uid: 5433 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,10.5 + pos: 29.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4601 + - uid: 5434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,6.5 + rot: 1.5707963267948966 rad + pos: 30.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4642 + - uid: 5435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 31.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4649 + color: '#990000FF' + - uid: 5436 components: - type: Transform - pos: 55.5,2.5 + rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4773 + - uid: 5437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,2.5 + rot: 1.5707963267948966 rad + pos: 30.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4788 + color: '#0055CCFF' + - uid: 5438 components: - type: Transform - pos: 55.5,23.5 + rot: 1.5707963267948966 rad + pos: 29.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4796 + color: '#0055CCFF' + - uid: 5440 components: - type: Transform - pos: 63.5,7.5 + rot: 1.5707963267948966 rad + pos: 27.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4846 + - uid: 5441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,25.5 + pos: 26.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4932 + color: '#0055CCFF' + - uid: 5442 components: - type: Transform - pos: 47.5,23.5 + rot: 1.5707963267948966 rad + pos: 25.5,5.5 parent: 31 - - uid: 5456 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5443 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,11.5 + pos: 24.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5457 + color: '#0055CCFF' + - uid: 5444 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: 23.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5538 + - uid: 5445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 + pos: 13.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5551 + - uid: 5446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 + pos: 13.5,7.5 parent: 31 - - uid: 5553 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5447 components: - type: Transform - pos: 10.5,-1.5 + pos: 13.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5554 + - uid: 5448 components: - type: Transform - pos: 11.5,0.5 + pos: 13.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5449 + components: + - type: Transform + pos: 15.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5582 + - uid: 5450 components: - type: Transform - pos: 19.5,-8.5 + pos: 15.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5589 + color: '#990000FF' + - uid: 5451 components: - type: Transform - pos: 18.5,-10.5 + pos: 15.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5627 + - uid: 5452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 + pos: 15.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5639 + color: '#990000FF' + - uid: 5453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + pos: 15.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5640 + color: '#990000FF' + - uid: 5454 + components: + - type: Transform + pos: 15.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-10.5 + pos: 15.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5682 + - uid: 5460 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-17.5 + pos: 15.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5683 + - uid: 5461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5697 + - uid: 5462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-25.5 + rot: -1.5707963267948966 rad + pos: 17.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5702 + - uid: 5463 components: - type: Transform - pos: 7.5,-19.5 + rot: -1.5707963267948966 rad + pos: 18.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5703 + - uid: 5466 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-20.5 + rot: -1.5707963267948966 rad + pos: 19.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5722 + - uid: 5467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,13.5 + rot: -1.5707963267948966 rad + pos: 19.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5724 + color: '#990000FF' + - uid: 5468 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-29.5 + pos: 18.5,11.5 parent: 31 - - uid: 5778 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-25.5 + rot: -1.5707963267948966 rad + pos: 17.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5779 + color: '#990000FF' + - uid: 5475 components: - type: Transform - pos: 15.5,-25.5 + rot: 3.141592653589793 rad + pos: 8.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5783 + - uid: 5480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,23.5 + pos: 21.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5892 + - uid: 5482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,20.5 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5896 + color: '#990000FF' + - uid: 5483 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,25.5 + pos: 4.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5897 + color: '#990000FF' + - uid: 5484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,19.5 + rot: 1.5707963267948966 rad + pos: 5.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5944 + color: '#990000FF' + - uid: 5485 components: - type: Transform - pos: 8.5,9.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5971 + color: '#990000FF' + - uid: 5486 components: - type: Transform - pos: -5.5,10.5 + rot: 1.5707963267948966 rad + pos: 7.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5991 + - uid: 5487 components: - type: Transform - pos: -4.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6001 + color: '#990000FF' + - uid: 5489 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,21.5 + pos: 10.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6016 + - uid: 5490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6025 + - uid: 5492 components: - type: Transform - pos: -11.5,16.5 + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6026 + - uid: 5493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,16.5 + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 31 - - uid: 6106 + - uid: 5494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,9.5 + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6214 + color: '#0055CCFF' + - uid: 5497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,17.5 + pos: -11.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6228 + - uid: 5498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,2.5 + rot: 1.5707963267948966 rad + pos: -10.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6265 + color: '#990000FF' + - uid: 5499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,0.5 + rot: 1.5707963267948966 rad + pos: -9.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6266 + - uid: 5501 components: - type: Transform - pos: 39.5,0.5 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6274 + - uid: 5502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 31 - - uid: 6511 + color: '#990000FF' + - uid: 5503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,16.5 + pos: -5.5,0.5 parent: 31 - - uid: 6540 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5504 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,9.5 + pos: -4.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6545 + - uid: 5505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,15.5 + rot: 1.5707963267948966 rad + pos: -3.5,0.5 parent: 31 - - uid: 6578 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,8.5 + pos: -2.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6632 + color: '#990000FF' + - uid: 5507 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-16.5 + pos: -1.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6646 + - uid: 5508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,15.5 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 parent: 31 - - uid: 6753 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5509 components: - type: Transform - pos: 70.5,8.5 + rot: 1.5707963267948966 rad + pos: 0.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6762 + - uid: 5510 components: - type: Transform - pos: 67.5,7.5 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 parent: 31 - - uid: 6764 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,19.5 + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6846 + color: '#0055CCFF' + - uid: 5512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,9.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6855 + color: '#0055CCFF' + - uid: 5513 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,6.5 + pos: 1.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6867 + color: '#0055CCFF' + - uid: 5514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,24.5 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6886 + color: '#0055CCFF' + - uid: 5515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 parent: 31 - - uid: 6927 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,23.5 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7091 + color: '#0055CCFF' + - uid: 5518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7092 + - uid: 5519 components: - type: Transform - pos: 23.5,10.5 + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7183 + - uid: 5520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,1.5 + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7426 + - uid: 5521 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-8.5 + pos: -6.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7726 + color: '#0055CCFF' + - uid: 5522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,3.5 + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8110 + color: '#0055CCFF' + - uid: 5523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-17.5 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 parent: 31 - - uid: 8458 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5524 components: - type: Transform - pos: 59.5,13.5 + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8459 + color: '#0055CCFF' + - uid: 5525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,12.5 + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9200 + color: '#0055CCFF' + - uid: 5526 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,0.5 + pos: -11.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9224 + color: '#0055CCFF' + - uid: 5529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,13.5 + rot: -1.5707963267948966 rad + pos: -12.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9353 + - uid: 5530 components: - type: Transform - pos: -24.5,14.5 + rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9354 + color: '#990000FF' + - uid: 5531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,14.5 + rot: -1.5707963267948966 rad + pos: -15.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9355 + color: '#990000FF' + - uid: 5532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,19.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10381 + color: '#990000FF' + - uid: 5533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 + rot: -1.5707963267948966 rad + pos: -17.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10913 + color: '#990000FF' + - uid: 5534 components: - type: Transform - pos: 56.5,-3.5 + rot: -1.5707963267948966 rad + pos: -18.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 10955 + - uid: 5535 components: - type: Transform - pos: 55.5,-8.5 + rot: 3.141592653589793 rad + pos: -16.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10956 + - uid: 5536 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-9.5 + pos: -16.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10957 + - uid: 5537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-8.5 + rot: 3.141592653589793 rad + pos: -16.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11050 - components: - - type: Transform - pos: 50.5,13.5 - parent: 31 - - uid: 11301 + - uid: 5539 components: - type: Transform - pos: 52.5,23.5 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 parent: 31 - - uid: 11302 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5540 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,23.5 + pos: -26.5,5.5 parent: 31 - - uid: 11303 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5548 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,19.5 - parent: 31 - - uid: 11304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,19.5 + pos: -13.5,-4.5 parent: 31 - - uid: 11567 + - uid: 5549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-4.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11573 + - uid: 5550 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-22.5 + pos: -15.5,-4.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11590 + - uid: 5555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-23.5 + pos: 10.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11591 + - uid: 5556 components: - type: Transform - pos: -22.5,-23.5 + pos: 10.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11595 + - uid: 5557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-27.5 + pos: 10.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11603 + - uid: 5558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 + pos: 10.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11604 + - uid: 5559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-22.5 + pos: 10.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11605 + - uid: 5560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-22.5 + pos: 10.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11797 + color: '#0055CCFF' + - uid: 5561 components: - type: Transform - pos: 75.5,10.5 + pos: 11.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11799 + - uid: 5562 components: - type: Transform - pos: 76.5,8.5 + pos: 11.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11800 + - uid: 5563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,3.5 + pos: 11.5,-2.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11806 + color: '#990000FF' + - uid: 5564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,8.5 + pos: 11.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11810 + - uid: 5565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,3.5 + pos: 11.5,-4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11865 + color: '#990000FF' + - uid: 5566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,0.5 + pos: 11.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11866 + color: '#990000FF' + - uid: 5567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,0.5 + pos: 11.5,-6.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11867 + color: '#990000FF' + - uid: 5568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-0.5 + pos: 11.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11868 + color: '#990000FF' + - uid: 5569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-0.5 + pos: 11.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11869 + color: '#990000FF' + - uid: 5570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-1.5 + pos: 11.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11877 + color: '#990000FF' + - uid: 5573 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-1.5 + pos: 11.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11882 + - uid: 5575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,0.5 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeBroken - entities: - - uid: 1352 - components: - - type: Transform - pos: 34.5,14.5 - parent: 31 - - uid: 1914 + - uid: 5576 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,13.5 + pos: 14.5,-8.5 parent: 31 - - uid: 6469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,15.5 + pos: 14.5,-10.5 parent: 31 - - uid: 6470 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5580 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,15.5 + pos: 16.5,-10.5 parent: 31 - - uid: 6538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,13.5 + pos: 18.5,-8.5 parent: 31 - - uid: 6599 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5583 components: - type: Transform - pos: 34.5,12.5 + pos: 17.5,-9.5 parent: 31 - - uid: 6603 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5585 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,16.5 + pos: 13.5,-10.5 parent: 31 - - uid: 8991 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 parent: 31 - - uid: 9206 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,14.5 + pos: 17.5,-8.5 parent: 31 - - uid: 10412 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5591 components: - type: Transform - pos: 35.5,16.5 + pos: 17.5,-7.5 parent: 31 - - uid: 10423 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,14.5 + pos: 17.5,-5.5 parent: 31 - - uid: 11299 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,16.5 + pos: 17.5,-4.5 parent: 31 -- proto: GasPipeFourway - entities: - - uid: 583 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5595 components: - type: Transform - pos: -7.5,-19.5 + pos: 17.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5321 + - uid: 5596 components: - type: Transform - pos: 2.5,3.5 + pos: 17.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5322 + - uid: 5598 components: - type: Transform - pos: 4.5,5.5 + pos: 16.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5325 + - uid: 5599 components: - type: Transform - pos: 4.5,-1.5 + pos: 16.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5361 + - uid: 5601 components: - type: Transform - pos: 2.5,0.5 + pos: 16.5,-4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5813 + color: '#0055CCFF' + - uid: 5602 components: - type: Transform - pos: 2.5,24.5 + pos: 16.5,-3.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5823 + color: '#0055CCFF' + - uid: 5603 components: - type: Transform - pos: 4.5,25.5 + pos: 16.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5828 + - uid: 5604 components: - type: Transform - pos: 4.5,20.5 + pos: 16.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5952 + - uid: 5608 components: - type: Transform - pos: 32.5,5.5 + rot: 1.5707963267948966 rad + pos: -28.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5953 + color: '#990000FF' + - uid: 5612 components: - type: Transform - pos: 33.5,3.5 + pos: 18.5,-12.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6082 + - uid: 5613 components: - type: Transform - pos: -23.5,3.5 + pos: 18.5,-13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6083 + - uid: 5615 components: - type: Transform - pos: -24.5,5.5 + pos: 19.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6144 + - uid: 5616 components: - type: Transform - pos: -35.5,5.5 + pos: 19.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6150 + - uid: 5617 components: - type: Transform - pos: -36.5,3.5 + pos: 19.5,-12.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6444 + color: '#0055CCFF' + - uid: 5618 components: - type: Transform - pos: 33.5,9.5 + pos: 19.5,-13.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7414 + color: '#0055CCFF' + - uid: 5619 components: - type: Transform - pos: 2.5,-16.5 + pos: 19.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11407 + color: '#0055CCFF' + - uid: 5620 components: - type: Transform - pos: -37.5,-5.5 + rot: -1.5707963267948966 rad + pos: 17.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11798 + - uid: 5621 components: - type: Transform - pos: 75.5,8.5 + rot: -1.5707963267948966 rad + pos: 16.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 57 + - uid: 5622 components: - type: Transform - pos: 8.5,18.5 + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 109 + color: '#990000FF' + - uid: 5623 components: - type: Transform - pos: 39.5,20.5 + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 parent: 31 - - uid: 110 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5624 components: - type: Transform - pos: 39.5,19.5 + rot: -1.5707963267948966 rad + pos: 17.5,-15.5 parent: 31 - - uid: 111 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5625 components: - type: Transform - pos: 41.5,18.5 + rot: -1.5707963267948966 rad + pos: 16.5,-15.5 parent: 31 - - uid: 115 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5641 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,25.5 + pos: 10.5,-10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 132 + color: '#990000FF' + - uid: 5642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,3.5 + pos: 9.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 159 + - uid: 5643 components: - type: Transform - pos: 39.5,21.5 + pos: 9.5,-9.5 parent: 31 - - uid: 347 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-8.5 + pos: 9.5,-10.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 354 + color: '#0055CCFF' + - uid: 5645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 + pos: 9.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 415 + - uid: 5646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-29.5 + pos: 9.5,-12.5 parent: 31 - - uid: 467 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5647 components: - type: Transform - pos: 45.5,22.5 + pos: 9.5,-13.5 parent: 31 - - uid: 561 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,20.5 + pos: 8.5,-14.5 parent: 31 - - uid: 602 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,19.5 + pos: 8.5,-12.5 parent: 31 - - uid: 715 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5652 components: - type: Transform - pos: 37.5,19.5 + pos: 8.5,-11.5 parent: 31 - - uid: 750 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5654 components: - type: Transform - pos: -24.5,12.5 + rot: 1.5707963267948966 rad + pos: -28.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 773 + - uid: 5655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 parent: 31 - - uid: 789 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 parent: 31 - - uid: 800 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5657 components: - type: Transform - pos: -9.5,-20.5 + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 813 + - uid: 5658 components: - type: Transform - pos: 39.5,22.5 + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 parent: 31 - - uid: 822 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,19.5 + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 parent: 31 - - uid: 899 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5660 components: - type: Transform - pos: -4.5,24.5 + rot: 1.5707963267948966 rad + pos: 22.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 925 + - uid: 5661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 parent: 31 - - uid: 928 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5662 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-16.5 + pos: 19.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 978 + - uid: 5663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 + rot: 1.5707963267948966 rad + pos: 20.5,-6.5 parent: 31 - - uid: 980 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,25.5 + pos: 21.5,-6.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 991 + color: '#990000FF' + - uid: 5667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,18.5 + rot: 1.5707963267948966 rad + pos: -29.5,3.5 parent: 31 - - uid: 1067 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5668 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,19.5 + pos: 18.5,-15.5 parent: 31 - - uid: 1086 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5669 components: - type: Transform - pos: -9.5,-17.5 + rot: 3.141592653589793 rad + pos: 18.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1093 + color: '#990000FF' + - uid: 5670 components: - type: Transform - pos: -9.5,-18.5 + rot: 3.141592653589793 rad + pos: 18.5,-17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1165 + color: '#990000FF' + - uid: 5673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,25.5 + rot: 3.141592653589793 rad + pos: 19.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1238 + - uid: 5676 components: - type: Transform - pos: -24.5,10.5 + pos: -12.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1289 + - uid: 5681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 + pos: 15.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1470 + color: '#0055CCFF' + - uid: 5684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-16.5 + pos: 14.5,-18.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1473 + color: '#0055CCFF' + - uid: 5685 components: - type: Transform - pos: -9.5,-19.5 + pos: 14.5,-19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1486 + - uid: 5687 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 9.5,-20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1487 + - uid: 5688 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-12.5 + pos: 10.5,-20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1490 + - uid: 5689 components: - type: Transform - pos: -7.5,-17.5 + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,21.5 - parent: 31 - - uid: 1515 - components: - - type: Transform - pos: 33.5,18.5 - parent: 31 - - uid: 1516 - components: - - type: Transform - pos: 36.5,20.5 - parent: 31 - - uid: 1533 + color: '#0055CCFF' + - uid: 5690 components: - type: Transform - pos: 39.5,18.5 + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 parent: 31 - - uid: 1543 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,5.5 + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1544 + - uid: 5693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 + pos: 8.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1590 + - uid: 5694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 + pos: 8.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1689 + - uid: 5695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-19.5 + pos: 8.5,-23.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1714 + color: '#0055CCFF' + - uid: 5696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 + pos: 8.5,-24.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1716 + color: '#0055CCFF' + - uid: 5699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 + rot: -1.5707963267948966 rad + pos: 6.5,-19.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1724 + color: '#0055CCFF' + - uid: 5716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,5.5 + pos: 3.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1725 + - uid: 5717 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,5.5 + pos: 2.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,11.5 - parent: 31 - - uid: 1739 + - uid: 5718 components: - type: Transform - pos: -25.5,16.5 + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1773 + - uid: 5723 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-11.5 + pos: 1.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 1781 + - uid: 5762 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-11.5 + pos: -5.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,19.5 - parent: 31 - - uid: 1810 + color: '#0055CCFF' + - uid: 5768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 + rot: 1.5707963267948966 rad + pos: -6.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2206 + - uid: 5774 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,16.5 + pos: 14.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2207 + - uid: 5775 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,15.5 + pos: 14.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2216 + - uid: 5776 components: - type: Transform - pos: -9.5,-16.5 + rot: 3.141592653589793 rad + pos: 14.5,-23.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2332 + - uid: 5777 components: - type: Transform - pos: 34.5,19.5 + rot: 3.141592653589793 rad + pos: 14.5,-24.5 parent: 31 - - uid: 2333 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5780 components: - type: Transform - pos: 34.5,18.5 + rot: 3.141592653589793 rad + pos: 15.5,-26.5 parent: 31 - - uid: 2401 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5781 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,20.5 + pos: 15.5,-27.5 parent: 31 - - uid: 2414 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5786 components: - type: Transform - pos: 37.5,20.5 + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 parent: 31 - - uid: 2559 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,18.5 + rot: 1.5707963267948966 rad + pos: 4.5,-23.5 parent: 31 - - uid: 2669 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,17.5 + rot: 1.5707963267948966 rad + pos: 5.5,-23.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2741 + color: '#990000FF' + - uid: 5789 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-19.5 + pos: 6.5,-23.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2886 + color: '#990000FF' + - uid: 5790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 parent: 31 - - uid: 2947 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 2948 + - uid: 5793 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,17.5 + pos: 2.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 2950 + - uid: 5794 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,14.5 + pos: 2.5,5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3042 + - uid: 5795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + rot: 3.141592653589793 rad + pos: 2.5,6.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3043 + color: '#990000FF' + - uid: 5796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + rot: 3.141592653589793 rad + pos: 2.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3044 + color: '#990000FF' + - uid: 5797 components: - type: Transform - pos: 20.5,13.5 + rot: 3.141592653589793 rad + pos: 2.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3045 + - uid: 5798 components: - type: Transform - pos: 22.5,11.5 + rot: 3.141592653589793 rad + pos: 2.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3046 + color: '#990000FF' + - uid: 5799 components: - type: Transform - pos: 20.5,12.5 + rot: 3.141592653589793 rad + pos: 2.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3047 + - uid: 5800 components: - type: Transform - pos: 22.5,12.5 + rot: 3.141592653589793 rad + pos: 2.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3048 + color: '#990000FF' + - uid: 5802 components: - type: Transform - pos: 20.5,14.5 + rot: 3.141592653589793 rad + pos: 2.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3049 + - uid: 5803 components: - type: Transform - pos: 22.5,13.5 + rot: 3.141592653589793 rad + pos: 2.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3053 + color: '#990000FF' + - uid: 5804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,11.5 + rot: 3.141592653589793 rad + pos: 2.5,15.5 parent: 31 - - uid: 3238 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,24.5 + rot: 3.141592653589793 rad + pos: 2.5,16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3411 + - uid: 5808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3475 + color: '#990000FF' + - uid: 5809 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,13.5 + pos: 2.5,20.5 parent: 31 - - uid: 3590 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 + rot: 3.141592653589793 rad + pos: 2.5,21.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3709 + color: '#990000FF' + - uid: 5811 components: - type: Transform - pos: 4.5,-20.5 + rot: 3.141592653589793 rad + pos: 2.5,22.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3873 + color: '#990000FF' + - uid: 5814 components: - type: Transform - pos: 35.5,18.5 + rot: 3.141592653589793 rad + pos: 2.5,25.5 parent: 31 - - uid: 4024 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4033 + color: '#990000FF' + - uid: 5816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,27.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4135 + color: '#990000FF' + - uid: 5817 components: - type: Transform - pos: -7.5,-18.5 + rot: 3.141592653589793 rad + pos: 2.5,28.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4136 + - uid: 5818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + rot: 3.141592653589793 rad + pos: 2.5,29.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4137 + - uid: 5819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,29.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4138 + - uid: 5820 components: - type: Transform - pos: -8.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,28.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4141 + - uid: 5821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,27.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4142 + - uid: 5824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,24.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4176 + - uid: 5825 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,18.5 + pos: 4.5,23.5 parent: 31 - - uid: 4200 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,22.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4236 + - uid: 5827 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,12.5 + pos: 4.5,21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4319 + - uid: 5830 components: - type: Transform - pos: 20.5,16.5 + pos: 4.5,18.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4320 + color: '#0055CCFF' + - uid: 5831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,17.5 + rot: 3.141592653589793 rad + pos: 4.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4321 + color: '#0055CCFF' + - uid: 5832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 + rot: 3.141592653589793 rad + pos: 4.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4322 + color: '#0055CCFF' + - uid: 5833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,17.5 + rot: 3.141592653589793 rad + pos: 4.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4323 + color: '#0055CCFF' + - uid: 5836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 4.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4332 + color: '#0055CCFF' + - uid: 5838 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,11.5 + pos: 4.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4352 + color: '#0055CCFF' + - uid: 5839 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,10.5 + pos: 4.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4359 + color: '#0055CCFF' + - uid: 5840 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,6.5 + pos: 4.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4360 + color: '#0055CCFF' + - uid: 5841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,2.5 + rot: 3.141592653589793 rad + pos: 4.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4371 + - uid: 5842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,2.5 + rot: 3.141592653589793 rad + pos: 4.5,6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4387 + color: '#0055CCFF' + - uid: 5843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 + rot: 1.5707963267948966 rad + pos: 2.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4414 + - uid: 5844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,8.5 + rot: 1.5707963267948966 rad + pos: 1.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4417 + color: '#0055CCFF' + - uid: 5845 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,9.5 + pos: 0.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4429 + color: '#0055CCFF' + - uid: 5846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,7.5 + rot: 1.5707963267948966 rad + pos: 0.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4439 + - uid: 5847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 + rot: 1.5707963267948966 rad + pos: 1.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4463 + color: '#990000FF' + - uid: 5850 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,25.5 + pos: 3.5,24.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4472 + color: '#990000FF' + - uid: 5851 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,8.5 + pos: 4.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4475 + - uid: 5852 components: - type: Transform - pos: 30.5,21.5 + rot: -1.5707963267948966 rad + pos: 5.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4476 - components: - - type: Transform - pos: 66.5,5.5 - parent: 31 - - uid: 4481 + - uid: 5853 components: - type: Transform - pos: 69.5,8.5 + rot: -1.5707963267948966 rad + pos: 6.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4485 + - uid: 5854 components: - type: Transform - pos: -37.5,-8.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4535 + color: '#0055CCFF' + - uid: 5855 components: - type: Transform - pos: -37.5,-9.5 + rot: -1.5707963267948966 rad + pos: 6.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4545 + color: '#0055CCFF' + - uid: 5857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,3.5 + rot: -1.5707963267948966 rad + pos: 2.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4548 + color: '#0055CCFF' + - uid: 5858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,7.5 + rot: -1.5707963267948966 rad + pos: 1.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4551 + color: '#0055CCFF' + - uid: 5859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,9.5 + rot: -1.5707963267948966 rad + pos: 0.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4554 + color: '#0055CCFF' + - uid: 5860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 + rot: -1.5707963267948966 rad + pos: -0.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4570 + color: '#0055CCFF' + - uid: 5861 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,6.5 + pos: 1.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4603 + - uid: 5862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,7.5 + rot: -1.5707963267948966 rad + pos: 0.5,24.5 parent: 31 - - uid: 4651 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,9.5 + rot: -1.5707963267948966 rad + pos: -0.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4682 + - uid: 5866 components: - type: Transform - pos: -9.5,-15.5 + rot: 1.5707963267948966 rad + pos: 8.5,24.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4685 + color: '#990000FF' + - uid: 5872 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,10.5 + pos: 3.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4687 + - uid: 5873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,11.5 + rot: 1.5707963267948966 rad + pos: 4.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4696 + - uid: 5874 components: - type: Transform - pos: -24.5,11.5 + rot: 1.5707963267948966 rad + pos: 5.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4698 + color: '#990000FF' + - uid: 5875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,25.5 + rot: 1.5707963267948966 rad + pos: 6.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4704 + color: '#990000FF' + - uid: 5876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 + pos: 8.5,19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4729 + - uid: 5877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,3.5 + pos: 8.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4730 + - uid: 5878 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,3.5 + pos: 5.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4732 + color: '#0055CCFF' + - uid: 5879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4737 - components: - - type: Transform - pos: -24.5,9.5 + pos: 6.5,20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4828 + - uid: 5880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,4.5 + rot: 1.5707963267948966 rad + pos: 7.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4833 + color: '#0055CCFF' + - uid: 5884 components: - type: Transform - pos: 62.5,5.5 + rot: -1.5707963267948966 rad + pos: 3.5,20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4845 + - uid: 5885 components: - type: Transform - pos: 30.5,23.5 + rot: -1.5707963267948966 rad + pos: 2.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4847 + color: '#0055CCFF' + - uid: 5886 components: - type: Transform - pos: 30.5,20.5 + rot: -1.5707963267948966 rad + pos: 1.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4856 + color: '#0055CCFF' + - uid: 5887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,20.5 + rot: -1.5707963267948966 rad + pos: 0.5,20.5 parent: 31 - - uid: 4949 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5888 components: - type: Transform - pos: 47.5,22.5 + rot: -1.5707963267948966 rad + pos: -0.5,20.5 parent: 31 - - uid: 4976 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5889 components: - type: Transform - pos: 41.5,22.5 + rot: -1.5707963267948966 rad + pos: -1.5,20.5 parent: 31 - - uid: 5012 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5890 components: - type: Transform - pos: 45.5,18.5 + rot: -1.5707963267948966 rad + pos: -2.5,20.5 parent: 31 - - uid: 5013 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5891 components: - type: Transform - pos: 43.5,18.5 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 parent: 31 - - uid: 5015 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5899 components: - type: Transform - pos: 43.5,19.5 + rot: 1.5707963267948966 rad + pos: -21.5,19.5 parent: 31 - - uid: 5016 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5900 components: - type: Transform - pos: 45.5,20.5 + rot: 1.5707963267948966 rad + pos: -19.5,19.5 parent: 31 - - uid: 5030 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5901 components: - type: Transform - pos: 36.5,19.5 + pos: -18.5,20.5 parent: 31 - - uid: 5031 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5902 components: - type: Transform - pos: 36.5,18.5 + pos: -18.5,21.5 parent: 31 - - uid: 5044 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5903 components: - type: Transform - pos: 43.5,21.5 + pos: -18.5,22.5 parent: 31 - - uid: 5045 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5904 components: - type: Transform - pos: 45.5,21.5 + pos: -18.5,23.5 parent: 31 - - uid: 5046 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5905 components: - type: Transform - pos: 43.5,20.5 + pos: -18.5,24.5 parent: 31 - - uid: 5047 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5906 components: - type: Transform - pos: 45.5,19.5 + rot: -1.5707963267948966 rad + pos: -17.5,25.5 parent: 31 - - uid: 5048 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5907 components: - type: Transform - pos: 41.5,19.5 + rot: -1.5707963267948966 rad + pos: -16.5,25.5 parent: 31 - - uid: 5049 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5908 components: - type: Transform - pos: 41.5,20.5 + rot: -1.5707963267948966 rad + pos: -15.5,25.5 parent: 31 - - uid: 5050 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5909 components: - type: Transform - pos: 41.5,21.5 + rot: -1.5707963267948966 rad + pos: -14.5,25.5 parent: 31 - - uid: 5056 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5910 components: - type: Transform - pos: 43.5,22.5 + rot: -1.5707963267948966 rad + pos: -13.5,25.5 parent: 31 - - uid: 5123 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5911 components: - type: Transform - pos: -37.5,-10.5 + rot: -1.5707963267948966 rad + pos: -12.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5126 + color: '#0055CCFF' + - uid: 5912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,22.5 + rot: -1.5707963267948966 rad + pos: -11.5,25.5 parent: 31 - - uid: 5133 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5913 components: - type: Transform - pos: 37.5,18.5 + rot: -1.5707963267948966 rad + pos: -10.5,25.5 parent: 31 - - uid: 5155 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,9.5 + rot: -1.5707963267948966 rad + pos: -9.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5158 + color: '#0055CCFF' + - uid: 5915 components: - type: Transform - pos: 49.5,18.5 + rot: -1.5707963267948966 rad + pos: -8.5,25.5 parent: 31 - - uid: 5240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,19.5 + rot: 3.141592653589793 rad + pos: -4.5,23.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5308 + - uid: 5919 components: - type: Transform - pos: 48.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,22.5 parent: 31 - - uid: 5309 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5920 components: - type: Transform - pos: 36.5,12.5 + rot: 3.141592653589793 rad + pos: -22.5,20.5 parent: 31 - - uid: 5323 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5921 components: - type: Transform - pos: 2.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,21.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5324 + color: '#0055CCFF' + - uid: 5922 components: - type: Transform - pos: 2.5,1.5 + rot: 3.141592653589793 rad + pos: -22.5,21.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5326 + color: '#0055CCFF' + - uid: 5923 components: - type: Transform - pos: 2.5,-0.5 + rot: 3.141592653589793 rad + pos: -22.5,22.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5327 + color: '#0055CCFF' + - uid: 5930 components: - type: Transform - pos: 2.5,-1.5 + rot: 1.5707963267948966 rad + pos: 5.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5328 + color: '#0055CCFF' + - uid: 5931 components: - type: Transform - pos: 2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 7.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5329 + color: '#0055CCFF' + - uid: 5932 components: - type: Transform - pos: 2.5,-3.5 + rot: 1.5707963267948966 rad + pos: 6.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5330 + color: '#0055CCFF' + - uid: 5933 components: - type: Transform - pos: 2.5,-4.5 + rot: 1.5707963267948966 rad + pos: 8.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5331 + color: '#0055CCFF' + - uid: 5934 components: - type: Transform - pos: 2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5333 + color: '#0055CCFF' + - uid: 5935 components: - type: Transform - pos: 2.5,-7.5 + rot: 1.5707963267948966 rad + pos: 10.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5334 + color: '#0055CCFF' + - uid: 5936 components: - type: Transform - pos: 2.5,-8.5 + rot: 1.5707963267948966 rad + pos: 11.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5335 + color: '#0055CCFF' + - uid: 5937 components: - type: Transform - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: 12.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5336 + color: '#0055CCFF' + - uid: 5942 components: - type: Transform - pos: 2.5,-10.5 + rot: 3.141592653589793 rad + pos: 8.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5337 + color: '#0055CCFF' + - uid: 5943 components: - type: Transform - pos: 2.5,-11.5 + rot: 3.141592653589793 rad + pos: 8.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5338 + color: '#0055CCFF' + - uid: 5945 components: - type: Transform - pos: 2.5,-12.5 + pos: 9.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5339 + - uid: 5946 components: - type: Transform - pos: 2.5,-13.5 + pos: 9.5,5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5340 + - uid: 5947 components: - type: Transform - pos: 2.5,-14.5 + pos: 9.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5341 + - uid: 5948 components: - type: Transform - pos: 2.5,-15.5 + pos: 9.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5343 + - uid: 5949 components: - type: Transform - pos: 2.5,-17.5 + pos: 9.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5344 + - uid: 5954 components: - type: Transform - pos: 2.5,-18.5 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5346 + - uid: 5956 components: - type: Transform - pos: 2.5,-20.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5347 + - uid: 5957 components: - type: Transform - pos: 2.5,-21.5 + rot: -1.5707963267948966 rad + pos: -3.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5348 + - uid: 5958 components: - type: Transform - pos: 2.5,-22.5 + rot: -1.5707963267948966 rad + pos: -4.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5350 + - uid: 5959 components: - type: Transform - pos: 2.5,-24.5 + rot: -1.5707963267948966 rad + pos: -0.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5351 + color: '#0055CCFF' + - uid: 5961 components: - type: Transform - pos: 2.5,-25.5 + rot: -1.5707963267948966 rad + pos: -3.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5352 + color: '#0055CCFF' + - uid: 5962 components: - type: Transform - pos: 2.5,-26.5 + rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5353 + color: '#0055CCFF' + - uid: 5965 components: - type: Transform - pos: 2.5,-27.5 + rot: 3.141592653589793 rad + pos: -5.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5355 + - uid: 5966 components: - type: Transform - pos: 4.5,4.5 + rot: 3.141592653589793 rad + pos: -5.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5356 + color: '#990000FF' + - uid: 5967 components: - type: Transform - pos: 4.5,3.5 + rot: 3.141592653589793 rad + pos: -5.5,6.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5357 + color: '#990000FF' + - uid: 5968 components: - type: Transform - pos: 4.5,2.5 + rot: 3.141592653589793 rad + pos: -5.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5358 + color: '#990000FF' + - uid: 5970 components: - type: Transform - pos: 4.5,1.5 + rot: 3.141592653589793 rad + pos: -5.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5359 + color: '#990000FF' + - uid: 5972 components: - type: Transform - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: -4.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5360 + - uid: 5974 components: - type: Transform - pos: 4.5,-0.5 + rot: 3.141592653589793 rad + pos: -4.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5362 + - uid: 5975 components: - type: Transform - pos: 4.5,-2.5 + rot: 3.141592653589793 rad + pos: -4.5,9.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5363 + - uid: 5984 components: - type: Transform - pos: 4.5,-3.5 + rot: -1.5707963267948966 rad + pos: -6.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5364 + color: '#990000FF' + - uid: 5985 components: - type: Transform - pos: 4.5,-4.5 + rot: 1.5707963267948966 rad + pos: -9.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5366 + color: '#990000FF' + - uid: 5986 components: - type: Transform - pos: 4.5,-6.5 + rot: 3.141592653589793 rad + pos: -8.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5367 + color: '#990000FF' + - uid: 5987 components: - type: Transform - pos: 4.5,-7.5 + rot: 3.141592653589793 rad + pos: -8.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5368 + color: '#990000FF' + - uid: 5990 components: - type: Transform - pos: 4.5,-8.5 + rot: 3.141592653589793 rad + pos: -5.5,13.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5369 + - uid: 5995 components: - type: Transform - pos: 4.5,-9.5 + rot: 3.141592653589793 rad + pos: -8.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5370 + color: '#990000FF' + - uid: 5996 components: - type: Transform - pos: 4.5,-10.5 + rot: 3.141592653589793 rad + pos: -8.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5371 + color: '#990000FF' + - uid: 5997 components: - type: Transform - pos: 4.5,-11.5 + rot: 3.141592653589793 rad + pos: -8.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5372 + color: '#990000FF' + - uid: 5998 components: - type: Transform - pos: 4.5,-12.5 + rot: 3.141592653589793 rad + pos: -8.5,18.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5373 + color: '#990000FF' + - uid: 5999 components: - type: Transform - pos: 4.5,-13.5 + rot: 3.141592653589793 rad + pos: -8.5,19.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5375 + color: '#990000FF' + - uid: 6002 components: - type: Transform - pos: 4.5,-15.5 + rot: 3.141592653589793 rad + pos: -7.5,16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5376 + - uid: 6003 components: - type: Transform - pos: 4.5,-16.5 + rot: 3.141592653589793 rad + pos: -7.5,17.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5378 + - uid: 6004 components: - type: Transform - pos: 4.5,-18.5 + rot: 3.141592653589793 rad + pos: -7.5,18.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5381 + - uid: 6005 components: - type: Transform - pos: 4.5,-21.5 + rot: 3.141592653589793 rad + pos: -7.5,19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5382 + - uid: 6006 components: - type: Transform - pos: 4.5,-22.5 + rot: 1.5707963267948966 rad + pos: -6.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5383 + - uid: 6007 components: - type: Transform - pos: 4.5,-23.5 + rot: 1.5707963267948966 rad + pos: -8.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5384 + - uid: 6008 components: - type: Transform - pos: 4.5,-24.5 + rot: 1.5707963267948966 rad + pos: -9.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5385 + - uid: 6009 components: - type: Transform - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: -10.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5386 + - uid: 6011 components: - type: Transform - pos: 4.5,-26.5 + rot: 1.5707963267948966 rad + pos: -9.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5387 + color: '#990000FF' + - uid: 6012 components: - type: Transform - pos: 4.5,-27.5 + rot: 1.5707963267948966 rad + pos: -11.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5388 + color: '#990000FF' + - uid: 6013 components: - type: Transform - pos: 4.5,-28.5 + rot: 1.5707963267948966 rad + pos: -10.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5389 + color: '#990000FF' + - uid: 6014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 + rot: 3.141592653589793 rad + pos: -5.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5390 + - uid: 6027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 + rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5391 + - uid: 6028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 + rot: 3.141592653589793 rad + pos: -12.5,18.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5393 + - uid: 6029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,3.5 + rot: 1.5707963267948966 rad + pos: -9.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5394 + - uid: 6030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + rot: 1.5707963267948966 rad + pos: -11.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5395 + - uid: 6031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 + rot: 1.5707963267948966 rad + pos: -10.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5398 + - uid: 6034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 + rot: 1.5707963267948966 rad + pos: -4.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5400 + - uid: 6035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5401 + - uid: 6036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,3.5 + rot: 1.5707963267948966 rad + pos: -2.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5402 + - uid: 6037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,3.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5403 + - uid: 6038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5404 + color: '#0055CCFF' + - uid: 6039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 + rot: 1.5707963267948966 rad + pos: -2.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5406 + color: '#0055CCFF' + - uid: 6040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,3.5 + rot: 1.5707963267948966 rad + pos: -1.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5407 + color: '#0055CCFF' + - uid: 6045 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,3.5 + pos: -5.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5408 + color: '#0055CCFF' + - uid: 6046 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,3.5 + pos: -6.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5409 + color: '#0055CCFF' + - uid: 6047 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,3.5 + pos: -7.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5410 + color: '#0055CCFF' + - uid: 6048 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,3.5 + pos: -8.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5411 + color: '#0055CCFF' + - uid: 6049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,5.5 + pos: -9.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5412 + - uid: 6052 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,5.5 + pos: -12.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5413 + - uid: 6053 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,5.5 + pos: -13.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5414 + - uid: 6054 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,5.5 + pos: -14.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5415 + - uid: 6055 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: -15.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5416 + - uid: 6056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 + rot: 1.5707963267948966 rad + pos: -23.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5417 + - uid: 6057 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,5.5 + pos: -17.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5418 + - uid: 6058 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,5.5 + pos: -18.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5420 + - uid: 6059 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,5.5 + pos: -19.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5421 + - uid: 6060 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,5.5 + pos: -20.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5423 + - uid: 6061 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,5.5 + pos: -21.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5426 + - uid: 6062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 + rot: -1.5707963267948966 rad + pos: -22.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5427 + color: '#0055CCFF' + - uid: 6063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,3.5 + rot: -1.5707963267948966 rad + pos: -6.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5428 + - uid: 6064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,3.5 + rot: -1.5707963267948966 rad + pos: -7.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5429 + - uid: 6065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 + rot: -1.5707963267948966 rad + pos: -8.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5431 + - uid: 6066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,3.5 + rot: -1.5707963267948966 rad + pos: -9.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5432 + - uid: 6067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,3.5 + rot: -1.5707963267948966 rad + pos: -10.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5433 + - uid: 6068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,3.5 + rot: -1.5707963267948966 rad + pos: -11.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5434 + - uid: 6069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 + rot: -1.5707963267948966 rad + pos: -12.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5435 + - uid: 6070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 + rot: -1.5707963267948966 rad + pos: -13.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5436 + - uid: 6072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + rot: -1.5707963267948966 rad + pos: -15.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5437 + color: '#990000FF' + - uid: 6073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,5.5 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5438 + color: '#990000FF' + - uid: 6074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,5.5 + rot: -1.5707963267948966 rad + pos: -17.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5440 + color: '#990000FF' + - uid: 6075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,5.5 + rot: -1.5707963267948966 rad + pos: -18.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5441 + color: '#990000FF' + - uid: 6076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,5.5 + rot: -1.5707963267948966 rad + pos: -19.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5442 + color: '#990000FF' + - uid: 6077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,5.5 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5443 + color: '#990000FF' + - uid: 6078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 + rot: -1.5707963267948966 rad + pos: -21.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5444 + color: '#990000FF' + - uid: 6081 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,5.5 + pos: -10.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5445 + - uid: 6085 components: - type: Transform - pos: 13.5,6.5 + pos: -24.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5446 + - uid: 6086 components: - type: Transform - pos: 13.5,7.5 + pos: -24.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5447 + - uid: 6087 components: - type: Transform - pos: 13.5,8.5 + pos: -24.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5448 + - uid: 6088 components: - type: Transform - pos: 13.5,9.5 + pos: -24.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5449 + - uid: 6089 components: - type: Transform - pos: 15.5,4.5 + pos: -24.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5450 + color: '#0055CCFF' + - uid: 6090 components: - type: Transform - pos: 15.5,5.5 + pos: -24.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5451 + color: '#0055CCFF' + - uid: 6091 components: - type: Transform - pos: 15.5,6.5 + pos: -24.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5452 + color: '#0055CCFF' + - uid: 6092 components: - type: Transform - pos: 15.5,7.5 + pos: -16.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5453 + color: '#0055CCFF' + - uid: 6093 components: - type: Transform - pos: 15.5,8.5 + rot: 3.141592653589793 rad + pos: -24.5,6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5454 + color: '#0055CCFF' + - uid: 6094 components: - type: Transform - pos: 15.5,9.5 + rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5455 + color: '#0055CCFF' + - uid: 6097 components: - type: Transform - pos: 15.5,10.5 + rot: -1.5707963267948966 rad + pos: -24.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5460 + - uid: 6102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,10.5 + pos: -25.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5461 + color: '#990000FF' + - uid: 6103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,10.5 + pos: -26.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5462 + color: '#990000FF' + - uid: 6104 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,10.5 + pos: -25.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5463 + - uid: 6105 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,10.5 + pos: -26.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5466 + - uid: 6107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 + rot: 3.141592653589793 rad + pos: -23.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5467 + color: '#990000FF' + - uid: 6108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,11.5 + rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5468 + - uid: 6109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,11.5 + rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5469 + - uid: 6110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,11.5 + rot: 3.141592653589793 rad + pos: -23.5,5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5475 + - uid: 6111 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,6.5 + pos: -23.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5480 + color: '#990000FF' + - uid: 6113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 + pos: -16.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5483 + - uid: 6121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + pos: -23.5,2.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5484 + - uid: 6122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: -23.5,1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5485 + - uid: 6123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: -23.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5486 + - uid: 6124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: -23.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5487 + - uid: 6125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,0.5 + pos: -23.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5489 + - uid: 6126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: -23.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5490 + - uid: 6128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5492 + - uid: 6131 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-1.5 + pos: -27.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5493 + color: '#990000FF' + - uid: 6132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -26.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5494 + color: '#990000FF' + - uid: 6133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: -25.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5497 + color: '#990000FF' + - uid: 6134 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,0.5 + pos: -24.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5498 + - uid: 6139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,0.5 + pos: -30.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5499 + color: '#0055CCFF' + - uid: 6140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,0.5 + pos: -31.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5501 + color: '#0055CCFF' + - uid: 6142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,0.5 + pos: -33.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5502 + color: '#0055CCFF' + - uid: 6143 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: -34.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5503 + color: '#0055CCFF' + - uid: 6145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + rot: 1.5707963267948966 rad + pos: -31.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5504 + - uid: 6146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: -32.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5505 + - uid: 6147 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,0.5 + pos: -33.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5506 + - uid: 6148 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: -34.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5507 + - uid: 6149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,0.5 + pos: -35.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5508 + - uid: 6153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + pos: -35.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5509 + color: '#0055CCFF' + - uid: 6154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: -35.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5510 + color: '#0055CCFF' + - uid: 6155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: -35.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5511 + color: '#0055CCFF' + - uid: 6156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + pos: -35.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5512 + - uid: 6157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + pos: -35.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5513 + - uid: 6158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: -35.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5514 + - uid: 6159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + pos: -35.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5515 + - uid: 6160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + pos: -35.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5517 + - uid: 6161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + pos: -35.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5518 + - uid: 6162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-1.5 + pos: -39.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5519 + color: '#990000FF' + - uid: 6163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + pos: -35.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5520 + - uid: 6164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + pos: -36.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5521 + color: '#990000FF' + - uid: 6165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + pos: -36.5,1.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5522 + color: '#990000FF' + - uid: 6167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 + pos: -25.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5523 + - uid: 6170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-1.5 + pos: 32.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5524 + color: '#990000FF' + - uid: 6171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-1.5 + pos: 32.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5525 + - uid: 6172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 + pos: 32.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5526 + - uid: 6173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 + pos: 32.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5529 + - uid: 6176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 + pos: 33.5,5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5530 + - uid: 6177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,0.5 + pos: 33.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5531 + - uid: 6178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,0.5 + pos: 33.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5532 + - uid: 6179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 + pos: 33.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5533 + - uid: 6185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,0.5 + rot: 1.5707963267948966 rad + pos: 34.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5534 + - uid: 6186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,0.5 + pos: 32.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5535 + color: '#0055CCFF' + - uid: 6187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 + pos: 32.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5536 + - uid: 6188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 + pos: 32.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5537 + - uid: 6189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-0.5 + pos: 32.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5539 + - uid: 6190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 + pos: 32.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5540 + - uid: 6191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,5.5 + pos: 32.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5548 + - uid: 6192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-4.5 + pos: 32.5,-1.5 parent: 31 - - uid: 5549 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 + pos: 33.5,2.5 parent: 31 - - uid: 5550 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 + pos: 33.5,1.5 parent: 31 - - uid: 5555 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6195 components: - type: Transform - pos: 10.5,-2.5 + pos: 33.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5556 + color: '#990000FF' + - uid: 6196 components: - type: Transform - pos: 10.5,-3.5 + pos: 33.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5557 + color: '#990000FF' + - uid: 6200 components: - type: Transform - pos: 10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 40.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5558 + - uid: 6201 components: - type: Transform - pos: 10.5,-5.5 + rot: 1.5707963267948966 rad + pos: 41.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5559 + - uid: 6202 components: - type: Transform - pos: 10.5,-6.5 + rot: 1.5707963267948966 rad + pos: 42.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5560 + - uid: 6203 components: - type: Transform - pos: 10.5,-7.5 + rot: 1.5707963267948966 rad + pos: 43.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5561 + - uid: 6206 components: - type: Transform - pos: 11.5,-0.5 + pos: 43.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5562 + - uid: 6207 components: - type: Transform - pos: 11.5,-1.5 + pos: 43.5,5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5563 + - uid: 6208 components: - type: Transform - pos: 11.5,-2.5 + pos: 43.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5564 + - uid: 6209 components: - type: Transform - pos: 11.5,-3.5 + rot: 3.141592653589793 rad + pos: 43.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5565 + - uid: 6217 components: - type: Transform - pos: 11.5,-4.5 + rot: 3.141592653589793 rad + pos: 44.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5566 + color: '#0055CCFF' + - uid: 6218 components: - type: Transform - pos: 11.5,-5.5 + rot: 3.141592653589793 rad + pos: 44.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5567 + color: '#0055CCFF' + - uid: 6219 components: - type: Transform - pos: 11.5,-6.5 + rot: 3.141592653589793 rad + pos: 44.5,3.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5568 + - uid: 6221 components: - type: Transform - pos: 11.5,-7.5 + rot: 1.5707963267948966 rad + pos: 45.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5569 + - uid: 6222 components: - type: Transform - pos: 11.5,-8.5 + rot: 1.5707963267948966 rad + pos: 46.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5570 + - uid: 6224 components: - type: Transform - pos: 11.5,-9.5 + rot: 1.5707963267948966 rad + pos: 48.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5573 + - uid: 6225 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + pos: 45.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5575 + - uid: 6227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + pos: 47.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5576 + - uid: 6229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 + pos: 48.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5578 + - uid: 6233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 + pos: 48.5,-1.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6234 + components: + - type: Transform + pos: 49.5,2.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5580 + - uid: 6235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 + pos: 49.5,1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5581 + - uid: 6236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 + pos: 49.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5583 + color: '#990000FF' + - uid: 6237 components: - type: Transform - pos: 17.5,-9.5 + pos: 49.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5585 + - uid: 6238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + pos: 49.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5588 + - uid: 6239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 + pos: 48.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5590 + - uid: 6240 components: - type: Transform - pos: 17.5,-8.5 + rot: -1.5707963267948966 rad + pos: 42.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5591 + - uid: 6247 components: - type: Transform - pos: 17.5,-7.5 + rot: -1.5707963267948966 rad + pos: 47.5,12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5593 + - uid: 6254 components: - type: Transform - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: 32.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5594 + color: '#0055CCFF' + - uid: 6260 components: - type: Transform - pos: 17.5,-4.5 + pos: 22.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5595 + color: '#0055CCFF' + - uid: 6263 components: - type: Transform - pos: 17.5,-3.5 + pos: 38.5,2.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5596 + - uid: 6264 components: - type: Transform - pos: 17.5,-2.5 + pos: 38.5,1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5598 + - uid: 6269 components: - type: Transform - pos: 16.5,-7.5 + rot: 3.141592653589793 rad + pos: 37.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5599 + - uid: 6270 components: - type: Transform - pos: 16.5,-6.5 + rot: 3.141592653589793 rad + pos: 37.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5601 + - uid: 6271 components: - type: Transform - pos: 16.5,-4.5 + rot: 3.141592653589793 rad + pos: 37.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5602 + - uid: 6272 components: - type: Transform - pos: 16.5,-3.5 + rot: 3.141592653589793 rad + pos: 37.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5603 + - uid: 6273 components: - type: Transform - pos: 16.5,-2.5 + rot: 3.141592653589793 rad + pos: 37.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5604 + - uid: 6315 components: - type: Transform - pos: 16.5,-1.5 + rot: 1.5707963267948966 rad + pos: -7.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5608 + color: '#990000FF' + - uid: 6349 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,3.5 + pos: 44.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5612 + - uid: 6363 components: - type: Transform - pos: 18.5,-12.5 + pos: 37.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5613 + - uid: 6392 components: - type: Transform - pos: 18.5,-13.5 + pos: 43.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5615 + - uid: 6409 components: - type: Transform - pos: 19.5,-10.5 + rot: 3.141592653589793 rad + pos: -22.5,-17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5616 + color: '#990000FF' + - uid: 6411 components: - type: Transform - pos: 19.5,-11.5 + rot: 1.5707963267948966 rad + pos: 45.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5617 + color: '#990000FF' + - uid: 6439 components: - type: Transform - pos: 19.5,-12.5 + rot: -1.5707963267948966 rad + pos: -11.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5618 + color: '#990000FF' + - uid: 6465 components: - type: Transform - pos: 19.5,-13.5 + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5619 + color: '#990000FF' + - uid: 6480 components: - type: Transform - pos: 19.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5620 + color: '#990000FF' + - uid: 6490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-14.5 + pos: -9.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5621 + - uid: 6534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 + rot: 1.5707963267948966 rad + pos: 46.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5622 + - uid: 6549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-14.5 + pos: 46.5,18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5623 + - uid: 6558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 + rot: 3.141592653589793 rad + pos: 37.5,16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5624 + - uid: 6559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-15.5 + pos: 44.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5625 + - uid: 6562 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-15.5 + pos: 46.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5642 + - uid: 6569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 45.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5643 + color: '#0055CCFF' + - uid: 6572 components: - type: Transform - pos: 9.5,-9.5 + rot: -1.5707963267948966 rad + pos: 24.5,16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5644 + - uid: 6573 components: - type: Transform - pos: 9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 25.5,16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5645 + - uid: 6577 components: - type: Transform - pos: 9.5,-11.5 + pos: 37.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5646 + - uid: 6579 components: - type: Transform - pos: 9.5,-12.5 + pos: 34.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5647 + - uid: 6604 components: - type: Transform - pos: 9.5,-13.5 + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5649 + color: '#990000FF' + - uid: 6619 components: - type: Transform - pos: 8.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5651 + - uid: 6634 components: - type: Transform - pos: 8.5,-12.5 + rot: -1.5707963267948966 rad + pos: -13.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5652 + - uid: 6642 components: - type: Transform - pos: 8.5,-11.5 + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5654 + - uid: 6693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,5.5 + rot: 3.141592653589793 rad + pos: -23.5,-17.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5655 + - uid: 6696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: -23.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5656 + - uid: 6704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 + pos: 34.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5657 + - uid: 6712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5658 + color: '#990000FF' + - uid: 6713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 + rot: 3.141592653589793 rad + pos: -23.5,-15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5659 + - uid: 6714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5660 + color: '#990000FF' + - uid: 6715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5661 + color: '#990000FF' + - uid: 6716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-6.5 + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5662 + - uid: 6717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5663 + - uid: 6718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-6.5 + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5664 + - uid: 6719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5667 + - uid: 6727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,3.5 + rot: -1.5707963267948966 rad + pos: 45.5,12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5668 + - uid: 6734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 + pos: 30.5,22.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5669 + - uid: 6741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-16.5 + rot: -1.5707963267948966 rad + pos: 64.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5670 + color: '#0055CCFF' + - uid: 6749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + rot: -1.5707963267948966 rad + pos: 37.5,25.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5673 + - uid: 6755 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-16.5 + pos: 70.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5676 + color: '#990000FF' + - uid: 6765 components: - type: Transform - pos: -12.5,-2.5 + rot: 1.5707963267948966 rad + pos: 70.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5681 + color: '#990000FF' + - uid: 6766 components: - type: Transform - pos: 15.5,-16.5 + rot: 1.5707963267948966 rad + pos: 66.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5684 + color: '#990000FF' + - uid: 6830 components: - type: Transform - pos: 14.5,-18.5 + pos: 68.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5685 + color: '#990000FF' + - uid: 6842 components: - type: Transform - pos: 14.5,-19.5 + pos: 68.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5687 + color: '#990000FF' + - uid: 6895 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-20.5 + pos: 23.5,16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5688 + - uid: 6896 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-20.5 + pos: 25.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5689 + color: '#990000FF' + - uid: 6925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-20.5 + pos: 62.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5690 + color: '#990000FF' + - uid: 6926 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-20.5 + pos: 61.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5691 + color: '#990000FF' + - uid: 6945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 + pos: 48.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5693 + - uid: 7072 components: - type: Transform - pos: 8.5,-21.5 + rot: -1.5707963267948966 rad + pos: 49.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5694 + - uid: 7073 components: - type: Transform - pos: 8.5,-22.5 + rot: -1.5707963267948966 rad + pos: 50.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5695 + - uid: 7075 components: - type: Transform - pos: 8.5,-23.5 + rot: 3.141592653589793 rad + pos: 33.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5696 + color: '#990000FF' + - uid: 7076 components: - type: Transform - pos: 8.5,-24.5 + rot: 1.5707963267948966 rad + pos: 33.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5699 + - uid: 7129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-19.5 + pos: -26.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5716 + color: '#990000FF' + - uid: 7131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-14.5 + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5717 + color: '#990000FF' + - uid: 7132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-14.5 + pos: 34.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5718 + color: '#990000FF' + - uid: 7143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-14.5 + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5723 + color: '#990000FF' + - uid: 7152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-16.5 + pos: -30.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5762 + - uid: 7156 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,25.5 + pos: -31.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5768 + color: '#990000FF' + - uid: 7175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,11.5 + rot: 3.141592653589793 rad + pos: -32.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5774 + color: '#990000FF' + - uid: 7179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-21.5 + rot: -1.5707963267948966 rad + pos: 52.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5775 + - uid: 7180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-22.5 + rot: -1.5707963267948966 rad + pos: 51.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5776 + - uid: 7182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-23.5 + rot: -1.5707963267948966 rad + pos: 54.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5777 + - uid: 7197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-24.5 + pos: 36.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5780 + - uid: 7205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-26.5 + rot: -1.5707963267948966 rad + pos: 55.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5781 + color: '#990000FF' + - uid: 7206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-27.5 + rot: -1.5707963267948966 rad + pos: 54.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5786 + color: '#990000FF' + - uid: 7207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-23.5 + rot: -1.5707963267948966 rad + pos: 52.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5787 + - uid: 7208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 + rot: -1.5707963267948966 rad + pos: 50.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5788 + - uid: 7210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 + rot: -1.5707963267948966 rad + pos: 51.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5789 + - uid: 7212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-23.5 + rot: -1.5707963267948966 rad + pos: 53.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5790 + color: '#0055CCFF' + - uid: 7218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + rot: -1.5707963267948966 rad + pos: 53.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5791 + - uid: 7227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 + pos: 64.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5793 + color: '#0055CCFF' + - uid: 7257 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,4.5 + pos: -32.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5794 + - uid: 7266 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,5.5 + pos: -32.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5795 + - uid: 7267 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,6.5 + pos: -32.5,-12.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5796 + - uid: 7268 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,7.5 + pos: -32.5,-13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5797 + - uid: 7270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 + rot: -1.5707963267948966 rad + pos: -24.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5798 + - uid: 7271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5799 + - uid: 7309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,10.5 + rot: -1.5707963267948966 rad + pos: 31.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5800 + - uid: 7311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 + rot: -1.5707963267948966 rad + pos: 44.5,25.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5802 + - uid: 7312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,13.5 + rot: -1.5707963267948966 rad + pos: 42.5,25.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5803 + - uid: 7346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,14.5 + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5804 + color: '#0055CCFF' + - uid: 7382 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,15.5 + pos: 40.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5805 + - uid: 7413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,16.5 + pos: 2.5,-19.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5808 + - uid: 7419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,19.5 + rot: -1.5707963267948966 rad + pos: -32.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5809 + color: '#0055CCFF' + - uid: 7458 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,20.5 + pos: 45.5,16.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5810 + - uid: 7464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 + rot: 1.5707963267948966 rad + pos: 32.5,16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5811 + - uid: 7470 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,22.5 + pos: -24.5,-2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5814 + color: '#0055CCFF' + - uid: 7557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,25.5 + pos: -24.5,13.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5815 + color: '#0055CCFF' + - uid: 7693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,26.5 + rot: -1.5707963267948966 rad + pos: 41.5,25.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5816 + - uid: 7727 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,27.5 + pos: -37.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5817 + - uid: 7728 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,28.5 + pos: -37.5,5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5818 + - uid: 7729 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,29.5 + pos: -37.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5819 + - uid: 7730 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,29.5 + pos: -35.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5820 + - uid: 7731 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,28.5 + pos: -35.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5821 + - uid: 7732 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,27.5 + pos: -35.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5824 + - uid: 7733 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,24.5 + pos: -35.5,9.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5825 + - uid: 7734 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,23.5 + pos: -35.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5826 + - uid: 7735 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,22.5 + pos: -35.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5827 + - uid: 7736 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,21.5 + pos: -35.5,12.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5830 + - uid: 7738 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: -37.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5831 + color: '#990000FF' + - uid: 7739 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,17.5 + pos: -37.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5832 + color: '#990000FF' + - uid: 7740 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,16.5 + pos: -37.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5833 + color: '#990000FF' + - uid: 7741 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,15.5 + pos: -37.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5836 + color: '#990000FF' + - uid: 7742 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: -37.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5838 + color: '#990000FF' + - uid: 7743 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,10.5 + pos: -37.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5839 + color: '#990000FF' + - uid: 7801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,9.5 + rot: -1.5707963267948966 rad + pos: 33.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5840 + color: '#990000FF' + - uid: 7828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 + rot: -1.5707963267948966 rad + pos: 47.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5841 + color: '#990000FF' + - uid: 7829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,7.5 + rot: -1.5707963267948966 rad + pos: 45.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5842 + color: '#990000FF' + - uid: 7834 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,6.5 + pos: 64.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5843 + - uid: 8049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 + rot: -1.5707963267948966 rad + pos: 43.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5844 + color: '#990000FF' + - uid: 8089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 + pos: 62.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5845 + - uid: 8210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + rot: 3.141592653589793 rad + pos: 64.5,12.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5846 + - uid: 8214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 + pos: 31.5,18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5847 + - uid: 8415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 + pos: 7.5,18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5850 + - uid: 8429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 + rot: 3.141592653589793 rad + pos: 37.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5851 + color: '#0055CCFF' + - uid: 8431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 64.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5852 + color: '#0055CCFF' + - uid: 8433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 + pos: 64.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5853 + color: '#0055CCFF' + - uid: 8470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,24.5 + rot: 3.141592653589793 rad + pos: 54.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5855 + - uid: 8494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,25.5 + pos: 50.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5857 + color: '#990000FF' + - uid: 8505 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,25.5 + pos: 38.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5858 + color: '#990000FF' + - uid: 8516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,25.5 + pos: 39.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5859 + color: '#990000FF' + - uid: 8521 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: 53.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5860 + color: '#990000FF' + - uid: 8564 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,25.5 + pos: 52.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5861 + color: '#990000FF' + - uid: 8569 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,24.5 + pos: 34.5,25.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5862 + - uid: 8755 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,24.5 + pos: 35.5,25.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5863 + - uid: 8776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,24.5 + rot: 1.5707963267948966 rad + pos: -10.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5866 + - uid: 8777 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,24.5 + pos: -11.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5872 + - uid: 8778 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,17.5 + pos: -12.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5873 + - uid: 8779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,17.5 + pos: -13.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5874 + - uid: 8780 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,17.5 + pos: -14.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5875 + - uid: 8781 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,17.5 + pos: -15.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5876 + - uid: 8785 components: - type: Transform - pos: 8.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5877 + - uid: 8786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 + rot: -1.5707963267948966 rad + pos: -8.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5878 + color: '#0055CCFF' + - uid: 8787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,20.5 + rot: -1.5707963267948966 rad + pos: -9.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5879 + - uid: 8788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,20.5 + rot: -1.5707963267948966 rad + pos: -10.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5880 + - uid: 8789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,20.5 + rot: -1.5707963267948966 rad + pos: -11.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5884 + - uid: 8790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,20.5 + pos: -12.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5885 + - uid: 8791 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,20.5 + pos: -13.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5886 + - uid: 8792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,20.5 + pos: -14.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5887 + - uid: 8793 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,20.5 + pos: -15.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5888 + - uid: 8991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,20.5 + pos: 64.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5889 + - uid: 8992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,20.5 + pos: 64.5,1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5890 + - uid: 9014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,20.5 + pos: 40.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5891 + color: '#990000FF' + - uid: 9015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,20.5 + pos: 49.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5899 + color: '#990000FF' + - uid: 9016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,19.5 + rot: -1.5707963267948966 rad + pos: 48.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5900 + color: '#990000FF' + - uid: 9017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 + rot: -1.5707963267948966 rad + pos: 46.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5901 + color: '#990000FF' + - uid: 9018 components: - type: Transform - pos: -18.5,20.5 + rot: -1.5707963267948966 rad + pos: 36.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5902 + color: '#990000FF' + - uid: 9054 components: - type: Transform - pos: -18.5,21.5 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5903 + - uid: 9059 components: - type: Transform - pos: -18.5,22.5 + rot: -1.5707963267948966 rad + pos: 52.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5904 + - uid: 9075 components: - type: Transform - pos: -18.5,23.5 + rot: -1.5707963267948966 rad + pos: 58.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5905 + - uid: 9176 components: - type: Transform - pos: -18.5,24.5 + pos: -37.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5906 + color: '#990000FF' + - uid: 9177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,25.5 + pos: -37.5,-2.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5907 + color: '#990000FF' + - uid: 9178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 + pos: -37.5,-3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5908 + color: '#990000FF' + - uid: 9199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,25.5 + pos: -37.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5909 + color: '#990000FF' + - uid: 9201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + pos: -37.5,-4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5910 + color: '#990000FF' + - uid: 9206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,25.5 + pos: 64.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5911 + - uid: 9222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,25.5 + rot: 3.141592653589793 rad + pos: -36.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5912 + - uid: 9223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,25.5 + rot: 3.141592653589793 rad + pos: -38.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5913 + color: '#990000FF' + - uid: 9349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,25.5 + pos: -25.5,17.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5914 + - uid: 9350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,25.5 + pos: -25.5,18.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5915 + - uid: 9351 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,25.5 + pos: -24.5,19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5918 + - uid: 9352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,23.5 + rot: -1.5707963267948966 rad + pos: -23.5,19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5919 + - uid: 9377 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,22.5 + pos: 64.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5920 + - uid: 9388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,20.5 + pos: 64.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5921 + - uid: 9731 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,21.5 + pos: 47.5,16.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5922 + - uid: 9816 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,21.5 + pos: -4.5,-29.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5923 + color: '#990000FF' + - uid: 9938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,22.5 + rot: -1.5707963267948966 rad + pos: 55.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5930 + - uid: 9941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,14.5 + pos: 64.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5931 + - uid: 9945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,14.5 + rot: 3.141592653589793 rad + pos: 46.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5932 + color: '#990000FF' + - uid: 9955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,14.5 + rot: 3.141592653589793 rad + pos: 38.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5933 + color: '#990000FF' + - uid: 9956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,14.5 + rot: 3.141592653589793 rad + pos: 39.5,16.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5934 + - uid: 10024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,14.5 + pos: 21.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5935 + color: '#990000FF' + - uid: 10026 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,14.5 + pos: 20.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5936 + color: '#990000FF' + - uid: 10031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 + pos: 62.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5937 + - uid: 10039 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,14.5 + pos: 19.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5942 + color: '#990000FF' + - uid: 10102 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,7.5 + pos: 34.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5943 + color: '#990000FF' + - uid: 10105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,8.5 + rot: -1.5707963267948966 rad + pos: 54.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5945 + - uid: 10107 components: - type: Transform - pos: 9.5,4.5 + rot: -1.5707963267948966 rad + pos: 35.5,16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5946 + - uid: 10120 components: - type: Transform - pos: 9.5,5.5 + rot: 3.141592653589793 rad + pos: 55.5,22.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5947 + - uid: 10122 components: - type: Transform - pos: 9.5,6.5 + rot: 3.141592653589793 rad + pos: 43.5,16.5 + parent: 31 + - uid: 10247 + components: + - type: Transform + pos: -37.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5948 + - uid: 10248 components: - type: Transform - pos: 9.5,7.5 + pos: -37.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5949 + - uid: 10249 components: - type: Transform - pos: 9.5,8.5 + pos: -35.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5954 + color: '#0055CCFF' + - uid: 10250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + pos: -35.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5956 + color: '#0055CCFF' + - uid: 10378 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,3.5 + pos: 3.5,-29.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5957 + color: '#0055CCFF' + - uid: 10379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,3.5 + pos: 2.5,-29.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5958 + color: '#0055CCFF' + - uid: 10380 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,3.5 + pos: 1.5,-29.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-28.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5959 + - uid: 10383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 + rot: 1.5707963267948966 rad + pos: 0.5,-28.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5961 + color: '#990000FF' + - uid: 10384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,5.5 + rot: 1.5707963267948966 rad + pos: -0.5,-28.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5962 + color: '#990000FF' + - uid: 10387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5965 + - uid: 10388 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,4.5 + pos: -24.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5966 + color: '#0055CCFF' + - uid: 10389 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,5.5 + pos: -24.5,-6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5967 + color: '#0055CCFF' + - uid: 10390 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,6.5 + pos: -24.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5968 + color: '#0055CCFF' + - uid: 10391 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,7.5 + pos: -24.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5970 + color: '#0055CCFF' + - uid: 10392 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,9.5 + pos: -24.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5972 + color: '#0055CCFF' + - uid: 10393 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,6.5 + pos: -24.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5974 + - uid: 10394 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,8.5 + pos: -24.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5975 + - uid: 10396 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,9.5 + pos: -24.5,-13.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5984 + - uid: 10397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 + rot: 3.141592653589793 rad + pos: -23.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5985 + - uid: 10398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 + rot: 3.141592653589793 rad + pos: -23.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5986 + - uid: 10399 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,11.5 + pos: -23.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5987 + - uid: 10400 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,12.5 + pos: -23.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5990 + - uid: 10402 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,13.5 + pos: -23.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5995 + color: '#990000FF' + - uid: 10403 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,15.5 + pos: -23.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5996 + - uid: 10405 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,16.5 + pos: -23.5,-12.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5997 + - uid: 10412 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,17.5 + pos: 44.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5998 + - uid: 10423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 + rot: -1.5707963267948966 rad + pos: 63.5,13.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5999 + color: '#0055CCFF' + - uid: 10432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,19.5 + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6002 + color: '#0055CCFF' + - uid: 10433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,16.5 + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6003 + - uid: 10434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6004 + - uid: 10443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,18.5 + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6005 + - uid: 10449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,19.5 + rot: -1.5707963267948966 rad + pos: 59.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6006 + - uid: 10450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 + pos: -8.5,-23.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6007 + - uid: 10451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 + pos: -8.5,-24.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6008 + - uid: 10452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 + pos: -8.5,-25.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6009 + - uid: 10453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,15.5 + pos: -8.5,-26.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6011 + - uid: 10454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,14.5 + pos: -8.5,-28.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6012 + color: '#0055CCFF' + - uid: 10455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,14.5 + pos: -8.5,-29.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6013 + color: '#0055CCFF' + - uid: 10456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 + rot: -1.5707963267948966 rad + pos: -9.5,-27.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6014 + color: '#0055CCFF' + - uid: 10457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-27.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6027 + - uid: 10458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 + rot: -1.5707963267948966 rad + pos: -11.5,-27.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6028 + - uid: 10459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,18.5 + rot: -1.5707963267948966 rad + pos: -12.5,-27.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6029 + - uid: 10460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6030 + color: '#0055CCFF' + - uid: 10461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,20.5 + rot: -1.5707963267948966 rad + pos: -14.5,-27.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6031 + color: '#0055CCFF' + - uid: 10462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,20.5 + rot: -1.5707963267948966 rad + pos: -15.5,-27.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6034 + color: '#0055CCFF' + - uid: 10469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6035 + - uid: 10470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6036 + - uid: 10471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6037 + - uid: 10472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 + rot: -1.5707963267948966 rad + pos: -2.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6038 + - uid: 10479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6039 + - uid: 10483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,7.5 + pos: -7.5,-20.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6040 + color: '#990000FF' + - uid: 10484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 + pos: -7.5,-21.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6045 + color: '#990000FF' + - uid: 10485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 + pos: -7.5,-22.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6046 + color: '#990000FF' + - uid: 10486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 + pos: -7.5,-23.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6047 + color: '#990000FF' + - uid: 10487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 + pos: -7.5,-24.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6048 + color: '#990000FF' + - uid: 10488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 + pos: -7.5,-25.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6049 + color: '#990000FF' + - uid: 10489 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,5.5 + pos: -8.5,-26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6052 + color: '#990000FF' + - uid: 10490 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,5.5 + pos: -9.5,-26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6053 + color: '#990000FF' + - uid: 10491 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,5.5 + pos: -10.5,-26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6054 + color: '#990000FF' + - uid: 10492 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,5.5 + pos: -11.5,-26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6055 + color: '#990000FF' + - uid: 10493 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,5.5 + pos: -12.5,-26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6056 + color: '#990000FF' + - uid: 10494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,5.5 + rot: -1.5707963267948966 rad + pos: -13.5,-26.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6057 + color: '#990000FF' + - uid: 10507 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,5.5 + pos: 45.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6058 + color: '#990000FF' + - uid: 10508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 + pos: 64.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6059 + - uid: 10509 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,5.5 + pos: 43.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6060 + color: '#990000FF' + - uid: 10510 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: 41.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6061 + color: '#990000FF' + - uid: 10511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 + rot: 3.141592653589793 rad + pos: 41.5,16.5 + parent: 31 + - uid: 10514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6062 + color: '#990000FF' + - uid: 10516 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,5.5 + pos: 37.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6063 + color: '#990000FF' + - uid: 10517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,3.5 + pos: 39.5,16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6064 + - uid: 10914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 + pos: 49.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6065 + - uid: 10915 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,3.5 + pos: 50.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6066 + - uid: 10916 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,3.5 + pos: 51.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6067 + - uid: 10917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,3.5 + pos: 52.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6068 + - uid: 10918 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,3.5 + pos: 54.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6069 + - uid: 10919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,3.5 + pos: 55.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6070 + - uid: 10920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6072 + - uid: 10921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6073 + - uid: 10922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6074 + - uid: 10923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6075 + - uid: 10924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6076 + - uid: 10925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6077 + - uid: 10926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 + rot: 3.141592653589793 rad + pos: 53.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6078 + - uid: 10927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,3.5 + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6081 + - uid: 10928 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,5.5 + pos: 55.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6085 + color: '#990000FF' + - uid: 10932 components: - type: Transform - pos: -24.5,4.5 + pos: 48.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6086 + - uid: 10933 components: - type: Transform - pos: -24.5,3.5 + pos: 48.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6087 + - uid: 10934 components: - type: Transform - pos: -24.5,2.5 + pos: 48.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6088 + - uid: 10935 components: - type: Transform - pos: -24.5,1.5 + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6089 + - uid: 10936 components: - type: Transform - pos: -24.5,0.5 + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6090 + - uid: 10937 components: - type: Transform - pos: -24.5,-0.5 + rot: -1.5707963267948966 rad + pos: 52.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6091 + - uid: 10938 components: - type: Transform - pos: -24.5,-1.5 + rot: -1.5707963267948966 rad + pos: 53.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6092 + - uid: 10939 components: - type: Transform - pos: -16.5,4.5 + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6093 + - uid: 10940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,6.5 + rot: -1.5707963267948966 rad + pos: 55.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6094 + - uid: 10941 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,7.5 + rot: -1.5707963267948966 rad + pos: 56.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6097 + - uid: 10942 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,9.5 + pos: 57.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6102 + color: '#0055CCFF' + - uid: 10944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,9.5 + pos: 48.5,-6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6103 + color: '#0055CCFF' + - uid: 10945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,9.5 + pos: 48.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6104 + color: '#0055CCFF' + - uid: 10946 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,8.5 + pos: 49.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6105 + - uid: 10947 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,8.5 + pos: 50.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6107 + - uid: 10948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,8.5 + rot: -1.5707963267948966 rad + pos: 51.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6108 + color: '#0055CCFF' + - uid: 10949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 + rot: -1.5707963267948966 rad + pos: 52.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6109 + color: '#0055CCFF' + - uid: 10950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,6.5 + rot: -1.5707963267948966 rad + pos: 53.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6110 + color: '#0055CCFF' + - uid: 10951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,5.5 + rot: -1.5707963267948966 rad + pos: 54.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6111 + color: '#0055CCFF' + - uid: 10952 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,4.5 + pos: 47.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6113 + color: '#0055CCFF' + - uid: 10953 components: - type: Transform - pos: -16.5,3.5 + rot: 3.141592653589793 rad + pos: 47.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6121 + - uid: 11063 components: - type: Transform - pos: -23.5,2.5 + pos: 46.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6122 + - uid: 11064 components: - type: Transform - pos: -23.5,1.5 + pos: 47.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6123 + - uid: 11065 components: - type: Transform - pos: -23.5,0.5 + pos: 47.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6124 + - uid: 11066 components: - type: Transform - pos: -23.5,-0.5 + pos: 47.5,19.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6125 + - uid: 11067 components: - type: Transform - pos: -23.5,-1.5 + pos: 47.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6126 + - uid: 11068 components: - type: Transform - pos: -23.5,-2.5 + pos: 46.5,19.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6128 + - uid: 11082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 31 + - uid: 11171 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,2.5 + pos: 62.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6131 + - uid: 11292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,3.5 + rot: -1.5707963267948966 rad + pos: 46.5,12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6132 + - uid: 11293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,3.5 + rot: -1.5707963267948966 rad + pos: 45.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6133 + - uid: 11303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,3.5 + rot: -1.5707963267948966 rad + pos: 36.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6134 + color: '#0055CCFF' + - uid: 11304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,3.5 + rot: -1.5707963267948966 rad + pos: 35.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6139 + color: '#0055CCFF' + - uid: 11401 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,5.5 + pos: -38.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6140 + color: '#990000FF' + - uid: 11402 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,5.5 + pos: -36.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6142 + - uid: 11403 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,5.5 + pos: -37.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6143 + - uid: 11404 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,5.5 + pos: -38.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6145 + - uid: 11405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,3.5 + pos: -39.5,-4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6146 + color: '#0055CCFF' + - uid: 11437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,3.5 + rot: -1.5707963267948966 rad + pos: 36.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6147 + color: '#0055CCFF' + - uid: 11469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,3.5 + rot: -1.5707963267948966 rad + pos: 60.5,12.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6148 + - uid: 11474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,3.5 + rot: -1.5707963267948966 rad + pos: 56.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6149 + color: '#0055CCFF' + - uid: 11476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,3.5 + rot: -1.5707963267948966 rad + pos: 53.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6153 + color: '#0055CCFF' + - uid: 11478 components: - type: Transform - pos: -35.5,4.5 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6154 + - uid: 11554 components: - type: Transform - pos: -35.5,3.5 + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6155 + - uid: 11555 components: - type: Transform - pos: -35.5,2.5 + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6156 + - uid: 11556 components: - type: Transform - pos: -35.5,1.5 + rot: -1.5707963267948966 rad + pos: -12.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6157 + - uid: 11557 components: - type: Transform - pos: -35.5,0.5 + rot: -1.5707963267948966 rad + pos: -13.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6158 + - uid: 11558 components: - type: Transform - pos: -35.5,-0.5 + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6159 + - uid: 11559 components: - type: Transform - pos: -35.5,-1.5 + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6160 + - uid: 11560 components: - type: Transform - pos: -35.5,-2.5 + rot: -1.5707963267948966 rad + pos: -16.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6161 + - uid: 11561 components: - type: Transform - pos: -35.5,-3.5 + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6162 + - uid: 11562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-5.5 + rot: -1.5707963267948966 rad + pos: -18.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6163 + color: '#0055CCFF' + - uid: 11563 components: - type: Transform - pos: -35.5,-5.5 + rot: -1.5707963267948966 rad + pos: -19.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6164 + - uid: 11564 components: - type: Transform - pos: -36.5,2.5 + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6165 + color: '#0055CCFF' + - uid: 11565 components: - type: Transform - pos: -36.5,1.5 + rot: -1.5707963267948966 rad + pos: -21.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6167 + color: '#0055CCFF' + - uid: 11566 components: - type: Transform - pos: -25.5,15.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6170 + - uid: 11568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,3.5 + pos: -24.5,-18.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6171 + color: '#0055CCFF' + - uid: 11575 components: - type: Transform - pos: 32.5,6.5 + rot: 3.141592653589793 rad + pos: -23.5,-19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6172 + - uid: 11576 components: - type: Transform - pos: 32.5,7.5 + rot: 3.141592653589793 rad + pos: -23.5,-20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6173 + - uid: 11577 components: - type: Transform - pos: 32.5,8.5 + rot: 3.141592653589793 rad + pos: -22.5,-19.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6176 + color: '#990000FF' + - uid: 11578 components: - type: Transform - pos: 33.5,5.5 + rot: 3.141592653589793 rad + pos: -22.5,-20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6177 + - uid: 11579 components: - type: Transform - pos: 33.5,4.5 + rot: 3.141592653589793 rad + pos: -22.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6178 + - uid: 11580 components: - type: Transform - pos: 33.5,6.5 + rot: 1.5707963267948966 rad + pos: -24.5,-21.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6179 + color: '#0055CCFF' + - uid: 11581 components: - type: Transform - pos: 33.5,7.5 + rot: 1.5707963267948966 rad + pos: -25.5,-21.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6185 + color: '#0055CCFF' + - uid: 11584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,3.5 + pos: -25.5,-23.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6186 + - uid: 11585 components: - type: Transform - pos: 32.5,4.5 + pos: -26.5,-23.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6187 + - uid: 11586 components: - type: Transform - pos: 32.5,3.5 + pos: -26.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6188 + - uid: 11587 components: - type: Transform - pos: 32.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6189 + color: '#990000FF' + - uid: 11588 components: - type: Transform - pos: 32.5,1.5 + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6190 + color: '#990000FF' + - uid: 11589 components: - type: Transform - pos: 32.5,0.5 + rot: 3.141592653589793 rad + pos: -23.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6191 + - uid: 11593 components: - type: Transform - pos: 32.5,-0.5 + pos: -22.5,-26.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6192 + - uid: 11594 components: - type: Transform - pos: 32.5,-1.5 + pos: -22.5,-24.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6193 + - uid: 11598 components: - type: Transform - pos: 33.5,2.5 + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6194 + color: '#0055CCFF' + - uid: 11599 components: - type: Transform - pos: 33.5,1.5 + rot: -1.5707963267948966 rad + pos: -28.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6195 + - uid: 11600 components: - type: Transform - pos: 33.5,0.5 + rot: -1.5707963267948966 rad + pos: -29.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6196 + - uid: 11601 components: - type: Transform - pos: 33.5,-0.5 + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6200 + color: '#0055CCFF' + - uid: 11602 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,6.5 + pos: -30.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6201 + - uid: 11606 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,6.5 + pos: -27.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6202 + - uid: 11607 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,6.5 + pos: -27.5,-22.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6203 + color: '#990000FF' + - uid: 11610 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,6.5 + pos: -26.5,-22.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6206 + color: '#990000FF' + - uid: 11759 components: - type: Transform - pos: 43.5,4.5 + rot: 3.141592653589793 rad + pos: 55.5,21.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6207 + - uid: 11760 components: - type: Transform - pos: 43.5,5.5 + rot: 3.141592653589793 rad + pos: 55.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6208 + - uid: 11761 components: - type: Transform - pos: 43.5,6.5 + rot: 3.141592653589793 rad + pos: 55.5,19.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6209 + - uid: 11762 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,7.5 + pos: 55.5,18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6217 + - uid: 11763 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,5.5 + pos: 55.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6218 + color: '#990000FF' + - uid: 11764 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,4.5 + pos: 55.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6219 + color: '#990000FF' + - uid: 11765 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,3.5 + pos: 55.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6220 + color: '#990000FF' + - uid: 11766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 + rot: 3.141592653589793 rad + pos: 55.5,14.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6221 + - uid: 11767 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: 56.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6222 + - uid: 11768 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,3.5 + pos: 57.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6224 + - uid: 11769 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,3.5 + pos: 58.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6225 + - uid: 11802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,2.5 + rot: -1.5707963267948966 rad + pos: 72.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6227 + color: '#990000FF' + - uid: 11803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,2.5 + rot: -1.5707963267948966 rad + pos: 73.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6229 + color: '#990000FF' + - uid: 11804 components: - type: Transform - pos: 48.5,-0.5 + rot: -1.5707963267948966 rad + pos: 74.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6233 + color: '#990000FF' + - uid: 11805 components: - type: Transform - pos: 48.5,-1.5 + rot: 3.141592653589793 rad + pos: 75.5,9.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6234 + - uid: 11871 components: - type: Transform - pos: 49.5,2.5 + rot: 3.141592653589793 rad + pos: 72.5,1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6235 + color: '#0055CCFF' + - uid: 11872 components: - type: Transform - pos: 49.5,1.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6236 + color: '#0055CCFF' + - uid: 11883 components: - type: Transform - pos: 49.5,0.5 + pos: 66.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6237 + color: '#0055CCFF' + - uid: 12119 components: - type: Transform - pos: 49.5,-0.5 + pos: 66.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6238 + - uid: 12120 components: - type: Transform - pos: 49.5,-1.5 + pos: 66.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6239 + - uid: 12126 components: - type: Transform - pos: 48.5,0.5 + rot: 3.141592653589793 rad + pos: 66.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6240 + - uid: 12127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,3.5 + rot: 3.141592653589793 rad + pos: 66.5,12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6247 + - uid: 12143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,12.5 + pos: 46.5,15.5 parent: 31 - - uid: 6254 + - uid: 12144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,9.5 + rot: -1.5707963267948966 rad + pos: 44.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6260 + - uid: 12145 components: - type: Transform - pos: 22.5,14.5 + rot: -1.5707963267948966 rad + pos: 42.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6263 + - uid: 12146 components: - type: Transform - pos: 38.5,2.5 + rot: -1.5707963267948966 rad + pos: 40.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6264 + - uid: 12147 components: - type: Transform - pos: 38.5,1.5 + rot: -1.5707963267948966 rad + pos: 38.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6269 + - uid: 12149 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,4.5 + pos: 34.5,12.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6270 + - uid: 12150 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,3.5 + pos: 31.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6271 + color: '#990000FF' + - uid: 12151 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,2.5 + pos: 31.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6272 + color: '#990000FF' + - uid: 12541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,1.5 + pos: 38.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6273 + - uid: 12542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,0.5 + pos: 40.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6315 + - uid: 12543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 + pos: 42.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6349 + - uid: 12544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,9.5 + pos: 44.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6363 + - uid: 12545 components: - type: Transform - pos: 37.5,21.5 + pos: 46.5,21.5 parent: 31 - - uid: 6392 + - uid: 12546 components: - type: Transform - pos: 43.5,8.5 + pos: 46.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6409 + - uid: 12547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-17.5 + pos: 44.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6411 + - uid: 12548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,9.5 + pos: 42.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6439 + - uid: 12549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 + pos: 40.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6465 + - uid: 12550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: 38.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6480 + - uid: 12551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-18.5 + pos: 36.5,22.5 + parent: 31 +- proto: GasPipeTJunction + entities: + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6490 + color: '#0055CCFF' + - uid: 97 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-16.5 + pos: 4.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6534 + color: '#0055CCFF' + - uid: 351 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,9.5 + pos: -23.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6549 - components: - - type: Transform - pos: 46.5,18.5 - parent: 31 - - uid: 6558 + - uid: 536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,16.5 + pos: -3.5,-16.5 parent: 31 - - uid: 6559 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 926 components: - type: Transform - pos: 44.5,7.5 + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6562 + - uid: 1231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,8.5 + pos: 39.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6569 + - uid: 1723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 + pos: 37.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6572 + - uid: 1796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,16.5 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6573 + - uid: 2282 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,16.5 + pos: -5.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6577 + - uid: 2868 components: - type: Transform - pos: 37.5,22.5 + rot: 1.5707963267948966 rad + pos: 4.5,-19.5 parent: 31 - - uid: 6579 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,17.5 + rot: -1.5707963267948966 rad + pos: 18.5,-14.5 parent: 31 - - uid: 6580 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,15.5 + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 parent: 31 - - uid: 6604 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3390 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-16.5 + pos: -24.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6619 + color: '#0055CCFF' + - uid: 3420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + pos: 18.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6633 + - uid: 3707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,16.5 + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 parent: 31 - - uid: 6634 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3834 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-16.5 + pos: 8.5,-13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6642 + - uid: 3860 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-16.5 + pos: -37.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6647 + - uid: 3940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,11.5 - parent: 31 - - uid: 6693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-17.5 + pos: -35.5,13.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6696 + - uid: 4181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-16.5 + pos: -8.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6712 + - uid: 4347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6713 + color: '#0055CCFF' + - uid: 4372 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-15.5 + pos: 63.5,2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6714 + - uid: 4552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-16.5 + pos: 68.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6715 + - uid: 4571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 + rot: 1.5707963267948966 rad + pos: 69.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6716 + - uid: 4650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-16.5 + pos: 67.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6717 + - uid: 4708 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-16.5 + pos: 33.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6718 + - uid: 4731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 + pos: 38.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6719 + - uid: 5064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-16.5 + rot: 3.141592653589793 rad + pos: 7.5,25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6727 + color: '#0055CCFF' + - uid: 5342 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,12.5 + pos: 4.5,-17.5 parent: 31 - - uid: 6734 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5374 components: - type: Transform - pos: 30.5,22.5 + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6741 + - uid: 5380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,2.5 + pos: 8.5,-20.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6749 + - uid: 5392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,25.5 + pos: 3.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6755 + - uid: 5396 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,5.5 + pos: 7.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6765 + - uid: 5397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,9.5 + rot: 3.141592653589793 rad + pos: 9.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6766 + - uid: 5399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,9.5 + rot: 3.141592653589793 rad + pos: 8.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6820 + color: '#0055CCFF' + - uid: 5405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,14.5 + rot: 3.141592653589793 rad + pos: 13.5,5.5 parent: 31 - - uid: 6830 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5419 components: - type: Transform - pos: 68.5,8.5 + rot: 3.141592653589793 rad + pos: 15.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6834 + - uid: 5422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,14.5 + pos: 10.5,5.5 parent: 31 - - uid: 6842 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5424 components: - type: Transform - pos: 68.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6895 + - uid: 5425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,16.5 + pos: 22.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6896 + - uid: 5430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,17.5 + pos: 28.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6925 + color: '#0055CCFF' + - uid: 5439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,12.5 + rot: 3.141592653589793 rad + pos: 26.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6926 + - uid: 5458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,12.5 + rot: 3.141592653589793 rad + pos: 14.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6945 + color: '#0055CCFF' + - uid: 5459 components: - type: Transform - pos: 48.5,1.5 + pos: 16.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7072 + color: '#990000FF' + - uid: 5464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,2.5 + rot: 3.141592653589793 rad + pos: 21.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7073 + color: '#990000FF' + - uid: 5465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,2.5 + rot: 3.141592653589793 rad + pos: 22.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7075 + - uid: 5470 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,10.5 + pos: 3.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7076 + color: '#0055CCFF' + - uid: 5471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,10.5 + pos: 20.5,10.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7129 + - uid: 5481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-8.5 + rot: 3.141592653589793 rad + pos: 20.5,11.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7131 + - uid: 5488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 + pos: 9.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7132 + - uid: 5491 components: - type: Transform - pos: 34.5,20.5 + rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 31 - - uid: 7143 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-8.5 + pos: -8.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7152 + - uid: 5516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 + rot: 3.141592653589793 rad + pos: -1.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7156 + color: '#0055CCFF' + - uid: 5528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 + pos: -13.5,0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7175 + - uid: 5571 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-9.5 + pos: 11.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7179 + - uid: 5572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,2.5 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7180 + - uid: 5574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,2.5 + rot: 3.141592653589793 rad + pos: 15.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7182 + - uid: 5577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,2.5 + pos: 15.5,-10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7205 + color: '#990000FF' + - uid: 5579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,3.5 + pos: 12.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7206 + - uid: 5584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,3.5 + pos: 12.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7207 + color: '#0055CCFF' + - uid: 5586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,3.5 + rot: 3.141592653589793 rad + pos: 16.5,-8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7208 + color: '#0055CCFF' + - uid: 5587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,3.5 + rot: 3.141592653589793 rad + pos: 17.5,-10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7210 + - uid: 5592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,3.5 + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7212 + - uid: 5600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,2.5 + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7257 + - uid: 5626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-10.5 + pos: 15.5,-15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7266 + color: '#0055CCFF' + - uid: 5686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-11.5 + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7267 + color: '#0055CCFF' + - uid: 5715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-12.5 + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7268 + color: '#0055CCFF' + - uid: 5769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-13.5 + rot: 1.5707963267948966 rad + pos: -8.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7270 + - uid: 5772 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-8.5 + pos: -24.5,-3.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7271 + color: '#0055CCFF' + - uid: 5801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 + rot: 1.5707963267948966 rad + pos: 2.5,12.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7309 + - uid: 5806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,24.5 + rot: 1.5707963267948966 rad + pos: 2.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7311 + - uid: 5807 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,25.5 + pos: 4.5,19.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7312 + color: '#0055CCFF' + - uid: 5812 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,25.5 + pos: 4.5,26.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7382 + color: '#0055CCFF' + - uid: 5822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,11.5 + rot: 1.5707963267948966 rad + pos: 2.5,23.5 parent: 31 - - uid: 7413 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5829 components: - type: Transform - pos: 2.5,-19.5 + rot: 1.5707963267948966 rad + pos: 2.5,18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7419 + - uid: 5834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,5.5 + rot: 1.5707963267948966 rad + pos: 4.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7470 + - uid: 5835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-2.5 + rot: -1.5707963267948966 rad + pos: 4.5,13.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7557 + - uid: 5856 components: - type: Transform - pos: -24.5,13.5 + pos: 3.5,25.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7693 + - uid: 5867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,25.5 + pos: 7.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7727 + - uid: 5881 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,4.5 + pos: 7.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7728 + - uid: 5955 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,5.5 + pos: -1.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7729 + - uid: 5960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,6.5 + pos: -2.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7730 + color: '#0055CCFF' + - uid: 5963 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,6.5 + pos: -4.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7731 + - uid: 5964 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,7.5 + pos: -5.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7732 + color: '#990000FF' + - uid: 5969 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,8.5 + rot: 1.5707963267948966 rad + pos: -5.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7733 + color: '#990000FF' + - uid: 5973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,9.5 + rot: 1.5707963267948966 rad + pos: -4.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7734 + - uid: 5980 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,10.5 + pos: -8.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7735 + color: '#990000FF' + - uid: 5989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,11.5 + rot: -1.5707963267948966 rad + pos: -8.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7736 + color: '#990000FF' + - uid: 5994 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,12.5 + pos: -7.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7738 + - uid: 6000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,7.5 + rot: -1.5707963267948966 rad + pos: -8.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7739 + - uid: 6010 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,8.5 + pos: -11.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7740 + color: '#0055CCFF' + - uid: 6050 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,9.5 + pos: -14.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7741 + - uid: 6051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,10.5 + pos: -11.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7742 + color: '#0055CCFF' + - uid: 6079 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,11.5 + pos: -22.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7743 + - uid: 6084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,12.5 + pos: -25.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7801 + color: '#0055CCFF' + - uid: 6112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 + pos: -16.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7817 + color: '#0055CCFF' + - uid: 6114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,25.5 + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 31 + - uid: 6135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7825 + - uid: 6136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,25.5 + pos: -29.5,5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7828 + color: '#0055CCFF' + - uid: 6199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,25.5 + rot: 3.141592653589793 rad + pos: 41.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 7829 + - uid: 6204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,25.5 + pos: 44.5,6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8049 + color: '#0055CCFF' + - uid: 6213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,25.5 + rot: 1.5707963267948966 rad + pos: 20.5,15.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8089 + - uid: 6216 components: - type: Transform - pos: 62.5,4.5 + rot: 3.141592653589793 rad + pos: 43.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8214 + color: '#990000FF' + - uid: 6223 components: - type: Transform - pos: 31.5,18.5 + rot: 3.141592653589793 rad + pos: 46.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8415 + color: '#0055CCFF' + - uid: 6226 components: - type: Transform - pos: 7.5,18.5 + pos: 47.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8437 + - uid: 6249 components: - type: Transform - pos: 31.5,17.5 + rot: 1.5707963267948966 rad + pos: 22.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8470 + color: '#0055CCFF' + - uid: 6334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8494 + color: '#0055CCFF' + - uid: 6532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,25.5 + pos: -23.5,-18.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8505 + color: '#0055CCFF' + - uid: 6571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,25.5 + rot: 1.5707963267948966 rad + pos: -22.5,-18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8516 + - uid: 6748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,25.5 + rot: 1.5707963267948966 rad + pos: 62.5,8.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8521 + color: '#0055CCFF' + - uid: 6756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,25.5 + rot: 1.5707963267948966 rad + pos: 62.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8564 + color: '#0055CCFF' + - uid: 6763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,25.5 + rot: 1.5707963267948966 rad + pos: 66.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8569 + - uid: 6828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,25.5 + pos: 69.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8755 + - uid: 6943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,25.5 + pos: 49.5,3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8776 + - uid: 6944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 + pos: 48.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8777 + color: '#0055CCFF' + - uid: 7095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,10.5 + rot: 3.141592653589793 rad + pos: -22.5,19.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8778 + color: '#0055CCFF' + - uid: 7159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,10.5 + pos: 8.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8779 + color: '#0055CCFF' + - uid: 7352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,10.5 + pos: 66.5,6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8780 + - uid: 7369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,10.5 + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 31 + - uid: 7412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8781 + - uid: 7457 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,10.5 + pos: -23.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 8785 + - uid: 7465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,11.5 + pos: 4.5,-29.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8786 + - uid: 7504 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,11.5 + pos: -36.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8787 + color: '#990000FF' + - uid: 7547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,11.5 + pos: 64.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8788 + - uid: 8105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,11.5 + pos: -9.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8789 + - uid: 8106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,11.5 + pos: -7.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8790 + color: '#990000FF' + - uid: 8783 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,11.5 + pos: -5.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8791 + - uid: 8872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,11.5 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8792 + color: '#990000FF' + - uid: 8877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + pos: 34.5,5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8793 + - uid: 8878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: 35.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8992 + color: '#990000FF' + - uid: 10041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,13.5 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 31 - - uid: 9014 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10251 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,25.5 + pos: -35.5,-6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9015 + color: '#0055CCFF' + - uid: 10401 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,25.5 + pos: -23.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9016 + - uid: 10414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,25.5 + rot: 1.5707963267948966 rad + pos: 31.5,16.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9017 + - uid: 10415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,25.5 + pos: -2.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9018 + color: '#0055CCFF' + - uid: 10429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,25.5 + pos: -7.5,-26.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,13.5 - parent: 31 - - uid: 9176 + - uid: 10430 components: - type: Transform - pos: -37.5,-0.5 + rot: -1.5707963267948966 rad + pos: -8.5,-27.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9177 + color: '#0055CCFF' + - uid: 10515 components: - type: Transform - pos: -37.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9178 + color: '#0055CCFF' + - uid: 10910 components: - type: Transform - pos: -37.5,-3.5 + rot: 1.5707963267948966 rad + pos: 49.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9199 + - uid: 10911 components: - type: Transform - pos: -37.5,-1.5 + pos: 53.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9201 + - uid: 10912 components: - type: Transform - pos: -37.5,-4.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 9222 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 10931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,14.5 + rot: 1.5707963267948966 rad + pos: 48.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9223 + - uid: 10943 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,15.5 + pos: 51.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9349 + color: '#0055CCFF' + - uid: 10954 components: - type: Transform - pos: -25.5,17.5 + rot: 3.141592653589793 rad + pos: 48.5,-8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9350 + - uid: 11406 components: - type: Transform - pos: -25.5,18.5 + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9351 + - uid: 11574 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,19.5 + pos: -23.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9352 + - uid: 11582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,19.5 + pos: -26.5,-21.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9816 + - uid: 11583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-29.5 + pos: -25.5,-22.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 10024 + - uid: 11592 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-11.5 + pos: -22.5,-25.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10026 + color: '#0055CCFF' + - uid: 11801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-11.5 + pos: 74.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 10031 + - uid: 11807 components: - type: Transform - pos: 62.5,6.5 + rot: 3.141592653589793 rad + pos: 75.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10039 + - uid: 11808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + rot: 3.141592653589793 rad + pos: 74.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10120 + color: '#0055CCFF' + - uid: 11809 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,22.5 + pos: 73.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10122 + color: '#0055CCFF' + - uid: 11873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,15.5 + pos: 67.5,-1.5 parent: 31 - - uid: 10247 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11874 components: - type: Transform - pos: -37.5,-7.5 + pos: 68.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10248 + color: '#0055CCFF' + - uid: 11875 components: - type: Transform - pos: -37.5,-6.5 + rot: 3.141592653589793 rad + pos: 66.5,-1.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10249 + color: '#0055CCFF' + - uid: 11876 components: - type: Transform - pos: -35.5,-7.5 + pos: 65.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10250 + - uid: 11880 components: - type: Transform - pos: -35.5,-8.5 + rot: 1.5707963267948966 rad + pos: 66.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10378 + - uid: 11881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 + rot: 3.141592653589793 rad + pos: 67.5,0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10379 + - uid: 12148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-29.5 + pos: 34.5,13.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10380 + - uid: 12249 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-29.5 + pos: 33.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10382 +- proto: GasPort + entities: + - uid: 188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 + pos: -11.5,-28.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10383 + - uid: 1329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 31 + - uid: 6502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-28.5 + pos: 31.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 10384 + - uid: 6854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,6.5 + parent: 31 + - uid: 6893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-28.5 + pos: 31.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 10387 + - uid: 11147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 + pos: 63.5,4.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10388 + - uid: 11886 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-5.5 + pos: 68.5,-3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10389 + - uid: 11887 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-6.5 + pos: 67.5,-3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10390 + - uid: 12045 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-7.5 + pos: 63.5,5.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10391 + - uid: 12153 components: + - type: MetaData + desc: A note attached reads, "Your gas supply is large, but finite. Buy more gas from Logistics if you run out." + name: gas input - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-8.5 + pos: 31.5,13.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10392 + - uid: 12553 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-9.5 + pos: 34.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10393 + - uid: 12554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-10.5 + rot: -1.5707963267948966 rad + pos: 68.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10394 + - uid: 12555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-11.5 + pos: 36.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10396 + - uid: 12557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-13.5 + pos: 38.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10397 + - uid: 12559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-4.5 + pos: 40.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10398 + - uid: 12561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-5.5 + pos: 42.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10399 + - uid: 12563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-6.5 + pos: 44.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10400 + - uid: 12564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-7.5 + pos: 44.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10402 + - uid: 12565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-9.5 + pos: 46.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10403 +- proto: GasPressurePump + entities: + - uid: 555 components: + - type: MetaData + desc: A pump that moves tritium by pressure. + name: tritium pump - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-10.5 + pos: 45.5,17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10405 + - type: GasPressurePump + targetPressure: 1 + - uid: 842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + pos: -12.5,-29.5 + parent: 31 + - uid: 905 + components: + - type: MetaData + desc: A pump that moves O2 by pressure. + name: O2 pump + - type: Transform + pos: 37.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10414 + color: '#0055CCFF' + - uid: 1513 components: + - type: MetaData + desc: A pump that moves N2O by pressure. + name: N2O pump - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,16.5 + pos: 39.5,17.5 parent: 31 - - uid: 10432 + - type: GasPressurePump + targetPressure: 1 + - uid: 1517 components: + - type: MetaData + desc: A pump that moves N2 by pressure. + name: N2 pump - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 + pos: 35.5,17.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10433 + - uid: 1570 components: + - type: MetaData + desc: A pump that moves plasma by pressure. + name: plasma pump - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-14.5 + pos: 43.5,17.5 + parent: 31 + - type: GasPressurePump + targetPressure: 1 + - uid: 1573 + components: + - type: MetaData + desc: A pump that moves CO2 by pressure. + name: CO2 pump + - type: Transform + pos: 41.5,17.5 + parent: 31 + - type: GasPressurePump + targetPressure: 1 + - uid: 3765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10434 + color: '#990000FF' + - uid: 4124 components: + - type: MetaData + name: atmos to active coolant - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 63.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10443 + - uid: 4363 components: + - type: MetaData + name: passive coolant removal - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 + pos: 63.5,6.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10450 + - uid: 4388 components: + - type: MetaData + name: waste to filters - type: Transform - pos: -8.5,-23.5 + rot: 3.141592653589793 rad + pos: 33.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10451 + color: '#990000FF' + - uid: 4389 components: + - type: MetaData + name: atmos to distro - type: Transform - pos: -8.5,-24.5 + pos: 34.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10452 + - uid: 6351 components: + - type: MetaData + desc: A pump that moves H2O by pressure. + name: H2O pump - type: Transform - pos: -8.5,-25.5 + pos: 47.5,17.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10453 + - uid: 7663 components: - type: Transform - pos: -8.5,-26.5 + pos: 9.5,-15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10454 + - uid: 9058 components: + - type: MetaData + name: gas mix to Supermatter coolant - type: Transform - pos: -8.5,-28.5 + rot: 1.5707963267948966 rad + pos: 48.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10455 + - uid: 9079 components: + - type: MetaData + name: supermatter waste gas - type: Transform - pos: -8.5,-29.5 + pos: 31.5,17.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10456 + color: '#990000FF' + - uid: 11026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-27.5 + pos: 44.5,13.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10457 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-27.5 + rot: 1.5707963267948966 rad + pos: 44.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10458 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11149 components: + - type: MetaData + name: passive coolant input - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-27.5 + pos: 63.5,3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10459 + - uid: 11294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-27.5 + rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11884 + components: + - type: MetaData + name: active coolant removal + - type: Transform + pos: 67.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10460 + - uid: 11885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-27.5 + rot: 3.141592653589793 rad + pos: 68.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10461 + - uid: 12556 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-27.5 + pos: 67.5,10.5 + parent: 31 +- proto: GasThermoMachineFreezer + entities: + - uid: 5552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 31 + - uid: 6720 + components: + - type: Transform + pos: 62.5,9.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10462 + - uid: 8125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 31 + - uid: 8860 + components: + - type: Transform + pos: 38.5,11.5 + parent: 31 + - uid: 11878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-2.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10469 + - uid: 11879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 + rot: 3.141592653589793 rad + pos: 65.5,-2.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10470 + color: '#0055CCFF' + - uid: 12251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 + pos: 32.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10471 + color: '#0055CCFF' +- proto: GasThermoMachineHeater + entities: + - uid: 8861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 + pos: 39.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10472 + - uid: 12252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 + pos: 33.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10479 + color: '#0055CCFF' +- proto: GasValve + entities: + - uid: 8455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 + rot: 3.141592653589793 rad + pos: 66.5,9.5 parent: 31 - - uid: 10483 + - uid: 9077 components: + - type: MetaData + name: atmos to core coolant - type: Transform - pos: -7.5,-20.5 + pos: 64.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10484 + color: '#0055CCFF' + - uid: 9508 components: - type: Transform - pos: -7.5,-21.5 + rot: 3.141592653589793 rad + pos: 48.5,17.5 parent: 31 + - type: GasValve + open: False - type: AtmosPipeColor color: '#990000FF' - - uid: 10485 +- proto: GasVentPump + entities: + - uid: 65 components: - type: Transform - pos: -7.5,-22.5 + pos: 15.5,-7.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10486 + color: '#0055CCFF' + - uid: 100 components: - type: Transform - pos: -7.5,-23.5 + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10487 + color: '#0055CCFF' + - uid: 716 components: - type: Transform - pos: -7.5,-24.5 + pos: 7.5,26.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10488 + color: '#0055CCFF' + - uid: 977 components: - type: Transform - pos: -7.5,-25.5 + pos: 10.5,26.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10489 + color: '#0055CCFF' + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-26.5 + pos: 21.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10490 + color: '#0055CCFF' + - uid: 1230 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-26.5 + pos: 9.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10491 + color: '#0055CCFF' + - uid: 1305 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-26.5 + pos: -18.5,-12.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10492 + color: '#0055CCFF' + - uid: 1688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-26.5 + pos: -36.5,18.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10493 + color: '#0055CCFF' + - uid: 2213 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-26.5 + pos: 10.5,-14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10494 + color: '#0055CCFF' + - uid: 3116 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-26.5 + pos: 26.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10914 + color: '#0055CCFF' + - uid: 3368 components: - type: Transform - pos: 49.5,-2.5 + pos: -5.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10915 + color: '#0055CCFF' + - uid: 3419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-3.5 + pos: 12.5,26.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10916 + color: '#0055CCFF' + - uid: 3835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-3.5 + rot: 3.141592653589793 rad + pos: 19.5,-17.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10917 + color: '#0055CCFF' + - uid: 4013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-3.5 + rot: 3.141592653589793 rad + pos: -9.5,-22.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10918 + color: '#0055CCFF' + - uid: 4185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-3.5 + pos: -7.5,20.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10919 + color: '#0055CCFF' + - uid: 4266 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-3.5 + pos: 23.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10920 + color: '#0055CCFF' + - uid: 4267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-4.5 + rot: -1.5707963267948966 rad + pos: 26.5,16.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10921 + color: '#0055CCFF' + - uid: 4303 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-5.5 + pos: -2.5,-15.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10922 + color: '#0055CCFF' + - uid: 4468 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-6.5 + pos: 15.5,-28.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10923 + color: '#0055CCFF' + - uid: 4484 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-7.5 + pos: -35.5,-9.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10924 + color: '#0055CCFF' + - uid: 5365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-8.5 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10925 + color: '#0055CCFF' + - uid: 5472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 + pos: 3.5,6.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10926 + color: '#0055CCFF' + - uid: 5476 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-10.5 + pos: 22.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10927 + color: '#0055CCFF' + - uid: 5479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-7.5 + pos: 14.5,11.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10928 + color: '#0055CCFF' + - uid: 5495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 + pos: 8.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10932 + color: '#0055CCFF' + - uid: 5542 components: - type: Transform - pos: 48.5,-2.5 + pos: -12.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10933 + - uid: 5543 components: - type: Transform - pos: 48.5,-3.5 + pos: -1.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10934 + - uid: 5546 components: - type: Transform - pos: 48.5,-4.5 + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10935 + - uid: 5605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-5.5 + pos: 16.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10936 + - uid: 5606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10937 + - uid: 5638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-5.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10938 + - uid: 5666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-5.5 + pos: 23.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10939 + - uid: 5698 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-5.5 + pos: 9.5,-25.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10940 + - uid: 5700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-5.5 + rot: 3.141592653589793 rad + pos: -12.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10941 + - uid: 5848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10942 + - uid: 5868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,24.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10944 + - uid: 5869 components: - type: Transform - pos: 48.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,25.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10945 + - uid: 5870 components: - type: Transform - pos: 48.5,-7.5 + pos: 4.5,30.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10946 + - uid: 5929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-8.5 + pos: -21.5,23.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10947 + - uid: 5941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-8.5 + pos: 13.5,14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10948 + - uid: 5950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-8.5 + rot: 1.5707963267948966 rad + pos: 7.5,9.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10949 + - uid: 6018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-8.5 + rot: 1.5707963267948966 rad + pos: -12.5,15.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10950 + - uid: 6033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-8.5 + pos: -12.5,19.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10951 + - uid: 6041 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-8.5 + pos: -0.5,7.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10952 + - uid: 6043 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-9.5 + pos: -2.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10953 + - uid: 6071 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-10.5 + pos: -11.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11049 + - uid: 6118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,11.5 + rot: 1.5707963267948966 rad + pos: -27.5,8.5 parent: 31 - - uid: 11058 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6119 components: - type: Transform - pos: 48.5,19.5 + rot: 3.141592653589793 rad + pos: -25.5,4.5 parent: 31 - - uid: 11063 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6138 components: - type: Transform - pos: 46.5,20.5 + rot: 3.141592653589793 rad + pos: -29.5,4.5 parent: 31 - - uid: 11064 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6151 components: - type: Transform - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: -36.5,5.5 parent: 31 - - uid: 11065 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6169 components: - type: Transform - pos: 47.5,20.5 + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 parent: 31 - - uid: 11066 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6184 components: - type: Transform - pos: 47.5,19.5 + rot: 3.141592653589793 rad + pos: 34.5,4.5 parent: 31 - - uid: 11067 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6197 components: - type: Transform - pos: 47.5,18.5 + rot: 3.141592653589793 rad + pos: 39.5,4.5 parent: 31 - - uid: 11068 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6262 components: - type: Transform - pos: 46.5,19.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 31 - - uid: 11079 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,11.5 + pos: 38.5,-0.5 parent: 31 - - uid: 11082 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 + rot: 3.141592653589793 rad + pos: 32.5,-2.5 parent: 31 - - uid: 11093 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,11.5 + pos: 51.5,-4.5 parent: 31 - - uid: 11171 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,3.5 + rot: -1.5707963267948966 rad + pos: 47.5,8.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11289 + - uid: 7099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,13.5 + pos: 32.5,11.5 parent: 31 - - uid: 11292 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,12.5 + pos: 56.5,1.5 parent: 31 - - uid: 11293 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,11.5 + pos: -3.5,-21.5 parent: 31 - - uid: 11401 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-5.5 + pos: -35.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11402 + color: '#0055CCFF' + - uid: 8384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-4.5 + rot: 3.141592653589793 rad + pos: 47.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11403 + - uid: 8417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-4.5 + rot: 3.141592653589793 rad + pos: 8.5,17.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11404 + - uid: 8794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-4.5 + pos: -16.5,11.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11405 + - uid: 8873 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-4.5 + pos: 3.5,13.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11437 + - uid: 8875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,19.5 + rot: 3.141592653589793 rad + pos: 28.5,4.5 parent: 31 - - uid: 11439 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 46.5,3.5 parent: 31 - - uid: 11469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,12.5 + rot: 3.141592653589793 rad + pos: 10.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11554 + color: '#0055CCFF' + - uid: 10376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,-30.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11555 + - uid: 10377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 + rot: 3.141592653589793 rad + pos: 0.5,-30.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11556 + - uid: 10386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-14.5 + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11557 + - uid: 10407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-14.5 + rot: 3.141592653589793 rad + pos: -24.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11558 + - uid: 10424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 + rot: 3.141592653589793 rad + pos: -8.5,-30.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11559 + - uid: 10427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 + rot: 1.5707963267948966 rad + pos: -16.5,-27.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11560 + - uid: 10929 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-14.5 + pos: 56.5,-9.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11561 + - uid: 10930 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-14.5 + pos: 58.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11562 + - uid: 11399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-14.5 + pos: -40.5,-3.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11563 + - uid: 11570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-14.5 + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11564 + - uid: 11571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-14.5 + rot: 3.141592653589793 rad + pos: -26.5,-24.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11565 + - uid: 11608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-14.5 + rot: 1.5707963267948966 rad + pos: -32.5,-22.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11566 +- proto: GasVentScrubber + entities: + - uid: 95 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + rot: 3.141592653589793 rad + pos: 15.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11568 + color: '#990000FF' + - uid: 753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-18.5 + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11575 + color: '#990000FF' + - uid: 867 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-19.5 + pos: 7.5,23.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11576 + color: '#990000FF' + - uid: 1029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-20.5 + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11577 + color: '#990000FF' + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-19.5 + pos: 10.5,23.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11578 + - uid: 1140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-20.5 + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11579 + - uid: 1542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-21.5 + pos: 35.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11580 + - uid: 2208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-21.5 + pos: -38.5,18.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11581 + color: '#990000FF' + - uid: 3117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-21.5 + pos: 21.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11584 + color: '#990000FF' + - uid: 3118 components: - type: Transform - pos: -25.5,-23.5 + rot: -1.5707963267948966 rad + pos: 26.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11585 + - uid: 3274 components: - type: Transform - pos: -26.5,-23.5 + pos: 41.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11586 + color: '#990000FF' + - uid: 3840 components: - type: Transform - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: 18.5,-18.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11587 + color: '#990000FF' + - uid: 4279 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-22.5 + pos: 26.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11588 + - uid: 4436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-22.5 + rot: 3.141592653589793 rad + pos: -3.5,-17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11589 + - uid: 4486 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-22.5 + pos: -37.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11593 + color: '#990000FF' + - uid: 4701 components: - type: Transform - pos: -22.5,-26.5 + rot: -1.5707963267948966 rad + pos: -7.5,21.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11594 + color: '#990000FF' + - uid: 4783 components: - type: Transform - pos: -22.5,-24.5 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11598 + color: '#990000FF' + - uid: 5332 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + pos: 3.5,-6.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5474 + components: + - type: Transform + pos: 7.5,4.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5477 + components: + - type: Transform + pos: 21.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11599 + color: '#990000FF' + - uid: 5478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-22.5 + rot: 3.141592653589793 rad + pos: 16.5,10.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11600 + - uid: 5496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-22.5 + rot: 3.141592653589793 rad + pos: 9.5,-0.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11601 + - uid: 5541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 + rot: 3.141592653589793 rad + pos: -13.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11602 + color: '#990000FF' + - uid: 5544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-21.5 + rot: 3.141592653589793 rad + pos: -8.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11606 + color: '#990000FF' + - uid: 5545 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-21.5 + pos: -19.5,0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11607 + color: '#990000FF' + - uid: 5597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-22.5 + pos: 17.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11610 + - uid: 5607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11759 + - uid: 5637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,21.5 + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11760 + - uid: 5665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,20.5 + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11761 + - uid: 5704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,19.5 + rot: -1.5707963267948966 rad + pos: 3.5,-28.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11762 + - uid: 5765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,18.5 + rot: -1.5707963267948966 rad + pos: -7.5,13.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11763 + - uid: 5849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,17.5 + rot: -1.5707963267948966 rad + pos: 3.5,18.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11764 + - uid: 5864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,16.5 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11765 + - uid: 5865 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,15.5 + rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11766 + - uid: 5871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,14.5 + pos: 2.5,30.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11767 + - uid: 5883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,13.5 + rot: -1.5707963267948966 rad + pos: 9.5,17.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11768 + - uid: 5951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 + pos: 9.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11769 + - uid: 6024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,13.5 + pos: -12.5,14.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11802 + - uid: 6032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,10.5 + rot: 1.5707963267948966 rad + pos: -12.5,20.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11803 + - uid: 6042 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,10.5 + pos: -0.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11804 + - uid: 6044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,10.5 + pos: -1.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11805 + - uid: 6080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,9.5 + pos: -14.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 11870 + - uid: 6117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,2.5 + pos: -27.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11871 + color: '#990000FF' + - uid: 6120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,1.5 + pos: -22.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11872 + color: '#990000FF' + - uid: 6137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 + pos: -30.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11883 + color: '#990000FF' + - uid: 6152 components: - type: Transform - pos: 66.5,-0.5 + pos: -36.5,4.5 parent: 31 -- proto: GasPipeTJunction - entities: - - uid: 53 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6168 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,25.5 + pos: -36.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 97 + color: '#990000FF' + - uid: 6267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 + rot: 3.141592653589793 rad + pos: 39.5,-0.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 351 + color: '#990000FF' + - uid: 6276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 + rot: 3.141592653589793 rad + pos: 33.5,-1.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 536 + - uid: 6413 components: - type: Transform - pos: -3.5,-16.5 + rot: -1.5707963267948966 rad + pos: 47.5,9.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 926 + - uid: 6552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 + rot: -1.5707963267948966 rad + pos: 34.5,9.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1231 + color: '#990000FF' + - uid: 6581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,5.5 + pos: 21.5,15.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1723 + color: '#990000FF' + - uid: 7211 components: - type: Transform - pos: 37.5,5.5 + rot: -1.5707963267948966 rad + pos: 56.5,3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1796 + color: '#990000FF' + - uid: 7673 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-12.5 + pos: 7.5,-13.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2282 + color: '#990000FF' + - uid: 7745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,15.5 + pos: -37.5,14.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2868 + color: '#990000FF' + - uid: 8416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 + pos: 7.5,19.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3386 + color: '#990000FF' + - uid: 8438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-14.5 + pos: -3.5,-19.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3389 + - uid: 8795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-15.5 + rot: 1.5707963267948966 rad + pos: -16.5,10.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3390 + color: '#990000FF' + - uid: 8874 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,8.5 + pos: 3.5,12.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3420 + color: '#990000FF' + - uid: 8876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-11.5 + pos: 26.5,4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3707 + - uid: 8879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 + rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3834 + color: '#990000FF' + - uid: 10252 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-13.5 + pos: -36.5,-5.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3860 + - uid: 10375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,13.5 + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 3940 + - uid: 10385 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,13.5 + pos: -22.5,-3.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4181 + color: '#990000FF' + - uid: 10406 components: - type: Transform - pos: -8.5,-21.5 + rot: 3.141592653589793 rad + pos: -23.5,-13.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4347 + color: '#990000FF' + - uid: 10420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + pos: -8.5,-19.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4372 + color: '#990000FF' + - uid: 10425 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,2.5 + pos: -7.5,-27.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4552 + color: '#990000FF' + - uid: 10426 components: - type: Transform - pos: 68.5,9.5 + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4571 + - uid: 10495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,7.5 + rot: 3.141592653589793 rad + pos: -32.5,-14.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4650 + - uid: 10906 components: - type: Transform - pos: 67.5,4.5 + rot: 3.141592653589793 rad + pos: 49.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4708 + - uid: 10907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 + rot: 3.141592653589793 rad + pos: 56.5,-4.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 4731 + - uid: 10908 components: - type: Transform - pos: 38.5,3.5 + rot: -1.5707963267948966 rad + pos: 56.5,-7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5064 + - uid: 10909 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,25.5 + pos: 53.5,-11.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5342 + color: '#990000FF' + - uid: 11400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11569 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: -20.5,-18.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5374 + color: '#990000FF' + - uid: 11572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 + rot: 3.141592653589793 rad + pos: -25.5,-24.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor color: '#990000FF' - - uid: 5380 + - uid: 11596 components: - type: Transform - pos: 8.5,-20.5 + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5392 + - uid: 11597 components: - type: Transform - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: -21.5,-27.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5396 + color: '#0055CCFF' + - uid: 11609 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,3.5 + pos: -30.5,-23.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 11611 - type: AtmosPipeColor color: '#990000FF' - - uid: 5397 +- proto: GasVolumePump + entities: + - uid: 4547 components: + - type: MetaData + name: passive coolant volumetric pump - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,3.5 + rot: -1.5707963267948966 rad + pos: 68.5,8.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5399 + - uid: 10104 components: + - type: MetaData + name: passive coolant volumetric pump - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 + rot: -1.5707963267948966 rad + pos: 63.5,8.5 + parent: 31 + - uid: 10503 + components: + - type: Transform + pos: 76.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5405 + - uid: 10504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,5.5 + pos: 75.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5419 + - uid: 10505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 + pos: 74.5,4.5 parent: 31 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5422 + color: '#0055CCFF' + - uid: 10506 components: - type: Transform - pos: 10.5,5.5 + pos: 73.5,4.5 parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5424 + - uid: 11781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,3.5 + pos: 73.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5425 + - uid: 11782 components: - type: Transform - pos: 22.5,5.5 + pos: 74.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5430 + color: '#990000FF' + - uid: 11783 components: - type: Transform - pos: 28.5,5.5 + pos: 75.5,7.5 parent: 31 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5439 + color: '#990000FF' + - uid: 11784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,3.5 + pos: 76.5,7.5 parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5458 +- proto: Gauze + entities: + - uid: 1407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,10.5 + pos: 26.671059,21.801102 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5459 + - uid: 10830 components: - type: Transform - pos: 16.5,11.5 + pos: 12.447606,-4.278471 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5464 +- proto: GeigerCounterWallMount + entities: + - uid: 4350 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,11.5 + pos: 65.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5465 + - uid: 6954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 + rot: -1.5707963267948966 rad + pos: 54.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5470 + - uid: 6956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 58.5,4.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5471 + - uid: 9461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 31 +- proto: GlimmerProber + entities: + - uid: 11651 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 31 +- proto: GlowstickBase + entities: + - uid: 8848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.737583,15.662895 + parent: 31 + - uid: 8999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.649036,15.662895 + parent: 31 + - uid: 9037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.826128,15.662895 + parent: 31 +- proto: GlowstickBlue + entities: + - uid: 10987 + components: + - type: Transform + pos: 52.729786,-1.2094907 + parent: 31 +- proto: GravityGenerator + entities: + - uid: 7696 components: - type: Transform - pos: 20.5,10.5 + pos: 58.5,-2.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5481 +- proto: Grille + entities: + - uid: 47 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,11.5 + pos: 19.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5488 + - uid: 64 components: - type: Transform - pos: 9.5,0.5 + pos: 5.5,-4.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5491 + - uid: 77 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-1.5 + rot: 1.5707963267948966 rad + pos: 44.5,-14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5500 + - uid: 78 components: - type: Transform - pos: -8.5,0.5 + pos: 5.5,-5.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5516 + - uid: 101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 + pos: -48.5,-12.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5528 + - uid: 138 components: - type: Transform - pos: -13.5,0.5 + pos: -49.5,-12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5571 + - uid: 155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-10.5 + pos: 44.5,-20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5572 + - uid: 156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 + pos: 45.5,-19.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5574 + - uid: 249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 + pos: 11.5,-16.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5577 + - uid: 255 components: - type: Transform - pos: 15.5,-10.5 + pos: 11.5,-6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5579 + - uid: 267 components: - type: Transform - pos: 12.5,-10.5 + pos: -50.5,-8.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5584 + - uid: 338 components: - type: Transform - pos: 12.5,-8.5 + pos: -8.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5586 + - uid: 360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-8.5 + pos: -13.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5587 + - uid: 450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-10.5 + pos: -23.5,26.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5592 + - uid: 469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 + pos: -35.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5600 + - uid: 526 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-5.5 + pos: -15.5,-0.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5626 + - uid: 571 components: - type: Transform - pos: 15.5,-15.5 + pos: 2.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5686 + - uid: 608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-20.5 + pos: -14.5,-18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5715 + - uid: 653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-14.5 + pos: 39.5,26.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5769 + - uid: 655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,13.5 + pos: 35.5,26.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5772 + - uid: 657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 + pos: -37.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5801 + - uid: 665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,12.5 + pos: -41.5,5.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5806 + - uid: 711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,17.5 + pos: 17.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5807 + - uid: 749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 + pos: -44.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5812 + - uid: 751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 + pos: -42.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5822 + - uid: 754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 + pos: 36.5,26.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5829 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,18.5 + pos: 42.5,-14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5834 + - uid: 772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,14.5 + pos: -42.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5835 + - uid: 801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 + pos: -6.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5856 + - uid: 811 components: - type: Transform - pos: 3.5,25.5 + pos: -40.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5867 + - uid: 835 components: - type: Transform - pos: 7.5,24.5 + pos: 52.5,-2.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5881 + - uid: 855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,17.5 + pos: 52.5,-6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5955 + - uid: 856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 + pos: -42.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5960 + - uid: 858 components: - type: Transform - pos: -2.5,5.5 + pos: -44.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5963 + - uid: 877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 + pos: -4.5,32.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5964 + - uid: 904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,3.5 + pos: 40.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5969 + - uid: 937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,8.5 + pos: 19.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5973 + - uid: 1016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 + pos: 4.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5980 + - uid: 1022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,10.5 + pos: -40.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5989 + - uid: 1106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,14.5 + pos: 44.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5994 + - uid: 1131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,15.5 + pos: -41.5,4.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6000 + - uid: 1133 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,20.5 + pos: 18.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6010 + - uid: 1180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,15.5 + pos: -41.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6050 + - uid: 1192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,3.5 + pos: -19.5,2.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6051 + - uid: 1193 components: - type: Transform - pos: -11.5,5.5 + pos: -18.5,2.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6079 + - uid: 1225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,3.5 + pos: 25.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6084 + - uid: 1237 components: - type: Transform - pos: -25.5,5.5 + pos: -42.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6112 + - uid: 1278 components: - type: Transform - pos: -16.5,5.5 + pos: -10.5,19.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6114 + - uid: 1396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-16.5 + pos: 10.5,31.5 parent: 31 - - uid: 6135 + - uid: 1414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,3.5 + pos: -9.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6136 + - uid: 1416 components: - type: Transform - pos: -29.5,5.5 + pos: -13.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6199 + - uid: 1430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 + pos: -43.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6204 + - uid: 1434 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,6.5 + pos: -24.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6213 + - uid: 1435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,15.5 + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6216 + - uid: 1436 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,3.5 + pos: 23.5,-8.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6223 + - uid: 1443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 + pos: 37.5,26.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6226 + - uid: 1447 components: - type: Transform - pos: 47.5,3.5 + pos: 20.5,-10.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6249 + - uid: 1451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 + pos: -44.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6334 + - uid: 1452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,10.5 + pos: -41.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6410 + - uid: 1453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,21.5 + pos: -40.5,7.5 parent: 31 - - uid: 6532 + - uid: 1454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-18.5 + pos: -43.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6564 + - uid: 1455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,14.5 + pos: -40.5,9.5 parent: 31 - - uid: 6571 + - uid: 1456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-18.5 + pos: -41.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6644 + - uid: 1460 components: - type: Transform - pos: 36.5,13.5 + pos: -27.5,6.5 parent: 31 - - uid: 6748 + - uid: 1462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,8.5 + pos: -29.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6756 + - uid: 1468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,7.5 + pos: 20.5,-9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6763 + - uid: 1489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,4.5 + pos: -11.5,8.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6828 + - uid: 1491 components: - type: Transform - pos: 69.5,9.5 + pos: 13.5,-4.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6943 + - uid: 1522 components: - type: Transform - pos: 49.5,3.5 + pos: 46.5,-19.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6944 + - uid: 1526 components: - type: Transform - pos: 48.5,2.5 + pos: 23.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7095 + - uid: 1529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,19.5 + pos: 44.5,-21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7159 + - uid: 1547 components: - type: Transform - pos: 8.5,20.5 + pos: 42.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7369 + - uid: 1548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 + pos: 38.5,20.5 parent: 31 - - uid: 7412 + - uid: 1592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + pos: 19.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7457 + - uid: 1602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-3.5 + pos: 36.5,-0.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7465 + - uid: 1604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-29.5 + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 31 + - uid: 1614 + components: + - type: Transform + pos: 2.5,-35.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7504 + - uid: 1629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,0.5 + pos: 37.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8105 + - uid: 1663 components: - type: Transform - pos: -9.5,-14.5 + pos: 17.5,-14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8106 + - uid: 1666 components: - type: Transform - pos: -7.5,-16.5 + pos: 49.5,-6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8783 + - uid: 1692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 + pos: -43.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8872 + - uid: 1706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + pos: 41.5,26.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8877 + - uid: 1708 components: - type: Transform - pos: 34.5,5.5 + pos: 17.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8878 + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,3.5 + pos: 34.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10041 + - uid: 1710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 32.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10251 + - uid: 1720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 + pos: 32.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10401 + - uid: 1721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 + pos: 34.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10415 + - uid: 1722 components: - type: Transform - pos: -2.5,-14.5 + pos: 30.5,4.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10429 + - uid: 1728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-26.5 + pos: 1.5,-33.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10430 + - uid: 1741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-27.5 + pos: 44.5,-19.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10910 + - uid: 1757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-3.5 + pos: -49.5,-8.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10911 + - uid: 1759 components: - type: Transform - pos: 53.5,-3.5 + pos: 19.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10912 + - uid: 1760 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 53.5,-7.5 + pos: 20.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 10931 + - uid: 1761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 + pos: 21.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10943 + - uid: 1762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-5.5 + pos: 22.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10954 + - uid: 1777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-8.5 + pos: 17.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11406 + - uid: 1803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 + pos: 8.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11438 + - uid: 1871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,22.5 + pos: -1.5,27.5 parent: 31 - - uid: 11440 + - uid: 1872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,22.5 + pos: -0.5,27.5 parent: 31 - - uid: 11441 + - uid: 1874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,21.5 + pos: 10.5,29.5 parent: 31 - - uid: 11442 + - uid: 1875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,20.5 + pos: 9.5,31.5 parent: 31 - - uid: 11443 + - uid: 1879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,20.5 + pos: 7.5,33.5 parent: 31 - - uid: 11574 + - uid: 1880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 + pos: 6.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11582 + - uid: 1881 components: - type: Transform - pos: -26.5,-21.5 + pos: 5.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11583 + - uid: 1882 components: - type: Transform - pos: -25.5,-22.5 + pos: 4.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11592 + - uid: 1883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-25.5 + pos: 3.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11801 + - uid: 1884 components: - type: Transform - pos: 74.5,8.5 + pos: 2.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11807 + - uid: 1885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,3.5 + pos: 1.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11808 + - uid: 1886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5 + pos: 0.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11809 + - uid: 1887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,3.5 + pos: -0.5,33.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11873 + - uid: 1891 components: - type: Transform - pos: 67.5,-1.5 + pos: 6.5,19.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11874 + - uid: 1904 components: - type: Transform - pos: 68.5,-1.5 + pos: -7.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11875 + - uid: 1949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-1.5 + pos: -10.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11876 + - uid: 1959 components: - type: Transform - pos: 65.5,-1.5 + pos: -11.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11880 + - uid: 1969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,0.5 + pos: -10.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11881 + - uid: 1996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,0.5 + pos: -7.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPort - entities: - - uid: 188 + - uid: 2064 components: - type: Transform - pos: -11.5,-28.5 + pos: -28.5,6.5 parent: 31 - - uid: 1329 + - uid: 2095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 + pos: -25.5,9.5 parent: 31 - - uid: 6502 + - uid: 2099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,9.5 + pos: -9.5,8.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6854 + - uid: 2115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,6.5 + pos: 13.5,-1.5 parent: 31 - - uid: 6893 + - uid: 2136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,8.5 + pos: 8.5,-7.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11147 + - uid: 2149 components: - type: Transform - pos: 63.5,4.5 + pos: 11.5,2.5 parent: 31 - - uid: 11886 + - uid: 2150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-3.5 + pos: 10.5,2.5 parent: 31 - - uid: 11887 + - uid: 2151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-3.5 + pos: 9.5,2.5 parent: 31 - - uid: 12045 + - uid: 2152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,5.5 + pos: 8.5,2.5 parent: 31 -- proto: GasPressurePump - entities: - - uid: 555 + - uid: 2153 components: - - type: MetaData - desc: A pump that moves tritium by pressure. - name: tritium pump - type: Transform - pos: 45.5,17.5 + pos: 7.5,2.5 parent: 31 - - type: GasPressurePump - targetPressure: 1 - - uid: 842 + - uid: 2205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-29.5 + pos: 20.5,-5.5 parent: 31 - - uid: 905 + - uid: 2209 components: - - type: MetaData - desc: A pump that moves O2 by pressure. - name: O2 pump - type: Transform - pos: 37.5,17.5 + pos: -6.5,-20.5 parent: 31 - - uid: 1513 + - uid: 2245 components: - - type: MetaData - desc: A pump that moves N2O by pressure. - name: N2O pump - type: Transform - pos: 39.5,17.5 + pos: -7.5,6.5 parent: 31 - - type: GasPressurePump - targetPressure: 1 - - uid: 1517 + - uid: 2277 components: - - type: MetaData - desc: A pump that moves N2 by pressure. - name: N2 pump - type: Transform - pos: 35.5,17.5 + rot: 3.141592653589793 rad + pos: -16.5,-24.5 parent: 31 - - uid: 1570 + - uid: 2307 components: - - type: MetaData - desc: A pump that moves plasma by pressure. - name: plasma pump - type: Transform - pos: 43.5,17.5 + pos: -35.5,-22.5 parent: 31 - - type: GasPressurePump - targetPressure: 1 - - uid: 1573 + - uid: 2423 components: - - type: MetaData - desc: A pump that moves CO2 by pressure. - name: CO2 pump - type: Transform - pos: 41.5,17.5 + pos: 28.5,-14.5 parent: 31 - - type: GasPressurePump - targetPressure: 1 - - uid: 3765 + - uid: 2848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 parent: 31 - - uid: 4363 + - uid: 2849 components: - type: Transform - pos: 63.5,6.5 + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4388 + - uid: 3109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,11.5 + pos: 60.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4389 + - uid: 3152 components: - type: Transform - pos: 34.5,11.5 + pos: 47.5,-18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4474 + - uid: 3157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,8.5 + pos: 56.5,-25.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6351 + - uid: 3158 components: - - type: MetaData - desc: A pump that moves H2O by pressure. - name: H2O pump - type: Transform - pos: 47.5,17.5 + pos: 56.5,-24.5 parent: 31 - - uid: 6356 + - uid: 3415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,13.5 + pos: -16.5,-40.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 6636 + - uid: 3826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,13.5 + pos: -14.5,29.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 6903 + - uid: 3827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,20.5 + pos: -15.5,28.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7121 + - uid: 3828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,21.5 + pos: -18.5,29.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7220 + - uid: 3842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,22.5 + rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7225 + - uid: 4032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 + pos: 28.5,-13.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7310 + - uid: 4114 components: - - type: MetaData - name: supermatter waste gas - type: Transform - pos: 31.5,16.5 + pos: -12.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7663 + - uid: 4115 components: - type: Transform - pos: 9.5,-15.5 + pos: -3.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10449 + - uid: 4117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,15.5 + pos: -3.5,8.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 11026 + - uid: 4223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,13.5 + pos: -2.5,9.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 11080 + - uid: 4241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,11.5 + pos: 7.5,36.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 11149 + - uid: 4308 components: - type: Transform - pos: 63.5,3.5 + pos: 5.5,36.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11294 + - uid: 4376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,12.5 + pos: 41.5,-26.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 11447 + - uid: 4377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,15.5 + pos: 45.5,-29.5 parent: 31 - - type: GasPressurePump - targetPressure: 4500 - - uid: 11793 + - uid: 4386 components: - type: Transform - pos: 73.5,4.5 + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11794 + - uid: 4393 components: - type: Transform - pos: 74.5,4.5 + pos: 58.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11795 + - uid: 4394 components: - type: Transform - pos: 75.5,4.5 + pos: 61.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11796 + - uid: 4399 components: - type: Transform - pos: 76.5,4.5 + rot: 3.141592653589793 rad + pos: 54.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11884 + - uid: 4403 components: - type: Transform - pos: 67.5,-2.5 + rot: 3.141592653589793 rad + pos: 54.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11885 + - uid: 4445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-2.5 + pos: 59.5,-10.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasThermoMachineFreezer - entities: - - uid: 5552 + - uid: 4460 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-5.5 + pos: -17.5,-24.5 parent: 31 - - uid: 6720 + - uid: 4487 components: - type: Transform - pos: 62.5,9.5 + pos: 34.5,-13.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8125 + - uid: 4500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 + pos: 54.5,-7.5 parent: 31 - - uid: 8860 + - uid: 4510 components: - type: Transform - pos: 38.5,11.5 + pos: 31.5,-23.5 parent: 31 - - uid: 11878 + - uid: 4532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-2.5 + rot: -1.5707963267948966 rad + pos: 36.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11879 + - uid: 4595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-2.5 + pos: 41.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasThermoMachineHeater - entities: - - uid: 8861 + - uid: 4596 components: - type: Transform - pos: 39.5,11.5 + pos: 40.5,-22.5 parent: 31 -- proto: GasVentPump - entities: - - uid: 65 + - uid: 4597 components: - type: Transform - pos: 15.5,-7.5 + pos: 42.5,-26.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 100 + - uid: 4598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + pos: 44.5,-27.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 716 + - uid: 4599 components: - type: Transform - pos: 7.5,26.5 + pos: 44.5,-28.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 977 + - uid: 4600 components: - type: Transform - pos: 10.5,26.5 + pos: 44.5,-29.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1094 + - uid: 4612 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-9.5 + pos: 36.5,-26.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1230 + - uid: 4614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,20.5 + pos: 34.5,-12.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1305 + - uid: 4618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 + pos: 51.5,-30.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1688 + - uid: 4619 components: - type: Transform - pos: -36.5,18.5 + pos: 53.5,-29.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2213 + - uid: 4620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 + pos: 54.5,-28.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3116 + - uid: 4621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,9.5 + pos: 56.5,-26.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3368 + - uid: 4622 components: - type: Transform - pos: -5.5,16.5 + pos: 55.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3419 + - uid: 4624 components: - type: Transform - pos: 12.5,26.5 + pos: 56.5,-23.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3835 + - uid: 4625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 + pos: 56.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4013 + - uid: 4660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-22.5 + pos: 31.5,-25.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4185 + - uid: 4686 components: - type: Transform - pos: -7.5,20.5 + pos: 4.5,36.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4266 + - uid: 4702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,15.5 + pos: -9.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4267 + - uid: 4844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,16.5 + pos: 12.5,-32.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4303 + - uid: 4853 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-15.5 + pos: 58.5,3.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4468 + - uid: 4879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-28.5 + pos: -2.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4484 + - uid: 4881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-9.5 + pos: -0.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5365 + - uid: 4926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 + pos: 15.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5472 + - uid: 4928 components: - type: Transform - pos: 3.5,6.5 + pos: 15.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5476 + - uid: 5066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,4.5 + pos: -1.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5479 + - uid: 5067 components: - type: Transform - pos: 14.5,11.5 + pos: -3.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5495 + - uid: 5071 components: - type: Transform - pos: 8.5,-0.5 + pos: 13.5,1.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5542 + - uid: 5072 components: - type: Transform - pos: -12.5,-0.5 + pos: 13.5,-2.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5543 + - uid: 5082 components: - type: Transform - pos: -1.5,-0.5 + pos: 13.5,0.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5546 + - uid: 5102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 + pos: 51.5,-6.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5605 + - uid: 5111 components: - type: Transform - pos: 16.5,-0.5 + pos: -0.5,36.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5606 + - uid: 5117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 + pos: -3.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5638 + - uid: 5139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 + pos: 8.5,-11.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5666 + - uid: 5198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 + pos: -28.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5698 + - uid: 5199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -29.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5700 + - uid: 5215 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-3.5 + pos: -10.5,13.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5848 + - uid: 5227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 + pos: 11.5,-15.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5868 + - uid: 5244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,24.5 + pos: -39.5,21.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5869 + - uid: 5251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 + pos: -39.5,27.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5870 + - uid: 5313 components: - type: Transform - pos: 4.5,30.5 + pos: -43.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5929 + - uid: 5898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,23.5 + pos: -41.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5941 + - uid: 5978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 + pos: -54.5,-9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5950 + - uid: 6277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 + pos: -9.5,32.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6018 + - uid: 6280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 + pos: -10.5,32.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6033 + - uid: 6287 components: - type: Transform - pos: -12.5,19.5 + pos: 54.5,-8.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6041 + - uid: 6288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,7.5 + pos: -6.5,34.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6043 + - uid: 6366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 + pos: 22.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6071 + - uid: 6367 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,4.5 + pos: 40.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6118 + - uid: 6369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,8.5 + pos: 42.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6119 + - uid: 6380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 + pos: 39.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6138 + - uid: 6381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,4.5 + pos: 38.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6151 + - uid: 6383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 + pos: 37.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6169 + - uid: 6390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 + pos: 50.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6184 + - uid: 6391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,4.5 + pos: 35.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6197 + - uid: 6393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,4.5 + pos: 49.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6262 + - uid: 6394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 + pos: 48.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6268 + - uid: 6401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-0.5 + pos: 34.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6275 + - uid: 6405 + components: + - type: Transform + pos: 23.5,20.5 + parent: 31 + - uid: 6415 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-2.5 + pos: 54.5,17.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6294 + - uid: 6440 components: - type: Transform - pos: 51.5,-4.5 + pos: 43.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6478 + - uid: 6445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,8.5 + pos: 45.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7099 + - uid: 6453 components: - type: Transform - pos: 32.5,11.5 + rot: 3.141592653589793 rad + pos: 54.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7185 + - uid: 6455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 + pos: 33.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7335 + - uid: 6456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 + rot: 3.141592653589793 rad + pos: 54.5,16.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7746 + - uid: 6458 components: - type: Transform - pos: -35.5,14.5 + pos: 45.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8384 + - uid: 6464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-11.5 + pos: 45.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8417 + - uid: 6472 + components: + - type: Transform + pos: 47.5,18.5 + parent: 31 + - uid: 6481 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,17.5 + pos: 48.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8794 + - uid: 6503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 + rot: -1.5707963267948966 rad + pos: 55.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8873 + - uid: 6504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + pos: 44.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8875 + - uid: 6505 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,4.5 + pos: 49.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8880 + - uid: 6508 components: - type: Transform - pos: 46.5,3.5 + pos: 46.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8944 + - uid: 6539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,4.5 + pos: 47.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10376 + - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-30.5 + pos: 48.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10377 + - uid: 6565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-30.5 + pos: 46.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10386 + - uid: 6605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 + pos: 47.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10407 + - uid: 6606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-14.5 + pos: 48.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10424 + - uid: 6613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-30.5 + pos: 36.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10427 + - uid: 6641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-27.5 + pos: -41.5,-8.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10929 + - uid: 6645 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-9.5 + pos: 58.5,23.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10930 + - uid: 6721 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-5.5 + pos: 65.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11399 + - uid: 6725 components: - type: Transform - pos: -40.5,-3.5 + rot: -1.5707963267948966 rad + pos: 58.5,22.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11570 + - uid: 6726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 + rot: -1.5707963267948966 rad + pos: 53.5,24.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11571 + - uid: 6728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-24.5 + rot: -1.5707963267948966 rad + pos: 58.5,24.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11608 + - uid: 6729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-22.5 + rot: -1.5707963267948966 rad + pos: 56.5,24.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 95 + - uid: 6730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-11.5 + rot: -1.5707963267948966 rad + pos: 57.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 753 + - uid: 6731 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 52.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 867 + - uid: 6733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,23.5 + pos: 58.5,0.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1029 + - uid: 6742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-16.5 + pos: 46.5,10.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1032 + - uid: 6812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,23.5 + rot: 1.5707963267948966 rad + pos: -10.5,-42.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1140 + - uid: 6815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 + pos: 41.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1542 + - uid: 6841 components: - type: Transform - pos: 35.5,4.5 + pos: 50.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2208 + - uid: 6844 components: - type: Transform - pos: -38.5,18.5 + pos: 49.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3117 + - uid: 6847 components: - type: Transform - pos: 21.5,12.5 + rot: 3.141592653589793 rad + pos: 51.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3118 + - uid: 6863 + components: + - type: Transform + pos: 27.5,22.5 + parent: 31 + - uid: 6868 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,10.5 + pos: 79.5,13.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3274 + - uid: 6873 components: - type: Transform - pos: 41.5,4.5 + pos: 59.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3840 + - uid: 6874 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-18.5 + pos: 50.5,24.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4279 + - uid: 6933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,17.5 + pos: 49.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4436 + - uid: 6950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-17.5 + pos: -7.5,34.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4486 + - uid: 6951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 + pos: -5.5,32.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4701 + - uid: 6952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,21.5 + pos: -10.5,31.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4783 + - uid: 6958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 + pos: 51.5,-31.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5332 + - uid: 6961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: 47.5,-31.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5473 + - uid: 6962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 + pos: 47.5,-30.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5474 + - uid: 6963 components: - type: Transform - pos: 7.5,4.5 + pos: 46.5,-29.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5477 + - uid: 6964 components: - type: Transform - pos: 21.5,4.5 + pos: 34.5,-14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5478 + - uid: 6967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,10.5 + pos: 40.5,-26.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5496 + - uid: 6971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-0.5 + pos: 42.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5541 + - uid: 7011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-0.5 + pos: 51.5,-18.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5544 + - uid: 7012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 + pos: 51.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5545 + - uid: 7013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,0.5 + pos: 50.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5597 + - uid: 7014 components: - type: Transform - pos: 17.5,-1.5 + pos: 49.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5607 + - uid: 7015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 + pos: 48.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5637 + - uid: 7016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + pos: 47.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5665 + - uid: 7017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 + pos: 52.5,-19.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5704 + - uid: 7018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 + pos: 53.5,-19.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5765 + - uid: 7019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,13.5 + pos: 54.5,-19.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5849 + - uid: 7020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,18.5 + pos: 54.5,-20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5864 + - uid: 7021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,24.5 + pos: 54.5,-21.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5865 + - uid: 7022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 + pos: 55.5,-26.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5871 + - uid: 7023 components: - type: Transform - pos: 2.5,30.5 + pos: 54.5,-27.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5883 + - uid: 7024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 + pos: 54.5,-29.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5951 + - uid: 7025 components: - type: Transform - pos: 9.5,9.5 + pos: 52.5,-29.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6024 + - uid: 7028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,14.5 + pos: -7.5,35.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6032 + - uid: 7038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,20.5 + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6042 + - uid: 7039 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,8.5 + pos: 35.5,-22.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6044 + - uid: 7044 components: - type: Transform - pos: -1.5,4.5 + pos: 28.5,-12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6080 + - uid: 7070 components: - type: Transform - pos: -14.5,4.5 + rot: -1.5707963267948966 rad + pos: 61.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6117 + - uid: 7112 components: - type: Transform - pos: -27.5,10.5 + rot: -1.5707963267948966 rad + pos: 73.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6120 + - uid: 7150 components: - type: Transform - pos: -22.5,4.5 + pos: -5.5,34.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6137 + - uid: 7186 components: - type: Transform - pos: -30.5,4.5 + rot: 1.5707963267948966 rad + pos: 66.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6152 + - uid: 7187 components: - type: Transform - pos: -36.5,4.5 + rot: 1.5707963267948966 rad + pos: 66.5,12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6168 + - uid: 7188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-0.5 + rot: -1.5707963267948966 rad + pos: 64.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6267 + - uid: 7192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-0.5 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6276 + - uid: 7193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-1.5 + rot: -1.5707963267948966 rad + pos: 61.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6413 + - uid: 7194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,9.5 + pos: 62.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6552 + - uid: 7195 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,9.5 + pos: 61.5,18.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6581 + - uid: 7196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,15.5 + pos: 60.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7211 + - uid: 7198 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,3.5 + pos: 59.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7673 + - uid: 7199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 + rot: -1.5707963267948966 rad + pos: 71.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7745 + - uid: 7200 components: - type: Transform - pos: -37.5,14.5 - parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8416 + rot: -1.5707963267948966 rad + pos: 72.5,14.5 + parent: 31 + - uid: 7201 components: - type: Transform - pos: 7.5,19.5 + rot: -1.5707963267948966 rad + pos: 76.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8438 + - uid: 7202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: 75.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8795 + - uid: 7203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,10.5 + rot: -1.5707963267948966 rad + pos: 77.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8874 + - uid: 7204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,12.5 + pos: 80.5,11.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8876 + - uid: 7213 components: - type: Transform - pos: 26.5,4.5 + rot: -1.5707963267948966 rad + pos: 78.5,13.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8879 + - uid: 7215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,2.5 + rot: -1.5707963267948966 rad + pos: 80.5,9.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10252 + - uid: 7216 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-5.5 + pos: 80.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10375 + - uid: 7217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-28.5 + rot: -1.5707963267948966 rad + pos: 80.5,6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10385 + - uid: 7221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-3.5 + pos: 34.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10406 + - uid: 7226 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-13.5 + pos: 36.5,20.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10420 + - uid: 7231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-19.5 + pos: 0.5,36.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10425 + - uid: 7233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-27.5 + pos: 13.5,-5.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10426 + - uid: 7274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 + pos: 12.5,-6.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10495 + - uid: 7304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-14.5 + rot: -1.5707963267948966 rad + pos: 61.5,19.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10906 + - uid: 7305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-4.5 + rot: -1.5707963267948966 rad + pos: 78.5,14.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10907 + - uid: 7307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-4.5 + pos: 1.5,-34.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10908 + - uid: 7358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-7.5 + pos: -42.5,15.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10909 + - uid: 7375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-11.5 + pos: 61.5,-10.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11400 + - uid: 7376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-5.5 + pos: 4.5,35.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11569 + - uid: 7425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-18.5 + pos: 61.5,-11.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11572 + - uid: 7447 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-24.5 + pos: 0.5,-32.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11596 + - uid: 7448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + rot: 3.141592653589793 rad + pos: -0.5,-32.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11597 + - uid: 7449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-27.5 + rot: 3.141592653589793 rad + pos: -1.5,-32.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11609 + - uid: 7450 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-23.5 + pos: -2.5,-32.5 parent: 31 - - type: DeviceNetwork - deviceLists: - - 11611 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasVolumePump - entities: - - uid: 4547 + - uid: 7471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,8.5 + pos: 11.5,-17.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6600 + - uid: 7472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,20.5 + pos: -31.5,19.5 parent: 31 - - type: GasVolumePump - transferRate: 50 - - uid: 11296 + - uid: 7485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,17.5 + pos: 1.5,-27.5 parent: 31 - - uid: 11297 + - uid: 7487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,21.5 + pos: 1.5,36.5 parent: 31 - - type: GasVolumePump - transferRate: 50 - - uid: 11298 + - uid: 7488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,22.5 + pos: 61.5,-7.5 parent: 31 - - type: GasVolumePump - transferRate: 50 - - uid: 11300 + - uid: 7632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,23.5 + pos: -39.5,19.5 parent: 31 - - type: GasVolumePump - transferRate: 50 - - uid: 11781 + - uid: 7636 components: - type: Transform - pos: 73.5,7.5 + pos: -47.5,-12.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11782 + - uid: 7672 components: - type: Transform - pos: 74.5,7.5 + pos: -16.5,7.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11783 + - uid: 7677 components: - type: Transform - pos: 75.5,7.5 + pos: 62.5,-10.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11784 + - uid: 7678 components: - type: Transform - pos: 76.5,7.5 + pos: 61.5,-16.5 parent: 31 - - type: AtmosPipeColor - color: '#990000FF' -- proto: Gauze - entities: - - uid: 1407 + - uid: 7679 components: - type: Transform - pos: 26.671059,21.801102 + pos: 61.5,-14.5 parent: 31 - - uid: 10830 + - uid: 7688 components: - type: Transform - pos: 12.447606,-4.278471 + pos: 23.5,19.5 parent: 31 -- proto: GeigerCounterWallMount - entities: - - uid: 4350 + - uid: 7692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,3.5 + pos: -39.5,12.5 parent: 31 - - uid: 6954 + - uid: 7697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,3.5 + pos: -46.5,-12.5 parent: 31 - - uid: 6956 + - uid: 7713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,4.5 + pos: -54.5,-10.5 parent: 31 - - uid: 9461 + - uid: 7748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 + pos: 49.5,-31.5 parent: 31 -- proto: GlimmerProber - entities: - - uid: 11651 + - uid: 7777 components: - type: Transform - pos: -13.5,-24.5 + pos: 45.5,12.5 parent: 31 -- proto: GlowstickBase - entities: - - uid: 8848 + - uid: 7798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.737583,15.662895 + pos: 13.5,-10.5 parent: 31 - - uid: 8999 + - uid: 7800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.649036,15.662895 + pos: 13.5,-11.5 parent: 31 - - uid: 9037 + - uid: 7824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.826128,15.662895 + pos: -5.5,-33.5 parent: 31 -- proto: GlowstickBlue - entities: - - uid: 10987 + - uid: 7830 components: - type: Transform - pos: 52.729786,-1.2094907 + pos: -42.5,-8.5 parent: 31 -- proto: GravityGenerator - entities: - - uid: 7696 + - uid: 7838 components: - type: Transform - pos: 58.5,-2.5 + pos: -18.5,26.5 parent: 31 -- proto: Grille - entities: - - uid: 47 + - uid: 7839 components: - type: Transform - pos: 19.5,20.5 + pos: -15.5,26.5 parent: 31 - - uid: 64 + - uid: 7840 components: - type: Transform - pos: 5.5,-4.5 + pos: -12.5,26.5 parent: 31 - - uid: 77 + - uid: 7864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-14.5 + pos: -11.5,29.5 parent: 31 - - uid: 78 + - uid: 7867 components: - type: Transform - pos: 5.5,-5.5 + pos: 28.5,-25.5 parent: 31 - - uid: 101 + - uid: 7868 components: - type: Transform - pos: -48.5,-12.5 + pos: 28.5,-23.5 parent: 31 - - uid: 138 + - uid: 7947 components: - type: Transform - pos: -49.5,-12.5 + pos: -40.5,-8.5 parent: 31 - - uid: 155 + - uid: 8021 components: - type: Transform - pos: 44.5,-20.5 + pos: -15.5,29.5 parent: 31 - - uid: 156 + - uid: 8022 components: - type: Transform - pos: 45.5,-19.5 + pos: -16.5,29.5 parent: 31 - - uid: 249 + - uid: 8023 components: - type: Transform - pos: 11.5,-16.5 + pos: -17.5,29.5 parent: 31 - - uid: 255 + - uid: 8024 components: - type: Transform - pos: 11.5,-6.5 + pos: -22.5,29.5 parent: 31 - - uid: 267 + - uid: 8027 components: - type: Transform - pos: -50.5,-8.5 + pos: -10.5,29.5 parent: 31 - - uid: 338 + - uid: 8032 components: - type: Transform - pos: -8.5,6.5 + pos: -20.5,29.5 parent: 31 - - uid: 360 + - uid: 8036 components: - type: Transform - pos: -13.5,6.5 + pos: -19.5,29.5 parent: 31 - - uid: 469 + - uid: 8037 components: - type: Transform - pos: -35.5,11.5 + pos: -12.5,29.5 parent: 31 - - uid: 526 + - uid: 8038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + pos: -13.5,29.5 parent: 31 - - uid: 571 + - uid: 8048 components: - type: Transform - pos: 2.5,22.5 + pos: 29.5,21.5 parent: 31 - - uid: 608 + - uid: 8052 components: - type: Transform - pos: -14.5,-18.5 + pos: -41.5,6.5 parent: 31 - - uid: 653 + - uid: 8056 components: - type: Transform - pos: 39.5,26.5 + pos: 33.5,26.5 parent: 31 - - uid: 655 + - uid: 8074 components: - type: Transform - pos: 35.5,26.5 + pos: 45.5,11.5 parent: 31 - - uid: 657 + - uid: 8084 components: - type: Transform - pos: -37.5,11.5 + pos: -16.5,6.5 parent: 31 - - uid: 665 + - uid: 8097 components: - type: Transform - pos: -41.5,5.5 + pos: 3.5,-23.5 parent: 31 - - uid: 711 + - uid: 8103 components: - type: Transform - pos: 17.5,20.5 + rot: -1.5707963267948966 rad + pos: 61.5,17.5 parent: 31 - - uid: 749 + - uid: 8108 components: - type: Transform - pos: -44.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,0.5 parent: 31 - - uid: 751 + - uid: 8109 components: - type: Transform - pos: -42.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,1.5 parent: 31 - - uid: 754 + - uid: 8111 components: - type: Transform - pos: 36.5,26.5 + rot: 1.5707963267948966 rad + pos: 61.5,3.5 parent: 31 - - uid: 757 + - uid: 8112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-14.5 + pos: 61.5,4.5 parent: 31 - - uid: 772 + - uid: 8145 components: - type: Transform - pos: -42.5,7.5 + pos: 52.5,8.5 parent: 31 - - uid: 801 + - uid: 8156 components: - type: Transform - pos: -6.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,-31.5 parent: 31 - - uid: 811 + - uid: 8157 components: - type: Transform - pos: -40.5,3.5 + rot: 1.5707963267948966 rad + pos: 2.5,-31.5 parent: 31 - - uid: 835 + - uid: 8216 components: - type: Transform - pos: 52.5,-2.5 + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 parent: 31 - - uid: 855 + - uid: 8217 components: - type: Transform - pos: 52.5,-6.5 + rot: -1.5707963267948966 rad + pos: 31.5,-24.5 parent: 31 - - uid: 856 + - uid: 8222 components: - type: Transform - pos: -42.5,3.5 + pos: -32.5,19.5 parent: 31 - - uid: 858 + - uid: 8293 components: - type: Transform - pos: -44.5,9.5 + pos: 50.5,-31.5 parent: 31 - - uid: 877 + - uid: 8294 components: - type: Transform - pos: -4.5,32.5 + pos: 48.5,-31.5 parent: 31 - - uid: 904 + - uid: 8305 components: - type: Transform - pos: 40.5,20.5 + rot: 1.5707963267948966 rad + pos: 58.5,-29.5 parent: 31 - - uid: 937 + - uid: 8306 components: - type: Transform - pos: 19.5,21.5 + pos: 50.5,18.5 parent: 31 - - uid: 1016 + - uid: 8309 components: - type: Transform - pos: 4.5,22.5 + rot: 1.5707963267948966 rad + pos: 58.5,-32.5 parent: 31 - - uid: 1022 + - uid: 8310 components: - type: Transform - pos: -40.5,1.5 + rot: 1.5707963267948966 rad + pos: 58.5,-33.5 parent: 31 - - uid: 1106 + - uid: 8313 components: - type: Transform - pos: 44.5,20.5 + rot: 1.5707963267948966 rad + pos: -1.5,14.5 parent: 31 - - uid: 1131 + - uid: 8329 components: - type: Transform - pos: -41.5,4.5 + pos: 48.5,-6.5 parent: 31 - - uid: 1133 + - uid: 8330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 + pos: 54.5,-2.5 parent: 31 - - uid: 1180 + - uid: 8331 components: - type: Transform - pos: -41.5,9.5 + pos: 58.5,-16.5 parent: 31 - - uid: 1192 + - uid: 8332 components: - type: Transform - pos: -19.5,2.5 + pos: 58.5,-18.5 parent: 31 - - uid: 1193 + - uid: 8333 components: - type: Transform - pos: -18.5,2.5 + pos: 58.5,-19.5 parent: 31 - - uid: 1225 + - uid: 8334 components: - type: Transform - pos: 25.5,10.5 + pos: 58.5,-21.5 parent: 31 - - uid: 1237 + - uid: 8335 components: - type: Transform - pos: -42.5,9.5 + pos: 58.5,-22.5 parent: 31 - - uid: 1268 + - uid: 8336 components: - type: Transform - pos: 36.5,-38.5 + pos: 58.5,-23.5 parent: 31 - - uid: 1278 + - uid: 8337 components: - type: Transform - pos: -10.5,19.5 + pos: 58.5,-24.5 parent: 31 - - uid: 1396 + - uid: 8338 components: - type: Transform - pos: 10.5,31.5 + pos: 58.5,-25.5 parent: 31 - - uid: 1414 + - uid: 8339 components: - type: Transform - pos: -9.5,7.5 + pos: 58.5,-27.5 parent: 31 - - uid: 1416 + - uid: 8340 components: - type: Transform - pos: -13.5,9.5 + pos: 58.5,-34.5 parent: 31 - - uid: 1430 + - uid: 8341 components: - type: Transform - pos: -43.5,3.5 + pos: 58.5,-37.5 parent: 31 - - uid: 1434 + - uid: 8342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-17.5 + pos: 58.5,-38.5 parent: 31 - - uid: 1435 + - uid: 8343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-17.5 + pos: 57.5,-38.5 parent: 31 - - uid: 1436 + - uid: 8349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 + pos: 32.5,26.5 parent: 31 - - uid: 1443 + - uid: 8362 components: - type: Transform - pos: 37.5,26.5 + pos: 42.5,26.5 parent: 31 - - uid: 1447 + - uid: 8363 components: - type: Transform - pos: 20.5,-10.5 + pos: 44.5,26.5 parent: 31 - - uid: 1451 + - uid: 8364 components: - type: Transform - pos: -44.5,3.5 + pos: 45.5,26.5 parent: 31 - - uid: 1452 + - uid: 8367 components: - type: Transform - pos: -41.5,1.5 + pos: -33.5,-15.5 parent: 31 - - uid: 1453 + - uid: 8371 components: - type: Transform - pos: -40.5,7.5 + pos: 43.5,26.5 parent: 31 - - uid: 1454 + - uid: 8390 components: - type: Transform - pos: -43.5,7.5 + pos: 6.5,36.5 parent: 31 - - uid: 1455 + - uid: 8484 components: - type: Transform - pos: -40.5,9.5 + pos: -13.5,-19.5 parent: 31 - - uid: 1456 + - uid: 8566 components: - type: Transform - pos: -41.5,3.5 + pos: -37.5,-24.5 parent: 31 - - uid: 1460 + - uid: 8567 components: - type: Transform - pos: -27.5,6.5 + pos: -37.5,-23.5 parent: 31 - - uid: 1462 + - uid: 8568 components: - type: Transform - pos: -29.5,6.5 + pos: -36.5,-22.5 parent: 31 - - uid: 1468 + - uid: 8570 components: - type: Transform - pos: 20.5,-9.5 + pos: -34.5,-22.5 parent: 31 - - uid: 1489 + - uid: 8571 components: - type: Transform - pos: -11.5,8.5 + pos: -33.5,-23.5 parent: 31 - - uid: 1491 + - uid: 8572 components: - type: Transform - pos: 13.5,-4.5 + pos: -33.5,-24.5 parent: 31 - - uid: 1522 + - uid: 8575 components: - type: Transform - pos: 46.5,-19.5 + pos: -37.5,-28.5 parent: 31 - - uid: 1526 + - uid: 8576 components: - type: Transform - pos: 23.5,21.5 + pos: -32.5,-33.5 parent: 31 - - uid: 1529 + - uid: 8601 components: - type: Transform - pos: 44.5,-21.5 + rot: 3.141592653589793 rad + pos: -29.5,-32.5 parent: 31 - - uid: 1547 + - uid: 8819 components: - type: Transform - pos: 42.5,20.5 + pos: 4.5,26.5 parent: 31 - - uid: 1548 + - uid: 8820 components: - type: Transform - pos: 38.5,20.5 + pos: 2.5,26.5 parent: 31 - - uid: 1592 + - uid: 8946 components: - type: Transform - pos: 19.5,14.5 + rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 31 - - uid: 1602 + - uid: 8947 components: - type: Transform - pos: 36.5,-0.5 + rot: 3.141592653589793 rad + pos: -2.5,2.5 parent: 31 - - uid: 1604 + - uid: 8948 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-8.5 + pos: -3.5,2.5 parent: 31 - - uid: 1614 + - uid: 9012 components: - type: Transform - pos: 2.5,-35.5 + pos: -4.5,-33.5 parent: 31 - - uid: 1629 + - uid: 9019 components: - type: Transform - pos: 37.5,1.5 + rot: -1.5707963267948966 rad + pos: 79.5,12.5 parent: 31 - - uid: 1663 + - uid: 9027 components: - type: Transform - pos: 17.5,-14.5 + pos: -8.5,-24.5 parent: 31 - - uid: 1666 + - uid: 9030 components: - type: Transform - pos: 49.5,-6.5 + rot: -1.5707963267948966 rad + pos: 80.5,10.5 parent: 31 - - uid: 1692 + - uid: 9063 components: - type: Transform - pos: -43.5,1.5 + rot: -1.5707963267948966 rad + pos: 80.5,8.5 parent: 31 - - uid: 1706 + - uid: 9064 components: - type: Transform - pos: 41.5,26.5 + rot: -1.5707963267948966 rad + pos: 80.5,12.5 parent: 31 - - uid: 1708 + - uid: 9124 components: - type: Transform - pos: 17.5,21.5 + pos: 5.5,-11.5 parent: 31 - - uid: 1709 + - uid: 9125 components: - type: Transform - pos: 34.5,7.5 + pos: 5.5,-10.5 parent: 31 - - uid: 1710 + - uid: 9126 components: - type: Transform - pos: 32.5,7.5 + pos: 5.5,-8.5 parent: 31 - - uid: 1720 + - uid: 9127 components: - type: Transform - pos: 32.5,1.5 + pos: 5.5,-7.5 parent: 31 - - uid: 1721 + - uid: 9136 components: - type: Transform - pos: 34.5,1.5 + pos: 26.5,22.5 parent: 31 - - uid: 1722 + - uid: 9145 components: - type: Transform - pos: 30.5,4.5 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 parent: 31 - - uid: 1728 + - uid: 9163 components: - type: Transform - pos: 1.5,-33.5 + rot: -1.5707963267948966 rad + pos: 74.5,14.5 parent: 31 - - uid: 1741 + - uid: 9174 components: - type: Transform - pos: 44.5,-19.5 + pos: -37.5,-12.5 parent: 31 - - uid: 1757 + - uid: 9175 components: - type: Transform - pos: -49.5,-8.5 + pos: -39.5,-1.5 parent: 31 - - uid: 1759 + - uid: 9208 components: - type: Transform - pos: 19.5,6.5 + pos: -36.5,-12.5 parent: 31 - - uid: 1760 + - uid: 9209 components: - type: Transform - pos: 20.5,6.5 + pos: -35.5,-12.5 parent: 31 - - uid: 1761 + - uid: 9219 components: - type: Transform - pos: 21.5,6.5 + rot: 1.5707963267948966 rad + pos: -1.5,12.5 parent: 31 - - uid: 1762 + - uid: 9231 components: - type: Transform - pos: 22.5,6.5 + pos: -41.5,-0.5 parent: 31 - - uid: 1777 + - uid: 9232 components: - type: Transform - pos: 17.5,9.5 + pos: -42.5,-0.5 parent: 31 - - uid: 1803 + - uid: 9233 components: - type: Transform - pos: 8.5,6.5 + pos: -43.5,-0.5 parent: 31 - - uid: 1871 + - uid: 9234 components: - type: Transform - pos: -1.5,27.5 + pos: -43.5,11.5 parent: 31 - - uid: 1872 + - uid: 9235 components: - type: Transform - pos: -0.5,27.5 + pos: -42.5,11.5 parent: 31 - - uid: 1874 + - uid: 9236 components: - type: Transform - pos: 10.5,29.5 + pos: -41.5,11.5 parent: 31 - - uid: 1875 + - uid: 9257 components: - type: Transform - pos: 9.5,31.5 + pos: -7.5,-24.5 parent: 31 - - uid: 1879 + - uid: 9260 components: - type: Transform - pos: 7.5,33.5 + rot: -1.5707963267948966 rad + pos: 68.5,14.5 parent: 31 - - uid: 1880 + - uid: 9291 components: - type: Transform - pos: 6.5,33.5 + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 parent: 31 - - uid: 1881 + - uid: 9331 components: - type: Transform - pos: 5.5,33.5 + rot: -1.5707963267948966 rad + pos: -28.5,2.5 parent: 31 - - uid: 1882 + - uid: 9332 components: - type: Transform - pos: 4.5,33.5 + rot: -1.5707963267948966 rad + pos: -29.5,2.5 parent: 31 - - uid: 1883 + - uid: 9344 components: - type: Transform - pos: 3.5,33.5 + rot: -1.5707963267948966 rad + pos: 60.5,17.5 parent: 31 - - uid: 1884 + - uid: 9362 components: - type: Transform - pos: 2.5,33.5 + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 parent: 31 - - uid: 1885 + - uid: 9364 components: - type: Transform - pos: 1.5,33.5 + rot: -1.5707963267948966 rad + pos: -30.5,-25.5 parent: 31 - - uid: 1886 + - uid: 9368 components: - type: Transform - pos: 0.5,33.5 + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 parent: 31 - - uid: 1887 + - uid: 9370 components: - type: Transform - pos: -0.5,33.5 + rot: -1.5707963267948966 rad + pos: 70.5,14.5 parent: 31 - - uid: 1891 + - uid: 9372 components: - type: Transform - pos: 6.5,19.5 + pos: -17.5,-18.5 parent: 31 - - uid: 1904 + - uid: 9405 components: - type: Transform - pos: -7.5,18.5 + rot: -1.5707963267948966 rad + pos: 69.5,14.5 parent: 31 - - uid: 1949 + - uid: 9408 components: - type: Transform - pos: -10.5,21.5 + pos: -4.5,-37.5 parent: 31 - - uid: 1959 + - uid: 9409 components: - type: Transform - pos: -11.5,7.5 + pos: -3.5,-37.5 parent: 31 - - uid: 1969 + - uid: 9410 components: - type: Transform - pos: -10.5,14.5 + pos: -2.5,-37.5 parent: 31 - - uid: 1996 + - uid: 9413 components: - type: Transform - pos: -7.5,9.5 + pos: -1.5,-37.5 parent: 31 - - uid: 2064 + - uid: 9419 components: - type: Transform - pos: -28.5,6.5 + pos: -14.5,-33.5 parent: 31 - - uid: 2095 + - uid: 9420 components: - type: Transform - pos: -25.5,9.5 + pos: -15.5,-33.5 parent: 31 - - uid: 2099 + - uid: 9421 components: - type: Transform - pos: -9.5,8.5 + pos: -16.5,-33.5 parent: 31 - - uid: 2115 + - uid: 9422 components: - type: Transform - pos: 13.5,-1.5 + pos: -15.5,-40.5 parent: 31 - - uid: 2136 + - uid: 9423 components: - type: Transform - pos: 8.5,-7.5 + pos: -14.5,-40.5 parent: 31 - - uid: 2149 + - uid: 9424 components: - type: Transform - pos: 11.5,2.5 + pos: -13.5,-40.5 parent: 31 - - uid: 2150 + - uid: 9460 components: - type: Transform - pos: 10.5,2.5 + rot: 3.141592653589793 rad + pos: -22.5,-26.5 parent: 31 - - uid: 2151 + - uid: 9515 components: - type: Transform - pos: 9.5,2.5 + rot: -1.5707963267948966 rad + pos: 49.5,-12.5 parent: 31 - - uid: 2152 + - uid: 9525 components: - type: Transform - pos: 8.5,2.5 + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 31 - - uid: 2153 + - uid: 9535 components: - type: Transform - pos: 7.5,2.5 + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 parent: 31 - - uid: 2205 + - uid: 9536 components: - type: Transform - pos: 20.5,-5.5 + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 parent: 31 - - uid: 2209 + - uid: 9553 components: - type: Transform - pos: -6.5,-20.5 + rot: -1.5707963267948966 rad + pos: 67.5,14.5 parent: 31 - - uid: 2245 + - uid: 9561 components: - type: Transform - pos: -7.5,6.5 + pos: 3.5,-35.5 parent: 31 - - uid: 2277 + - uid: 9598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-24.5 + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 parent: 31 - - uid: 2307 + - uid: 9658 components: - type: Transform - pos: -35.5,-22.5 + pos: -3.5,-44.5 parent: 31 - - uid: 2423 + - uid: 9659 components: - type: Transform - pos: 28.5,-14.5 + pos: -2.5,-44.5 parent: 31 - - uid: 2848 + - uid: 9660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-17.5 + pos: -0.5,-45.5 parent: 31 - - uid: 2849 + - uid: 9661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-17.5 + pos: 0.5,-45.5 parent: 31 - - uid: 3109 + - uid: 9662 components: - type: Transform - pos: 60.5,11.5 + pos: 1.5,-45.5 parent: 31 - - uid: 3152 + - uid: 9692 components: - type: Transform - pos: 47.5,-18.5 + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 31 - - uid: 3157 + - uid: 9693 components: - type: Transform - pos: 56.5,-25.5 + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 parent: 31 - - uid: 3158 + - uid: 9700 components: - type: Transform - pos: 56.5,-24.5 + rot: 1.5707963267948966 rad + pos: 58.5,-30.5 parent: 31 - - uid: 3415 + - uid: 9723 components: - type: Transform - pos: -16.5,-40.5 + pos: 54.5,7.5 parent: 31 - - uid: 3826 + - uid: 9745 components: - type: Transform - pos: -14.5,29.5 + pos: 58.5,4.5 parent: 31 - - uid: 3827 + - uid: 9765 components: - type: Transform - pos: -15.5,28.5 + rot: -1.5707963267948966 rad + pos: 58.5,2.5 parent: 31 - - uid: 3828 + - uid: 9769 components: - type: Transform - pos: -18.5,29.5 + pos: -6.5,-33.5 parent: 31 - - uid: 3842 + - uid: 9805 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: 14.5,-34.5 parent: 31 - - uid: 4032 + - uid: 9806 components: - type: Transform - pos: 28.5,-13.5 + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 parent: 31 - - uid: 4114 + - uid: 9807 components: - type: Transform - pos: -12.5,6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 parent: 31 - - uid: 4115 + - uid: 9808 components: - type: Transform - pos: -3.5,6.5 + pos: 12.5,-45.5 parent: 31 - - uid: 4117 + - uid: 9809 components: - type: Transform - pos: -3.5,8.5 + pos: 11.5,-45.5 parent: 31 - - uid: 4223 + - uid: 9810 components: - type: Transform - pos: -2.5,9.5 + pos: 8.5,-45.5 parent: 31 - - uid: 4241 + - uid: 9811 components: - type: Transform - pos: 7.5,36.5 + pos: 5.5,-47.5 parent: 31 - - uid: 4308 + - uid: 9812 components: - type: Transform - pos: 5.5,36.5 + pos: 4.5,-47.5 parent: 31 - - uid: 4376 + - uid: 9813 components: - type: Transform - pos: 41.5,-26.5 + pos: 3.5,-47.5 parent: 31 - - uid: 4377 + - uid: 9814 components: - type: Transform - pos: 45.5,-29.5 + pos: 4.5,-45.5 parent: 31 - - uid: 4386 + - uid: 9815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-26.5 + pos: -0.5,-47.5 parent: 31 - - uid: 4393 + - uid: 9817 components: - type: Transform - pos: 58.5,6.5 + pos: 0.5,-47.5 parent: 31 - - uid: 4394 + - uid: 9823 components: - type: Transform - pos: 61.5,6.5 + pos: -22.5,-39.5 parent: 31 - - uid: 4399 + - uid: 9824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + pos: -22.5,-38.5 parent: 31 - - uid: 4403 + - uid: 9826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,3.5 + pos: -22.5,-37.5 parent: 31 - - uid: 4445 + - uid: 9827 components: - type: Transform - pos: 59.5,-10.5 + pos: -21.5,-39.5 parent: 31 - - uid: 4460 + - uid: 9832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-24.5 + pos: -22.5,-34.5 parent: 31 - - uid: 4487 + - uid: 9837 components: - type: Transform - pos: 34.5,-13.5 + pos: -22.5,-35.5 parent: 31 - - uid: 4500 + - uid: 9838 components: - type: Transform - pos: 54.5,-7.5 + pos: -39.5,14.5 parent: 31 - - uid: 4510 + - uid: 9889 components: - type: Transform - pos: 31.5,-23.5 + rot: -1.5707963267948966 rad + pos: -42.5,13.5 parent: 31 - - uid: 4532 + - uid: 9896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 + pos: -9.5,26.5 parent: 31 - - uid: 4595 + - uid: 9949 components: - type: Transform - pos: 41.5,-22.5 + rot: 1.5707963267948966 rad + pos: 43.5,-14.5 parent: 31 - - uid: 4596 + - uid: 10061 components: - type: Transform - pos: 40.5,-22.5 + rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 31 - - uid: 4597 + - uid: 10064 components: - type: Transform - pos: 42.5,-26.5 + rot: -1.5707963267948966 rad + pos: 18.5,26.5 parent: 31 - - uid: 4598 + - uid: 10065 components: - type: Transform - pos: 44.5,-27.5 + rot: -1.5707963267948966 rad + pos: 24.5,26.5 parent: 31 - - uid: 4599 + - uid: 10066 components: - type: Transform - pos: 44.5,-28.5 + rot: -1.5707963267948966 rad + pos: 24.5,27.5 parent: 31 - - uid: 4600 + - uid: 10067 components: - type: Transform - pos: 44.5,-29.5 + rot: -1.5707963267948966 rad + pos: 19.5,23.5 parent: 31 - - uid: 4612 + - uid: 10068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-26.5 + pos: 19.5,24.5 parent: 31 - - uid: 4614 + - uid: 10069 components: - type: Transform - pos: 34.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,24.5 parent: 31 - - uid: 4618 + - uid: 10070 components: - type: Transform - pos: 51.5,-30.5 + rot: -1.5707963267948966 rad + pos: 23.5,23.5 parent: 31 - - uid: 4619 + - uid: 10080 components: - type: Transform - pos: 53.5,-29.5 + rot: -1.5707963267948966 rad + pos: 21.5,28.5 parent: 31 - - uid: 4620 + - uid: 10113 components: - type: Transform - pos: 54.5,-28.5 + rot: 1.5707963267948966 rad + pos: 78.5,7.5 parent: 31 - - uid: 4621 + - uid: 10114 components: - type: Transform - pos: 56.5,-26.5 + rot: 1.5707963267948966 rad + pos: 63.5,12.5 parent: 31 - - uid: 4622 + - uid: 10126 components: - type: Transform - pos: 55.5,-22.5 + pos: -1.5,36.5 parent: 31 - - uid: 4624 + - uid: 10196 components: - type: Transform - pos: 56.5,-23.5 + pos: -33.5,-14.5 parent: 31 - - uid: 4625 + - uid: 10197 components: - type: Transform - pos: 56.5,-22.5 + pos: -34.5,-15.5 parent: 31 - - uid: 4660 + - uid: 10198 components: - type: Transform - pos: 31.5,-25.5 + pos: -35.5,-15.5 parent: 31 - - uid: 4686 + - uid: 10226 components: - type: Transform - pos: 4.5,36.5 + pos: 61.5,-15.5 parent: 31 - - uid: 4702 + - uid: 10372 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,18.5 + pos: -42.5,14.5 parent: 31 - - uid: 4844 + - uid: 10438 components: - type: Transform - pos: 12.5,-32.5 + pos: -39.5,18.5 parent: 31 - - uid: 4853 + - uid: 10520 components: - type: Transform - pos: 58.5,3.5 + pos: 25.5,22.5 parent: 31 - - uid: 4879 + - uid: 10604 components: - type: Transform - pos: -2.5,6.5 + pos: 44.5,-8.5 parent: 31 - - uid: 4881 + - uid: 10712 components: - type: Transform - pos: -0.5,6.5 + pos: -44.5,7.5 parent: 31 - - uid: 4926 + - uid: 10747 components: - type: Transform - pos: 15.5,20.5 + pos: -46.5,-8.5 parent: 31 - - uid: 4928 + - uid: 10748 components: - type: Transform - pos: 15.5,21.5 + pos: -47.5,-8.5 parent: 31 - - uid: 5066 + - uid: 10749 components: - type: Transform - pos: -1.5,9.5 + pos: -48.5,-8.5 parent: 31 - - uid: 5067 + - uid: 10751 components: - type: Transform - pos: -3.5,9.5 + pos: -45.5,-8.5 parent: 31 - - uid: 5071 + - uid: 11071 components: - type: Transform - pos: 13.5,1.5 + pos: 46.5,20.5 parent: 31 - - uid: 5072 + - uid: 11077 components: - type: Transform - pos: 13.5,-2.5 + pos: 45.5,13.5 parent: 31 - - uid: 5082 + - uid: 11090 components: - type: Transform - pos: 13.5,0.5 + pos: 30.5,23.5 parent: 31 - - uid: 5102 + - uid: 11110 components: - type: Transform - pos: 51.5,-6.5 + pos: -6.5,30.5 parent: 31 - - uid: 5111 + - uid: 11112 components: - type: Transform - pos: -0.5,36.5 + pos: -7.5,30.5 parent: 31 - - uid: 5117 + - uid: 11113 components: - type: Transform - pos: -3.5,7.5 + pos: -5.5,30.5 parent: 31 - - uid: 5139 + - uid: 11145 components: - type: Transform - pos: 8.5,-11.5 + rot: 1.5707963267948966 rad + pos: 69.5,11.5 parent: 31 - - uid: 5198 + - uid: 11156 components: - type: Transform - pos: -28.5,18.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 parent: 31 - - uid: 5199 + - uid: 11159 components: - type: Transform - pos: -29.5,18.5 + rot: 1.5707963267948966 rad + pos: 67.5,-4.5 parent: 31 - - uid: 5215 + - uid: 11161 components: - type: Transform - pos: -10.5,13.5 + rot: 1.5707963267948966 rad + pos: 77.5,6.5 parent: 31 - - uid: 5227 + - uid: 11162 components: - type: Transform - pos: 11.5,-15.5 + rot: 1.5707963267948966 rad + pos: 78.5,6.5 parent: 31 - - uid: 5244 + - uid: 11163 components: - type: Transform - pos: -39.5,21.5 + rot: 1.5707963267948966 rad + pos: 78.5,8.5 parent: 31 - - uid: 5251 + - uid: 11164 components: - type: Transform - pos: -39.5,27.5 + rot: 1.5707963267948966 rad + pos: 78.5,5.5 parent: 31 - - uid: 5313 + - uid: 11166 components: - type: Transform - pos: -43.5,9.5 + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 parent: 31 - - uid: 5898 + - uid: 11167 components: - type: Transform - pos: -41.5,7.5 + rot: 1.5707963267948966 rad + pos: 63.5,-4.5 parent: 31 - - uid: 5978 + - uid: 11168 components: - type: Transform - pos: -54.5,-9.5 + rot: 1.5707963267948966 rad + pos: 69.5,12.5 parent: 31 - - uid: 6277 + - uid: 11172 components: - type: Transform - pos: -9.5,32.5 + rot: 1.5707963267948966 rad + pos: 77.5,5.5 parent: 31 - - uid: 6280 + - uid: 11176 components: - type: Transform - pos: -10.5,32.5 + rot: 1.5707963267948966 rad + pos: 68.5,-4.5 parent: 31 - - uid: 6287 + - uid: 11179 components: - type: Transform - pos: 54.5,-8.5 + rot: 1.5707963267948966 rad + pos: 78.5,4.5 parent: 31 - - uid: 6288 + - uid: 11190 components: - type: Transform - pos: -6.5,34.5 + rot: 1.5707963267948966 rad + pos: 70.5,11.5 parent: 31 - - uid: 6366 + - uid: 11192 components: - type: Transform - pos: 22.5,14.5 + pos: 63.5,11.5 parent: 31 - - uid: 6367 + - uid: 11193 components: - type: Transform - pos: 40.5,18.5 + pos: 64.5,11.5 parent: 31 - - uid: 6369 + - uid: 11324 components: - type: Transform - pos: 42.5,18.5 + rot: 3.141592653589793 rad + pos: -18.5,-23.5 parent: 31 - - uid: 6380 + - uid: 11326 components: - type: Transform - pos: 39.5,18.5 + rot: 3.141592653589793 rad + pos: -18.5,-20.5 parent: 31 - - uid: 6381 + - uid: 11367 components: - type: Transform - pos: 38.5,18.5 + rot: 3.141592653589793 rad + pos: -18.5,-19.5 parent: 31 - - uid: 6383 + - uid: 11408 components: - type: Transform - pos: 37.5,18.5 + rot: -1.5707963267948966 rad + pos: -43.5,-4.5 parent: 31 - - uid: 6390 + - uid: 11409 components: - type: Transform - pos: 50.5,10.5 + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 parent: 31 - - uid: 6391 + - uid: 11410 components: - type: Transform - pos: 35.5,18.5 + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 parent: 31 - - uid: 6393 + - uid: 11480 components: - type: Transform - pos: 49.5,10.5 + rot: -1.5707963267948966 rad + pos: 61.5,16.5 parent: 31 - - uid: 6394 + - uid: 11770 components: - type: Transform - pos: 48.5,10.5 + rot: 1.5707963267948966 rad + pos: 72.5,6.5 parent: 31 - - uid: 6401 + - uid: 11771 components: - type: Transform - pos: 34.5,18.5 + rot: 1.5707963267948966 rad + pos: 72.5,7.5 parent: 31 - - uid: 6405 + - uid: 11772 components: - type: Transform - pos: 23.5,20.5 + rot: 1.5707963267948966 rad + pos: 72.5,8.5 parent: 31 - - uid: 6415 + - uid: 11811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,17.5 + rot: 1.5707963267948966 rad + pos: 71.5,3.5 parent: 31 - - uid: 6440 + - uid: 11831 components: - type: Transform - pos: 43.5,18.5 + rot: 1.5707963267948966 rad + pos: 64.5,12.5 parent: 31 - - uid: 6445 + - uid: 11832 components: - type: Transform - pos: 45.5,18.5 + rot: 1.5707963267948966 rad + pos: 67.5,12.5 parent: 31 - - uid: 6453 + - uid: 11833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,15.5 + rot: 1.5707963267948966 rad + pos: 70.5,12.5 parent: 31 - - uid: 6455 + - uid: 11841 components: - type: Transform - pos: 33.5,18.5 + rot: 1.5707963267948966 rad + pos: 67.5,11.5 parent: 31 - - uid: 6456 + - uid: 11845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,16.5 + rot: 1.5707963267948966 rad + pos: 77.5,7.5 parent: 31 - - uid: 6458 + - uid: 11906 components: - type: Transform - pos: 45.5,7.5 + rot: -1.5707963267948966 rad + pos: 64.5,-5.5 parent: 31 - - uid: 6464 + - uid: 11907 components: - type: Transform - pos: 45.5,9.5 + rot: -1.5707963267948966 rad + pos: 63.5,-5.5 parent: 31 - - uid: 6472 + - uid: 11908 components: - type: Transform - pos: 47.5,18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-5.5 parent: 31 - - uid: 6481 + - uid: 11909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,24.5 + rot: -1.5707963267948966 rad + pos: 68.5,-5.5 parent: 31 - - uid: 6503 + - uid: 11910 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,24.5 + pos: 80.5,5.5 parent: 31 - - uid: 6504 + - uid: 11911 components: - type: Transform - pos: 44.5,18.5 + rot: -1.5707963267948966 rad + pos: 80.5,3.5 parent: 31 - - uid: 6505 + - uid: 11912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,24.5 + rot: -1.5707963267948966 rad + pos: 80.5,4.5 parent: 31 - - uid: 6508 + - uid: 11913 components: - type: Transform - pos: 46.5,18.5 + rot: -1.5707963267948966 rad + pos: 80.5,2.5 parent: 31 - - uid: 6539 + - uid: 11914 components: - type: Transform - pos: 47.5,10.5 + rot: -1.5707963267948966 rad + pos: 80.5,1.5 parent: 31 - - uid: 6551 + - uid: 11915 components: - type: Transform - pos: 48.5,18.5 + rot: -1.5707963267948966 rad + pos: 80.5,0.5 parent: 31 - - uid: 6565 + - uid: 11916 components: - type: Transform - pos: 46.5,14.5 + rot: -1.5707963267948966 rad + pos: 79.5,0.5 parent: 31 - - uid: 6605 + - uid: 11917 components: - type: Transform - pos: 47.5,14.5 + rot: -1.5707963267948966 rad + pos: 79.5,-0.5 parent: 31 - - uid: 6606 + - uid: 11918 components: - type: Transform - pos: 48.5,14.5 + rot: -1.5707963267948966 rad + pos: 78.5,-0.5 parent: 31 - - uid: 6613 + - uid: 11919 components: - type: Transform - pos: 36.5,18.5 + rot: -1.5707963267948966 rad + pos: 78.5,-1.5 parent: 31 - - uid: 6641 + - uid: 11920 components: - type: Transform - pos: -41.5,-8.5 + rot: -1.5707963267948966 rad + pos: 77.5,-1.5 parent: 31 - - uid: 6645 + - uid: 11921 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,23.5 + pos: 77.5,-2.5 parent: 31 - - uid: 6690 + - uid: 11922 components: - type: Transform - pos: -30.5,29.5 + rot: -1.5707963267948966 rad + pos: 76.5,-2.5 parent: 31 - - uid: 6691 + - uid: 11923 components: - type: Transform - pos: -30.5,28.5 + rot: -1.5707963267948966 rad + pos: 76.5,-3.5 parent: 31 - - uid: 6721 + - uid: 11924 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,14.5 + pos: 75.5,-3.5 parent: 31 - - uid: 6725 + - uid: 11925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,22.5 + pos: 75.5,-4.5 parent: 31 - - uid: 6726 + - uid: 11926 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,24.5 + pos: 74.5,-4.5 parent: 31 - - uid: 6728 + - uid: 11927 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,24.5 + pos: 74.5,-5.5 parent: 31 - - uid: 6729 + - uid: 11928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,24.5 + pos: 73.5,-5.5 parent: 31 - - uid: 6730 + - uid: 11929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,24.5 + pos: 73.5,-6.5 parent: 31 - - uid: 6731 + - uid: 11930 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,24.5 + pos: 72.5,-6.5 parent: 31 - - uid: 6733 + - uid: 11931 components: - type: Transform - pos: 58.5,0.5 + rot: -1.5707963267948966 rad + pos: 72.5,-7.5 parent: 31 - - uid: 6742 + - uid: 11932 components: - type: Transform - pos: 46.5,10.5 + rot: -1.5707963267948966 rad + pos: 71.5,-7.5 parent: 31 - - uid: 6812 + - uid: 11933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 + rot: -1.5707963267948966 rad + pos: 70.5,-7.5 parent: 31 - - uid: 6815 + - uid: 11934 components: - type: Transform - pos: 41.5,18.5 + rot: -1.5707963267948966 rad + pos: 69.5,-7.5 parent: 31 - - uid: 6841 + - uid: 12029 components: - type: Transform - pos: 50.5,14.5 + pos: 68.5,-8.5 parent: 31 - - uid: 6844 + - uid: 12030 components: - type: Transform - pos: 49.5,14.5 + pos: 67.5,-8.5 parent: 31 - - uid: 6847 + - uid: 12031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,24.5 + pos: 69.5,-8.5 parent: 31 - - uid: 6863 + - uid: 12032 components: - type: Transform - pos: 27.5,22.5 + pos: 65.5,-8.5 parent: 31 - - uid: 6868 + - uid: 12033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,13.5 + pos: 66.5,-8.5 parent: 31 - - uid: 6873 + - uid: 12034 components: - type: Transform - pos: 59.5,11.5 + pos: 64.5,-8.5 parent: 31 - - uid: 6874 + - uid: 12035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,24.5 + pos: 63.5,-8.5 parent: 31 - - uid: 6933 + - uid: 12036 components: - type: Transform - pos: 49.5,18.5 + pos: 62.5,-8.5 parent: 31 - - uid: 6950 + - uid: 12099 components: - type: Transform - pos: -7.5,34.5 + rot: -1.5707963267948966 rad + pos: 63.5,15.5 + parent: 12098 + - uid: 12296 + components: + - type: Transform + pos: -45.5,11.5 parent: 31 - - uid: 6951 + - uid: 12297 components: - type: Transform - pos: -5.5,32.5 + pos: -46.5,11.5 parent: 31 - - uid: 6952 + - uid: 12298 components: - type: Transform - pos: -10.5,31.5 + pos: -47.5,11.5 parent: 31 - - uid: 6958 + - uid: 12299 components: - type: Transform - pos: 51.5,-31.5 + pos: -48.5,11.5 parent: 31 - - uid: 6961 + - uid: 12300 components: - type: Transform - pos: 47.5,-31.5 + pos: -49.5,11.5 parent: 31 - - uid: 6962 + - uid: 12301 components: - type: Transform - pos: 47.5,-30.5 + pos: -50.5,11.5 parent: 31 - - uid: 6963 + - uid: 12302 components: - type: Transform - pos: 46.5,-29.5 + pos: -51.5,11.5 parent: 31 - - uid: 6964 + - uid: 12303 components: - type: Transform - pos: 34.5,-14.5 + pos: -52.5,11.5 parent: 31 - - uid: 6967 + - uid: 12304 components: - type: Transform - pos: 40.5,-26.5 + pos: -53.5,11.5 parent: 31 - - uid: 6971 + - uid: 12305 components: - type: Transform - pos: 42.5,-22.5 + pos: -53.5,9.5 parent: 31 - - uid: 6993 + - uid: 12306 components: - type: Transform - pos: 35.5,-38.5 + pos: -52.5,9.5 parent: 31 - - uid: 6994 + - uid: 12307 components: - type: Transform - pos: 32.5,-38.5 + pos: -51.5,9.5 parent: 31 - - uid: 7011 + - uid: 12308 components: - type: Transform - pos: 51.5,-18.5 + pos: -50.5,9.5 parent: 31 - - uid: 7012 + - uid: 12309 components: - type: Transform - pos: 51.5,-17.5 + pos: -49.5,9.5 parent: 31 - - uid: 7013 + - uid: 12310 components: - type: Transform - pos: 50.5,-17.5 + pos: -47.5,9.5 parent: 31 - - uid: 7014 + - uid: 12311 components: - type: Transform - pos: 49.5,-17.5 + pos: -48.5,9.5 parent: 31 - - uid: 7015 + - uid: 12312 components: - type: Transform - pos: 48.5,-17.5 + pos: -46.5,9.5 parent: 31 - - uid: 7016 + - uid: 12313 components: - type: Transform - pos: 47.5,-17.5 + pos: -45.5,9.5 parent: 31 - - uid: 7017 + - uid: 12314 components: - type: Transform - pos: 52.5,-19.5 + pos: -45.5,7.5 parent: 31 - - uid: 7018 + - uid: 12315 components: - type: Transform - pos: 53.5,-19.5 + pos: -46.5,7.5 parent: 31 - - uid: 7019 + - uid: 12316 components: - type: Transform - pos: 54.5,-19.5 + pos: -47.5,7.5 parent: 31 - - uid: 7020 + - uid: 12317 components: - type: Transform - pos: 54.5,-20.5 + pos: -48.5,7.5 parent: 31 - - uid: 7021 + - uid: 12318 components: - type: Transform - pos: 54.5,-21.5 + pos: -50.5,7.5 parent: 31 - - uid: 7022 + - uid: 12319 components: - type: Transform - pos: 55.5,-26.5 + pos: -49.5,7.5 parent: 31 - - uid: 7023 + - uid: 12320 components: - type: Transform - pos: 54.5,-27.5 + pos: -51.5,7.5 parent: 31 - - uid: 7024 + - uid: 12321 components: - type: Transform - pos: 54.5,-29.5 + pos: -52.5,7.5 parent: 31 - - uid: 7025 + - uid: 12322 components: - type: Transform - pos: 52.5,-29.5 + pos: -53.5,7.5 parent: 31 - - uid: 7028 + - uid: 12334 components: - type: Transform - pos: -7.5,35.5 + rot: -1.5707963267948966 rad + pos: -45.5,3.5 parent: 31 - - uid: 7038 + - uid: 12335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-22.5 + pos: -46.5,3.5 parent: 31 - - uid: 7039 + - uid: 12336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-22.5 + pos: -48.5,3.5 parent: 31 - - uid: 7044 + - uid: 12337 components: - type: Transform - pos: 28.5,-12.5 + rot: -1.5707963267948966 rad + pos: -47.5,3.5 parent: 31 - - uid: 7070 + - uid: 12338 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,20.5 + pos: -49.5,3.5 parent: 31 - - uid: 7112 + - uid: 12339 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,14.5 + pos: -50.5,3.5 parent: 31 - - uid: 7150 + - uid: 12340 components: - type: Transform - pos: -5.5,34.5 + rot: -1.5707963267948966 rad + pos: -51.5,3.5 parent: 31 - - uid: 7186 + - uid: 12341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,11.5 + rot: -1.5707963267948966 rad + pos: -52.5,3.5 parent: 31 - - uid: 7187 + - uid: 12342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,12.5 + rot: -1.5707963267948966 rad + pos: -53.5,3.5 parent: 31 - - uid: 7188 + - uid: 12343 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,14.5 + pos: -53.5,1.5 parent: 31 - - uid: 7192 + - uid: 12344 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,14.5 + pos: -52.5,1.5 parent: 31 - - uid: 7193 + - uid: 12345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,15.5 + pos: -51.5,1.5 parent: 31 - - uid: 7194 + - uid: 12346 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,15.5 + pos: -50.5,1.5 parent: 31 - - uid: 7195 + - uid: 12347 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,18.5 + pos: -49.5,1.5 parent: 31 - - uid: 7196 + - uid: 12348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,20.5 + pos: -48.5,1.5 parent: 31 - - uid: 7197 + - uid: 12349 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,20.5 + pos: -47.5,1.5 parent: 31 - - uid: 7198 + - uid: 12350 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,20.5 + pos: -46.5,1.5 parent: 31 - - uid: 7199 + - uid: 12351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,14.5 + pos: -45.5,1.5 parent: 31 - - uid: 7200 + - uid: 12352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,14.5 + pos: -44.5,-0.5 parent: 31 - - uid: 7201 + - uid: 12353 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.5,14.5 + pos: -45.5,-0.5 parent: 31 - - uid: 7202 + - uid: 12354 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,14.5 + pos: -47.5,-0.5 parent: 31 - - uid: 7203 + - uid: 12355 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,14.5 + pos: -46.5,-0.5 parent: 31 - - uid: 7204 + - uid: 12356 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,11.5 + pos: -48.5,-0.5 parent: 31 - - uid: 7213 + - uid: 12357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,13.5 + pos: -49.5,-0.5 parent: 31 - - uid: 7215 + - uid: 12358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,9.5 + pos: -50.5,-0.5 parent: 31 - - uid: 7216 + - uid: 12359 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,7.5 + pos: -51.5,-0.5 parent: 31 - - uid: 7217 + - uid: 12360 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,6.5 + pos: -52.5,-0.5 parent: 31 - - uid: 7221 + - uid: 12361 components: - type: Transform - pos: 34.5,20.5 + rot: -1.5707963267948966 rad + pos: -53.5,-0.5 parent: 31 - - uid: 7226 + - uid: 12527 components: - type: Transform - pos: 36.5,20.5 + rot: 3.141592653589793 rad + pos: 31.5,28.5 parent: 31 - - uid: 7231 + - uid: 12528 components: - type: Transform - pos: 0.5,36.5 + rot: 3.141592653589793 rad + pos: 32.5,28.5 parent: 31 - - uid: 7233 + - uid: 12529 components: - type: Transform - pos: 13.5,-5.5 + rot: 3.141592653589793 rad + pos: 34.5,28.5 parent: 31 - - uid: 7274 + - uid: 12530 components: - type: Transform - pos: 12.5,-6.5 + rot: 3.141592653589793 rad + pos: 30.5,28.5 parent: 31 - - uid: 7304 + - uid: 12531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 + rot: 3.141592653589793 rad + pos: 30.5,27.5 parent: 31 - - uid: 7305 + - uid: 12533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,14.5 + rot: 3.141592653589793 rad + pos: 30.5,25.5 parent: 31 - - uid: 7307 + - uid: 12534 components: - type: Transform - pos: 1.5,-34.5 + rot: 3.141592653589793 rad + pos: 30.5,24.5 parent: 31 - - uid: 7358 + - uid: 12536 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,15.5 + pos: 37.5,27.5 parent: 31 - - uid: 7375 + - uid: 12537 components: - type: Transform - pos: 61.5,-10.5 + rot: -1.5707963267948966 rad + pos: 36.5,28.5 parent: 31 - - uid: 7376 + - uid: 12971 components: - type: Transform - pos: 4.5,35.5 + pos: -22.5,26.5 parent: 31 - - uid: 7425 + - uid: 12972 components: - type: Transform - pos: 61.5,-11.5 + pos: -21.5,26.5 parent: 31 - - uid: 7447 + - uid: 12973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-32.5 + pos: -20.5,26.5 parent: 31 - - uid: 7448 +- proto: GrilleBroken + entities: + - uid: 80 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-32.5 + rot: 1.5707963267948966 rad + pos: -40.5,20.5 parent: 31 - - uid: 7449 + - uid: 552 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-32.5 + pos: -42.5,12.5 parent: 31 - - uid: 7450 + - uid: 831 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-32.5 + pos: -7.5,33.5 parent: 31 - - uid: 7471 + - uid: 1025 components: - type: Transform - pos: 11.5,-17.5 + rot: -1.5707963267948966 rad + pos: -8.5,32.5 parent: 31 - - uid: 7472 + - uid: 1520 components: - type: Transform - pos: -31.5,19.5 + rot: -1.5707963267948966 rad + pos: -4.5,34.5 parent: 31 - - uid: 7485 + - uid: 3658 components: - type: Transform - pos: 1.5,-27.5 + rot: 3.141592653589793 rad + pos: 4.5,34.5 parent: 31 - - uid: 7487 + - uid: 3825 components: - type: Transform - pos: 1.5,36.5 + rot: 3.141592653589793 rad + pos: -15.5,27.5 parent: 31 - - uid: 7488 + - uid: 4025 components: - type: Transform - pos: 61.5,-7.5 + rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 31 - - uid: 7547 + - uid: 4444 components: - type: Transform - pos: 34.5,26.5 + rot: 3.141592653589793 rad + pos: 61.5,-8.5 parent: 31 - - uid: 7632 + - uid: 4447 components: - type: Transform - pos: -39.5,19.5 + rot: 1.5707963267948966 rad + pos: 61.5,-13.5 parent: 31 - - uid: 7636 + - uid: 6467 components: - type: Transform - pos: -47.5,-12.5 + rot: -1.5707963267948966 rad + pos: 54.5,24.5 parent: 31 - - uid: 7672 + - uid: 6744 components: - type: Transform - pos: -16.5,7.5 + rot: 3.141592653589793 rad + pos: 58.5,21.5 parent: 31 - - uid: 7677 + - uid: 6747 components: - type: Transform - pos: 62.5,-10.5 + rot: 1.5707963267948966 rad + pos: 54.5,24.5 parent: 31 - - uid: 7678 + - uid: 7080 components: - type: Transform - pos: 61.5,-16.5 + rot: 1.5707963267948966 rad + pos: -11.5,-42.5 parent: 31 - - uid: 7679 + - uid: 7431 components: - type: Transform - pos: 61.5,-14.5 + rot: 3.141592653589793 rad + pos: -10.5,30.5 parent: 31 - - uid: 7688 + - uid: 7579 components: - type: Transform - pos: 23.5,19.5 + rot: 1.5707963267948966 rad + pos: 60.5,-15.5 parent: 31 - - uid: 7692 + - uid: 7676 components: - type: Transform - pos: -39.5,12.5 + rot: 3.141592653589793 rad + pos: 61.5,-12.5 parent: 31 - - uid: 7697 + - uid: 8033 components: - type: Transform - pos: -46.5,-12.5 + rot: 1.5707963267948966 rad + pos: -23.5,29.5 parent: 31 - - uid: 7713 + - uid: 8034 components: - type: Transform - pos: -54.5,-10.5 + rot: -1.5707963267948966 rad + pos: -21.5,29.5 parent: 31 - - uid: 7748 + - uid: 8035 components: - type: Transform - pos: 49.5,-31.5 + rot: -1.5707963267948966 rad + pos: -28.5,29.5 parent: 31 - - uid: 7777 + - uid: 8308 components: - type: Transform - pos: 45.5,12.5 + pos: 58.5,-31.5 parent: 31 - - uid: 7798 + - uid: 8369 components: - type: Transform - pos: 13.5,-10.5 + pos: 38.5,26.5 parent: 31 - - uid: 7800 + - uid: 8386 components: - type: Transform - pos: 13.5,-11.5 + rot: -1.5707963267948966 rad + pos: 2.5,36.5 parent: 31 - - uid: 7824 + - uid: 8387 components: - type: Transform - pos: -5.5,-33.5 + rot: 1.5707963267948966 rad + pos: 56.5,-38.5 parent: 31 - - uid: 7830 + - uid: 8388 components: - type: Transform - pos: -42.5,-8.5 + pos: 58.5,-36.5 parent: 31 - - uid: 7838 + - uid: 8389 components: - type: Transform - pos: -18.5,26.5 + rot: 3.141592653589793 rad + pos: 58.5,-35.5 parent: 31 - - uid: 7839 + - uid: 8391 components: - type: Transform - pos: -15.5,26.5 + rot: 3.141592653589793 rad + pos: 58.5,-28.5 parent: 31 - - uid: 7840 + - uid: 8392 components: - type: Transform - pos: -12.5,26.5 + rot: 3.141592653589793 rad + pos: 58.5,-26.5 parent: 31 - - uid: 7864 + - uid: 8393 components: - type: Transform - pos: -11.5,29.5 + pos: 58.5,-26.5 parent: 31 - - uid: 7867 + - uid: 8394 components: - type: Transform - pos: 28.5,-25.5 + pos: 58.5,-20.5 parent: 31 - - uid: 7868 + - uid: 8395 components: - type: Transform - pos: 28.5,-23.5 + rot: 3.141592653589793 rad + pos: 58.5,-20.5 parent: 31 - - uid: 7947 + - uid: 8396 components: - type: Transform - pos: -40.5,-8.5 + rot: -1.5707963267948966 rad + pos: 58.5,-17.5 parent: 31 - - uid: 8021 + - uid: 8397 components: - type: Transform - pos: -15.5,29.5 + pos: 58.5,-15.5 parent: 31 - - uid: 8022 + - uid: 8398 components: - type: Transform - pos: -16.5,29.5 + rot: 3.141592653589793 rad + pos: 58.5,-13.5 parent: 31 - - uid: 8023 + - uid: 8748 components: - type: Transform - pos: -17.5,29.5 + rot: -1.5707963267948966 rad + pos: 40.5,26.5 parent: 31 - - uid: 8024 + - uid: 8749 components: - type: Transform - pos: -22.5,29.5 + rot: -1.5707963267948966 rad + pos: 46.5,26.5 parent: 31 - - uid: 8025 + - uid: 9674 components: - type: Transform - pos: -29.5,29.5 + pos: 14.5,-33.5 parent: 31 - - uid: 8027 + - uid: 9819 components: - type: Transform - pos: -10.5,29.5 + rot: -1.5707963267948966 rad + pos: 13.5,-45.5 parent: 31 - - uid: 8032 + - uid: 9844 components: - type: Transform - pos: -20.5,29.5 + rot: -1.5707963267948966 rad + pos: 1.5,-47.5 parent: 31 - - uid: 8036 + - uid: 9845 components: - type: Transform - pos: -19.5,29.5 + pos: 4.5,-46.5 parent: 31 - - uid: 8037 + - uid: 9846 components: - type: Transform - pos: -12.5,29.5 + rot: 3.141592653589793 rad + pos: 4.5,-46.5 parent: 31 - - uid: 8038 + - uid: 9848 components: - type: Transform - pos: -13.5,29.5 + pos: 11.5,-44.5 parent: 31 - - uid: 8048 + - uid: 9850 components: - type: Transform - pos: 29.5,21.5 + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 parent: 31 - - uid: 8052 + - uid: 9851 components: - type: Transform - pos: -41.5,6.5 + rot: -1.5707963267948966 rad + pos: 9.5,-45.5 parent: 31 - - uid: 8056 + - uid: 9852 components: - type: Transform - pos: 33.5,26.5 + rot: 3.141592653589793 rad + pos: 14.5,-37.5 parent: 31 - - uid: 8074 + - uid: 9853 components: - type: Transform - pos: 45.5,11.5 + rot: 3.141592653589793 rad + pos: 13.5,-34.5 parent: 31 - - uid: 8084 + - uid: 9854 components: - type: Transform - pos: -16.5,6.5 + rot: 3.141592653589793 rad + pos: -1.5,-46.5 parent: 31 - - uid: 8097 + - uid: 9855 components: - type: Transform - pos: 3.5,-23.5 + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 parent: 31 - - uid: 8103 + - uid: 9856 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,17.5 + pos: 6.5,-47.5 parent: 31 - - uid: 8108 + - uid: 9859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,0.5 + rot: -1.5707963267948966 rad + pos: -20.5,-39.5 parent: 31 - - uid: 8109 + - uid: 9860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,1.5 + pos: -22.5,-36.5 parent: 31 - - uid: 8111 + - uid: 9871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,3.5 + rot: 3.141592653589793 rad + pos: -22.5,-36.5 parent: 31 - - uid: 8112 + - uid: 9874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,4.5 + pos: -18.5,-39.5 parent: 31 - - uid: 8145 + - uid: 9879 components: - type: Transform - pos: 52.5,8.5 + rot: 1.5707963267948966 rad + pos: -21.5,-36.5 parent: 31 - - uid: 8156 + - uid: 10144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-31.5 + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 parent: 31 - - uid: 8157 + - uid: 10225 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-31.5 + pos: 60.5,-10.5 parent: 31 - - uid: 8216 + - uid: 10227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 + pos: -10.5,30.5 parent: 31 - - uid: 8217 + - uid: 10228 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-24.5 + pos: 61.5,-13.5 parent: 31 - - uid: 8222 + - uid: 10467 components: - type: Transform - pos: -32.5,19.5 + rot: 1.5707963267948966 rad + pos: -6.5,-42.5 parent: 31 - - uid: 8293 + - uid: 10512 components: - type: Transform - pos: 50.5,-31.5 + rot: 1.5707963267948966 rad + pos: 58.5,20.5 parent: 31 - - uid: 8294 + - uid: 10605 components: - type: Transform - pos: 48.5,-31.5 + rot: 3.141592653589793 rad + pos: 44.5,-9.5 parent: 31 - - uid: 8305 + - uid: 10708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-29.5 + pos: -0.5,37.5 parent: 31 - - uid: 8306 + - uid: 12532 components: - type: Transform - pos: 50.5,18.5 + rot: 3.141592653589793 rad + pos: 30.5,26.5 parent: 31 - - uid: 8309 +- proto: GrilleDiagonal + entities: + - uid: 1577 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-32.5 + pos: 1.5,-35.5 parent: 31 - - uid: 8310 + - uid: 9557 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-33.5 + pos: 0.5,-33.5 parent: 31 - - uid: 8313 + - uid: 12535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 + rot: -1.5707963267948966 rad + pos: 37.5,28.5 parent: 31 - - uid: 8329 +- proto: GrilleSpawner + entities: + - uid: 420 components: - type: Transform - pos: 48.5,-6.5 + pos: 35.5,-34.5 parent: 31 - - uid: 8330 + - uid: 421 components: - type: Transform - pos: 54.5,-2.5 + pos: 35.5,-37.5 parent: 31 - - uid: 8331 + - uid: 422 components: - type: Transform - pos: 58.5,-16.5 + pos: 34.5,-30.5 parent: 31 - - uid: 8332 + - uid: 437 components: - type: Transform - pos: 58.5,-18.5 + pos: 40.5,-32.5 parent: 31 - - uid: 8333 + - uid: 465 components: - type: Transform - pos: 58.5,-19.5 + pos: 28.5,-45.5 parent: 31 - - uid: 8334 + - uid: 466 components: - type: Transform - pos: 58.5,-21.5 + pos: 28.5,-35.5 parent: 31 - - uid: 8335 + - uid: 468 components: - type: Transform - pos: 58.5,-22.5 + pos: 30.5,-47.5 parent: 31 - - uid: 8336 + - uid: 470 components: - type: Transform - pos: 58.5,-23.5 + pos: 28.5,-44.5 parent: 31 - - uid: 8337 + - uid: 471 components: - type: Transform - pos: 58.5,-24.5 + pos: 39.5,-35.5 parent: 31 - - uid: 8338 + - uid: 481 components: - type: Transform - pos: 58.5,-25.5 + pos: 36.5,-35.5 parent: 31 - - uid: 8339 + - uid: 482 components: - type: Transform - pos: 58.5,-27.5 + pos: 37.5,-35.5 parent: 31 - - uid: 8340 + - uid: 483 components: - type: Transform - pos: 58.5,-34.5 + pos: 36.5,-33.5 parent: 31 - - uid: 8341 + - uid: 485 components: - type: Transform - pos: 58.5,-37.5 + pos: 35.5,-47.5 parent: 31 - - uid: 8342 + - uid: 486 components: - type: Transform - pos: 58.5,-38.5 + pos: 43.5,-34.5 parent: 31 - - uid: 8343 + - uid: 487 components: - type: Transform - pos: 57.5,-38.5 + pos: 37.5,-47.5 parent: 31 - - uid: 8349 + - uid: 488 components: - type: Transform - pos: 32.5,26.5 + pos: 39.5,-47.5 parent: 31 - - uid: 8350 + - uid: 489 components: - type: Transform - pos: 30.5,-38.5 + pos: 42.5,-35.5 parent: 31 - - uid: 8351 + - uid: 499 components: - type: Transform - pos: 29.5,-38.5 + pos: 43.5,-31.5 parent: 31 - - uid: 8352 + - uid: 500 components: - type: Transform - pos: 28.5,-38.5 + pos: 45.5,-30.5 parent: 31 - - uid: 8353 + - uid: 502 components: - type: Transform - pos: 26.5,-38.5 + pos: 45.5,-32.5 parent: 31 - - uid: 8354 + - uid: 504 components: - type: Transform - pos: 24.5,-38.5 + pos: 44.5,-33.5 parent: 31 - - uid: 8355 + - uid: 505 components: - type: Transform - pos: 23.5,-38.5 + pos: 37.5,-33.5 parent: 31 - - uid: 8356 + - uid: 512 components: - type: Transform - pos: 22.5,-38.5 + pos: 40.5,-36.5 parent: 31 - - uid: 8357 + - uid: 559 components: - type: Transform - pos: 21.5,-38.5 + pos: 39.5,-33.5 parent: 31 - - uid: 8362 + - uid: 932 components: - type: Transform - pos: 42.5,26.5 + pos: 18.5,-32.5 parent: 31 - - uid: 8363 + - uid: 1046 components: - type: Transform - pos: 44.5,26.5 + pos: 41.5,-33.5 parent: 31 - - uid: 8364 + - uid: 1695 components: - type: Transform - pos: 45.5,26.5 + pos: 40.5,-28.5 parent: 31 - - uid: 8367 + - uid: 2537 components: - type: Transform - pos: -33.5,-15.5 + pos: 35.5,-32.5 parent: 31 - - uid: 8371 + - uid: 3053 components: - type: Transform - pos: 43.5,26.5 + pos: 32.5,-47.5 parent: 31 - - uid: 8390 + - uid: 3424 components: - type: Transform - pos: 6.5,36.5 + pos: 20.5,-32.5 parent: 31 - - uid: 8484 + - uid: 3475 components: - type: Transform - pos: -13.5,-19.5 + pos: 40.5,-46.5 parent: 31 - - uid: 8566 + - uid: 3806 components: - type: Transform - pos: -37.5,-24.5 + pos: -39.5,23.5 parent: 31 - - uid: 8567 + - uid: 3807 components: - type: Transform - pos: -37.5,-23.5 + pos: -39.5,22.5 parent: 31 - - uid: 8568 + - uid: 4195 components: - type: Transform - pos: -36.5,-22.5 + pos: -39.5,25.5 parent: 31 - - uid: 8570 + - uid: 4343 components: - type: Transform - pos: -34.5,-22.5 + pos: 39.5,-31.5 parent: 31 - - uid: 8571 + - uid: 4401 components: - type: Transform - pos: -33.5,-23.5 + pos: 41.5,-31.5 parent: 31 - - uid: 8572 + - uid: 4411 components: - type: Transform - pos: -33.5,-24.5 + pos: 40.5,-40.5 parent: 31 - - uid: 8575 + - uid: 4412 components: - type: Transform - pos: -37.5,-28.5 + pos: 35.5,-30.5 parent: 31 - - uid: 8576 + - uid: 4413 components: - type: Transform - pos: -32.5,-33.5 + pos: 38.5,-31.5 parent: 31 - - uid: 8601 + - uid: 4415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-32.5 + pos: 40.5,-30.5 parent: 31 - - uid: 8819 + - uid: 4422 components: - type: Transform - pos: 4.5,26.5 + pos: 34.5,-28.5 parent: 31 - - uid: 8820 + - uid: 4423 components: - type: Transform - pos: 2.5,26.5 + pos: 22.5,-32.5 parent: 31 - - uid: 8946 + - uid: 4426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 + pos: 40.5,-38.5 parent: 31 - - uid: 8947 + - uid: 4454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 + pos: 40.5,-42.5 parent: 31 - - uid: 8948 + - uid: 4462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 + pos: 40.5,-44.5 parent: 31 - - uid: 9012 + - uid: 4585 components: - type: Transform - pos: -4.5,-33.5 + pos: -39.5,24.5 parent: 31 - - uid: 9019 + - uid: 4744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,12.5 + pos: -51.5,-32.5 parent: 31 - - uid: 9027 + - uid: 4871 components: - type: Transform - pos: -8.5,-24.5 + pos: -49.5,-32.5 parent: 31 - - uid: 9030 + - uid: 4872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,10.5 + pos: -47.5,-32.5 parent: 31 - - uid: 9032 + - uid: 4876 components: - type: Transform - pos: 33.5,-38.5 + pos: -55.5,-24.5 parent: 31 - - uid: 9063 + - uid: 4877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,8.5 + pos: -55.5,-26.5 parent: 31 - - uid: 9064 + - uid: 4896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,12.5 + pos: -39.5,26.5 parent: 31 - - uid: 9124 + - uid: 4953 components: - type: Transform - pos: 5.5,-11.5 + pos: -55.5,-28.5 parent: 31 - - uid: 9125 + - uid: 4955 components: - type: Transform - pos: 5.5,-10.5 + pos: -53.5,-32.5 parent: 31 - - uid: 9126 + - uid: 4956 components: - type: Transform - pos: 5.5,-8.5 + pos: -55.5,-32.5 parent: 31 - - uid: 9127 + - uid: 4960 components: - type: Transform - pos: 5.5,-7.5 + pos: -55.5,-30.5 parent: 31 - - uid: 9136 + - uid: 5051 components: - type: Transform - pos: 26.5,22.5 + pos: 28.5,-37.5 parent: 31 - - uid: 9145 + - uid: 5052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 + pos: 28.5,-39.5 parent: 31 - - uid: 9163 + - uid: 5053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,14.5 + pos: 28.5,-38.5 parent: 31 - - uid: 9174 + - uid: 5054 components: - type: Transform - pos: -37.5,-12.5 + pos: 28.5,-33.5 parent: 31 - - uid: 9175 + - uid: 5129 components: - type: Transform - pos: -39.5,-1.5 + pos: 28.5,-36.5 parent: 31 - - uid: 9208 + - uid: 5131 components: - type: Transform - pos: -36.5,-12.5 + pos: 28.5,-34.5 parent: 31 - - uid: 9209 + - uid: 5159 components: - type: Transform - pos: -35.5,-12.5 + pos: 27.5,-32.5 parent: 31 - - uid: 9219 + - uid: 5160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: 26.5,-32.5 parent: 31 - - uid: 9231 + - uid: 5164 components: - type: Transform - pos: -41.5,-0.5 + pos: 25.5,-32.5 parent: 31 - - uid: 9232 + - uid: 5165 components: - type: Transform - pos: -42.5,-0.5 + pos: 28.5,-32.5 parent: 31 - - uid: 9233 + - uid: 5266 components: - type: Transform - pos: -43.5,-0.5 + pos: -38.5,45.5 parent: 31 - - uid: 9234 + - uid: 5267 components: - type: Transform - pos: -43.5,11.5 + pos: -37.5,45.5 parent: 31 - - uid: 9235 + - uid: 6402 components: - type: Transform - pos: -42.5,11.5 + pos: 28.5,-47.5 parent: 31 - - uid: 9236 + - uid: 6410 components: - type: Transform - pos: -41.5,11.5 + pos: 28.5,-40.5 parent: 31 - - uid: 9257 + - uid: 6437 components: - type: Transform - pos: -7.5,-24.5 + pos: 28.5,-46.5 parent: 31 - - uid: 9260 + - uid: 6442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,14.5 + pos: 28.5,-43.5 parent: 31 - - uid: 9291 + - uid: 6469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 + pos: 28.5,-41.5 parent: 31 - - uid: 9331 + - uid: 6511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,2.5 + pos: 24.5,-32.5 parent: 31 - - uid: 9332 + - uid: 6681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,2.5 + pos: 33.5,-47.5 parent: 31 - - uid: 9344 + - uid: 6710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,17.5 + pos: 40.5,-41.5 parent: 31 - - uid: 9362 + - uid: 6768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + pos: 40.5,-43.5 parent: 31 - - uid: 9364 + - uid: 6769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-25.5 + pos: 35.5,-31.5 parent: 31 - - uid: 9368 + - uid: 6770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 + pos: 40.5,-29.5 parent: 31 - - uid: 9370 + - uid: 6771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,14.5 + pos: 37.5,-31.5 parent: 31 - - uid: 9372 + - uid: 6772 components: - type: Transform - pos: -17.5,-18.5 + pos: 40.5,-31.5 parent: 31 - - uid: 9405 + - uid: 6773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,14.5 + pos: 21.5,-32.5 parent: 31 - - uid: 9408 + - uid: 6776 components: - type: Transform - pos: -4.5,-37.5 + pos: 40.5,-45.5 parent: 31 - - uid: 9409 + - uid: 6777 components: - type: Transform - pos: -3.5,-37.5 + pos: 40.5,-27.5 parent: 31 - - uid: 9410 + - uid: 6780 components: - type: Transform - pos: -2.5,-37.5 + pos: 19.5,-32.5 parent: 31 - - uid: 9413 + - uid: 6781 components: - type: Transform - pos: -1.5,-37.5 + pos: 35.5,-33.5 parent: 31 - - uid: 9419 + - uid: 6993 components: - type: Transform - pos: -14.5,-33.5 + pos: 40.5,-39.5 parent: 31 - - uid: 9420 + - uid: 6994 components: - type: Transform - pos: -15.5,-33.5 + pos: 40.5,-37.5 parent: 31 - - uid: 9421 + - uid: 7220 components: - type: Transform - pos: -16.5,-33.5 + pos: 34.5,-27.5 parent: 31 - - uid: 9422 + - uid: 8025 components: - type: Transform - pos: -15.5,-40.5 + pos: 36.5,-31.5 parent: 31 - - uid: 9423 + - uid: 8354 components: - type: Transform - pos: -14.5,-40.5 + pos: 38.5,-33.5 parent: 31 - - uid: 9424 + - uid: 8355 components: - type: Transform - pos: -13.5,-40.5 + pos: 42.5,-33.5 parent: 31 - - uid: 9460 + - uid: 8356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-26.5 + pos: 40.5,-33.5 parent: 31 - - uid: 9515 + - uid: 8357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-12.5 + pos: 35.5,-35.5 parent: 31 - - uid: 9525 + - uid: 8375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-41.5 + pos: 35.5,-36.5 parent: 31 - - uid: 9535 + - uid: 8376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-12.5 + pos: 34.5,-29.5 parent: 31 - - uid: 9536 + - uid: 8377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-12.5 + pos: 42.5,-31.5 parent: 31 - - uid: 9553 + - uid: 8378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 + pos: 44.5,-31.5 parent: 31 - - uid: 9561 + - uid: 8379 components: - type: Transform - pos: 3.5,-35.5 + pos: 45.5,-31.5 parent: 31 - - uid: 9598 + - uid: 8380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 + pos: 45.5,-33.5 parent: 31 - - uid: 9658 + - uid: 8577 components: - type: Transform - pos: -3.5,-44.5 + pos: 43.5,-33.5 parent: 31 - - uid: 9659 + - uid: 8578 components: - type: Transform - pos: -2.5,-44.5 + pos: 43.5,-35.5 parent: 31 - - uid: 9660 + - uid: 8579 components: - type: Transform - pos: -0.5,-45.5 + pos: 41.5,-35.5 parent: 31 - - uid: 9661 + - uid: 8580 components: - type: Transform - pos: 0.5,-45.5 + pos: 40.5,-35.5 parent: 31 - - uid: 9662 + - uid: 8589 components: - type: Transform - pos: 1.5,-45.5 + pos: 36.5,-47.5 parent: 31 - - uid: 9692 + - uid: 8590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 38.5,-47.5 parent: 31 - - uid: 9693 + - uid: 8591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 + pos: 40.5,-47.5 parent: 31 - - uid: 9700 + - uid: 8592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-30.5 + pos: 29.5,-47.5 parent: 31 - - uid: 9723 + - uid: 8593 components: - type: Transform - pos: 54.5,7.5 + pos: 31.5,-47.5 parent: 31 - - uid: 9745 + - uid: 8594 components: - type: Transform - pos: 58.5,4.5 + pos: 34.5,-47.5 parent: 31 - - uid: 9765 + - uid: 8595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,2.5 + pos: 38.5,-35.5 parent: 31 - - uid: 9769 + - uid: 8630 components: - type: Transform - pos: -6.5,-33.5 + pos: -55.5,-25.5 parent: 31 - - uid: 9805 + - uid: 8631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-34.5 + pos: -55.5,-27.5 parent: 31 - - uid: 9806 + - uid: 8632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-35.5 + pos: -55.5,-29.5 parent: 31 - - uid: 9807 + - uid: 8633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-36.5 + pos: -46.5,-32.5 parent: 31 - - uid: 9808 + - uid: 8634 components: - type: Transform - pos: 12.5,-45.5 + pos: -50.5,-32.5 parent: 31 - - uid: 9809 + - uid: 8635 components: - type: Transform - pos: 11.5,-45.5 + pos: -48.5,-32.5 parent: 31 - - uid: 9810 + - uid: 8636 components: - type: Transform - pos: 8.5,-45.5 + pos: -52.5,-32.5 parent: 31 - - uid: 9811 + - uid: 8637 components: - type: Transform - pos: 5.5,-47.5 + pos: -54.5,-32.5 parent: 31 - - uid: 9812 + - uid: 8638 components: - type: Transform - pos: 4.5,-47.5 + pos: -55.5,-31.5 parent: 31 - - uid: 9813 + - uid: 11812 components: - type: Transform - pos: 3.5,-47.5 + pos: 23.5,-32.5 parent: 31 - - uid: 9814 + - uid: 11937 components: - type: Transform - pos: 4.5,-45.5 + pos: 28.5,-42.5 parent: 31 - - uid: 9815 + - uid: 12121 components: - type: Transform - pos: -0.5,-47.5 + pos: -36.5,45.5 parent: 31 - - uid: 9817 + - uid: 12558 components: - type: Transform - pos: 0.5,-47.5 + pos: -27.5,29.5 parent: 31 - - uid: 9823 + - uid: 12631 components: - type: Transform - pos: -22.5,-39.5 + pos: -35.5,45.5 parent: 31 - - uid: 9824 + - uid: 12632 components: - type: Transform - pos: -22.5,-38.5 + pos: -34.5,45.5 parent: 31 - - uid: 9826 + - uid: 12633 components: - type: Transform - pos: -22.5,-37.5 + pos: -33.5,45.5 parent: 31 - - uid: 9827 + - uid: 12634 components: - type: Transform - pos: -21.5,-39.5 + pos: -32.5,45.5 parent: 31 - - uid: 9832 + - uid: 12635 components: - type: Transform - pos: -22.5,-34.5 + pos: -31.5,45.5 parent: 31 - - uid: 9837 + - uid: 12636 components: - type: Transform - pos: -22.5,-35.5 + pos: -30.5,45.5 parent: 31 - - uid: 9838 + - uid: 12637 components: - type: Transform - pos: -39.5,14.5 + pos: -29.5,45.5 parent: 31 - - uid: 9889 + - uid: 12638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,13.5 + pos: -28.5,45.5 parent: 31 - - uid: 9896 + - uid: 12639 components: - type: Transform - pos: -9.5,26.5 + pos: -26.5,44.5 parent: 31 - - uid: 9949 + - uid: 12640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-14.5 + pos: -26.5,43.5 parent: 31 - - uid: 10061 + - uid: 12641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + pos: -26.5,42.5 parent: 31 - - uid: 10064 + - uid: 12642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,26.5 + pos: -26.5,41.5 parent: 31 - - uid: 10065 + - uid: 12643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + pos: -26.5,40.5 parent: 31 - - uid: 10066 + - uid: 12644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,27.5 + pos: -26.5,39.5 parent: 31 - - uid: 10067 + - uid: 12645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,23.5 + pos: -26.5,38.5 parent: 31 - - uid: 10068 + - uid: 12646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,24.5 + pos: -26.5,36.5 parent: 31 - - uid: 10069 + - uid: 12647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,24.5 + pos: -26.5,35.5 parent: 31 - - uid: 10070 + - uid: 12648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,23.5 + pos: -26.5,34.5 parent: 31 - - uid: 10080 + - uid: 12649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,28.5 + pos: -26.5,33.5 parent: 31 - - uid: 10113 + - uid: 12650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,7.5 + pos: -26.5,32.5 parent: 31 - - uid: 10114 + - uid: 12651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,12.5 + pos: -40.5,30.5 parent: 31 - - uid: 10126 + - uid: 12652 components: - type: Transform - pos: -1.5,36.5 + pos: -40.5,31.5 parent: 31 - - uid: 10196 + - uid: 12653 components: - type: Transform - pos: -33.5,-14.5 + pos: -40.5,32.5 parent: 31 - - uid: 10197 + - uid: 12654 components: - type: Transform - pos: -34.5,-15.5 + pos: -40.5,33.5 parent: 31 - - uid: 10198 + - uid: 12655 components: - type: Transform - pos: -35.5,-15.5 + pos: -40.5,34.5 parent: 31 - - uid: 10226 + - uid: 12656 components: - type: Transform - pos: 61.5,-15.5 + pos: -40.5,35.5 parent: 31 - - uid: 10372 + - uid: 12657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,14.5 + pos: -40.5,36.5 parent: 31 - - uid: 10438 + - uid: 12658 components: - type: Transform - pos: -39.5,18.5 + pos: -40.5,38.5 parent: 31 - - uid: 10520 + - uid: 12659 components: - type: Transform - pos: 25.5,22.5 + pos: -40.5,39.5 parent: 31 - - uid: 10604 + - uid: 12660 components: - type: Transform - pos: 44.5,-8.5 + pos: -40.5,40.5 parent: 31 - - uid: 10712 + - uid: 12661 components: - type: Transform - pos: -44.5,7.5 + pos: -40.5,41.5 parent: 31 - - uid: 10747 + - uid: 12662 components: - type: Transform - pos: -46.5,-8.5 + pos: -40.5,42.5 parent: 31 - - uid: 10748 + - uid: 12663 components: - type: Transform - pos: -47.5,-8.5 + pos: -40.5,43.5 parent: 31 - - uid: 10749 + - uid: 12664 components: - type: Transform - pos: -48.5,-8.5 + pos: -27.5,35.5 parent: 31 - - uid: 10751 + - uid: 12665 components: - type: Transform - pos: -45.5,-8.5 + pos: -38.5,33.5 parent: 31 - - uid: 11071 + - uid: 12666 components: - type: Transform - pos: 46.5,20.5 + pos: -27.5,41.5 parent: 31 - - uid: 11077 + - uid: 12667 components: - type: Transform - pos: 45.5,13.5 + pos: -27.5,41.5 parent: 31 - - uid: 11090 + - uid: 12668 components: - type: Transform - pos: 30.5,23.5 + pos: -28.5,41.5 parent: 31 - - uid: 11110 + - uid: 12669 components: - type: Transform - pos: -6.5,30.5 + pos: -38.5,41.5 parent: 31 - - uid: 11112 + - uid: 12670 components: - type: Transform - pos: -7.5,30.5 + pos: -39.5,41.5 parent: 31 - - uid: 11113 + - uid: 12671 components: - type: Transform - pos: -5.5,30.5 + pos: -39.5,33.5 parent: 31 - - uid: 11145 + - uid: 12672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,11.5 + pos: -28.5,35.5 parent: 31 - - uid: 11156 + - uid: 12673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 + pos: -28.5,46.5 parent: 31 - - uid: 11159 + - uid: 12674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-4.5 + pos: -28.5,44.5 parent: 31 - - uid: 11161 + - uid: 12675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,6.5 + pos: -27.5,44.5 parent: 31 - - uid: 11162 + - uid: 12676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,6.5 + pos: -25.5,44.5 parent: 31 - - uid: 11163 + - uid: 12677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,8.5 + pos: -27.5,42.5 parent: 31 - - uid: 11164 + - uid: 12678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,5.5 + pos: -27.5,40.5 parent: 31 - - uid: 11166 + - uid: 12679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-4.5 + pos: -27.5,38.5 parent: 31 - - uid: 11167 + - uid: 12680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-4.5 + pos: -25.5,38.5 parent: 31 - - uid: 11168 + - uid: 12681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,12.5 + pos: -25.5,36.5 parent: 31 - - uid: 11172 + - uid: 12682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,5.5 + pos: -27.5,36.5 parent: 31 - - uid: 11176 + - uid: 12683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-4.5 + pos: -27.5,34.5 parent: 31 - - uid: 11179 + - uid: 12684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,4.5 + pos: -27.5,32.5 parent: 31 - - uid: 11190 + - uid: 12685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,11.5 + pos: -25.5,32.5 parent: 31 - - uid: 11192 + - uid: 12686 components: - type: Transform - pos: 63.5,11.5 + pos: -39.5,34.5 parent: 31 - - uid: 11193 + - uid: 12687 components: - type: Transform - pos: 64.5,11.5 + pos: -39.5,32.5 parent: 31 - - uid: 11324 + - uid: 12688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-23.5 + pos: -39.5,36.5 parent: 31 - - uid: 11326 + - uid: 12689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-20.5 + pos: -39.5,38.5 parent: 31 - - uid: 11367 + - uid: 12690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-19.5 + pos: -39.5,40.5 parent: 31 - - uid: 11408 + - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-4.5 + pos: -39.5,43.5 parent: 31 - - uid: 11409 + - uid: 12692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-2.5 + pos: -41.5,43.5 parent: 31 - - uid: 11410 + - uid: 12693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-6.5 + pos: -38.5,44.5 parent: 31 - - uid: 11480 + - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,16.5 + pos: -38.5,46.5 parent: 31 - - uid: 11770 + - uid: 12695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,6.5 + pos: -41.5,38.5 parent: 31 - - uid: 11771 + - uid: 12696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,7.5 + pos: -41.5,36.5 parent: 31 - - uid: 11772 + - uid: 12697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,8.5 + pos: -39.5,30.5 parent: 31 - - uid: 11811 + - uid: 12698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,3.5 + pos: -41.5,30.5 parent: 31 - - uid: 11812 + - uid: 12699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + pos: -41.5,22.5 parent: 31 - - uid: 11831 + - uid: 12700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,12.5 + pos: -41.5,20.5 parent: 31 - - uid: 11832 + - uid: 12701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,12.5 + pos: -24.5,27.5 parent: 31 - - uid: 11833 + - uid: 12702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,12.5 + pos: -25.5,27.5 parent: 31 - - uid: 11841 + - uid: 12703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,11.5 + pos: -27.5,27.5 parent: 31 - - uid: 11845 + - uid: 12704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,7.5 + pos: -25.5,26.5 parent: 31 - - uid: 11906 + - uid: 12706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-5.5 + pos: -19.5,27.5 parent: 31 - - uid: 11907 + - uid: 12707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-5.5 + pos: -17.5,27.5 parent: 31 - - uid: 11908 + - uid: 12774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-5.5 + pos: -45.5,-32.5 parent: 31 - - uid: 11909 + - uid: 12775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-5.5 + pos: -44.5,-32.5 parent: 31 - - uid: 11910 + - uid: 12776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,5.5 + pos: -43.5,-32.5 parent: 31 - - uid: 11911 + - uid: 12777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,3.5 + pos: -42.5,-32.5 parent: 31 - - uid: 11912 + - uid: 12778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,4.5 + pos: -41.5,-32.5 parent: 31 - - uid: 11913 + - uid: 12779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,2.5 + pos: -40.5,-32.5 parent: 31 - - uid: 11914 + - uid: 12780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,1.5 + pos: -39.5,-32.5 parent: 31 - - uid: 11915 + - uid: 12781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,0.5 + pos: -38.5,-32.5 parent: 31 - - uid: 11916 + - uid: 12782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,0.5 + pos: -54.5,-24.5 parent: 31 - - uid: 11917 + - uid: 12783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-0.5 + pos: -53.5,-24.5 parent: 31 - - uid: 11918 + - uid: 12784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-0.5 + pos: -52.5,-24.5 parent: 31 - - uid: 11919 + - uid: 12785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-1.5 + pos: -51.5,-24.5 parent: 31 - - uid: 11920 + - uid: 12786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-1.5 + pos: -50.5,-24.5 parent: 31 - - uid: 11921 + - uid: 12787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-2.5 + pos: -49.5,-24.5 parent: 31 - - uid: 11922 + - uid: 12788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-2.5 + pos: -48.5,-24.5 parent: 31 - - uid: 11923 + - uid: 12789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-3.5 + pos: -47.5,-24.5 parent: 31 - - uid: 11924 + - uid: 12790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-3.5 + pos: -46.5,-24.5 parent: 31 - - uid: 11925 + - uid: 12791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-4.5 + pos: -45.5,-24.5 parent: 31 - - uid: 11926 + - uid: 12792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-4.5 + pos: -44.5,-24.5 parent: 31 - - uid: 11927 + - uid: 12793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-5.5 + pos: -43.5,-24.5 parent: 31 - - uid: 11928 + - uid: 12794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-5.5 + pos: -42.5,-24.5 parent: 31 - - uid: 11929 + - uid: 12795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-6.5 + pos: -41.5,-24.5 parent: 31 - - uid: 11930 + - uid: 12796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-6.5 + pos: -40.5,-24.5 parent: 31 - - uid: 11931 + - uid: 12797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-7.5 + pos: -39.5,-24.5 parent: 31 - - uid: 11932 + - uid: 12798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-7.5 + pos: -38.5,-24.5 parent: 31 - - uid: 11933 + - uid: 12799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-7.5 + pos: -38.5,-23.5 parent: 31 - - uid: 11934 + - uid: 12800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-7.5 + pos: -38.5,-22.5 parent: 31 - - uid: 12029 + - uid: 12802 components: - type: Transform - pos: 68.5,-8.5 + pos: -36.5,-43.5 parent: 31 - - uid: 12030 + - uid: 12847 components: - type: Transform - pos: 67.5,-8.5 + pos: -36.5,-34.5 parent: 31 - - uid: 12031 + - uid: 12848 components: - type: Transform - pos: 69.5,-8.5 + pos: -36.5,-35.5 parent: 31 - - uid: 12032 + - uid: 12849 components: - type: Transform - pos: 65.5,-8.5 + pos: -36.5,-36.5 parent: 31 - - uid: 12033 + - uid: 12850 components: - type: Transform - pos: 66.5,-8.5 + pos: -36.5,-37.5 parent: 31 - - uid: 12034 + - uid: 12851 components: - type: Transform - pos: 64.5,-8.5 + pos: -36.5,-38.5 parent: 31 - - uid: 12035 + - uid: 12852 components: - type: Transform - pos: 63.5,-8.5 + pos: -36.5,-39.5 parent: 31 - - uid: 12036 + - uid: 12853 components: - type: Transform - pos: 62.5,-8.5 + pos: -36.5,-40.5 parent: 31 - - uid: 12099 + - uid: 12854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,15.5 - parent: 12098 -- proto: GrilleBroken - entities: - - uid: 80 + pos: -36.5,-41.5 + parent: 31 + - uid: 12855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,20.5 + pos: -36.5,-42.5 parent: 31 - - uid: 552 + - uid: 12856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,12.5 + pos: -36.5,-44.5 parent: 31 - - uid: 831 + - uid: 12857 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,33.5 + pos: -36.5,-45.5 parent: 31 - - uid: 1025 + - uid: 12858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 + pos: -36.5,-46.5 parent: 31 - - uid: 1520 + - uid: 12859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,34.5 + pos: -36.5,-47.5 parent: 31 - - uid: 3658 + - uid: 12860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,34.5 + pos: -35.5,-47.5 parent: 31 - - uid: 3825 + - uid: 12861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,27.5 + pos: -34.5,-47.5 parent: 31 - - uid: 4025 + - uid: 12862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,36.5 + pos: -33.5,-47.5 parent: 31 - - uid: 4220 + - uid: 12863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-38.5 + pos: -32.5,-47.5 parent: 31 - - uid: 4444 + - uid: 12864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-8.5 + pos: -31.5,-47.5 parent: 31 - - uid: 4447 + - uid: 12865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-13.5 + pos: -30.5,-47.5 parent: 31 - - uid: 6467 + - uid: 12866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,24.5 + pos: -29.5,-47.5 parent: 31 - - uid: 6744 + - uid: 12867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,21.5 + pos: -28.5,-47.5 parent: 31 - - uid: 6747 + - uid: 12868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 + pos: -28.5,-46.5 parent: 31 - - uid: 7080 + - uid: 12869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 + pos: -28.5,-45.5 parent: 31 - - uid: 7431 + - uid: 12870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,30.5 + pos: -28.5,-44.5 parent: 31 - - uid: 7579 + - uid: 12871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-15.5 + pos: -28.5,-43.5 parent: 31 - - uid: 7676 + - uid: 12872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-12.5 + pos: -28.5,-42.5 parent: 31 - - uid: 8033 + - uid: 12873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,29.5 + pos: -28.5,-41.5 parent: 31 - - uid: 8034 + - uid: 12874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,29.5 + pos: -28.5,-40.5 parent: 31 - - uid: 8035 + - uid: 12875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,29.5 + pos: -28.5,-39.5 parent: 31 - - uid: 8042 + - uid: 12876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,29.5 + pos: -37.5,-36.5 parent: 31 - - uid: 8308 + - uid: 12877 components: - type: Transform - pos: 58.5,-31.5 + pos: -28.5,-38.5 parent: 31 - - uid: 8369 + - uid: 12878 components: - type: Transform - pos: 38.5,26.5 + pos: -28.5,-37.5 parent: 31 - - uid: 8375 + - uid: 12879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + pos: -28.5,-36.5 parent: 31 - - uid: 8376 + - uid: 12880 components: - type: Transform - pos: 22.5,-37.5 + pos: -28.5,-35.5 parent: 31 - - uid: 8377 + - uid: 12881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-38.5 + pos: -36.5,-33.5 parent: 31 - - uid: 8378 + - uid: 12882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 + pos: -37.5,-33.5 parent: 31 - - uid: 8379 + - uid: 12883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-38.5 + pos: -38.5,-33.5 parent: 31 - - uid: 8380 + - uid: 12884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-38.5 + pos: -38.5,-36.5 parent: 31 - - uid: 8386 + - uid: 12885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,36.5 + pos: -39.5,-36.5 parent: 31 - - uid: 8387 + - uid: 12886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-38.5 + pos: -37.5,-39.5 parent: 31 - - uid: 8388 + - uid: 12887 components: - type: Transform - pos: 58.5,-36.5 + pos: -38.5,-39.5 parent: 31 - - uid: 8389 + - uid: 12888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-35.5 + pos: -39.5,-39.5 parent: 31 - - uid: 8391 + - uid: 12889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-28.5 + pos: -40.5,-39.5 parent: 31 - - uid: 8392 + - uid: 12890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-26.5 + pos: -27.5,-42.5 parent: 31 - - uid: 8393 + - uid: 12891 components: - type: Transform - pos: 58.5,-26.5 + pos: -26.5,-42.5 parent: 31 - - uid: 8394 + - uid: 12892 components: - type: Transform - pos: 58.5,-20.5 + pos: -25.5,-42.5 parent: 31 - - uid: 8395 + - uid: 12893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-20.5 + pos: -24.5,-42.5 parent: 31 - - uid: 8396 + - uid: 12894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-17.5 + pos: -27.5,-45.5 parent: 31 - - uid: 8397 + - uid: 12895 components: - type: Transform - pos: 58.5,-15.5 + pos: -27.5,-46.5 parent: 31 - - uid: 8398 + - uid: 12896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-13.5 + pos: -26.5,-45.5 parent: 31 - - uid: 8748 + - uid: 12897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,26.5 + pos: -25.5,-45.5 parent: 31 - - uid: 8749 + - uid: 12898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,26.5 + pos: -29.5,-48.5 parent: 31 - - uid: 9674 + - uid: 12899 components: - type: Transform - pos: 14.5,-33.5 + pos: -29.5,-49.5 parent: 31 - - uid: 9699 + - uid: 12900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-38.5 + pos: -31.5,-48.5 parent: 31 - - uid: 9819 + - uid: 12901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-45.5 + pos: -35.5,-48.5 parent: 31 - - uid: 9844 + - uid: 12902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-47.5 + pos: -37.5,-46.5 parent: 31 - - uid: 9845 + - uid: 12903 components: - type: Transform - pos: 4.5,-46.5 + pos: -37.5,-44.5 parent: 31 - - uid: 9846 + - uid: 12904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-46.5 + pos: -38.5,-44.5 parent: 31 - - uid: 9848 + - uid: 12938 components: - type: Transform - pos: 11.5,-44.5 + pos: -36.5,30.5 parent: 31 - - uid: 9850 + - uid: 12939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-45.5 + pos: -37.5,29.5 parent: 31 - - uid: 9851 + - uid: 12940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-45.5 + pos: -36.5,29.5 parent: 31 - - uid: 9852 + - uid: 12941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-37.5 + pos: -35.5,29.5 parent: 31 - - uid: 9853 + - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-34.5 + pos: -36.5,28.5 parent: 31 - - uid: 9854 + - uid: 12943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-46.5 + pos: -35.5,28.5 parent: 31 - - uid: 9855 + - uid: 12944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 + pos: -35.5,27.5 parent: 31 - - uid: 9856 + - uid: 12945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 + pos: -30.5,29.5 parent: 31 - - uid: 9859 + - uid: 12946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-39.5 + pos: -31.5,29.5 parent: 31 - - uid: 9860 + - uid: 12947 components: - type: Transform - pos: -22.5,-36.5 + pos: -31.5,28.5 parent: 31 - - uid: 9871 + - uid: 12948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-36.5 + pos: -30.5,28.5 parent: 31 - - uid: 9874 + - uid: 12949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 + pos: -30.5,30.5 parent: 31 - - uid: 9879 + - uid: 12950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 + pos: -29.5,29.5 parent: 31 - - uid: 10144 + - uid: 12951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 + pos: -31.5,27.5 parent: 31 - - uid: 10225 + - uid: 12952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 + pos: -35.5,25.5 parent: 31 - - uid: 10227 + - uid: 12953 components: - type: Transform - pos: -10.5,30.5 + pos: -35.5,24.5 parent: 31 - - uid: 10228 + - uid: 12954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-13.5 + pos: -36.5,24.5 parent: 31 - - uid: 10467 + - uid: 12955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-42.5 + pos: -37.5,23.5 parent: 31 - - uid: 10605 + - uid: 12956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-9.5 + pos: -36.5,23.5 parent: 31 - - uid: 10708 + - uid: 12957 components: - type: Transform - pos: -0.5,37.5 + pos: -35.5,23.5 parent: 31 -- proto: GrilleDiagonal - entities: - - uid: 1577 + - uid: 12958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-35.5 + pos: -35.5,22.5 parent: 31 - - uid: 9557 + - uid: 12959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-33.5 + pos: -36.5,22.5 parent: 31 -- proto: GrilleSpawner - entities: - - uid: 3806 + - uid: 12960 components: - type: Transform - pos: -39.5,23.5 + pos: -31.5,25.5 parent: 31 - - uid: 3807 + - uid: 12961 components: - type: Transform - pos: -39.5,22.5 + pos: -30.5,25.5 parent: 31 - - uid: 3808 + - uid: 12962 components: - type: Transform - pos: -32.5,29.5 + pos: -29.5,25.5 parent: 31 - - uid: 3821 + - uid: 12963 components: - type: Transform - pos: -34.5,29.5 + pos: -33.5,22.5 parent: 31 - - uid: 3823 + - uid: 12964 components: - type: Transform - pos: -36.5,29.5 + pos: -33.5,21.5 parent: 31 - - uid: 3824 + - uid: 12965 components: - type: Transform - pos: -35.5,29.5 + pos: -32.5,22.5 parent: 31 - - uid: 3829 + - uid: 12966 components: - type: Transform - pos: -31.5,29.5 + pos: -32.5,21.5 parent: 31 - - uid: 3862 + - uid: 12967 components: - type: Transform - pos: -33.5,29.5 + pos: -31.5,21.5 parent: 31 - - uid: 4195 + - uid: 12968 components: - type: Transform - pos: -39.5,25.5 + pos: -30.5,21.5 parent: 31 - - uid: 4585 + - uid: 12969 components: - type: Transform - pos: -39.5,24.5 + pos: -31.5,22.5 parent: 31 - - uid: 4896 + - uid: 12970 components: - type: Transform - pos: -39.5,26.5 + pos: -32.5,23.5 parent: 31 - proto: GunSafeLaserCarbine entities: @@ -51375,6 +55435,13 @@ entities: - type: Transform pos: -13.5,21.5 parent: 31 +- proto: GunSafePistolMk58 + entities: + - uid: 11447 + components: + - type: Transform + pos: -14.5,20.5 + parent: 31 - proto: GunSafeRifleLecter entities: - uid: 7687 @@ -51565,30 +55632,6 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,8.5 parent: 31 - - uid: 6906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,23.5 - parent: 31 - - uid: 7227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,20.5 - parent: 31 - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,21.5 - parent: 31 - - uid: 7352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,22.5 - parent: 31 - uid: 11047 components: - type: Transform @@ -51871,8 +55914,11 @@ entities: - uid: 4144 components: - type: Transform - pos: -3.428735,16.721615 + pos: -3.363819,18.723997 parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 - proto: IntercomAll entities: - uid: 9903 @@ -52171,6 +56217,13 @@ entities: - type: Transform pos: 42.38984,-10.466663 parent: 31 +- proto: KitchenDeepFryer + entities: + - uid: 12199 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 31 - proto: KitchenMicrowave entities: - uid: 893 @@ -52217,6 +56270,38 @@ entities: - type: Transform pos: -10.5,-3.5 parent: 31 +- proto: KnifePlastic + entities: + - uid: 12174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.414538,-1.1644373 + parent: 31 + - uid: 12175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.586413,-1.2113123 + parent: 31 + - uid: 12211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.427015,-0.64378613 + parent: 31 + - uid: 12215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.41139,0.34058887 + parent: 31 + - uid: 12216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.395765,1.2312138 + parent: 31 - proto: Lamp entities: - uid: 616 @@ -52282,11 +56367,6 @@ entities: - type: Transform pos: 0.41178536,-5.2814264 parent: 31 - - uid: 5091 - components: - - type: Transform - pos: -1.6867096,1.4657487 - parent: 31 - uid: 7149 components: - type: Transform @@ -52313,13 +56393,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5796466,-32.929047 parent: 31 -- proto: LampInterrogator - entities: - - uid: 7367 - components: - - type: Transform - pos: -0.6087055,14.0836935 - parent: 31 - proto: Lantern entities: - uid: 2951 @@ -52378,20 +56451,65 @@ entities: - type: Transform pos: 55.5,8.5 parent: 31 + - uid: 12257 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 31 + - uid: 12568 + components: + - type: Transform + anchored: True + pos: 40.5,23.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - proto: LiquidNitrogenCanister entities: + - uid: 11059 + components: + - type: Transform + anchored: True + pos: 34.5,23.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - uid: 11889 components: - type: Transform pos: 55.5,7.5 parent: 31 + - uid: 12130 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 31 - proto: LiquidOxygenCanister entities: + - uid: 4232 + components: + - type: Transform + anchored: True + pos: 36.5,23.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - uid: 11888 components: - type: Transform pos: 55.5,6.5 parent: 31 + - uid: 12129 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 31 - proto: LockableButtonAtmospherics entities: - uid: 11052 @@ -52460,6 +56578,12 @@ entities: - Pressed: Toggle 6915: - Pressed: Toggle + 7141: + - Pressed: Toggle + 12125: + - Pressed: Toggle + 7225: + - Pressed: Toggle - uid: 11939 components: - type: MetaData @@ -52479,10 +56603,12 @@ entities: - Pressed: Toggle 11936: - Pressed: Toggle - 11937: + 8199: - Pressed: Toggle 11938: - Pressed: Toggle + 11027: + - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 6408 @@ -52509,6 +56635,13 @@ entities: - type: Transform pos: -17.5,1.5 parent: 31 +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 6580 + components: + - type: Transform + pos: -0.5,14.5 + parent: 31 - proto: LockerCaptainFilled entities: - uid: 8160 @@ -52544,6 +56677,11 @@ entities: - type: Transform pos: -11.5,-39.5 parent: 31 + - uid: 11058 + components: + - type: Transform + pos: -22.5,17.5 + parent: 31 - proto: LockerElectricalSuppliesFilled entities: - uid: 3114 @@ -52834,23 +56972,6 @@ entities: - type: Transform pos: -3.5,-43.5 parent: 31 -- proto: MagazinePistol - entities: - - uid: 4977 - components: - - type: Transform - pos: -14.297329,20.472649 - parent: 31 - - uid: 4983 - components: - - type: Transform - pos: -14.297329,20.316399 - parent: 31 - - uid: 5141 - components: - - type: Transform - pos: -14.250454,20.691399 - parent: 31 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 10123 @@ -53151,6 +57272,13 @@ entities: - Plastic - Durathread - Cloth +- proto: MedicalTechFabCircuitboard + entities: + - uid: 12573 + components: + - type: Transform + pos: -3.566944,17.677122 + parent: 31 - proto: MedkitBruteFilled entities: - uid: 7283 @@ -53346,11 +57474,6 @@ entities: - type: Transform pos: -3.5,-8.5 parent: 31 - - uid: 6865 - components: - - type: Transform - pos: 34.5,23.5 - parent: 31 - uid: 7282 components: - type: Transform @@ -53395,6 +57518,21 @@ entities: - type: Transform pos: 59.5,9.5 parent: 31 + - uid: 11441 + components: + - type: Transform + anchored: True + pos: 38.5,23.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static + - uid: 12259 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 31 - proto: NitrousOxideTankFilled entities: - uid: 10028 @@ -53416,6 +57554,42 @@ entities: - type: Transform pos: -13.5,-11.5 parent: 31 +- proto: OilJarCorn + entities: + - uid: 12202 + components: + - type: Transform + pos: -13.692995,-1.5042946 + parent: 31 + - uid: 12203 + components: + - type: Transform + pos: -13.67737,-1.2542946 + parent: 31 +- proto: OilJarGhee + entities: + - uid: 12204 + components: + - type: Transform + pos: -13.36487,-1.5199196 + parent: 31 + - uid: 12205 + components: + - type: Transform + pos: -13.349245,-1.2855446 + parent: 31 +- proto: OilJarOlive + entities: + - uid: 12206 + components: + - type: Transform + pos: -14.70862,-0.89491963 + parent: 31 + - uid: 12207 + components: + - type: Transform + pos: -14.23987,-0.87929463 + parent: 31 - proto: Ointment entities: - uid: 2199 @@ -53439,7 +57613,7 @@ entities: - type: Transform pos: 20.5,-16.5 parent: 31 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 4827 components: @@ -53496,11 +57670,6 @@ entities: - type: Transform pos: -28.5,13.5 parent: 31 - - uid: 9054 - components: - - type: Transform - pos: 36.5,23.5 - parent: 31 - uid: 9448 components: - type: Transform @@ -53592,6 +57761,20 @@ entities: - type: Transform pos: -24.256678,-5.7405295 parent: 31 + - uid: 6694 + components: + - type: Transform + pos: 46.790928,8.566494 + parent: 31 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: "[color=#1b487e]███░███░░░░██░░░░[/color]\r\n[color=#1b487e]░██░████░░░██░░░░[/color]\r\n[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head]\r\n[color=#1b487e]░░░░██░░██░██░██░[/color] [bold] NTSS-38a Saltern[/bold]\r\n[color=#1b487e]░░░░██░░░████░███[/color]\r\n=============================================\r\n NOTICE TO ENGINEERING STAFF\r\n=============================================\r\nDue to corporate restructuring, and the presence of an updated Mk8 Supermatter engine, we have decided to reduce operational costs on our newest model of \"Saltern\" class stations. This state of the art Supermatter engine costs 450 million Spesos to design, produce, and implement on our stations. We have opted to save on operational costs by not supplying this station with an Antimatter Engine, which we should remind you, costs 150 Million Spesos to produce. \n\nIf you are lacking in qualified and trained engineering personnel to operate the Supermatter engine, consider using these generators in combination with station Solar Arrays. Additional fuel may be obtained from the Logistics department.\n=============================================\r\n " + - type: Physics + angularDamping: 0 + linearDamping: 0 - uid: 7230 components: - type: Transform @@ -53632,6 +57815,20 @@ entities: rot: -1.5707963267948966 rad pos: 11.392193,-41.961483 parent: 31 + - uid: 12253 + components: + - type: Transform + pos: 59.767834,2.5585926 + parent: 31 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: "BECAUSE SO MANY OF OUR ENGINEERS KEEP BLOWING UP THIS \"EASY\" ENGINE DESIGN, HERE'S WHAT YOU NEED TO KNOW:\n\nTHERE ARE ACTUALLY TWO COOLANT LOOPS. ONE \"PASSIVE\" LOOP, WHICH HAS CONNECTORS ON THE WEST SIDE OF THE ENGINE. PUT NITROGEN IN THE WEST CONNECTORS.\n\nONE \"ACTIVE\" LOOP, WHICH HAS CONNECTORS ON THE SOUTH SIDE OF THE ENGINE. PUT YOUR REAL COOLANT IN THE **SOUTH** CONNECTORS. DON'T PUT PURE NITROGEN IN IT. DON'T PUT PURE OXYGEN IN IT UNLESS YOU ABSOLUTELY KNOW WHAT YOU'RE DOING.\n\nDON'T TOUCH OR REMOVE THE WHITE AIR CANISTER. THAT IS YOUR SAFETY MECHANISM.\n\nTURN ON ALL VOLUMETRIC PUMPS, TURN ON ALL OF THE FREEZERS. THERE ARE THREE FREEZERS IN TOTAL. IF YOU DID NOT TURN ON THREE FREEZERS, YOU DID NOT TURN ON ALL OF THE FREEZERS. \n\nTHERE ARE 10 VOLUMETRIC PUMPS. IF YOU DID NOT TURN ON 10 VOLUMERIC PUMPS, YOU DID NOT TURN ON THE COOLING SYSTEMS.\n\nWHEN THE ENGINE IS ACTIVATED, YOU ARE NOT DONE. YOU NEED TO GO TO ATMOSPHERICS, AND CONFIGURE THE STATION'S ATMOS. ATMOSPHERICS HAS TWO PUMPS THAT ARE CLEARLY LABELED FOR THE SUPERMATTER ENGINE. " + - type: Physics + angularDamping: 0 + linearDamping: 0 - proto: PaperBin10 entities: - uid: 7324 @@ -53917,8 +58114,13 @@ entities: - uid: 11072 components: - type: Transform + anchored: True pos: 42.5,23.5 parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - proto: PlasmaReinforcedWindowDirectional entities: - uid: 12044 @@ -54080,13 +58282,6 @@ entities: - type: Transform pos: -41.4551,17.484098 parent: 31 -- proto: PlushieRouny - entities: - - uid: 11027 - components: - - type: Transform - pos: 34.579575,37.51338 - parent: 31 - proto: PlushieSpaceLizard entities: - uid: 7422 @@ -54142,6 +58337,21 @@ entities: - type: Transform pos: 28.5,13.5 parent: 31 + - uid: 12430 + components: + - type: Transform + pos: 49.5,7.5 + parent: 31 + - uid: 12438 + components: + - type: Transform + pos: 50.5,7.5 + parent: 31 + - uid: 12442 + components: + - type: Transform + pos: 50.5,8.5 + parent: 31 - proto: PortableGeneratorPacmanMachineCircuitboard entities: - uid: 10979 @@ -54156,6 +58366,26 @@ entities: - type: Transform pos: 47.5,1.5 parent: 31 + - uid: 12433 + components: + - type: Transform + pos: 46.5,7.5 + parent: 31 + - uid: 12434 + components: + - type: Transform + pos: 47.5,7.5 + parent: 31 + - uid: 12435 + components: + - type: Transform + pos: 48.5,7.5 + parent: 31 + - uid: 12538 + components: + - type: Transform + pos: 55.5,0.5 + parent: 31 - proto: PortableScrubber entities: - uid: 4315 @@ -55200,14 +59430,6 @@ entities: parent: 31 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1367 components: - type: Transform @@ -55246,13 +59468,6 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-5.5 parent: 31 - - uid: 1915 - components: - - type: Transform - pos: -8.5,1.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1962 components: - type: Transform @@ -55383,37 +59598,6 @@ entities: parent: 31 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4124 - components: - - type: Transform - pos: -12.5,1.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4251 components: - type: Transform @@ -55970,6 +60154,31 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 31 +- proto: PoweredlightBlue + entities: + - uid: 6708 + components: + - type: Transform + pos: -8.5,1.5 + parent: 31 + - uid: 11093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 31 + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 31 + - uid: 11298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 31 - proto: PoweredLightPostSmall entities: - uid: 7709 @@ -56165,11 +60374,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-37.5 parent: 31 - - uid: 4239 - components: - - type: Transform - pos: 34.5,37.5 - parent: 31 - uid: 4507 components: - type: Transform @@ -56427,11 +60631,22 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-28.5 parent: 31 + - uid: 11289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 31 - uid: 11295 components: - type: Transform pos: 52.5,17.5 parent: 31 + - uid: 11296 + components: + - type: Transform + pos: -11.5,1.5 + parent: 31 - uid: 11419 components: - type: Transform @@ -56535,6 +60750,50 @@ entities: - type: Transform pos: 73.5,10.5 parent: 31 + - uid: 12405 + components: + - type: Transform + pos: -46.5,8.5 + parent: 31 + - uid: 12406 + components: + - type: Transform + pos: -50.5,8.5 + parent: 31 + - uid: 12407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,10.5 + parent: 31 + - uid: 12408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,10.5 + parent: 31 + - uid: 12409 + components: + - type: Transform + pos: -46.5,0.5 + parent: 31 + - uid: 12410 + components: + - type: Transform + pos: -50.5,0.5 + parent: 31 + - uid: 12411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,2.5 + parent: 31 + - uid: 12412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,2.5 + parent: 31 - proto: PoweredSmallLightEmpty entities: - uid: 8209 @@ -56555,6 +60814,19 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-30.5 parent: 31 +- proto: PressureControlledValve + entities: + - uid: 12122 + components: + - type: MetaData + desc: Valve that activates if the incoming pressure exceeds the pressure of its side channel + name: blow-off valve + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,10.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' - proto: Protolathe entities: - uid: 2319 @@ -56562,6 +60834,14 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 31 +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 12578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.3005998,16.536993 + parent: 31 - proto: Rack entities: - uid: 117 @@ -56610,6 +60890,11 @@ entities: - type: Transform pos: 29.5,16.5 parent: 31 + - uid: 6906 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 31 - uid: 7050 components: - type: Transform @@ -56728,11 +61013,43 @@ entities: - type: Transform pos: -5.5,29.5 parent: 31 + - uid: 11442 + components: + - type: Transform + pos: -3.5,17.5 + parent: 31 + - uid: 11443 + components: + - type: Transform + pos: -3.5,16.5 + parent: 31 - uid: 12055 components: - type: Transform pos: 57.5,4.5 parent: 31 + - uid: 12192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 31 + - uid: 12201 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 31 + - uid: 12431 + components: + - type: Transform + pos: 46.5,9.5 + parent: 31 + - uid: 12539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 31 - proto: RadiationCollectorNoTank entities: - uid: 3663 @@ -56814,6 +61131,210 @@ entities: - type: Transform pos: 42.029312,-8.382423 parent: 31 +- proto: Railing + entities: + - uid: 12978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 31 + - uid: 12979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,23.5 + parent: 31 + - uid: 12980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,22.5 + parent: 31 + - uid: 12982 + components: + - type: Transform + pos: -26.5,26.5 + parent: 31 + - uid: 12983 + components: + - type: Transform + pos: -23.5,27.5 + parent: 31 + - uid: 12984 + components: + - type: Transform + pos: -22.5,27.5 + parent: 31 + - uid: 12985 + components: + - type: Transform + pos: -21.5,27.5 + parent: 31 + - uid: 12986 + components: + - type: Transform + pos: -20.5,27.5 + parent: 31 + - uid: 12987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 31 + - uid: 12988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,3.5 + parent: 31 + - uid: 12989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,2.5 + parent: 31 + - uid: 12990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,1.5 + parent: 31 + - uid: 12991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,0.5 + parent: 31 + - uid: 12992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,3.5 + parent: 31 + - uid: 12993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,2.5 + parent: 31 + - uid: 12994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,1.5 + parent: 31 + - uid: 12995 + components: + - type: Transform + pos: 66.5,4.5 + parent: 31 + - uid: 12996 + components: + - type: Transform + pos: 67.5,4.5 + parent: 31 + - uid: 12997 + components: + - type: Transform + pos: 68.5,4.5 + parent: 31 + - uid: 12998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,0.5 + parent: 31 + - uid: 12999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,0.5 + parent: 31 + - uid: 13000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,0.5 + parent: 31 + - uid: 13001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,7.5 + parent: 31 + - uid: 13002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,7.5 + parent: 31 + - uid: 13003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,7.5 + parent: 31 + - uid: 13004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,7.5 + parent: 31 + - uid: 13005 + components: + - type: Transform + pos: 67.5,9.5 + parent: 31 + - uid: 13006 + components: + - type: Transform + pos: 66.5,9.5 + parent: 31 + - uid: 13007 + components: + - type: Transform + pos: 65.5,9.5 + parent: 31 + - uid: 13008 + components: + - type: Transform + pos: 64.5,9.5 + parent: 31 + - uid: 13009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,8.5 + parent: 31 + - uid: 13010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,8.5 + parent: 31 + - uid: 13017 + components: + - type: Transform + pos: 65.5,8.5 + parent: 31 + - uid: 13018 + components: + - type: Transform + pos: 66.5,8.5 + parent: 31 + - uid: 13019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 31 + - uid: 13020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,8.5 + parent: 31 - proto: RailingCornerSmall entities: - uid: 7316 @@ -56838,6 +61359,49 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,5.5 parent: 31 + - uid: 12981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,26.5 + parent: 31 + - uid: 13011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,7.5 + parent: 31 + - uid: 13012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,9.5 + parent: 31 + - uid: 13013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,9.5 + parent: 31 + - uid: 13014 + components: + - type: Transform + pos: 68.5,7.5 + parent: 31 +- proto: RailingRound + entities: + - uid: 13015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 31 + - uid: 13016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,8.5 + parent: 31 - proto: RandomArcade entities: - uid: 196 @@ -56881,11 +61445,6 @@ entities: parent: 31 - proto: RandomDrinkGlass entities: - - uid: 123 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 31 - uid: 6101 components: - type: Transform @@ -56920,6 +61479,21 @@ entities: - type: Transform pos: -22.5,9.5 parent: 31 + - uid: 12168 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 31 + - uid: 12220 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 31 + - uid: 12221 + components: + - type: Transform + pos: -10.5,0.5 + parent: 31 - proto: RandomInstruments entities: - uid: 1189 @@ -57312,13 +61886,6 @@ entities: - type: Transform pos: -5.5,-17.5 parent: 31 -- proto: RandomVendingSnacks - entities: - - uid: 5092 - components: - - type: Transform - pos: -3.5,1.5 - parent: 31 - proto: RCD entities: - uid: 621 @@ -57471,12 +62038,6 @@ entities: - type: Transform pos: 61.5,6.5 parent: 31 - - uid: 8455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 - parent: 31 - uid: 8949 components: - type: Transform @@ -57721,11 +62282,51 @@ entities: - type: Transform pos: 13.5,-4.5 parent: 31 + - uid: 22 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 31 + - uid: 25 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 31 + - uid: 28 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 31 + - uid: 32 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 31 - uid: 79 components: - type: Transform pos: -35.5,-22.5 parent: 31 + - uid: 82 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 31 + - uid: 102 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 31 + - uid: 107 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 31 + - uid: 119 + components: + - type: Transform + pos: -45.5,7.5 + parent: 31 - uid: 254 components: - type: Transform @@ -58418,6 +63019,11 @@ entities: - type: Transform pos: -2.5,6.5 parent: 31 + - uid: 5158 + components: + - type: Transform + pos: -49.5,3.5 + parent: 31 - uid: 5229 components: - type: Transform @@ -58540,6 +63146,11 @@ entities: - type: Transform pos: 32.5,7.5 parent: 31 + - uid: 6633 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 31 - uid: 6637 components: - type: Transform @@ -59359,6 +63970,11 @@ entities: - type: Transform pos: -5.5,30.5 parent: 31 + - uid: 11299 + components: + - type: Transform + pos: -47.5,3.5 + parent: 31 - uid: 11411 components: - type: Transform @@ -59377,6 +63993,246 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-2.5 parent: 31 + - uid: 11439 + components: + - type: Transform + pos: -51.5,3.5 + parent: 31 + - uid: 11794 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 31 + - uid: 11795 + components: + - type: Transform + pos: -50.5,3.5 + parent: 31 + - uid: 11796 + components: + - type: Transform + pos: -46.5,3.5 + parent: 31 + - uid: 11877 + components: + - type: Transform + pos: -45.5,3.5 + parent: 31 + - uid: 12100 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 31 + - uid: 12123 + components: + - type: Transform + pos: -20.5,26.5 + parent: 31 + - uid: 12124 + components: + - type: Transform + pos: -21.5,26.5 + parent: 31 + - uid: 12166 + components: + - type: Transform + pos: -52.5,3.5 + parent: 31 + - uid: 12167 + components: + - type: Transform + pos: -48.5,3.5 + parent: 31 + - uid: 12254 + components: + - type: Transform + pos: -22.5,26.5 + parent: 31 + - uid: 12255 + components: + - type: Transform + pos: -23.5,26.5 + parent: 31 + - uid: 12260 + components: + - type: Transform + pos: -53.5,3.5 + parent: 31 + - uid: 12261 + components: + - type: Transform + pos: -45.5,1.5 + parent: 31 + - uid: 12262 + components: + - type: Transform + pos: -46.5,1.5 + parent: 31 + - uid: 12263 + components: + - type: Transform + pos: -47.5,1.5 + parent: 31 + - uid: 12264 + components: + - type: Transform + pos: -48.5,1.5 + parent: 31 + - uid: 12265 + components: + - type: Transform + pos: -49.5,1.5 + parent: 31 + - uid: 12266 + components: + - type: Transform + pos: -50.5,1.5 + parent: 31 + - uid: 12267 + components: + - type: Transform + pos: -51.5,1.5 + parent: 31 + - uid: 12268 + components: + - type: Transform + pos: -52.5,1.5 + parent: 31 + - uid: 12269 + components: + - type: Transform + pos: -53.5,1.5 + parent: 31 + - uid: 12270 + components: + - type: Transform + pos: -46.5,7.5 + parent: 31 + - uid: 12271 + components: + - type: Transform + pos: -47.5,7.5 + parent: 31 + - uid: 12272 + components: + - type: Transform + pos: -48.5,7.5 + parent: 31 + - uid: 12273 + components: + - type: Transform + pos: -49.5,7.5 + parent: 31 + - uid: 12274 + components: + - type: Transform + pos: -51.5,7.5 + parent: 31 + - uid: 12275 + components: + - type: Transform + pos: -45.5,9.5 + parent: 31 + - uid: 12276 + components: + - type: Transform + pos: -46.5,9.5 + parent: 31 + - uid: 12277 + components: + - type: Transform + pos: -47.5,9.5 + parent: 31 + - uid: 12278 + components: + - type: Transform + pos: -48.5,9.5 + parent: 31 + - uid: 12279 + components: + - type: Transform + pos: -49.5,9.5 + parent: 31 + - uid: 12280 + components: + - type: Transform + pos: -50.5,7.5 + parent: 31 + - uid: 12281 + components: + - type: Transform + pos: -52.5,7.5 + parent: 31 + - uid: 12282 + components: + - type: Transform + pos: -53.5,7.5 + parent: 31 + - uid: 12283 + components: + - type: Transform + pos: -50.5,9.5 + parent: 31 + - uid: 12284 + components: + - type: Transform + pos: -51.5,9.5 + parent: 31 + - uid: 12285 + components: + - type: Transform + pos: -52.5,9.5 + parent: 31 + - uid: 12286 + components: + - type: Transform + pos: -53.5,9.5 + parent: 31 + - uid: 12287 + components: + - type: Transform + pos: -45.5,11.5 + parent: 31 + - uid: 12288 + components: + - type: Transform + pos: -46.5,11.5 + parent: 31 + - uid: 12289 + components: + - type: Transform + pos: -47.5,11.5 + parent: 31 + - uid: 12290 + components: + - type: Transform + pos: -48.5,11.5 + parent: 31 + - uid: 12291 + components: + - type: Transform + pos: -49.5,11.5 + parent: 31 + - uid: 12292 + components: + - type: Transform + pos: -50.5,11.5 + parent: 31 + - uid: 12293 + components: + - type: Transform + pos: -51.5,11.5 + parent: 31 + - uid: 12294 + components: + - type: Transform + pos: -52.5,11.5 + parent: 31 + - uid: 12295 + components: + - type: Transform + pos: -53.5,11.5 + parent: 31 - proto: ReinforcedWindowDiagonal entities: - uid: 809 @@ -59446,14 +64302,6 @@ entities: - type: Transform pos: -5.5,-28.5 parent: 31 -- proto: SalvageMagnet - entities: - - uid: 10108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,36.5 - parent: 31 - proto: ScalpelLaser entities: - uid: 9095 @@ -59481,6 +64329,14 @@ entities: - type: Transform pos: -14.5,18.5 parent: 31 +- proto: SecurityTechFabCircuitboard + entities: + - uid: 12576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.207569,17.505247 + parent: 31 - proto: SeedExtractor entities: - uid: 4125 @@ -59652,11 +64508,6 @@ entities: - type: Transform pos: 49.79525,5.541127 parent: 31 - - uid: 1485 - components: - - type: Transform - pos: 35.436428,14.905443 - parent: 31 - uid: 1683 components: - type: Transform @@ -59672,16 +64523,6 @@ entities: - type: Transform pos: 49.79525,5.541127 parent: 31 - - uid: 5029 - components: - - type: Transform - pos: 36.1654,15.203077 - parent: 31 - - uid: 8232 - components: - - type: Transform - pos: 35.04859,15.921068 - parent: 31 - uid: 8997 components: - type: Transform @@ -59699,6 +64540,34 @@ entities: - type: Transform pos: 48.312096,-5.5456305 parent: 31 +- proto: SheetUranium + entities: + - uid: 40 + components: + - type: Transform + pos: 46.313587,9.561768 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 6820 + components: + - type: Transform + pos: 46.751087,9.546143 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12429 + components: + - type: Transform + pos: 46.5,9.5 + parent: 31 + - uid: 12540 + components: + - type: Transform + pos: 56.396378,0.48042822 + parent: 31 - proto: ShuttersNormal entities: - uid: 260 @@ -59869,6 +64738,24 @@ entities: - type: DeviceLinkSink links: - 9957 + - uid: 7141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 31 + - type: DeviceLinkSink + links: + - 9957 + - uid: 7225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 31 + - type: DeviceLinkSink + links: + - 9957 - uid: 11758 components: - type: Transform @@ -59965,6 +64852,15 @@ entities: - type: DeviceLinkSink links: - 9957 + - uid: 12125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,3.5 + parent: 31 + - type: DeviceLinkSink + links: + - 9957 - proto: SignalButton entities: - uid: 2515 @@ -60642,13 +65538,6 @@ entities: - type: Transform pos: -2.5,-40.5 parent: 31 -- proto: SignInterrogation - entities: - - uid: 9508 - components: - - type: Transform - pos: -0.5,11.5 - parent: 31 - proto: SignJanitor entities: - uid: 2749 @@ -60819,14 +65708,6 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 31 -- proto: SignShipDock - entities: - - uid: 9941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 - parent: 31 - proto: SignSomethingOld2 entities: - uid: 1469 @@ -60998,6 +65879,26 @@ entities: - type: Transform pos: -30.5,-31.5 parent: 31 + - uid: 12416 + components: + - type: Transform + pos: 38.5,8.5 + parent: 31 + - uid: 12417 + components: + - type: Transform + pos: 39.5,8.5 + parent: 31 + - uid: 12418 + components: + - type: Transform + pos: 40.5,8.5 + parent: 31 + - uid: 12428 + components: + - type: Transform + pos: 39.5,5.5 + parent: 31 - proto: SoapNT entities: - uid: 1045 @@ -61028,527 +65929,737 @@ entities: parent: 31 - proto: SolarPanel entities: - - uid: 1695 - components: - - type: Transform - pos: -37.5,26.5 - parent: 31 - - uid: 2537 - components: - - type: Transform - pos: -37.5,25.5 - parent: 31 - - uid: 4339 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 31 - - uid: 4411 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 31 - - uid: 4415 - components: - - type: Transform - pos: 27.5,-35.5 - parent: 31 - - uid: 4422 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 31 - - uid: 4423 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 31 - - uid: 4426 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 31 - - uid: 4872 - components: - - type: Transform - pos: 29.5,-35.5 - parent: 31 - - uid: 4874 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 31 - - uid: 5017 + - uid: 123 components: - type: Transform - pos: -37.5,27.5 + pos: 36.5,-41.5 parent: 31 - - uid: 5018 + - uid: 130 components: - type: Transform - pos: -35.5,25.5 + pos: 38.5,-39.5 parent: 31 - - uid: 5019 + - uid: 442 components: - type: Transform - pos: -35.5,26.5 + pos: -34.5,32.5 parent: 31 - - uid: 5020 + - uid: 443 components: - type: Transform - pos: -35.5,27.5 + pos: -35.5,32.5 parent: 31 - - uid: 5021 + - uid: 444 components: - type: Transform - pos: -33.5,25.5 + pos: -29.5,32.5 parent: 31 - - uid: 5022 + - uid: 445 components: - type: Transform - pos: -33.5,26.5 + pos: -30.5,32.5 parent: 31 - - uid: 5024 + - uid: 451 components: - type: Transform - pos: -33.5,27.5 + pos: -36.5,32.5 parent: 31 - - uid: 5037 + - uid: 452 components: - type: Transform - pos: -31.5,25.5 + pos: -34.5,34.5 parent: 31 - - uid: 5129 + - uid: 453 components: - type: Transform - pos: -31.5,26.5 + pos: -37.5,34.5 parent: 31 - - uid: 5130 + - uid: 456 components: - type: Transform - pos: -31.5,27.5 + pos: -35.5,34.5 parent: 31 - - uid: 5131 + - uid: 457 components: - type: Transform - pos: -29.5,25.5 + pos: -36.5,34.5 parent: 31 - - uid: 5159 + - uid: 460 components: - type: Transform - pos: -29.5,26.5 + pos: -37.5,32.5 parent: 31 - - uid: 5160 + - uid: 461 components: - type: Transform - pos: -29.5,27.5 + pos: -32.5,32.5 parent: 31 - - uid: 5161 + - uid: 464 components: - type: Transform - pos: -29.5,23.5 + pos: -31.5,32.5 parent: 31 - - uid: 5162 + - uid: 479 components: - type: Transform - pos: -29.5,22.5 + pos: 32.5,-43.5 parent: 31 - - uid: 5163 + - uid: 480 components: - type: Transform - pos: -29.5,21.5 + pos: 35.5,-43.5 parent: 31 - - uid: 5164 + - uid: 506 components: - type: Transform - pos: -31.5,23.5 + pos: 32.5,-39.5 parent: 31 - - uid: 5165 + - uid: 507 components: - type: Transform - pos: -31.5,22.5 + pos: 30.5,-39.5 parent: 31 - - uid: 5166 + - uid: 508 components: - type: Transform - pos: -31.5,21.5 + pos: 35.5,-39.5 parent: 31 - - uid: 5167 + - uid: 509 components: - type: Transform - pos: -33.5,23.5 + pos: 32.5,-41.5 parent: 31 - - uid: 5168 + - uid: 510 components: - type: Transform - pos: -33.5,22.5 + pos: 37.5,-45.5 parent: 31 - - uid: 5169 + - uid: 511 components: - type: Transform - pos: -33.5,21.5 + pos: 35.5,-45.5 parent: 31 - - uid: 5170 + - uid: 513 components: - type: Transform - pos: -35.5,23.5 + pos: 33.5,-45.5 parent: 31 - - uid: 5171 + - uid: 1640 components: - type: Transform - pos: -35.5,22.5 + pos: 37.5,-39.5 parent: 31 - - uid: 5172 + - uid: 2253 components: - type: Transform - pos: -35.5,21.5 + pos: 37.5,-43.5 parent: 31 - - uid: 5173 + - uid: 2387 components: - type: Transform - pos: -37.5,23.5 + pos: 38.5,-45.5 parent: 31 - - uid: 5174 + - uid: 3406 components: - type: Transform - pos: -37.5,22.5 + pos: 30.5,-45.5 parent: 31 - - uid: 5175 + - uid: 6659 components: - type: Transform - pos: -37.5,21.5 + pos: -29.5,42.5 parent: 31 - - uid: 6768 + - uid: 6660 components: - type: Transform - pos: 21.5,-28.5 + pos: -29.5,40.5 parent: 31 - - uid: 6769 + - uid: 6663 components: - type: Transform - pos: 21.5,-29.5 + pos: -30.5,42.5 parent: 31 - - uid: 6770 + - uid: 6682 components: - type: Transform - pos: 21.5,-30.5 + pos: -31.5,40.5 parent: 31 - - uid: 6771 + - uid: 6691 components: - type: Transform - pos: 19.5,-30.5 + pos: -30.5,40.5 parent: 31 - - uid: 6772 + - uid: 6700 components: - type: Transform - pos: 19.5,-29.5 + pos: -32.5,40.5 parent: 31 - - uid: 6773 + - uid: 6709 components: - type: Transform - pos: 19.5,-28.5 + pos: -32.5,42.5 parent: 31 - - uid: 6774 + - uid: 6711 components: - type: Transform - pos: 19.5,-32.5 + pos: -31.5,42.5 parent: 31 - uid: 6775 components: - type: Transform - pos: 19.5,-33.5 - parent: 31 - - uid: 6776 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 31 - - uid: 6777 - components: - - type: Transform - pos: 21.5,-34.5 + pos: 30.5,-43.5 parent: 31 - uid: 6778 components: - type: Transform - pos: 21.5,-33.5 - parent: 31 - - uid: 6779 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 31 - - uid: 6780 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 31 - - uid: 6781 - components: - - type: Transform - pos: 23.5,-34.5 + pos: 38.5,-43.5 parent: 31 - uid: 6782 components: - type: Transform - pos: 23.5,-33.5 + pos: -35.5,42.5 parent: 31 - uid: 6783 components: - type: Transform - pos: 23.5,-32.5 + pos: -37.5,42.5 parent: 31 - uid: 6784 components: - type: Transform - pos: 25.5,-32.5 + pos: -36.5,42.5 parent: 31 - uid: 6785 components: - type: Transform - pos: 25.5,-33.5 + pos: -34.5,42.5 parent: 31 - uid: 6786 components: - type: Transform - pos: 25.5,-34.5 + pos: -35.5,40.5 parent: 31 - uid: 6787 components: - type: Transform - pos: 25.5,-35.5 + pos: -36.5,40.5 parent: 31 - uid: 6788 components: - type: Transform - pos: 25.5,-30.5 + pos: -37.5,40.5 parent: 31 - uid: 6789 components: - type: Transform - pos: 25.5,-29.5 + pos: -35.5,36.5 parent: 31 - uid: 6790 components: - type: Transform - pos: 25.5,-28.5 + pos: -34.5,36.5 parent: 31 - uid: 6791 components: - type: Transform - pos: 25.5,-27.5 + pos: -34.5,40.5 parent: 31 - uid: 6792 components: - type: Transform - pos: 23.5,-27.5 + pos: -37.5,38.5 parent: 31 - uid: 6793 components: - type: Transform - pos: 23.5,-28.5 + pos: -37.5,36.5 parent: 31 - uid: 6794 components: - type: Transform - pos: 23.5,-29.5 + pos: -36.5,36.5 parent: 31 - uid: 6795 components: - type: Transform - pos: 23.5,-30.5 + pos: -36.5,38.5 parent: 31 - uid: 6796 components: - type: Transform - pos: 27.5,-32.5 + pos: -35.5,38.5 parent: 31 - uid: 6797 components: - type: Transform - pos: 27.5,-33.5 + pos: -34.5,38.5 parent: 31 - uid: 6798 components: - type: Transform - pos: 27.5,-34.5 + pos: -30.5,38.5 parent: 31 - uid: 6799 components: - type: Transform - pos: 29.5,-34.5 + pos: -31.5,38.5 parent: 31 - uid: 6800 components: - type: Transform - pos: 29.5,-33.5 + pos: -32.5,38.5 parent: 31 - uid: 6801 components: - type: Transform - pos: 29.5,-32.5 + pos: -29.5,38.5 parent: 31 - uid: 6802 components: - type: Transform - pos: 29.5,-30.5 + pos: -29.5,36.5 parent: 31 - uid: 6803 components: - type: Transform - pos: 29.5,-29.5 + pos: -30.5,36.5 parent: 31 - uid: 6804 components: - type: Transform - pos: 29.5,-28.5 + pos: -32.5,34.5 parent: 31 - uid: 6805 components: - type: Transform - pos: 27.5,-28.5 + pos: -32.5,36.5 parent: 31 - uid: 6806 components: - type: Transform - pos: 27.5,-29.5 + pos: -31.5,36.5 parent: 31 - uid: 6807 components: - type: Transform - pos: 27.5,-30.5 + pos: -31.5,34.5 parent: 31 - - uid: 8577 + - uid: 6826 components: - type: Transform - pos: -40.5,-31.5 + pos: -30.5,34.5 parent: 31 - - uid: 8578 + - uid: 6877 components: - type: Transform - pos: -40.5,-30.5 + pos: -29.5,34.5 parent: 31 - - uid: 8579 + - uid: 8042 components: - type: Transform - pos: -40.5,-29.5 + pos: 38.5,-41.5 parent: 31 - - uid: 8580 + - uid: 8043 components: - type: Transform - pos: -40.5,-27.5 + pos: 35.5,-41.5 parent: 31 - - uid: 8581 + - uid: 8350 components: - type: Transform - pos: -40.5,-26.5 + pos: 37.5,-41.5 parent: 31 - - uid: 8582 + - uid: 8581 components: - type: Transform - pos: -40.5,-25.5 + pos: 36.5,-45.5 parent: 31 - uid: 8583 components: - type: Transform - pos: -42.5,-31.5 + pos: 33.5,-41.5 parent: 31 - uid: 8584 components: - type: Transform - pos: -42.5,-29.5 + pos: 31.5,-41.5 parent: 31 - uid: 8585 components: - type: Transform - pos: -42.5,-30.5 + pos: 36.5,-39.5 parent: 31 - uid: 8586 components: - type: Transform - pos: -42.5,-27.5 + pos: 33.5,-39.5 parent: 31 - uid: 8587 components: - type: Transform - pos: -42.5,-26.5 + pos: 31.5,-39.5 parent: 31 - uid: 8588 components: - type: Transform - pos: -42.5,-25.5 + pos: 30.5,-41.5 parent: 31 - - uid: 8589 + - uid: 8596 components: - type: Transform - pos: -29.5,-38.5 + pos: 31.5,-45.5 parent: 31 - - uid: 8590 + - uid: 8597 components: - type: Transform - pos: -30.5,-38.5 + pos: 32.5,-45.5 parent: 31 - - uid: 8591 + - uid: 8598 components: - type: Transform - pos: -31.5,-38.5 + pos: 36.5,-43.5 parent: 31 - - uid: 8592 + - uid: 8599 components: - type: Transform - pos: -33.5,-38.5 + pos: 33.5,-43.5 parent: 31 - - uid: 8593 + - uid: 8600 components: - type: Transform - pos: -34.5,-38.5 + pos: 31.5,-43.5 parent: 31 - - uid: 8594 + - uid: 8644 components: - type: Transform - pos: -35.5,-38.5 + pos: -34.5,-46.5 parent: 31 - - uid: 8595 + - uid: 8645 components: - type: Transform - pos: -35.5,-36.5 + pos: -31.5,-46.5 parent: 31 - - uid: 8596 + - uid: 8647 components: - type: Transform - pos: -34.5,-36.5 + pos: -33.5,-46.5 parent: 31 - - uid: 8597 + - uid: 8648 components: - type: Transform - pos: -33.5,-36.5 + pos: -34.5,-44.5 parent: 31 - - uid: 8598 + - uid: 8649 components: - type: Transform - pos: -31.5,-36.5 + pos: -31.5,-44.5 parent: 31 - - uid: 8599 + - uid: 8650 components: - type: Transform - pos: -30.5,-36.5 + pos: -33.5,-44.5 parent: 31 - - uid: 8600 + - uid: 8654 components: - type: Transform - pos: -29.5,-36.5 + pos: -30.5,-44.5 parent: 31 -- proto: SolarTracker - entities: - - uid: 6710 + - uid: 9032 components: - type: Transform - pos: 32.5,-31.5 + pos: -29.5,-44.5 parent: 31 - - uid: 6711 + - uid: 9699 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 31 + - uid: 11060 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 31 + - uid: 11079 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 31 + - uid: 12483 + components: + - type: Transform + pos: 56.5,23.5 + parent: 31 + - uid: 12484 + components: + - type: Transform + pos: 57.5,23.5 + parent: 31 + - uid: 12485 + components: + - type: Transform + pos: 56.5,21.5 + parent: 31 + - uid: 12486 + components: + - type: Transform + pos: 57.5,21.5 + parent: 31 + - uid: 12487 + components: + - type: Transform + pos: 56.5,19.5 + parent: 31 + - uid: 12488 + components: + - type: Transform + pos: 57.5,19.5 + parent: 31 + - uid: 12489 + components: + - type: Transform + pos: 58.5,19.5 + parent: 31 + - uid: 12490 + components: + - type: Transform + pos: 59.5,19.5 + parent: 31 + - uid: 12491 + components: + - type: Transform + pos: 60.5,19.5 + parent: 31 + - uid: 12492 + components: + - type: Transform + pos: 59.5,17.5 + parent: 31 + - uid: 12493 + components: + - type: Transform + pos: 58.5,17.5 + parent: 31 + - uid: 12494 + components: + - type: Transform + pos: 57.5,17.5 + parent: 31 + - uid: 12495 + components: + - type: Transform + pos: 57.5,16.5 + parent: 31 + - uid: 12496 + components: + - type: Transform + pos: 56.5,16.5 + parent: 31 + - uid: 12497 + components: + - type: Transform + pos: 59.5,15.5 + parent: 31 + - uid: 12498 + components: + - type: Transform + pos: 58.5,15.5 + parent: 31 + - uid: 12499 + components: + - type: Transform + pos: 60.5,15.5 + parent: 31 + - uid: 12750 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 31 + - uid: 12751 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 31 + - uid: 12752 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 31 + - uid: 12753 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 31 + - uid: 12754 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 31 + - uid: 12755 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 31 + - uid: 12756 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 31 + - uid: 12757 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 31 + - uid: 12758 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 31 + - uid: 12759 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 31 + - uid: 12760 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 31 + - uid: 12761 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 31 + - uid: 12762 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 31 + - uid: 12763 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 31 + - uid: 12764 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 31 + - uid: 12765 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 31 + - uid: 12766 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 31 + - uid: 12767 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 31 + - uid: 12768 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 31 + - uid: 12769 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 31 + - uid: 12770 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 31 + - uid: 12771 components: - type: Transform - pos: -38.5,24.5 + pos: -54.5,-29.5 + parent: 31 + - uid: 12772 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 31 + - uid: 12773 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 31 + - uid: 12803 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 31 + - uid: 12804 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 31 + - uid: 12805 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 31 + - uid: 12806 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 31 + - uid: 12807 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 31 + - uid: 12808 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 31 + - uid: 12809 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 31 + - uid: 12810 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 31 + - uid: 12811 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 31 + - uid: 12812 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 31 + - uid: 12813 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 31 + - uid: 12814 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 31 + - uid: 12815 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 31 +- proto: SolarTracker + entities: + - uid: 12629 + components: + - type: Transform + pos: -33.5,44.5 parent: 31 - proto: SolidSecretDoor entities: @@ -61557,7 +66668,7 @@ entities: - type: Transform pos: -32.5,15.5 parent: 31 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 6317 components: @@ -61762,6 +66873,13 @@ entities: - type: Transform pos: -20.5,-0.5 parent: 31 +- proto: SpawnPointBrigmedic + entities: + - uid: 11049 + components: + - type: Transform + pos: 0.5,13.5 + parent: 31 - proto: SpawnPointCaptain entities: - uid: 39 @@ -62064,10 +67182,10 @@ entities: - type: Transform pos: -13.5,-0.5 parent: 31 - - uid: 9099 + - uid: 11440 components: - type: Transform - pos: -12.5,-0.5 + pos: -12.5,-1.5 parent: 31 - proto: SpawnPointStationEngineer entities: @@ -62112,6 +67230,38 @@ entities: - type: Transform pos: -1.5,-12.5 parent: 31 +- proto: Spoon + entities: + - uid: 12170 + components: + - type: Transform + pos: -3.133288,-1.3988123 + parent: 31 + - uid: 12171 + components: + - type: Transform + pos: -2.227038,-1.3988123 + parent: 31 +- proto: SpoonPlastic + entities: + - uid: 12217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.364515,-0.22191113 + parent: 31 + - uid: 12218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.489515,0.82496387 + parent: 31 + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.458265,1.7780888 + parent: 31 - proto: SprayBottleSpaceCleaner entities: - uid: 626 @@ -62273,21 +67423,31 @@ entities: - type: Transform pos: 36.5,9.5 parent: 31 - - uid: 1918 - components: - - type: Transform - pos: 38.5,23.5 - parent: 31 - uid: 11070 components: - type: Transform + anchored: True pos: 44.5,23.5 parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - uid: 12065 components: - type: Transform pos: 64.5,6.5 parent: 31 + - uid: 12574 + components: + - type: Transform + anchored: True + pos: 44.5,22.5 + parent: 31 + - type: Physics + angularDamping: 0 + linearDamping: 0 + bodyType: Static - proto: SubstationBasic entities: - uid: 2361 @@ -63395,11 +68555,6 @@ entities: - type: Transform pos: 12.5,-5.5 parent: 31 - - uid: 4920 - components: - - type: Transform - pos: -3.5,17.5 - parent: 31 - uid: 4927 components: - type: Transform @@ -63438,11 +68593,6 @@ entities: - type: Transform pos: -7.5,-18.5 parent: 31 - - uid: 6020 - components: - - type: Transform - pos: -3.5,16.5 - parent: 31 - uid: 6183 components: - type: Transform @@ -63889,18 +69039,38 @@ entities: parent: 31 - proto: TableFancyRed entities: + - uid: 4888 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 31 + - uid: 5157 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 31 - uid: 8099 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-33.5 parent: 31 + - uid: 11465 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 31 - uid: 11550 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-33.5 parent: 31 + - uid: 12235 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 31 - proto: TableGlass entities: - uid: 1104 @@ -64038,11 +69208,6 @@ entities: - type: Transform pos: 2.5,31.5 parent: 31 - - uid: 4234 - components: - - type: Transform - pos: -14.5,20.5 - parent: 31 - uid: 4245 components: - type: Transform @@ -64165,6 +69330,11 @@ entities: - type: Transform pos: 56.5,-11.5 parent: 31 + - uid: 12200 + components: + - type: Transform + pos: -15.5,0.5 + parent: 31 - proto: TableReinforcedGlass entities: - uid: 1479 @@ -64284,11 +69454,6 @@ entities: - type: Transform pos: -3.5,-4.5 parent: 31 - - uid: 2253 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 31 - uid: 2421 components: - type: Transform @@ -64299,16 +69464,6 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 31 - - uid: 3750 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 31 - - uid: 3753 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 31 - uid: 3892 components: - type: Transform @@ -64390,11 +69545,6 @@ entities: - type: Transform pos: 6.5,24.5 parent: 31 - - uid: 5220 - components: - - type: Transform - pos: -0.5,13.5 - parent: 31 - uid: 5635 components: - type: Transform @@ -64523,32 +69673,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 31 -- proto: TegCenter - entities: - - uid: 11059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,14.5 - parent: 31 -- proto: TegCirculator - entities: - - uid: 11057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,13.5 - parent: 31 - - type: PointLight - color: '#FF3300FF' - - uid: 11060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,15.5 - parent: 31 - - type: PointLight - color: '#FF3300FF' - proto: TelecomServer entities: - uid: 3371 @@ -64887,6 +70011,13 @@ entities: - type: Transform pos: -24.569178,-5.0530295 parent: 31 +- proto: ToyFigurineDetective + entities: + - uid: 6636 + components: + - type: Transform + pos: -21.273363,17.582897 + parent: 31 - proto: ToyFireRipley entities: - uid: 2029 @@ -65116,6 +70247,12 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 31 + - uid: 12179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 31 - proto: VendingMachineClothing entities: - uid: 7647 @@ -65236,10 +70373,17 @@ entities: parent: 31 - proto: VendingMachineHappyHonk entities: - - uid: 4174 + - uid: 7121 components: - type: Transform - pos: -9.5,-4.5 + pos: -17.5,-8.5 + parent: 31 +- proto: VendingMachineHotfood + entities: + - uid: 11301 + components: + - type: Transform + pos: -3.5,1.5 parent: 31 - proto: VendingMachineHydrobe entities: @@ -65326,9 +70470,10 @@ entities: parent: 31 - proto: VendingMachineSec entities: - - uid: 7834 + - uid: 11793 components: - type: Transform + rot: 3.141592653589793 rad pos: -15.5,13.5 parent: 31 - proto: VendingMachineSecDrobe @@ -65364,6 +70509,13 @@ entities: - type: Transform pos: 26.5,6.5 parent: 31 +- proto: VendingMachineSolsnack + entities: + - uid: 12233 + components: + - type: Transform + pos: -2.5,1.5 + parent: 31 - proto: VendingMachineSovietSoda entities: - uid: 7561 @@ -65439,6 +70591,12 @@ entities: parent: 31 - proto: VendingMachineWallMedical entities: + - uid: 6599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 31 - uid: 11679 components: - type: Transform @@ -65450,6 +70608,11 @@ entities: - type: Transform pos: 6.5,-9.5 parent: 31 + - uid: 12103 + components: + - type: Transform + pos: -0.5,11.5 + parent: 31 - proto: VendingMachineWeeb entities: - uid: 10834 @@ -68090,26 +73253,6 @@ entities: - type: Transform pos: -24.5,26.5 parent: 31 - - uid: 5180 - components: - - type: Transform - pos: -23.5,26.5 - parent: 31 - - uid: 5181 - components: - - type: Transform - pos: -22.5,26.5 - parent: 31 - - uid: 5182 - components: - - type: Transform - pos: -21.5,26.5 - parent: 31 - - uid: 5183 - components: - - type: Transform - pos: -20.5,26.5 - parent: 31 - uid: 5193 components: - type: Transform @@ -69541,11 +74684,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-25.5 parent: 31 - - uid: 9075 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 31 - uid: 9106 components: - type: Transform @@ -70723,6 +75861,39 @@ entities: - type: Transform pos: 59.5,-1.5 parent: 31 + - uid: 12323 + components: + - type: Transform + pos: -54.5,11.5 + parent: 31 + - uid: 12324 + components: + - type: Transform + pos: -54.5,9.5 + parent: 31 + - uid: 12325 + components: + - type: Transform + pos: -54.5,7.5 + parent: 31 + - uid: 12328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,3.5 + parent: 31 + - uid: 12331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,1.5 + parent: 31 + - uid: 12332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 31 - proto: WallSolid entities: - uid: 10 @@ -72650,12 +77821,6 @@ entities: - type: Transform pos: -18.5,-13.5 parent: 31 - - uid: 5192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 - parent: 31 - uid: 5211 components: - type: Transform @@ -74001,11 +79166,6 @@ entities: - type: Transform pos: 35.5,12.5 parent: 31 - - uid: 6826 - components: - - type: Transform - pos: 46.5,23.5 - parent: 31 - uid: 8465 components: - type: Transform @@ -74048,18 +79208,6 @@ entities: - type: Transform pos: -14.594447,16.787762 parent: 31 -- proto: WeaponPistolMk58 - entities: - - uid: 4096 - components: - - type: Transform - pos: -14.641079,20.457024 - parent: 31 - - uid: 9731 - components: - - type: Transform - pos: -14.625454,20.707024 - parent: 31 - proto: WeaponShotgunKammerer entities: - uid: 8072 @@ -74942,6 +80090,26 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-24.5 parent: 31 + - uid: 12974 + components: + - type: Transform + pos: -23.5,27.5 + parent: 31 + - uid: 12975 + components: + - type: Transform + pos: -22.5,27.5 + parent: 31 + - uid: 12976 + components: + - type: Transform + pos: -21.5,27.5 + parent: 31 + - uid: 12977 + components: + - type: Transform + pos: -20.5,27.5 + parent: 31 - proto: WindowTintedDirectional entities: - uid: 1356 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml index 6f945001d93..1529a05385d 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml @@ -107,3 +107,33 @@ cost: 1000 category: cargoproduct-category-name-materials group: market + +- type: cargoProduct + id: MaterialUranium + icon: + sprite: Objects/Materials/Sheets/other.rsi + state: uranium_3 + product: CrateMaterialUranium + cost: 3000 + category: cargoproduct-category-name-materials + group: market + +- type: cargoProduct + id: MaterialGold + icon: + sprite: Objects/Materials/ingots.rsi + state: gold_3 + product: CrateMaterialGold + cost: 3000 + category: cargoproduct-category-name-materials + group: market + +- type: cargoProduct + id: MaterialSilver + icon: + sprite: Objects/Materials/ingots.rsi + state: silver_3 + product: CrateMaterialSilver + cost: 3000 + category: cargoproduct-category-name-materials + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index bd47f984775..885bc92a078 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -127,3 +127,33 @@ # contents: # - id: WaterTankFull # amount: 1 + +- type: entity + id: CrateMaterialUranium + name: uranium crate + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: SheetUranium + amount: 3 + +- type: entity + id: CrateMaterialGold + name: gold crate + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: IngotGold + amount: 3 + +- type: entity + id: CrateMaterialSilver + name: gold crate + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: IngotSilver + amount: 3 diff --git a/Resources/Prototypes/CharacterItemGroups/securityGroups.yml b/Resources/Prototypes/CharacterItemGroups/securityGroups.yml index 01a84566dd3..8b9f6f1e0e8 100644 --- a/Resources/Prototypes/CharacterItemGroups/securityGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/securityGroups.yml @@ -154,6 +154,14 @@ id: LoadoutSpeedLoaderMagnumRubber - type: loadout id: LoadoutSpeedLoaderMagnumRubberSpare + - type: loadout + id: LoadoutMagazineMagnum + - type: loadout + id: LoadoutMagazineMagnumRubber + - type: loadout + id: LoadoutMagazineMagnumSpare + - type: loadout + id: LoadoutMagazineMagnumRubberSpare - type: characterItemGroup maxItems: 1 @@ -181,8 +189,36 @@ id: LoadoutSecurityPistolViper - type: loadout id: LoadoutSecurityPistolViperNonLethal + - type: loadout + id: LoadoutSecurityPistolViperWood - type: loadout id: LoadoutSecurityEquipmentTruncheon + - type: loadout + id: LoadoutSecurityPistolSvalin + - type: loadout + id: LoadoutSecurityEnergyGunMini + - type: loadout + id: LoadoutSecurityEnergyGunPistol + - type: loadout + id: LoadoutSecurityPistolPollock + - type: loadout + id: LoadoutSecurityPistolPollockNonlethal + - type: loadout + id: LoadoutSecurityRevolverSnub + - type: loadout + id: LoadoutSecurityRevolverSnubNonlethal + - type: loadout + id: LoadoutSecurityRevolverK38Master + - type: loadout + id: LoadoutSecurityRevolverK38MasterNonlethal + - type: loadout + id: LoadoutSecurityRevolverFitz + - type: loadout + id: LoadoutSecurityRevolverFitzNonlethal + - type: loadout + id: LoadoutSecurityRevolverPython + - type: loadout + id: LoadoutSecurityRevolverPythonNonlethal - type: characterItemGroup maxItems: 1 @@ -212,4 +248,4 @@ - type: loadout id: LoadoutCommandHoSEnergySword - type: loadout - id: LoadoutCommandHoSEnergyGun \ No newline at end of file + id: LoadoutCommandHoSEnergyGun diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml index 93a9641f7be..4e8392870cd 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml @@ -9,8 +9,12 @@ implantAction: ActionSyrinxChangeVoiceMask whitelist: components: - - HarpySinger - - type: VoiceMasker + - Flight # If someone else has the flight component, or you can obtain it in some way, this needs to be changed. To be a harpy only thing. + - type: VoiceMask + - type: UserInterface + interfaces: + enum.VoiceMaskUIKey.Key: + type: VoiceMaskBoundUserInterface - type: Tag tags: - SubdermalImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 20947d3bc96..8c8ce740a51 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -166,6 +166,13 @@ Lethal: { state: mode-lethal } Special: { state: mode-stun } # Unused +- type: entity + name: miniature energy gun + parent: WeaponEnergyGunMini + id: WeaponEnergyGunMiniSecurity + description: A light version of the Energy gun with a smaller capacity. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + - type: entity name: PDW-9 Energy Pistol parent: BaseWeaponBatterySmall @@ -223,6 +230,13 @@ - type: StaticPrice price: 750 +- type: entity + name: PDW-9 Energy Pistol + parent: WeaponEnergyGunPistol + id: WeaponEnergyGunPistolSecurity + description: A military grade sidearm, used by many militia forces throughout the local sector. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + - type: entity name: IK-60 laser carbine parent: BaseWeaponBattery diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 6f4d5b52301..405c321316c 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -33,6 +33,13 @@ gun_magazine: !type:ContainerSlot gun_chamber: !type:ContainerSlot +- type: entity + name: viper + parent: WeaponPistolViperWood + id: WeaponPistolViperWoodSecurity + description: A small, low-power pistol with pleasant lacquered wooden grips. Uses .35 auto ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + - type: entity name: Pollock parent: BaseWeaponPistol @@ -72,6 +79,38 @@ gun_magazine: !type:ContainerSlot gun_chamber: !type:ContainerSlot +- type: entity + name: Pollock + parent: WeaponPistolPollock + id: WeaponPistolPollockSecurity + description: A compact and mass-produced combat pistol. Uses .35 auto ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: Pollock + parent: WeaponPistolPollockSecurity + id: WeaponPistolPollockNonlethalSecurity + 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: psi-breaker parent: BaseWeaponPistol diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index a19a21dd924..d74949a80aa 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -22,6 +22,28 @@ chambers: [ True, True, True, True, True, True ] ammoSlots: [ null, null, null, null, null, null ] +- type: entity + name: snubbed .45 + parent: WeaponRevolverSnub + id: WeaponRevolverSnubSecurity + description: An old and reliable revolver, modified to be more easily concealed. Uses .45 magnum ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: snubbed .45 + parent: WeaponRevolverSnubSecurity + id: WeaponRevolverSnubNonlethalSecurity + components: + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeMagnum + - SpeedLoaderMagnum + proto: CartridgeMagnumRubber + capacity: 6 + chambers: [ True, True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null, null ] + - type: entity name: k-38 masterpiece parent: BaseWeaponRevolver @@ -37,6 +59,28 @@ fireRate: 2 availableModes: - SemiAuto + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeSpecial + - SpeedLoaderSpecial + proto: CartridgeSpecial + capacity: 6 + chambers: [ True, True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null, null ] + +- type: entity + name: k-38 masterpiece + parent: WeaponRevolverK38Master + id: WeaponRevolverK38MasterSecurity + description: A classic, if not outdated, law enforcement firearm. Uses .38 special ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: k-38 masterpiece + parent: WeaponRevolverK38MasterSecurity + id: WeaponRevolverK38MasterNonlethalSecurity + components: - type: RevolverAmmoProvider whitelist: tags: @@ -62,6 +106,28 @@ fireRate: 1.75 availableModes: - SemiAuto + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeSpecial + - SpeedLoaderSpecial + proto: CartridgeSpecial + capacity: 6 + chambers: [ True, True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null, null ] + +- type: entity + name: fitz special + parent: WeaponRevolverFitz + id: WeaponRevolverFitzSecurity + description: A compact and concealable self defence snub revolver. Uses .38 special ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: fitz special + parent: WeaponRevolverFitzSecurity + id: WeaponRevolverFitzNonlethalSecurity + components: - type: RevolverAmmoProvider whitelist: tags: diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index 4dd9a829ee4..35b2806f6e7 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -29,7 +29,11 @@ id: ClothingMaskGasVoiceChameleon suffix: Voice Mask, Chameleon components: - - type: VoiceMasker + - type: VoiceMask + - type: UserInterface + interfaces: + enum.VoiceMaskUIKey.Key: + type: VoiceMaskBoundUserInterface - type: Tag tags: - IPCMaskWearable diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml index a3879c98ce1..a8772a41f8a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml @@ -201,8 +201,6 @@ - type: Strippable - type: UserInterface interfaces: - enum.VoiceMaskUIKey.Key: - type: VoiceMaskBoundUserInterface enum.HumanoidMarkingModifierKey.Key: type: HumanoidMarkingModifierBoundUserInterface enum.StrippingUiKey.Key: diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 2e5a1aea520..6855a6560be 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -190,8 +190,6 @@ - type: Strippable - type: UserInterface interfaces: - enum.VoiceMaskUIKey.Key: - type: VoiceMaskBoundUserInterface enum.HumanoidMarkingModifierKey.Key: type: HumanoidMarkingModifierBoundUserInterface enum.StrippingUiKey.Key: diff --git a/Resources/Prototypes/Entities/Mobs/Species/golem.yml b/Resources/Prototypes/Entities/Mobs/Species/golem.yml index d3630b609af..e509660f81f 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/golem.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/golem.yml @@ -191,8 +191,7 @@ # - type: Strippable # - type: UserInterface # interfaces: -# - key: enum.VoiceMaskUIKey.Key -# type: VoiceMaskBoundUserInterface + # - key: enum.HumanoidMarkingModifierKey.Key # type: HumanoidMarkingModifierBoundUserInterface # - key: enum.StrippingUiKey.Key diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 1e2924ca82c..7faade46f84 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -29,8 +29,6 @@ interfaces: enum.StorageUiKey.Key: type: StorageBoundUserInterface - enum.VoiceMaskUIKey.Key: - type: VoiceMaskBoundUserInterface enum.HumanoidMarkingModifierKey.Key: type: HumanoidMarkingModifierBoundUserInterface enum.StrippingUiKey.Key: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 9657a8cf68b..c4b2082f387 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -71,12 +71,10 @@ name: viper parent: BaseWeaponPistol id: WeaponPistolViper - description: A small, easily concealable, but somewhat underpowered gun, produced by a bulk arms manufacturer now defunct for over a century. Uses .35 auto ammo. # DeltaV - change description to reflect forced semi + description: A small, easily concealable, but somewhat underpowered gun, produced by a bulk arms manufacturer now defunct for over a century. Uses .35 auto ammo. components: - type: Sprite sprite: Objects/Weapons/Guns/Pistols/viper.rsi - availableModes: # DeltaV - force semi for balance - - SemiAuto - type: ItemSlots slots: gun_magazine: @@ -110,11 +108,21 @@ path: /Audio/Weapons/Guns/Gunshots/pistol.ogg fireOnDropChance: 0.3 +- type: entity + name: viper + parent: WeaponPistolViper + id: WeaponPistolViperSecurity + description: A small, easily concealable, but somewhat underpowered gun, produced by a bulk arms manufacturer now defunct for over a century. + Uses .35 auto ammo. The serial number on the handguard marks this gun as belonging to an NT Security Officer. + suffix: Security Loadouts + - type: entity id: WeaponPistolViperNonLethal parent: WeaponPistolViper suffix: Non-lethal components: + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/vipernl.rsi - type: ItemSlots slots: gun_magazine: @@ -135,6 +143,13 @@ tags: - CartridgePistol +- type: entity + id: WeaponPistolViperSecurityNonLethal + parent: WeaponPistolViperNonLethal + suffix: Non-lethal, SecurityLoadouts + description: A small, easily concealable, but somewhat underpowered gun, produced by a bulk arms manufacturer now defunct for over a century. + Uses .35 auto ammo. The serial number on the handguard marks this gun as belonging to an NT Security Officer. + - type: entity name: cobra parent: BaseWeaponPistol @@ -207,11 +222,21 @@ path: /Audio/Weapons/Guns/Gunshots/mk58.ogg fireOnDropChance: 0.5 +- type: entity + name: mk 58 + parent: WeaponPistolMk58 + id: WeaponPistolMk58Security + description: A cheap, ubiquitous sidearm, produced by a NanoTrasen subsidiary. Uses .35 auto ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + suffix: Security Loadouts + - type: entity id: WeaponPistolMk58Nonlethal parent: WeaponPistolMk58 suffix: Non-lethal components: + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/mk58nl.rsi - type: ItemSlots slots: gun_magazine: @@ -231,6 +256,13 @@ tags: - CartridgePistol +- type: entity + id: WeaponPistolMk58SecurityNonlethal + parent: WeaponPistolMk58Nonlethal + suffix: Non-lethal, Security Loadouts + description: A cheap, ubiquitous sidearm, produced by a NanoTrasen subsidiary. Uses .35 auto ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + - type: entity name: N1984 parent: BaseWeaponPistol @@ -276,12 +308,22 @@ tags: - CartridgeMagnum +- type: entity + name: N1984 + parent: WeaponPistolN1984 + id: WeaponPistolN1984Security # the spaces in description are for formatting. + description: The sidearm of any self respecting officer. Comes in .45 magnum, the lord's caliber. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + suffix: Security Loadouts + - type: entity name: N1984 parent: WeaponPistolN1984 id: WeaponPistolN1984NonLethal suffix: Non-lethal components: + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/N1984nl.rsi - type: ItemSlots slots: gun_magazine: @@ -300,3 +342,11 @@ whitelist: tags: - CartridgeMagnum + +- type: entity + name: N1984 + parent: WeaponPistolN1984NonLethal + id: WeaponPistolN1984SecurityNonLethal + description: The sidearm of any self respecting officer. Comes in .45 magnum, the lord's caliber. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + suffix: Security Loadouts diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 22482f26db6..6c598987414 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -82,8 +82,16 @@ - type: entity name: Deckard parent: WeaponRevolverDeckard - id: WeaponRevolverDeckardNonLethal + id: WeaponRevolverDeckardSecurity + description: A rare, custom-built revolver. Use when there is no time for Voight-Kampff test. Uses .45 magnum ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: Deckard + parent: WeaponRevolverDeckardSecurity + id: WeaponRevolverDeckardNonLethalSecurity description: A rare, custom-built revolver. Use when you need to spare the Replicants. Comes with .45 magnum rubber. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. components: - type: RevolverAmmoProvider whitelist: @@ -110,8 +118,16 @@ - type: entity name: Inspector parent: WeaponRevolverInspector - id: WeaponRevolverInspectorNonLethal + id: WeaponRevolverInspectorSecurity + description: A detective's best friend. Uses .45 magnum ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: Inspector + parent: WeaponRevolverInspectorSecurity + id: WeaponRevolverInspectorNonLethalSecurity description: A detective's best friend. Comes loaded with .45 magnum rubber. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. components: - type: RevolverAmmoProvider whitelist: @@ -124,7 +140,7 @@ name: Mateba parent: BaseWeaponRevolver id: WeaponRevolverMateba - description: The iconic sidearm of the dreaded death squads. Uses .45 magnum ammo. + description: A distinctive revolver of an ancient Sol' design that was once seen as a rare collectible. It is in common manufacture by many companies in the Biesel Republic. Uses .45 magnum ammo. components: - type: Sprite sprite: Objects/Weapons/Guns/Revolvers/mateba.rsi @@ -139,7 +155,7 @@ name: Python parent: BaseWeaponRevolver id: WeaponRevolverPython - description: A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo. + description: An iconic large-framed revolver of ancient Sol' design. It is commonly manufactured by many companies all over the colonies. Uses .45 magnum ammo. components: - type: Sprite sprite: Objects/Weapons/Guns/Revolvers/python.rsi @@ -156,12 +172,38 @@ volume: 2.25 fireOnDropChance: 0.3 +- type: entity + name: Python + parent: WeaponRevolverPython + id: WeaponRevolverPythonSecurity + description: An iconic large-framed revolver of ancient Sol' design. It is commonly manufactured by many companies all over the colonies. Uses .45 magnum ammo. + The serial number on the handguard marks this gun as belonging to an NT Security Officer. + +- type: entity + name: Python + parent: WeaponRevolverPythonSecurity + id: WeaponRevolverPythonNonlethalSecurity + components: + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeMagnum + - SpeedLoaderMagnum + proto: CartridgeMagnumRubber + capacity: 6 + chambers: [ True, True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null, null ] + soundEject: + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + soundInsert: + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + - type: entity name: Python parent: WeaponRevolverPython id: WeaponRevolverPythonAP # For the uplink. suffix: armor-piercing - description: A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo. + description: An iconic large-framed revolver of ancient Sol' design. It is commonly manufactured by many companies all over the colonies. Uses .45 magnum ammo. components: - type: RevolverAmmoProvider whitelist: diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 877a79dd961..66ea8dadea6 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -70,13 +70,39 @@ maxCount: 2 stationGrid: false paths: - - /Maps/Ruins/DeltaV/biodome_satellite.yml #Delta V - Move to DV folder - - /Maps/Ruins/DeltaV/derelict.yml #Delta V - Move to DV folder - - /Maps/Ruins/DeltaV/djstation.yml #Delta V - Move to DV folder - - /Maps/Ruins/DeltaV/old_ai_sat.yml #Delta V - Move to DV folder - - /Maps/Ruins/DeltaV/relaystation.yml #Delta V - Move to DV folder - - /Maps/Ruins/DeltaV/whiteship_ancient.yml #Delta V - Move to DV folder - - /Maps/Ruins/DeltaV/whiteship_bluespacejumper.yml #Delta V - Move to DV folder + - /Maps/Ruins/DeltaV/biodome_satellite.yml + - /Maps/Ruins/DeltaV/derelict.yml + - /Maps/Ruins/DeltaV/djstation.yml + - /Maps/Ruins/DeltaV/old_ai_sat.yml + - /Maps/Ruins/DeltaV/relaystation.yml + - /Maps/Ruins/DeltaV/whiteship_ancient.yml + - /Maps/Ruins/DeltaV/whiteship_bluespacejumper.yml + +- type: entity + id: BaseStationShuttlesSalvageOnly + abstract: true + components: + - type: GridSpawn + groups: + mining: + addComponents: + - type: ProtectedGrid + paths: + - /Maps/Shuttles/pathfinder.yml + ruins: + hide: true + nameGrid: true + minCount: 2 + maxCount: 2 + stationGrid: false + paths: + - /Maps/Ruins/DeltaV/biodome_satellite.yml + - /Maps/Ruins/DeltaV/derelict.yml + - /Maps/Ruins/DeltaV/djstation.yml + - /Maps/Ruins/DeltaV/old_ai_sat.yml + - /Maps/Ruins/DeltaV/relaystation.yml + - /Maps/Ruins/DeltaV/whiteship_ancient.yml + - /Maps/Ruins/DeltaV/whiteship_bluespacejumper.yml - type: entity id: BaseStationShuttlesCore diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 5ecfbe037fe..329542a267a 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -51,3 +51,28 @@ noSpawn: true components: - type: Transform + +- type: entity + id: StandardNanotrasenStationNoATS + parent: + - BaseStation + - BaseStationNews + - BaseStationCargo + - BaseStationJobsSpawning + - BaseStationRecords + - BaseStationArrivals + - BaseStationGateway + - BaseStationShuttlesSalvageOnly + - BaseStationCentcomm + - BaseStationEvacuation + - BaseStationAlertLevels + - BaseStationMagnet + - BaseStationExpeditions + - BaseStationSiliconLawCrewsimov + - BaseStationAllEventsEligible + - BaseStationNanotrasen + - BaseRandomStation + - BaseStationMail + noSpawn: true + components: + - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml index c512266e974..601c7c360a5 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml @@ -49,7 +49,7 @@ onBump: false requirePower: true highVoltageNode: output - - type: RequireProjectileTarget + - type: RequireProjectileTarget - type: entity id: SolarPanel @@ -58,8 +58,8 @@ description: A solar panel that generates power. components: - type: PowerSupplier - supplyRampTolerance: 500 - supplyRampRate: 500 + supplyRampTolerance: 1000 + supplyRampRate: 1000 - type: SolarPanel - type: Damageable damageContainer: Inorganic @@ -158,7 +158,7 @@ graph: SolarPanel node: solarassembly defaultTarget: solarpanel - - type: RequireProjectileTarget + - type: RequireProjectileTarget - type: entity id: SolarTracker @@ -203,4 +203,4 @@ - type: Construction graph: SolarPanel node: solartracker - - type: RequireProjectileTarget + - type: RequireProjectileTarget diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index e31152a5b6e..6c6b8bf57e9 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -19,6 +19,9 @@ - type: Intercom - type: Speech speechVerb: Robotic + - type: VoiceOverride # This is for the wire that makes an electricity zapping noise. + speechVerbOverride: Electricity + enabled: false - type: ExtensionCableReceiver - type: Clickable - type: InteractionOutline diff --git a/Resources/Prototypes/Loadouts/Jobs/security.yml b/Resources/Prototypes/Loadouts/Jobs/security.yml index 5cd39bf5348..f2587b4d14d 100644 --- a/Resources/Prototypes/Loadouts/Jobs/security.yml +++ b/Resources/Prototypes/Loadouts/Jobs/security.yml @@ -870,6 +870,74 @@ items: - SpeedLoaderMagnumRubber +- type: loadout + id: LoadoutMagazineMagnum + category: JobsSecurity + cost: 2 + exclusive: true + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - MagazineMagnum + +- type: loadout + id: LoadoutMagazineMagnumRubber + category: JobsSecurity + cost: 2 + exclusive: true + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - MagazineMagnumRubber + +- type: loadout + id: LoadoutMagazineMagnumSpare + category: JobsSecurity + cost: 2 + exclusive: true + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - MagazineMagnum + +- type: loadout + id: LoadoutMagazineMagnumRubberSpare + category: JobsSecurity + cost: 2 + exclusive: true + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - MagazineMagnumRubber + # 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. @@ -901,7 +969,7 @@ departments: - Security items: - - WeaponPistolMk58 + - WeaponPistolMk58Security - type: loadout id: LoadoutSecurityMk58NonLethal @@ -914,7 +982,7 @@ departments: - Security items: - - WeaponPistolMk58Nonlethal + - WeaponPistolMk58SecurityNonlethal - type: loadout id: LoadoutSecurityRevolver @@ -930,7 +998,7 @@ departments: - Security items: - - WeaponRevolverInspector + - WeaponRevolverInspectorSecurity - type: loadout id: LoadoutSecurityRevolverNonLethal @@ -943,7 +1011,7 @@ departments: - Security items: - - WeaponRevolverInspectorNonLethal + - WeaponRevolverInspectorNonLethalSecurity - type: loadout id: LoadoutSecurityRevolverDeckard @@ -959,7 +1027,7 @@ departments: - Security items: - - WeaponRevolverDeckard + - WeaponRevolverDeckardSecurity - type: loadout id: LoadoutSecurityRevolverDeckardNonLethal @@ -972,7 +1040,7 @@ departments: - Security items: - - WeaponRevolverDeckardNonLethal + - WeaponRevolverDeckardNonLethalSecurity - type: loadout id: LoadoutSecurityPistolN1984 @@ -988,7 +1056,7 @@ departments: - Security items: - - WeaponPistolN1984 + - WeaponPistolN1984Security - type: loadout id: LoadoutSecurityPistolN1984NonLethal @@ -1001,7 +1069,7 @@ departments: - Security items: - - WeaponPistolN1984NonLethal + - WeaponPistolN1984SecurityNonLethal - type: loadout id: LoadoutSecurityPistolViper @@ -1017,7 +1085,7 @@ departments: - Security items: - - WeaponPistolViper + - WeaponPistolViperSecurity - type: loadout id: LoadoutSecurityPistolViperNonLethal @@ -1030,7 +1098,23 @@ departments: - Security items: - - WeaponPistolViperNonLethal + - WeaponPistolViperSecurityNonLethal + +- type: loadout + id: LoadoutSecurityPistolViperWood + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 108000 # 30 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolViperWoodSecurity - type: loadout id: LoadoutSecurityEquipmentTruncheon @@ -1050,3 +1134,196 @@ - Oni items: - Truncheon + +- type: loadout + id: LoadoutSecurityPistolSvalin + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponLaserSvalinn + +- type: loadout + id: LoadoutSecurityEnergyGunMini + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponEnergyGunMiniSecurity + +- type: loadout + id: LoadoutSecurityEnergyGunPistol + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponEnergyGunPistolSecurity + +- type: loadout + id: LoadoutSecurityPistolPollock + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolPollockSecurity + +- type: loadout + id: LoadoutSecurityPistolPollockNonlethal + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolPollockNonlethalSecurity + +- type: loadout + id: LoadoutSecurityRevolverSnub + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverSnubSecurity + +- type: loadout + id: LoadoutSecurityRevolverSnubNonlethal + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverSnubNonlethalSecurity + +- type: loadout + id: LoadoutSecurityRevolverK38Master + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverK38MasterSecurity + +- type: loadout + id: LoadoutSecurityRevolverK38MasterNonlethal + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverK38MasterNonlethalSecurity + +- type: loadout + id: LoadoutSecurityRevolverFitz + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverFitzSecurity + +- type: loadout + id: LoadoutSecurityRevolverFitzNonlethal + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverFitzNonlethalSecurity + +- type: loadout + id: LoadoutSecurityRevolverPython + category: JobsSecurity + cost: 3 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverPythonSecurity + +- type: loadout + id: LoadoutSecurityRevolverPythonNonlethal + category: JobsSecurity + cost: 3 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverPythonNonlethalSecurity diff --git a/Resources/Prototypes/Maps/gaxstation.yml b/Resources/Prototypes/Maps/gaxstation.yml index 93528d92d88..85f43c6b4cb 100644 --- a/Resources/Prototypes/Maps/gaxstation.yml +++ b/Resources/Prototypes/Maps/gaxstation.yml @@ -15,7 +15,7 @@ mapNameTemplate: '{0} NCS Gax {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: '14' + prefixCreator: 'YG' - type: StationJobs overflowJobs: - Passenger diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index 36666eb1cc3..154a35a16dc 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -7,7 +7,7 @@ fallback: true stations: Saltern: - stationProto: StandardNanotrasenStation + stationProto: StandardNanotrasenStationNoATS components: - type: StationNameSetup mapNameTemplate: '{0} Saltern {1}' @@ -53,6 +53,7 @@ Detective: [ 1, 1 ] SecurityOfficer: [ 4, 6 ] SecurityCadet: [ 4, 6 ] + Brigmedic: [ 1, 1 ] Prisoner: [ 1, 2 ] #supply Quartermaster: [ 1, 1 ] diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/base.png index 984060bd911..8453ff926f3 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/bolt-open.png index 92f2c6e391f..9b260ad6389 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/icon.png index bbe6128065d..4a114bc5bf3 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-left.png index 73e6d63b9c2..ba1c8b93168 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-right.png index 443e6d2587f..bb63cdda359 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/base.png new file mode 100644 index 00000000000..96926b74b3d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/bolt-open.png new file mode 100644 index 00000000000..198796654d0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/equipped-BELT.png new file mode 100644 index 00000000000..ab0d0a822f9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..ab0d0a822f9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/icon.png new file mode 100644 index 00000000000..43cd3b8a6af Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/inhand-left.png new file mode 100644 index 00000000000..6edffcf2ca2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/inhand-right.png new file mode 100644 index 00000000000..bfaeff21d72 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/mag-0.png new file mode 100644 index 00000000000..c661c6dfdce Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/mag-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/meta.json new file mode 100644 index 00000000000..86cb488aec4 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Pistols/N1984nl.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by IProduceWidgets (github) to make the style of desertrose at https://github.com/DesertRose2/desertrose/commit/120961e254d7f83a6e00a02c76e734f9e5019345, https://github.com/DesertRose2/desertrose/blob/master/icons/obj/guns/projectile.dmi, modified by VMSolidus(Github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "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/Pistols/mk58nl.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/base.png new file mode 100644 index 00000000000..35fabdc39e4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/bolt-open.png new file mode 100644 index 00000000000..fbaec30e809 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/equipped-BELT.png new file mode 100644 index 00000000000..785f4037d7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..785f4037d7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/icon.png new file mode 100644 index 00000000000..6374765cdc6 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/inhand-left.png new file mode 100644 index 00000000000..6edffcf2ca2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/inhand-right.png new file mode 100644 index 00000000000..bfaeff21d72 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/mag-0.png new file mode 100644 index 00000000000..c38916a8a1e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/mag-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/meta.json new file mode 100644 index 00000000000..4a0d66bec3d --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58nl.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from desertrose at https://github.com/DesertRose2/desertrose/commit/120961e254d7f83a6e00a02c76e734f9e5019345, https://github.com/DesertRose2/desertrose/blob/master/icons/obj/guns/projectile.dmi, modified by VMSolidus(Github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "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/Pistols/viper.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/meta.json index 6ac14bfc8f6..6e8276cc984 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.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/41804/commits/1baf679a544505960cebd071425f1df60669cdf3", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41804/commits/1baf679a544505960cebd071425f1df60669cdf3, modified by VMSolidus", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/base.png new file mode 100644 index 00000000000..8f71309a4f9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/bolt-open.png new file mode 100644 index 00000000000..f4cd1110b52 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/equipped-BELT.png new file mode 100644 index 00000000000..07f1f9fa262 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..07f1f9fa262 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/icon.png new file mode 100644 index 00000000000..396600d94f7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/inhand-left.png new file mode 100644 index 00000000000..631d2edd374 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/inhand-right.png new file mode 100644 index 00000000000..9eb5acea484 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/mag-0.png new file mode 100644 index 00000000000..ae6e64af1fa Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/mag-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/meta.json new file mode 100644 index 00000000000..6ac14bfc8f6 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/meta.json @@ -0,0 +1,42 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41804/commits/1baf679a544505960cebd071425f1df60669cdf3", + "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-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/suppressor.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/suppressor.png new file mode 100644 index 00000000000..401301c43e7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/vipernl.rsi/suppressor.png differ