diff --git a/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs b/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs index 2f4b538cb9f..d6489776385 100644 --- a/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs +++ b/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs @@ -74,6 +74,7 @@ public void PopulateProducts(ShipyardConsoleUiKey uiKey) ShipyardConsoleUiKey.Security => "Security", ShipyardConsoleUiKey.BlackMarket => "BlackMarket", ShipyardConsoleUiKey.Expedition => "Expedition", + ShipyardConsoleUiKey.Scrap => "Scrap", _ => "Shipyard", }; diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs index fb3f09eacea..f0555750676 100644 --- a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs +++ b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs @@ -11,6 +11,8 @@ using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Prototypes; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.Reagent; namespace Content.Client.VendingMachines.UI { @@ -120,26 +122,34 @@ public void Populate(List inventory, float priceMo cost = (int) (price * priceModifier); } else - { cost = (int) (cost * priceModifier); - } } - } else - { cost = (int) (cost * priceModifier); - } - // This block exists to allow the VendPrice flag to set a vending machine item price. - if (prototype != null && prototype.TryGetComponent(out var vendPriceComponent)) + if (prototype != null && prototype.TryGetComponent(out var priceSolutions)) { - if (vendPriceComponent.Price != 0) + foreach (var solution in priceSolutions.Solutions.Values) { - var price = (float) vendPriceComponent.Price; - cost = (int) (price); + foreach (var (reagent, quantity) in solution.Contents) + { + if (!_prototypeManager.TryIndex(reagent.Prototype, out var reagentProto)) + continue; + + // TODO check ReagentData for price information? + var costReagent = (float) quantity * reagentProto.PricePerUnit; + cost += (int) (costReagent * priceModifier); + } } } + + // This block exists to allow the VendPrice flag to set a vending machine item price. + if (prototype != null && prototype.TryGetComponent(out var vendPriceComponent) && vendPriceComponent.Price != 0 && cost <= (float) vendPriceComponent.Price) + { + var price = (float) vendPriceComponent.Price; + cost = (int) price; + } // This block exists to allow the VendPrice flag to set a vending machine item price. vendingItem.Text = $"[${cost}] {itemName} [{entry.Amount}]"; diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 05a768ac8e6..bf6bba6e773 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -359,18 +359,6 @@ private double GetStaticPrice(EntityPrototype prototype) return price; } - private double GetVendPrice(EntityUid uid) - { - var price = 0.0; - - if (TryComp(uid, out var vendPrice)) - { - price += vendPrice.Price; - } - - return price; - } - private double GetVendPrice(EntityPrototype prototype) { var price = 0.0; diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index 38a5a1a9d6f..d970aa948d6 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -6,6 +6,7 @@ using Content.Shared.Language.Systems; using Content.Shared.Mind.Components; using Robust.Shared.Prototypes; +using Content.Shared.Humanoid; //Delta-V - Banning humanoids from becoming ghost roles. namespace Content.Server.Chemistry.ReagentEffects; @@ -53,6 +54,15 @@ public override void Effect(ReagentEffectArgs args) return; } + // Delta-V: Do not allow humanoids to become sentient. Intended to stop people from + // repeatedly cloning themselves and using cognizine on their bodies. + // HumanoidAppearanceComponent is common to all player species, and is also used for the + // Ripley pilot whitelist, so there's a precedent for using it for this kind of check. + if (entityManager.HasComponent(uid)) + { + return; + } + ghostRole = entityManager.AddComponent(uid); entityManager.EnsureComponent(uid); diff --git a/Content.Server/DeltaV/Nutrition/Events.cs b/Content.Server/DeltaV/Nutrition/Events.cs new file mode 100644 index 00000000000..fb1b2b870bd --- /dev/null +++ b/Content.Server/DeltaV/Nutrition/Events.cs @@ -0,0 +1,34 @@ +namespace Content.Server.Nutrition; + +/// +/// Raised on a food being sliced. +/// Used by deep frier to apply friedness to slices (e.g. deep fried pizza) +/// +public sealed class SliceFoodEvent : EntityEventArgs +{ + /// + /// Who did the slicing? + /// + public EntityUid User; + + /// + /// What has been sliced? + /// + /// + /// This could soon be deleted if there was not enough food left to + /// continue slicing. + /// + public EntityUid Food; + + /// + /// What is the slice? + /// + public EntityUid Slice; + + public SliceFoodEvent(EntityUid user, EntityUid food, EntityUid slice) + { + User = user; + Food = food; + Slice = slice; + } +} diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index ead9c5d3505..2145d297128 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Nutrition; // DeltaV using Content.Server.Nutrition.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; @@ -7,16 +8,18 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Robust.Shared.Audio; +//using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.Player; +//using Robust.Shared.Player; namespace Content.Server.Nutrition.EntitySystems { - internal sealed class SliceableFoodSystem : EntitySystem + public sealed class SliceableFoodSystem : EntitySystem { [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; public override void Initialize() { @@ -55,7 +58,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, return false; } - var sliceUid = Spawn(component.Slice, transform.Coordinates); + var sliceUid = Slice(uid, user, component, transform); var lostSolution = _solutionContainerSystem.SplitSolution(uid, solution, solution.Volume / FixedPoint2.New(component.Count)); @@ -63,20 +66,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, // Fill new slice FillSlice(sliceUid, lostSolution); - var inCont = _containerSystem.IsEntityInContainer(component.Owner); - if (inCont) - { - _handsSystem.PickupOrDrop(user, sliceUid); - } - else - { - var xform = Transform(sliceUid); - _containerSystem.AttachParentToContainerOrGrid((sliceUid, xform)); - xform.LocalRotation = 0; - } - - SoundSystem.Play(component.Sound.GetSound(), Filter.Pvs(uid), - transform.Coordinates, AudioParams.Default.WithVolume(-2)); + _audio.PlayPvs(component.Sound, transform.Coordinates, AudioParams.Default.WithVolume(-2)); // Decrease size of item based on count - Could implement in the future // Bug with this currently is the size in a container is not updated @@ -87,12 +77,6 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, component.Count--; - //Nyano - Summary: Begin Nyano Code to tell us we've sliced something for Fryer -- - - var sliceEvent = new SliceFoodEvent(user, usedItem, uid, sliceUid); - RaiseLocalEvent(uid, sliceEvent); - //Nyano - End Nyano Code. - // If someone makes food proto with 1 slice... if (component.Count < 1) { @@ -104,11 +88,26 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, if (component.Count > 1) return true; - sliceUid = Spawn(component.Slice, transform.Coordinates); + sliceUid = Slice(uid, user, component, transform); // Fill last slice with the rest of the solution FillSlice(sliceUid, solution); + DeleteFood(uid, user); + return true; + } + + /// + /// Create a new slice in the world and returns its entity. + /// The solutions must be set afterwards. + /// + private EntityUid Slice(EntityUid uid, EntityUid user, SliceableFoodComponent? comp = null, TransformComponent? transform = null) // Frontier - Public to private + { + if (!Resolve(uid, ref comp, ref transform)) + return EntityUid.Invalid; + + var sliceUid = Spawn(comp.Slice, transform.Coordinates); + var inCont = _containerSystem.IsEntityInContainer(uid); if (inCont) { _handsSystem.PickupOrDrop(user, sliceUid); @@ -120,8 +119,12 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, xform.LocalRotation = 0; } - DeleteFood(uid, user); - return true; + // DeltaV - Begin deep frier related code + var sliceEvent = new SliceFoodEvent(user, uid, sliceUid); + RaiseLocalEvent(uid, sliceEvent); + // DeltaV - End deep frier related code + + return sliceUid; } private void DeleteFood(EntityUid uid, EntityUid user) @@ -163,40 +166,4 @@ private void OnExamined(EntityUid uid, SliceableFoodComponent component, Examine args.PushMarkup(Loc.GetString("sliceable-food-component-on-examine-remaining-slices-text", ("remainingCount", component.Count))); } } - //Nyano - Summary: Begin Nyano Code for the sliced food event. - public sealed class SliceFoodEvent : EntityEventArgs - { - /// - /// Who did the slicing? - /// - public EntityUid User; - - /// - /// What did the slicing? - /// - public EntityUid Tool; - - /// - /// What has been sliced? - /// - /// - /// This could soon be deleted if there was not enough food left to - /// continue slicing. - /// - public EntityUid Food; - - /// - /// What is the slice? - /// - public EntityUid Slice; - - public SliceFoodEvent(EntityUid user, EntityUid tool, EntityUid food, EntityUid slice) - { - User = user; - Tool = tool; - Food = food; - Slice = slice; - } - } - //End Nyano Code. } diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs index f3e05aa7251..0cd1e63efb6 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs @@ -23,6 +23,7 @@ using Content.Server.Ghost.Roles.Components; using Content.Server.Kitchen.Components; using Content.Server.NPC.Components; +using Content.Server.Nutrition; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Server.Paper; @@ -62,6 +63,8 @@ using FastAccessors; using Content.Shared.NPC; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Construction; +//using Robust.Shared.Audio.Systems; namespace Content.Server.Kitchen.EntitySystems { @@ -86,7 +89,7 @@ public sealed class DeepFryerSystem : EntitySystem [Dependency] private readonly TemperatureSystem _temperature = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly AmbientSoundSystem _ambientSoundSystem = default!; - [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; private static readonly string CookingDamageType = "Heat"; private static readonly float CookingDamageAmount = 10.0f; @@ -265,7 +268,7 @@ private void UpdateNextFryTime(EntityUid uid, DeepFryerComponent component) /// /// Make an item look deep-fried. /// - private void MakeCrispy(EntityUid item) + public void MakeCrispy(EntityUid item) { EnsureComp(item); EnsureComp(item); @@ -512,11 +515,11 @@ private void UpdateDeepFriedName(EntityUid uid, DeepFriedComponent component) // Already handled at OnInitDeepFried. break; case 1: - _meta.SetEntityName(uid, Loc.GetString("deep-fried-fried-item", + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item", ("entity", component.OriginalName))); break; default: - _meta.SetEntityName(uid, Loc.GetString("deep-fried-burned-item", + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-burned-item", ("entity", component.OriginalName))); break; } @@ -819,8 +822,9 @@ private void OnBeforeActivatableUIOpen(EntityUid uid, DeepFryerComponent compone private void OnRemoveItem(EntityUid uid, DeepFryerComponent component, DeepFryerRemoveItemMessage args) { - var removedItem = EntityManager.GetEntity( args.Item ); - if (removedItem.Valid) { //JJ Comment - This line should be unnecessary. Some issue is keeping the UI from updating when converting straight to a Burned Mess while the UI is still open. To replicate, put a Raw Meat in the fryer with no oil in it. Wait until it sputters with no effect. It should transform to Burned Mess, but doesn't. + var removedItem = EntityManager.GetEntity(args.Item); + if (removedItem.Valid) + { //JJ Comment - This line should be unnecessary. Some issue is keeping the UI from updating when converting straight to a Burned Mess while the UI is still open. To replicate, put a Raw Meat in the fryer with no oil in it. Wait until it sputters with no effect. It should transform to Burned Mess, but doesn't. if (!component.Storage.Remove(removedItem)) return; @@ -990,7 +994,7 @@ private void OnInitDeepFried(EntityUid uid, DeepFriedComponent component, Compon { var meta = MetaData(uid); component.OriginalName = meta.EntityName; - _meta.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item", ("entity", meta.EntityName))); + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item", ("entity", meta.EntityName))); } private void OnExamineFried(EntityUid uid, DeepFriedComponent component, ExaminedEvent args) diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index 3d8bd0103f6..36e90332228 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -173,7 +173,7 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component _accessSystem.TrySetTags(targetId, newAccess, newCap); } - + var deedID = EnsureComp(targetId); AssignShuttleDeedProperties(deedID, shuttle.Owner, name, player); @@ -401,8 +401,8 @@ private void SendPurchaseMessage(EntityUid uid, EntityUid player, string name, s if (secret) { - _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-docking-secret", ("vessel", name)), channel, uid); - _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-docking-secret", ("vessel", name)), InGameICChatType.Speak, true); + _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-docking-secret"), channel, uid); + _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-docking-secret"), InGameICChatType.Speak, true); } else { @@ -417,8 +417,8 @@ private void SendSellMessage(EntityUid uid, EntityUid? player, string name, stri if (secret) { - _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-leaving-secret", ("vessel", name!)), channel, uid); - _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-leaving-secret", ("vessel", name!)), InGameICChatType.Speak, true); + _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-leaving-secret"), channel, uid); + _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-leaving-secret"), InGameICChatType.Speak, true); } else { diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 4f2b7a4f99a..e73cbfcd5e9 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -294,12 +294,13 @@ public void BorgActivate(EntityUid uid, BorgChassisComponent component) access.Clear(); access.Add($"Captain"); + access.Add($"Maintenance"); + access.Add($"External"); access.Add($"Cargo"); access.Add($"Salvage"); access.Add($"Medical"); access.Add($"Service"); access.Add($"Research"); - access.Add($"Engineering"); _access.TrySetTags(uid, access); } diff --git a/Content.Server/Traits/Assorted/FriedTraitComponent.cs b/Content.Server/Traits/Assorted/FriedTraitComponent.cs new file mode 100644 index 00000000000..51522144d5f --- /dev/null +++ b/Content.Server/Traits/Assorted/FriedTraitComponent.cs @@ -0,0 +1,11 @@ +using System.Numerics; + +namespace Content.Server.Traits.Assorted; + +/// +/// This is used for the fried trait. +/// +[RegisterComponent, Access(typeof(FriedTraitSystem))] +public sealed partial class FriedTraitComponent : Component +{ +} diff --git a/Content.Server/Traits/Assorted/FriedTraitSystem.cs b/Content.Server/Traits/Assorted/FriedTraitSystem.cs new file mode 100644 index 00000000000..f3d5c017c0e --- /dev/null +++ b/Content.Server/Traits/Assorted/FriedTraitSystem.cs @@ -0,0 +1,22 @@ +using Content.Server.Kitchen.EntitySystems; + +namespace Content.Server.Traits.Assorted; + +/// +/// This handles fried trait, causing the affected to look crispy. +/// +public sealed class FriedTraitSystem : EntitySystem +{ + [Dependency] private readonly DeepFryerSystem _deepFryerSystem = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(SetupFriedTrait); + } + + private void SetupFriedTrait(EntityUid uid, FriedTraitComponent component, ComponentStartup args) + { + _deepFryerSystem.MakeCrispy(uid); + } +} diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 0575b1751e6..3a9cb0e3550 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -358,12 +358,12 @@ public void AuthorizedVend(EntityUid uid, EntityUid sender, InventoryType type, if (TryComp(component.Owner, out var modifier)) price *= modifier.Mod; - var totalPrice = ((int) price); + var totalPrice = (int) price; // This block exists to allow the VendPrice flag to set a vending machine item price. var priceVend = _pricing.GetEstimatedVendPrice(proto); - if (priceVend == null || priceVend == 0) { } - else { totalPrice = ((int) priceVend); } + if (priceVend != null && totalPrice <= (int) priceVend) + totalPrice = (int) priceVend; // This block exists to allow the VendPrice flag to set a vending machine item price. if (totalPrice > bank.Balance) diff --git a/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs b/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs index ae61f0581e3..d2464627a62 100644 --- a/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs @@ -27,12 +27,12 @@ public sealed partial class DebrisFeaturePlacerControllerComponent : Component /// /// The chance spawning a piece of debris will just be cancelled randomly. /// - [DataField("randomCancelChance")] public float RandomCancellationChance = 0.1f; + [DataField("randomCancelChance")] public float RandomCancellationChance = 0.35f; /// /// Radius in which there should be no objects for debris to spawn. /// - [DataField("safetyZoneRadius")] public float SafetyZoneRadius = 16.0f; + [DataField("safetyZoneRadius")] public float SafetyZoneRadius = 24.0f; /// /// The noise channel to use as a density controller. diff --git a/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs b/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs index 2e675d5f3cc..2cb86177710 100644 --- a/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs +++ b/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs @@ -170,12 +170,12 @@ private void OnAutoCryoSleep(EntityUid uid, CryoSleepComponent component, CryoSt if (args.Cancelled || args.Handled) return; - var body = args.User; - var pod = args.Target; + var pod = args.Used; + var body = args.Target; if (body is not { Valid: true } || pod is not { Valid: true }) return; - CryoStoreBody(body, pod.Value); + CryoStoreBody(body.Value, pod.Value); args.Handled = true; } @@ -305,7 +305,7 @@ public bool EjectBody(EntityUid pod, CryoSleepComponent? component = null, Entit return false; component.BodyContainer.Remove(toEject.Value, force: true); - _climb.ForciblySetClimbing(toEject.Value, pod); + //_climb.ForciblySetClimbing(toEject.Value, pod); if (component.CryosleepDoAfter != null && _doAfter.GetStatus(component.CryosleepDoAfter) == DoAfterStatus.Running) _doAfter.Cancel(component.CryosleepDoAfter); diff --git a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs index a8e1738dd2f..906357ad7ee 100644 --- a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs +++ b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs @@ -120,13 +120,16 @@ private void OnStartup(RoundStartingEvent ev) var courthouse = "/Maps/courthouse.yml"; var lodge = "/Maps/lodge.yml"; var lab = "/Maps/anomalouslab.yml"; + var church = "Maps/beacon.yml"; + var grifty = "Maps/grifty.yml"; var depotColor = new Color(55, 200, 55); var civilianColor = new Color(55, 55, 200); var lpbravoColor = new Color(200, 55, 55); var factionColor = new Color(255, 165, 0); var mapId = GameTicker.DefaultMap; var depotOffset = _random.NextVector2(3000f, 5000f); - + var tinniaOffset = _random.NextVector2(1100f, 2800f); + var caseysOffset = _random.NextVector2(2250f, 4600f); if (_map.TryLoad(mapId, depotMap, out var depotUids, new MapLoadOptions { Offset = depotOffset @@ -137,9 +140,19 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.SetIFFColor(depotUids[0], depotColor); } + if (_map.TryLoad(mapId, depotMap, out var depotUid3s, new MapLoadOptions + { + Offset = -depotOffset + })) + { + var meta = EnsureComp(depotUid3s[0]); + _meta.SetEntityName(depotUid3s[0], "Cargo Depot B", meta); + _shuttle.SetIFFColor(depotUid3s[0], depotColor); + } + if (_map.TryLoad(mapId, tinnia, out var depotUid2s, new MapLoadOptions { - Offset = _random.NextVector2(1100f, 2800f) + Offset = tinniaOffset })) { var meta = EnsureComp(depotUid2s[0]); @@ -147,14 +160,14 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.SetIFFColor(depotUid2s[0], factionColor); } - if (_map.TryLoad(mapId, depotMap, out var depotUid3s, new MapLoadOptions + if (_map.TryLoad(mapId, church, out var churchUids, new MapLoadOptions { - Offset = -depotOffset + Offset = -tinniaOffset })) { - var meta = EnsureComp(depotUid3s[0]); - _meta.SetEntityName(depotUid3s[0], "Cargo Depot B", meta); - _shuttle.SetIFFColor(depotUid3s[0], depotColor); + var meta = EnsureComp(churchUids[0]); + _meta.SetEntityName(churchUids[0], "Omnichurch Beacon", meta); + _shuttle.SetIFFColor(churchUids[0], factionColor); } if (_map.TryLoad(mapId, lpbravo, out var depotUid4s, new MapLoadOptions @@ -219,14 +232,24 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.SetIFFColor(lodgeUids[0], civilianColor); } - if (_map.TryLoad(mapId, caseys, out var depotUid7s, new MapLoadOptions + if (_map.TryLoad(mapId, caseys, out var caseyUids, new MapLoadOptions { - Offset = _random.NextVector2(2250f, 4600f) + Offset = caseysOffset + })) + { + var meta = EnsureComp(caseyUids[0]); + _meta.SetEntityName(caseyUids[0], "Crazy Casey's Casino", meta); + _shuttle.SetIFFColor(caseyUids[0], factionColor); + } + + if (_map.TryLoad(mapId, grifty, out var griftyUids, new MapLoadOptions + { + Offset = -caseysOffset })) { - var meta = EnsureComp(depotUid7s[0]); - _meta.SetEntityName(depotUid7s[0], "Crazy Casey's Casino", meta); - _shuttle.SetIFFColor(depotUid7s[0], factionColor); + var meta = EnsureComp(griftyUids[0]); + _meta.SetEntityName(griftyUids[0], "Grifty's Gas and Grub", meta); + _shuttle.SetIFFColor(griftyUids[0], factionColor); } if (_map.TryLoad(mapId, courthouse, out var depotUid8s, new MapLoadOptions diff --git a/Content.Shared/Shipyard/SharedShipyardSystem.cs b/Content.Shared/Shipyard/SharedShipyardSystem.cs index 08aa0ce2970..222024b2ec4 100644 --- a/Content.Shared/Shipyard/SharedShipyardSystem.cs +++ b/Content.Shared/Shipyard/SharedShipyardSystem.cs @@ -13,7 +13,8 @@ public enum ShipyardConsoleUiKey : byte Shipyard, Security, BlackMarket, - Expedition + Expedition, + Scrap // Syndicate //Not currently implemented. Could be used in the future to give other factions a variety of shuttle options, //like nukies, syndicate, or for evac purchases. diff --git a/Content.Shared/Storage/Components/MagnetPickupComponent.cs b/Content.Shared/Storage/Components/MagnetPickupComponent.cs index 68d3029be82..2e046a0fc1d 100644 --- a/Content.Shared/Storage/Components/MagnetPickupComponent.cs +++ b/Content.Shared/Storage/Components/MagnetPickupComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Inventory; -namespace Content.Server.Storage.Components; +// namespace Content.Server.Storage.Components; +namespace Content.Shared.Storage.Components; // Frontier /// /// Applies an ongoing pickup area around the attached entity. @@ -14,27 +15,17 @@ public sealed partial class MagnetPickupComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("range")] public float Range = 1f; - /// - /// Whether the magnet is attached to a fixture (e.g. ore box) or not (e.g. ore bag) - /// - [ViewVariables(VVAccess.ReadWrite), DataField("isFixture")] - public bool IsFixture = false; - /// /// What container slot the magnet needs to be in to work (if not a fixture) /// [ViewVariables(VVAccess.ReadWrite), DataField("slotFlags")] public SlotFlags SlotFlags = SlotFlags.BELT; - /// - /// Is magnet active, when fixture is anchored? - /// - [ViewVariables(VVAccess.ReadWrite), DataField("pickupWhenAnchored")] - public bool PickupWhenAnchored = true; + // Everything below this line is from Frontier /// - /// Is magnet active, when fixture is not anchored? + /// Is the magnet currently enabled? /// - [ViewVariables(VVAccess.ReadWrite), DataField("pickupWhenNotAnchored")] - public bool PickupWhenNotAnchored = true; + [ViewVariables(VVAccess.ReadWrite), DataField("magnetEnabled")] + public bool MagnetEnabled = true; } diff --git a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs index a038e16620d..bda4453b1d4 100644 --- a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs +++ b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs @@ -1,8 +1,14 @@ -using Content.Server.Storage.Components; +// using Content.Server.Storage.Components; +using Content.Shared.Clothing.Components; // Frontier +using Content.Shared.Examine; // Frontier +using Content.Shared.Hands.Components; // Frontier using Content.Shared.Inventory; +using Content.Shared.Verbs; // Frontier +using Content.Shared.Storage.Components; // Frontier using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; +using Robust.Shared.Utility; // Frontier namespace Content.Shared.Storage.EntitySystems; @@ -27,6 +33,8 @@ public override void Initialize() _physicsQuery = GetEntityQuery(); SubscribeLocalEvent(OnMagnetMapInit); SubscribeLocalEvent(OnMagnetUnpaused); + SubscribeLocalEvent(OnExamined); // Frontier + SubscribeLocalEvent>(AddToggleMagnetVerb); // Frontier } private void OnMagnetUnpaused(EntityUid uid, MagnetPickupComponent component, ref EntityUnpausedEvent args) @@ -39,6 +47,48 @@ private void OnMagnetMapInit(EntityUid uid, MagnetPickupComponent component, Map component.NextScan = _timing.CurTime; } + // Frontier, used to add the magnet toggle to the context menu + private void AddToggleMagnetVerb(EntityUid uid, MagnetPickupComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + if (!HasComp(args.User)) + return; + + AlternativeVerb verb = new() + { + Act = () => + { + ToggleMagnet(uid, component); + }, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/Spare/poweronoff.svg.192dpi.png")), + Text = Loc.GetString("magnet-pickup-component-toggle-verb"), + Priority = 3 + }; + + args.Verbs.Add(verb); + } + + // Frontier, used to show the magnet state on examination + private void OnExamined(EntityUid uid, MagnetPickupComponent component, ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("magnet-pickup-component-on-examine-main", + ("stateText", Loc.GetString(component.MagnetEnabled + ? "magnet-pickup-component-magnet-on" + : "magnet-pickup-component-magnet-off")))); + } + + // Frontier, used to toggle the magnet on the ore bag/box + public bool ToggleMagnet(EntityUid uid, MagnetPickupComponent comp) + { + var query = EntityQueryEnumerator(); + comp.MagnetEnabled = !comp.MagnetEnabled; + + return comp.MagnetEnabled; + } + + public override void Update(float frameTime) { base.Update(frameTime); @@ -56,18 +106,19 @@ public override void Update(float frameTime) if (storage.StorageUsed >= storage.StorageCapacityMax) continue; + // Frontier - magnet disabled + if (!comp.MagnetEnabled) + continue; - if (!comp.IsFixture) + // Frontier - is ore bag on belt? + if (HasComp(uid)) { if (!_inventory.TryGetContainingSlot(uid, out var slotDef)) continue; - + if ((slotDef.SlotFlags & comp.SlotFlags) == 0x0) continue; } - // Magnet disabled in current fixture anchor state - else if (xform.Anchored && !comp.PickupWhenAnchored || !xform.Anchored && !comp.PickupWhenNotAnchored) - continue; var parentUid = xform.ParentUid; var playedSound = false; diff --git a/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs b/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs index 2fd4f8f168e..eca2a460fd0 100644 --- a/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs +++ b/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs @@ -5,6 +5,12 @@ namespace Content.Shared.CryoSleep; public abstract partial class SharedCryoSleepSystem : EntitySystem { + /// + /// Raised on a cryopod that an entity was shoved into, + /// only if the mind of that entity has not decided to proceed with cryosleep or cancel it. + /// + /// The target and the user of this event is the cryopod, and the "used" is the body put into it. + /// [Serializable, NetSerializable] public sealed partial class CryoStoreDoAfterEvent : SimpleDoAfterEvent { diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2cc8ada3f02..b1d03a31287 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -2357,3 +2357,149 @@ Entries: expedition capable! id: 4680 time: '2023-12-18T22:10:03.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: >- + Added new crates to cargo! surgery, janitorial supplies B, bulk space + cleaner, janitorial trolley & cart, freezer + - type: Tweak + message: >- + Thrusters and gyros will now arrive in crates in cargo and wont be stuck + to the floor. + id: 4681 + time: '2023-12-21T18:21:40.0000000+00:00' +- author: dvir001 + changes: + - type: Add + message: Added the STC stamp. + id: 4682 + time: '2023-12-21T18:22:52.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Air Alarm parameters are now can be altered by Captains. + id: 4683 + time: '2023-12-21T18:24:11.0000000+00:00' +- author: mnemosynium + changes: + - type: Fix + message: Removed access restriction from the bar on the Barge + id: 4684 + time: '2023-12-21T18:24:49.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Fix + message: Cryopods should now correctly accept SSD people. + id: 4685 + time: '2023-12-21T19:39:34.0000000+00:00' +- author: DustScoundrel + changes: + - type: Add + message: Added Beacon Outpost POI for the cult-inclined. + id: 4686 + time: '2023-12-21T20:16:09.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: Added the McCargo ship, get your very own McCargo franchisee today! + id: 4687 + time: '2023-12-21T21:07:38.0000000+00:00' +- author: DustScoundrel + changes: + - type: Add + message: Added the Garden, a small botany vessel. + id: 4688 + time: '2023-12-21T21:08:09.0000000+00:00' +- author: DustScoundrel + changes: + - type: Add + message: Added Grifty's Gas and Grub bluespace POI + id: 4689 + time: '2023-12-21T21:58:47.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added NM Searchlight - a small search and rescue vessel. + id: 4690 + time: '2023-12-21T22:15:01.0000000+00:00' +- author: crystalHex + changes: + - type: Tweak + message: Minor tweaks to the Pulse. + id: 4691 + time: '2023-12-21T22:19:44.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Added more condiments to the condiments stand + id: 4692 + time: '2023-12-21T22:28:11.0000000+00:00' +- author: Wolfhauler + changes: + - type: Add + message: Added the Spectre + id: 4693 + time: '2023-12-22T00:18:24.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added the "Opportunity" prison expedition ship. + id: 4694 + time: '2023-12-22T02:19:37.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added SR carapace! + - type: Tweak + message: Removed speed penalty from captain's carapace! + id: 4695 + time: '2023-12-23T21:09:01.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + PietyVend holds a bigger stock and can be restocked like other cloth + vendomats. + id: 4696 + time: '2023-12-24T01:09:59.0000000+00:00' +- author: FoxxoTrystan + changes: + - type: Tweak + message: >- + Security are unable to pick detailed signals from arriving BlackMarket + Shipyards. + id: 4697 + time: '2023-12-24T01:11:10.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Junk food price adjust to inflation. + id: 4698 + time: '2023-12-24T03:25:59.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + The Bison and SV ships moved to the scrapyard shipyard, possibly found + in the Frontier maints. + id: 4699 + time: '2023-12-24T13:56:42.0000000+00:00' +- author: Cheackraze + changes: + - type: Add + message: >- + Added the prisoner role to a select few security ships. Whitelisted + only. + id: 4700 + time: '2023-12-24T15:51:57.0000000+00:00' +- author: crystalHex + changes: + - type: Tweak + message: >- + The magnet on the ore box (and ore bag) can now be toggled through the + context menu. + - type: Tweak + message: The ore box can now go under plastic flaps. + id: 4701 + time: '2023-12-24T15:59:51.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl index 83d6fa6ed4c..517367a8448 100644 --- a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl @@ -8,5 +8,8 @@ ghost-role-information-clippy-description = The Station Representative loyal wor ghost-role-information-clarpy-name = Clarpy ghost-role-information-clarpy-description = Avast ye mail! wanted by Nanotrasen for crimes against mice. +ghost-role-information-crispy-name = Crispy +ghost-role-information-crispy-description = Mistakes were made. + ghost-role-information-mistake-name = ????? ghost-role-information-mistake-description = Ymg' ph'nglui ah li. \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl index 7a3acaee265..d5c439dce56 100644 --- a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl @@ -5,3 +5,4 @@ stamp-component-unknown-job = No job stamp-component-stamped-name-psychologist = Psychologist stamp-component-stamped-name-lawyer = Lawyer +stamp-component-stamped-name-stc = Station Traffic Controller diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl index 329ea5453a1..c93f16494c2 100644 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl @@ -12,3 +12,6 @@ ent-FunChurchOrganInstrument = { ent-ChurchOrganInstrument } ent-FunMinimoogInstrument = { ent-MinimoogInstrument } .desc = { ent-MinimoogInstrument.desc } + +ent-FunDawInstrument = { ent-DawInstrument } + .desc = { ent-DawInstrument.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl new file mode 100644 index 00000000000..5e27cb780d1 --- /dev/null +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl @@ -0,0 +1,5 @@ +ent-ServiceJanitorial2 = { ent-CrateServiceJanitorialSupplies2 } + .desc = { ent-CrateServiceJanitorialSupplies2.desc } + +ent-ServiceVehicleJanicart = { ent-CrateVehicleJanicart } + .desc = { ent-CrateVehicleJanicart.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl new file mode 100644 index 00000000000..f5a1492fa03 --- /dev/null +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl @@ -0,0 +1,5 @@ +ent-CrateThruster = { ent-BaseThruster } + .desc = { ent-BaseThruster.desc } + +ent-CrateGyroscope = { ent-Gyroscope } + .desc = { ent-Gyroscope.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl new file mode 100644 index 00000000000..588b424a201 --- /dev/null +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl @@ -0,0 +1,8 @@ +ent-CrateServiceJanitorialSupplies2 = Janitorial supplies crate B + .desc = Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains two trash bag boxes, one box of wet floor signs and 2 spray cleaners. + +ent-CrateSpaceCleaner = Bulk space cleaner crate + .desc = For a large mess + +ent-CrateVehicleJanicart = Janicart crate + .desc = The janitor's trusty steed. diff --git a/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl b/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl index 64851e49073..b5706954402 100644 --- a/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl +++ b/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl @@ -1,10 +1,10 @@ ## UI -shipyard-console-invalid-vessel = Cannot purchase vessel: +shipyard-console-invalid-vessel = Cannot purchase vessel: shipyard-console-menu-title = Shipyard Menu shipyard-console-docking = Captain {$owner} shuttle {$vessel} en route, eta 10 seconds. shipyard-console-leaving = Captain {$owner} shuttle {$vessel} sold by {$player}. -shipyard-console-docking-secret = shuttle {$vessel} en route, eta 10 seconds. -shipyard-console-leaving-secret = shuttle {$vessel} sold. +shipyard-console-docking-secret = Unregistered vessel detected entering your sector. +shipyard-console-leaving-secret = Unregistered vessel detected leaving your sector. shipyard-commands-purchase-desc = Spawns and FTL docks a specified shuttle from a grid file. shipyard-console-no-idcard = No ID card present shipyard-console-already-deeded = ID card already has a Deed @@ -12,4 +12,4 @@ shipyard-console-invalid-station = Not a valid station shipyard-console-no-bank = No bank account found shipyard-console-no-deed = No ship deed found shipyard-console-sale-reqs = Ship must be docked and all crew disembarked -shipyard-console-deed-label = Registered Ship: \ No newline at end of file +shipyard-console-deed-label = Registered Ship: diff --git a/Resources/Locale/en-US/storage/components/magnet-pickup-component.ftl b/Resources/Locale/en-US/storage/components/magnet-pickup-component.ftl new file mode 100644 index 00000000000..01cf2fbce70 --- /dev/null +++ b/Resources/Locale/en-US/storage/components/magnet-pickup-component.ftl @@ -0,0 +1,4 @@ +magnet-pickup-component-toggle-verb = Toggle magnet +magnet-pickup-component-on-examine-main = The magnet appears to be {$stateText}. +magnet-pickup-component-magnet-on = [color=darkgreen]on[/color] +magnet-pickup-component-magnet-off = [color=darkred]off[/color] \ No newline at end of file diff --git a/Resources/Maps/Shuttles/barge.yml b/Resources/Maps/Shuttles/barge.yml index 6efe05bd554..32469d663ae 100644 --- a/Resources/Maps/Shuttles/barge.yml +++ b/Resources/Maps/Shuttles/barge.yml @@ -24,19 +24,19 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAADHAAAAAACbgAAAAADVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAACHAAAAAABbgAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAADHAAAAAACbgAAAAABVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAACHAAAAAACHAAAAAABbgAAAAAAVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAACbgAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAAAbgAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAABHAAAAAADHAAAAAACbgAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAACHAAAAAABbgAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAAAbgAAAAACVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAAAHAAAAAABbgAAAAADVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXAAAAAADXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXAAAAAAAXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACXAAAAAACXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACXAAAAAAAXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXAAAAAADXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACXAAAAAACXAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABVAAAAAABVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABXAAAAAACVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABXAAAAAACVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: cQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACIAAAAAACVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACIAAAAAABVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -354,12 +354,9 @@ entities: data: tiles: -2,-1: - 0: 61162 - 1: 4 + 0: 61166 -1,-1: - 0: 64767 - 1: 256 - 2: 512 + 0: 65535 0,-1: 0: 65535 1,-1: @@ -385,8 +382,7 @@ entities: -1,-2: 0: 65535 0,-4: - 0: 64887 - 2: 512 + 0: 65399 0,-3: 0: 65535 0,-2: @@ -400,8 +396,7 @@ entities: -2,1: 0: 52974 -1,1: - 0: 65279 - 3: 256 + 0: 65535 -1,2: 0: 15 0,1: @@ -442,51 +437,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.213781 - - 79.80423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 19.51668 - - 73.41989 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 18.970211 - - 71.364136 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: RadiationGridResistance @@ -4112,7 +4062,7 @@ entities: - pos: -2.397523,-13.449847 parent: 70 type: Transform -- proto: WindoorBarLocked +- proto: Windoor entities: - uid: 160 components: diff --git a/Resources/Maps/Shuttles/dragonfly.yml b/Resources/Maps/Shuttles/dragonfly.yml index fe580a10678..65f3118e3b8 100644 --- a/Resources/Maps/Shuttles/dragonfly.yml +++ b/Resources/Maps/Shuttles/dragonfly.yml @@ -6143,7 +6143,7 @@ entities: - pos: 7.5,-4.5 parent: 1 type: Transform -- proto: WarpPoint +- proto: WarpPointShip entities: - uid: 456 components: diff --git a/Resources/Maps/Shuttles/garden.yml b/Resources/Maps/Shuttles/garden.yml new file mode 100644 index 00000000000..aea8475f72f --- /dev/null +++ b/Resources/Maps/Shuttles/garden.yml @@ -0,0 +1,1929 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 43: FloorGlass + 56: FloorHydro + 71: FloorRGlass + 84: FloorSteel + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.46875,-0.44527435 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: cQAAAAAAKwAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYQAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAYQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAcAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 14: -4,3 + 28: 5,3 + 29: 3,-1 + 30: 5,-3 + 47: -1,2 + 48: 1,2 + 52: 3,5 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 19: -5,-1 + 20: -4,-3 + 22: -3,-2 + 23: -3,-1 + 26: -5,-1 + 27: 4,3 + 37: 3,0 + 42: 5,-1 + 46: 2,3 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 15: -5,3 + 16: -3,1 + 18: -3,-1 + 21: -5,-3 + 24: -5,2 + 31: 5,1 + 32: 5,2 + 33: 3,-2 + 34: 5,3 + 41: 5,-1 + 45: -2,3 + 50: 1,8 + 51: 3,6 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 17: -5,1 + 25: -5,2 + 35: 5,0 + 36: 5,-2 + 38: -3,1 + 39: 3,1 + 40: 5,-1 + 43: -2,2 + 44: 2,2 + 49: 0,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 0: -2,4 + 9: -2,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 6: -1,3 + 7: 0,3 + 8: 1,3 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 3: 1,6 + 4: 0,6 + 5: -1,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 1: 2,5 + 2: 2,4 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNe + decals: + 12: -2,3 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNw + decals: + 13: 2,3 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSe + decals: + 11: -2,6 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSw + decals: + 10: 2,6 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 119 + 1,0: + 0: 30583 + 1,1: + 0: 4407 + 0,-2: + 0: 4352 + 0,-1: + 0: 64989 + 1,-1: + 0: 30583 + -2,0: + 0: 52428 + -2,1: + 0: 140 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 204 + -2,-1: + 0: 52428 + -1,-1: + 0: 63351 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Garden + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + - 105 + type: DeviceNetwork + - devices: + - 107 + - 105 + type: DeviceList + - uid: 141 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 108 + - 106 + type: DeviceNetwork + - devices: + - 108 + - 106 + type: DeviceList + - uid: 142 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 109 + - 104 + type: DeviceNetwork + - devices: + - 109 + - 104 + type: DeviceList +- proto: AirCanister + entities: + - uid: 139 + components: + - anchored: True + pos: 3.5,6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockExternalGlass + entities: + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 191 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 213 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 185 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 196 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 188 + components: + - pos: -0.4136287,4.5109863 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 146 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 147 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 259 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: FoodSaladFruit + entities: + - uid: 258 + components: + - pos: 0.4972031,4.692948 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 123 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 113 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 124 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 125 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 127 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 129 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 132 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 137 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 130 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - targetPressure: 101.3 + type: GasPressurePump + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 142 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 105 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 140 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 106 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 141 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 140 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 108 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 141 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 109 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 142 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 156 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 144 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 145 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: LargeBeaker + entities: + - uid: 145 + components: + - flags: InContainer + type: MetaData + - parent: 144 + type: Transform + - canCollide: False + type: Physics +- proto: LockerBotanistFilled + entities: + - uid: 172 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 143 + components: + - anchored: True + pos: 3.5,5.5 + parent: 1 + type: Transform + - storage: + Plasma: 3000 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage + - type: ItemCooldown +- proto: PosterLegitBotanyFood + entities: + - uid: 257 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitFruitBowl + entities: + - uid: 256 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 181 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 180 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 261 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 262 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 190 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 153 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 154 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 165 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 3 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 5 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 263 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 149 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/investigator.yml b/Resources/Maps/Shuttles/investigator.yml index d90bae49c74..7d3f40467eb 100644 --- a/Resources/Maps/Shuttles/investigator.yml +++ b/Resources/Maps/Shuttles/investigator.yml @@ -14,24 +14,12 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - name: map 20 - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 2 components: - name: grid type: MetaData - pos: -2.6107569,3.2554395 - parent: 1 + parent: invalid type: Transform - chunks: 0,0: @@ -352,16 +340,13 @@ entities: 0,1: 0: 4095 1,1: - 0: 1911 - 1: 8 + 0: 1919 2,0: 0: 65535 2,1: - 0: 14 - 1: 1 + 0: 15 3,0: - 0: 4369 - 1: 238 + 0: 4607 3,1: 0: 1 0,-3: @@ -387,15 +372,13 @@ entities: 3,-2: 0: 4369 3,-1: - 0: 4369 - 1: 12000 + 0: 16369 -2,-3: 0: 52224 -2,-2: 0: 52428 -2,-1: - 0: 52428 - 1: 9008 + 0: 61436 -1,-3: 0: 65280 -1,-2: @@ -403,23 +386,21 @@ entities: -1,-1: 0: 65535 -2,0: - 0: 52428 - 1: 51 + 0: 52479 -2,1: 0: 12 -1,0: 0: 65535 -1,1: - 0: 3 - 1: 12 + 0: 15 -3,-1: - 1: 12272 + 0: 12272 -3,0: - 1: 255 + 0: 255 4,-1: - 1: 10096 + 0: 10096 4,0: - 1: 119 + 0: 119 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -436,21 +417,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -517,9 +483,12 @@ entities: entities: - uid: 472 components: - - pos: -4.5,-4.5 + - anchored: True + pos: -4.5,-4.5 parent: 2 type: Transform + - bodyType: Static + type: Physics - proto: AirlockCargo entities: - uid: 110 @@ -2457,6 +2426,13 @@ entities: - pos: 12.5,-1.5 parent: 2 type: Transform +- proto: FaxMachineShip + entities: + - uid: 703 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform - proto: Firelock entities: - uid: 307 @@ -2503,6 +2479,8 @@ entities: pos: 3.5,-4.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 276 components: - rot: 3.141592653589793 rad @@ -2516,48 +2494,64 @@ entities: - pos: -2.5,-4.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 235 components: - rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 243 components: - rot: 3.141592653589793 rad pos: -3.5,-4.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 250 components: - rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 288 components: - rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 296 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 305 components: - rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 326 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 491 components: - rot: -1.5707963267948966 rad @@ -2572,71 +2566,95 @@ entities: pos: 3.5,-3.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9 components: - rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 238 components: - rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 239 components: - rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 240 components: - rot: 3.141592653589793 rad pos: -3.5,-2.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 241 components: - rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 242 components: - pos: -2.5,-5.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 244 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 245 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 247 components: - rot: 1.5707963267948966 rad pos: 4.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 248 components: - rot: 1.5707963267948966 rad pos: 5.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 249 components: - rot: 1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 279 components: - pos: 8.5,-2.5 @@ -2662,90 +2680,122 @@ entities: - pos: -1.5,-4.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 291 components: - pos: -1.5,-3.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 292 components: - pos: -1.5,-2.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 293 components: - pos: -1.5,-1.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 294 components: - pos: -1.5,-0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 297 components: - rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 298 components: - rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 299 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 300 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 301 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 303 components: - rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 304 components: - rot: 1.5707963267948966 rad pos: 6.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 443 components: - pos: 4.5,-0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 464 components: - pos: 4.5,-1.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 492 components: - rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 493 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - uid: 234 @@ -2753,34 +2803,46 @@ entities: - pos: 3.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 236 components: - rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 246 components: - pos: 2.5,-1.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 281 components: - rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 295 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 302 components: - pos: 4.5,0.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 277 @@ -2798,6 +2860,8 @@ entities: - pos: -4.5,-4.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPressurePump entities: - uid: 278 @@ -2816,12 +2880,16 @@ entities: - ShutdownSubscribers: - 252 type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 274 components: - rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 275 components: - pos: 7.5,1.5 @@ -2830,6 +2898,8 @@ entities: - ShutdownSubscribers: - 251 type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 289 components: - rot: -1.5707963267948966 rad @@ -2839,6 +2909,8 @@ entities: - ShutdownSubscribers: - 306 type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentScrubber entities: - uid: 228 @@ -2849,6 +2921,8 @@ entities: - ShutdownSubscribers: - 251 type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - uid: 229 components: - pos: -0.5,-0.5 @@ -2857,6 +2931,8 @@ entities: - ShutdownSubscribers: - 252 type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - uid: 237 components: - rot: 3.141592653589793 rad @@ -2866,12 +2942,16 @@ entities: - ShutdownSubscribers: - 306 type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - uid: 273 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 2 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 471 @@ -3066,11 +3146,11 @@ entities: pos: -3.3664355,-0.08267355 parent: 2 type: Transform -- proto: LockerResearchDirectorFilledHardsuit +- proto: LockerResearchDirectorFilled entities: - - uid: 331 + - uid: 705 components: - - pos: 7.5,0.5 + - pos: 7.5,-0.5 parent: 2 type: Transform - proto: LockerSalvageSpecialistFilled @@ -3080,6 +3160,24 @@ entities: - pos: -1.5,-2.5 parent: 2 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: MachineArtifactAnalyzer entities: - uid: 125 @@ -3102,6 +3200,13 @@ entities: - pos: 1.5,-2.5 parent: 2 type: Transform +- proto: PaperOffice + entities: + - uid: 704 + components: + - pos: -2.514917,-4.8300157 + parent: 2 + type: Transform - proto: PlasticFlapsAirtightClear entities: - uid: 455 @@ -3130,21 +3235,20 @@ entities: entities: - uid: 286 components: - - pos: -3.5,-6.5 + - anchored: True + pos: -3.5,-6.5 parent: 2 type: Transform + - bodyType: Static + type: Physics - uid: 323 components: - - pos: -2.5,-6.5 - parent: 2 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 694 - components: - - pos: -2.5,-4.5 + - anchored: True + pos: -2.5,-6.5 parent: 2 type: Transform + - bodyType: Static + type: Physics - proto: PowerCellRecharger entities: - uid: 104 @@ -3957,6 +4061,13 @@ entities: - pos: -3.5,1.5 parent: 2 type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 694 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform - proto: SpawnPointSalvageSpecialist entities: - uid: 194 @@ -4021,6 +4132,13 @@ entities: - pos: -4.5,-5.5 parent: 2 type: Transform +- proto: SuitStorageRD + entities: + - uid: 1 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform - proto: SuitStorageSalv entities: - uid: 192 @@ -4028,8 +4146,24 @@ entities: - pos: -0.5,-2.5 parent: 2 type: Transform - - locked: False - type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: Table entities: - uid: 223 @@ -4050,6 +4184,11 @@ entities: pos: 8.5,-2.5 parent: 2 type: Transform + - uid: 331 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform - proto: TableWoodReinforced entities: - uid: 38 @@ -4215,6 +4354,13 @@ entities: - Right: Reverse - Middle: Off type: DeviceLinkSource +- proto: VendingMachineCargoDrobe + entities: + - uid: 702 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform - proto: VendingMachineDonut entities: - uid: 701 diff --git a/Resources/Maps/Shuttles/mccargo.yml b/Resources/Maps/Shuttles/mccargo.yml new file mode 100644 index 00000000000..6192181607c --- /dev/null +++ b/Resources/Maps/Shuttles/mccargo.yml @@ -0,0 +1,7352 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 42: FloorFreezer + 58: FloorKitchen + 71: FloorRGlass + 96: FloorTechMaint + 105: FloorWhiteMono + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.6875 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: DAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAADAAAAAAADAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAADAAAAAAARwAAAAAARwAAAAAARwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: cQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 291: 6,9 + 292: 7,9 + 293: 9,9 + 294: 6,8 + 295: 7,8 + 296: 6,7 + 297: 7,7 + 298: 9,7 + 299: 6,6 + 300: 7,6 + 301: 6,5 + 302: 7,5 + 303: 9,5 + 304: 8,5 + 305: 7,4 + 306: 8,7 + 307: 8,9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 205: -4,3 + 206: -6,3 + 208: -8,3 + 212: -8,8 + 216: -6,8 + 219: -5,10 + 222: -5,12 + 225: -2,12 + 226: 0,12 + 236: -5,15 + 288: 7,14 + 289: 6,11 + 290: -1,10 + 332: -5,3 + 333: -7,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 4: 7,13 + 5: 7,12 + 215: -7,8 + 221: -3,10 + 224: -3,12 + 229: 0,14 + 232: -3,14 + 239: 0,15 + 240: 0,13 + 284: 6,12 + 329: -5,4 + 331: -8,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 0: -8,3 + 1: -1,12 + 207: -4,4 + 209: -4,5 + 210: -8,6 + 213: -8,9 + 228: 0,13 + 231: -2,14 + 233: -4,14 + 237: -1,15 + 334: -6,3 + 335: -5,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2: 7,12 + 3: 9,11 + 211: -8,7 + 214: -7,9 + 217: -6,9 + 218: -5,9 + 220: -4,10 + 223: -4,12 + 227: -1,13 + 230: -1,14 + 234: -5,14 + 235: -4,15 + 238: -2,15 + 285: 6,14 + 286: 6,13 + 287: 7,11 + 330: -8,4 + 336: -5,5 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerNe + decals: + 252: 4,8 + 264: 4,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerNw + decals: + 253: -2,8 + 265: 2,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSe + decals: + 255: 4,3 + 266: 4,10 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSw + decals: + 254: -2,3 + 267: 2,10 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerNe + decals: + 193: 4,-4 + 194: 0,-3 + 195: -4,-3 + 196: -8,-4 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerNw + decals: + 197: -4,-4 + 198: 0,-3 + 199: 4,-3 + 200: 8,-4 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerSe + decals: + 201: 4,-1 + 202: 0,0 + 203: -4,0 + 204: -8,-1 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerSw + decals: + 189: -4,-1 + 190: 0,0 + 191: 4,0 + 192: 8,-1 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineE + decals: + 161: 4,-3 + 162: 4,-2 + 163: 0,-1 + 164: 0,-2 + 165: -4,-1 + 166: -4,-2 + 167: -8,-2 + 168: -8,-3 + 256: 4,4 + 257: 4,5 + 258: 4,6 + 259: 4,7 + 271: 4,11 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineN + decals: + 149: -5,-4 + 150: -6,-4 + 151: -7,-4 + 152: -3,-3 + 153: -2,-3 + 154: -1,-3 + 155: 1,-3 + 156: 2,-3 + 157: 3,-3 + 158: 5,-4 + 159: 6,-4 + 160: 7,-4 + 242: -1,8 + 243: 0,8 + 244: 1,8 + 245: 2,8 + 246: 3,8 + 270: 3,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineS + decals: + 169: -7,-1 + 170: -6,-1 + 171: -5,-1 + 172: -3,0 + 173: -2,0 + 174: -1,0 + 175: 1,0 + 176: 2,0 + 177: 3,0 + 178: 5,-1 + 179: 6,-1 + 180: 7,-1 + 247: -1,3 + 248: 0,3 + 249: 1,3 + 250: 2,3 + 251: 3,3 + 269: 3,10 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineW + decals: + 181: 8,-2 + 182: 8,-3 + 183: 4,-1 + 184: 4,-2 + 185: 0,-1 + 186: 0,-2 + 187: -4,-2 + 188: -4,-3 + 260: -2,4 + 261: -2,5 + 262: -2,6 + 263: -2,7 + 268: 2,11 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNE + decals: + 279: 7,14 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNW + decals: + 278: 6,14 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSE + decals: + 276: 7,11 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSW + decals: + 277: 6,11 + - node: + color: '#A4610696' + id: WarnCornerNE + decals: + 116: -4,5 + 144: 0,15 + - node: + color: '#A4610696' + id: WarnCornerNW + decals: + 109: -8,9 + 143: -5,15 + - node: + color: '#A4610696' + id: WarnCornerSE + decals: + 98: -4,3 + 99: -1,10 + 100: 0,12 + - node: + color: '#9FED5896' + id: WarnCornerSW + decals: + 142: -8,3 + - node: + color: '#9FED5896' + id: WarnCornerSmallNE + decals: + 326: -8,4 + - node: + color: '#A4610696' + id: WarnCornerSmallNE + decals: + 126: -5,10 + 127: -5,12 + 328: -5,5 + - node: + color: '#9FED5896' + id: WarnCornerSmallNW + decals: + 327: -5,4 + - node: + color: '#A4610696' + id: WarnCornerSmallNW + decals: + 128: -1,10 + 129: -1,12 + 138: -5,9 + - node: + color: '#A4610696' + id: WarnCornerSmallSE + decals: + 130: -8,8 + 131: -5,12 + 132: -5,14 + 136: -1,12 + 137: -5,10 + - node: + color: '#A4610696' + id: WarnCornerSmallSW + decals: + 133: -1,14 + 134: -1,12 + 135: -5,8 + - node: + color: '#B02E26FF' + id: WarnFullGreyscale + decals: + 241: 4,12 + - node: + color: '#9FED5896' + id: WarnLineE + decals: + 323: -8,5 + - node: + color: '#A4610696' + id: WarnLineE + decals: + 72: -6,-8 + 73: 8,-8 + 89: -5,9 + 90: -5,8 + 91: -5,7 + 92: -5,6 + 93: -4,4 + 94: -5,11 + 95: -5,13 + 96: 0,13 + 97: 0,14 + 110: -8,6 + 111: -8,7 + 123: -1,11 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 23: 11,-1 + 24: 11,-2 + 25: 11,-3 + 26: -11,-1 + 27: -11,-2 + 34: -13,-1 + 35: -13,-2 + 36: -13,-3 + 37: 13,-1 + 38: 13,-2 + 39: 13,-3 + 65: -3,3 + 66: 5,3 + 67: 8,3 + 68: 5,14 + 69: 1,14 + 311: 8,5 + 312: 8,7 + 313: 8,9 + 317: -11,-3 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 280: 7,13 + 281: 7,12 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 282: 6,12 + 283: 6,13 + - node: + color: '#9FED5896' + id: WarnLineN + decals: + 141: -6,3 + 319: -7,3 + 321: -5,3 + - node: + color: '#A4610696' + id: WarnLineN + decals: + 78: 12,-3 + 79: -12,-3 + 80: -4,14 + 81: -3,14 + 82: -2,14 + 83: -4,12 + 84: -3,12 + 85: -2,12 + 86: -4,10 + 87: -3,10 + 88: -2,10 + 112: -7,8 + 113: -6,8 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 17: -8,-7 + 18: -7,-7 + 19: -6,-7 + 20: 6,-7 + 21: 7,-7 + 22: 8,-7 + 40: -4,2 + 41: 6,10 + 47: 6,15 + 52: 3,9 + 59: -8,-9 + 60: -7,-9 + 61: -6,-9 + 62: 6,-9 + 63: 7,-9 + 64: 8,-9 + 70: -1,9 + 315: 7,4 + - node: + color: '#9FED5896' + id: WarnLineS + decals: + 322: -5,5 + 324: -8,5 + 325: -8,4 + - node: + color: '#A4610696' + id: WarnLineS + decals: + 76: -8,-8 + 77: 6,-8 + 101: -8,6 + 102: -8,7 + 103: -8,8 + 104: -5,10 + 105: -5,11 + 106: -5,12 + 107: -5,13 + 108: -5,14 + 114: -5,7 + 115: -5,6 + 124: -1,11 + 125: -1,13 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 6: -11,-1 + 7: -11,-2 + 8: 11,-1 + 9: 11,-2 + 10: 11,-3 + 28: 13,-3 + 29: 13,-2 + 30: 13,-1 + 31: -13,-3 + 32: -13,-2 + 33: -13,-1 + 42: -3,3 + 43: 5,3 + 44: 8,3 + 45: 1,14 + 46: 5,14 + 308: 8,9 + 309: 8,7 + 310: 8,5 + 316: -11,-3 + - node: + color: '#9FED5896' + id: WarnLineW + decals: + 318: -6,4 + 320: -7,4 + - node: + color: '#A4610696' + id: WarnLineW + decals: + 74: -12,-1 + 75: 12,-1 + 117: -4,12 + 118: -3,12 + 119: -2,12 + 120: -2,10 + 121: -3,10 + 122: -4,10 + 139: -7,9 + 140: -6,9 + 145: -4,15 + 146: -3,15 + 147: -2,15 + 148: -1,15 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 11: 6,-7 + 12: 7,-7 + 13: 8,-7 + 14: -8,-7 + 15: -7,-7 + 16: -6,-7 + 48: 6,15 + 49: -4,2 + 50: 6,10 + 51: 3,9 + 53: 8,-9 + 54: 7,-9 + 55: 6,-9 + 56: -8,-9 + 57: -7,-9 + 58: -6,-9 + 71: -1,9 + 314: 7,4 + - node: + color: '#A4610696' + id: food + decals: + 272: -12,-2 + 273: -7,-8 + 274: 7,-8 + 275: 12,-2 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 30719 + 2,1: + 0: 30583 + 2,2: + 0: 30583 + 2,3: + 0: 30583 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 1,-1: + 0: 65535 + 2,-1: + 0: 65535 + -3,0: + 0: 52463 + -3,1: + 0: 52428 + -3,2: + 0: 52428 + -3,3: + 0: 52428 + -3,-2: + 0: 60616 + -3,-1: + 0: 65535 + -2,-2: + 0: 65535 + -1,-2: + 0: 65296 + 0,-2: + 0: 65280 + 1,-2: + 0: 65534 + 2,-2: + 0: 63347 + -2,4: + 0: 12 + -1,4: + 0: 15 + 0,4: + 0: 15 + 1,4: + 0: 15 + 2,4: + 0: 7 + 3,0: + 0: 3 + -4,0: + 0: 8 + -4,-1: + 0: 34952 + -3,-3: + 0: 32768 + -2,-3: + 0: 61440 + 1,-3: + 0: 57344 + 2,-3: + 0: 12288 + 3,-1: + 0: 13107 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 901 + components: + - anchored: True + pos: 8.5,11.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockCargo + entities: + - uid: 8 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 300 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 301 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 838 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 935 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 936 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 937 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 938 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 939 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 941 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 943 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 944 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 945 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 946 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink +- proto: AirlockFreezer + entities: + - uid: 412 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 925 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 926 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 927 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 210 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 887 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 862 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 863 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 863 + components: + - flags: InContainer + type: MetaData + - parent: 862 + type: Transform + - canCollide: False + type: Physics + - uid: 881 + components: + - pos: -5.7486897,12.630705 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -5.4986897,12.755705 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: -5.2591066,12.661955 + parent: 1 + type: Transform +- proto: AmeShielding + entities: + - uid: 52 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 108 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 392 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 48 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 905 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 906 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: BannerCargo + entities: + - uid: 14 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 555 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform +- proto: BedsheetQM + entities: + - uid: 729 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaRight + entities: + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 599 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 600 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 601 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 603 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BorgCharger + entities: + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + type: Transform +- proto: BoxFolderClipboard + entities: + - uid: 164 + components: + - pos: -8.478253,9.524676 + parent: 1 + type: Transform +- proto: BrbSign + entities: + - uid: 755 + components: + - pos: -6.0586023,7.0368977 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: -6.2252693,6.8702307 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 768 + components: + - pos: -3.7585487,6.0110874 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: -3.2481322,6.0215044 + parent: 1 + type: Transform +- proto: ButchCleaver + entities: + - uid: 235 + components: + - pos: 2.4287968,5.620631 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 13 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 196 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 25 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 965 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 76 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: 3.141592653589793 rad + pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 760 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 868 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 869 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 870 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 896 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 897 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 900 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform +- proto: CigCartonRed + entities: + - uid: 178 + components: + - pos: 2.5538254,4.7630134 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 2.5119457,4.5921946 + parent: 1 + type: Transform +- proto: CigPackBlack + entities: + - uid: 190 + components: + - pos: -5.9440193,7.422314 + parent: 1 + type: Transform +- proto: CigPackRed + entities: + - uid: 704 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: ClosetJanitorFilled + entities: + - uid: 857 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + type: Transform +- proto: ClothingBeltPlantFilled + entities: + - uid: 765 + components: + - pos: -5.817134,6.56853 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 192 + components: + - pos: -5.533075,6.638674 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 873 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 872 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 874 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots + - uid: 498 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateFoodBarSupply + entities: + - uid: 195 + components: + - pos: 0.5805821,10.414998 + parent: 1 + type: Transform +- proto: CrateFoodCooking + entities: + - uid: 748 + components: + - pos: 0.5849985,11.125421 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 730 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform +- proto: CrateFunMysteryFigurines + entities: + - uid: 1014 + components: + - pos: 0.58529973,11.835589 + parent: 1 + type: Transform +- proto: CrateFunParty + entities: + - uid: 53 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 105 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 671 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 753 + components: + - pos: -6.4043546,7.0158014 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: -6.6647716,7.067885 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 931 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 932 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 933 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 142 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 804 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 26 + components: + - pos: 1.260719,4.8653827 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 1.5211356,4.8653827 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 1.7711357,4.8549657 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 1.2503023,4.7299657 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 1.4690523,4.7299657 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 1.5315523,4.584132 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 1.7815523,4.6049657 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 1.7190523,4.7299657 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -7.36764,1.8236554 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 1.291969,4.584132 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -7.6488905,1.8132387 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -7.9197235,1.8028221 + parent: 1 + type: Transform +- proto: DrinkSodaWaterCan + entities: + - uid: 705 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: EmergencyLight + entities: + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 980 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 982 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 57 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 888 + components: + - rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 232 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 154 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - devices: + - 39 + - 41 + - 70 + - 79 + - 646 + - 647 + - 644 + - 645 + type: DeviceList + - uid: 978 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 647 + - 644 + type: DeviceNetwork + - devices: + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 647 + - 644 + type: DeviceList + - uid: 979 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 647 + - 644 + type: DeviceNetwork + - devices: + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 647 + - 644 + type: DeviceList +- proto: Firelock + entities: + - uid: 39 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 291 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 635 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 967 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 968 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 969 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 970 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 971 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 972 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 973 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 974 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 975 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 976 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 977 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 157 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBurgerPlain + entities: + - uid: 706 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: FoodCondimentBottleBBQ + entities: + - uid: 986 + components: + - pos: -0.99494433,2.6808286 + parent: 1 + type: Transform +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 987 + components: + - pos: -0.7970277,2.6808286 + parent: 1 + type: Transform +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 988 + components: + - pos: -0.5991111,2.6704118 + parent: 1 + type: Transform +- proto: FoodCondimentBottleKetchup + entities: + - uid: 296 + components: + - pos: -5.4947367,-1.6523719 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: -1.4947362,-0.6315386 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: 2.5156803,-0.6315386 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: 6.519309,-1.6419554 + parent: 1 + type: Transform +- proto: FoodCondimentPacketBbq + entities: + - uid: 707 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: FoodPlatePlastic + entities: + - uid: 89 + components: + - pos: -5.5395737,1.7718108 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 9.511152,1.7718108 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 9.507014,1.948894 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -5.5395737,1.917644 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: -5.529157,1.605144 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 9.517431,1.5843108 + parent: 1 + type: Transform +- proto: FoodShakerPepper + entities: + - uid: 175 + components: + - pos: -1.2410378,-0.89970565 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 6.790247,-1.8788724 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -5.2202044,-1.9205391 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 2.7673988,-0.8892889 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: -6.4424706,1.794488 + parent: 1 + type: Transform + - uid: 794 + components: + - pos: -6.244554,1.794488 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: -6.338304,1.606988 + parent: 1 + type: Transform +- proto: FoodShakerSalt + entities: + - uid: 173 + components: + - pos: -1.7674901,-0.8845129 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: 6.229758,-1.8684556 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 2.237255,-0.8845129 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -7.0674367,1.7711829 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: -6.859103,1.7711829 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: -6.9736867,1.5940995 + parent: 1 + type: Transform + - uid: 791 + components: + - pos: -5.7674904,-1.8949294 + parent: 1 + type: Transform +- proto: GasDualPortVentPump + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 637 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 630 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 657 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 993 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 998 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 999 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1004 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 716 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 789 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 790 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 47 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 199 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 254 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 452 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 573 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 652 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 662 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 779 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 832 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 994 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 995 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 996 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 997 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1000 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1001 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1002 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1003 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1005 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1006 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1007 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1008 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1009 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 46 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 155 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 251 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 784 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 788 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 717 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 992 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + - 978 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1010 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1011 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1012 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 158 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 646 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + - 978 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 886 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 238 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 442 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 850 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 904 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform +- proto: GunSafe + entities: + - uid: 123 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - locked: False + type: Lock +- proto: Gyroscope + entities: + - uid: 817 + components: + - rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 147 + components: + - pos: 0.61389744,5.578879 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -5.5434914,7.0192184 + parent: 1 + type: Transform +- proto: HappyHonk + entities: + - uid: 128 + components: + - pos: 0.70903397,4.7924657 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 0.36528397,4.938299 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 0.70903397,4.9487157 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 0.35486734,4.8028827 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 0.33403397,4.657049 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 0.69861734,4.657049 + parent: 1 + type: Transform + - uid: 703 + components: + - name: happy honk meal (McCargo Meal) + type: MetaData + - pos: -1.4680494,4.705127 + parent: 1 + type: Transform + - storageUsed: 21 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 704 + - 705 + - 706 + - 707 + - 708 + type: ContainerContainer + - originalName: happy honk meal + currentLabel: McCargo Meal + type: Label +- proto: HospitalCurtainsOpen + entities: + - uid: 902 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 62 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 202 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: KitchenElectricGrill + entities: + - uid: 929 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 234 + components: + - pos: 1.4792413,5.5648255 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 149 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 268 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 156 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform +- proto: Lighter + entities: + - uid: 708 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics + - uid: 828 + components: + - pos: -5.829664,7.266064 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 830 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform +- proto: OilJarGhee + entities: + - uid: 45 + components: + - pos: 4.7203918,4.6294155 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 4.3766418,4.868999 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 4.6995583,4.8585825 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 4.3558083,4.650249 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 341 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 204 + components: + - pos: -5.9083214,7.6910467 + parent: 1 + type: Transform + - stampedName: Unknown + type: Stamp + - uid: 205 + components: + - pos: -5.91171,7.5681477 + parent: 1 + type: Transform + - stampedName: Unknown + type: Stamp +- proto: PortableScrubber + entities: + - uid: 9 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 742 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 287 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 439 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 833 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 959 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 960 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 961 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 962 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 64 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + type: Transform +- proto: RailingRound + entities: + - uid: 12 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 761 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 781 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform +- proto: RandomSnacks + entities: + - uid: 762 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 831 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 104 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 78 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 102 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 143 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - links: + - 751 + type: DeviceLinkSink + - uid: 336 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - links: + - 331 + type: DeviceLinkSink + - uid: 337 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 150 + type: DeviceLinkSink + - uid: 344 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 749 + type: DeviceLinkSink + - uid: 345 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - links: + - 750 + type: DeviceLinkSink + - uid: 346 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - links: + - 752 + type: DeviceLinkSink + - uid: 364 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 669 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 670 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 676 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 677 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 678 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 679 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 680 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 681 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 682 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 683 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 684 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 689 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 758 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 771 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 772 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 773 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 774 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 775 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 776 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 777 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 808 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 839 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 840 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 841 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 842 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 843 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 844 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 854 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 951 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 952 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 953 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 954 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 955 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 956 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 957 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 958 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 116 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 839: + - Pressed: Toggle + 840: + - Pressed: Toggle + 841: + - Pressed: Toggle + 842: + - Pressed: Toggle + 843: + - Pressed: Toggle + 844: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 150 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 337: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 331 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - linkedPorts: + 336: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 683: + - Pressed: Toggle + 676: + - Pressed: Toggle + 677: + - Pressed: Toggle + 678: + - Pressed: Toggle + 679: + - Pressed: Toggle + 680: + - Pressed: Toggle + 681: + - Pressed: Toggle + 682: + - Pressed: Toggle + 684: + - Pressed: Toggle + 193: + - Pressed: DoorBolt + 300: + - Pressed: DoorBolt + 633: + - Pressed: DoorBolt + 78: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 749 + components: + - pos: 9.317261,6.5 + parent: 1 + type: Transform + - linkedPorts: + 344: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 750 + components: + - pos: 9.317261,8.5 + parent: 1 + type: Transform + - linkedPorts: + 345: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 751 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - linkedPorts: + 143: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 752 + components: + - pos: 9.317261,10.5 + parent: 1 + type: Transform + - linkedPorts: + 346: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 770 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 771: + - Pressed: Toggle + 772: + - Pressed: Toggle + 773: + - Pressed: Toggle + 774: + - Pressed: Toggle + 775: + - Pressed: Toggle + 776: + - Pressed: Toggle + 777: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 885 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 838: + - Pressed: DoorBolt + 102: + - Pressed: Toggle + 364: + - Pressed: Toggle + 758: + - Pressed: Toggle + 670: + - Pressed: Toggle + 689: + - Pressed: Toggle + 808: + - Pressed: Toggle + 669: + - Pressed: Toggle + 854: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 947 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 946: + - Pressed: DoorBolt + 945: + - Pressed: DoorBolt + 944: + - Pressed: DoorBolt + 952: + - Pressed: Toggle + 951: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 948 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 937: + - Pressed: DoorBolt + 936: + - Pressed: DoorBolt + 935: + - Pressed: DoorBolt + 953: + - Pressed: Toggle + 954: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 949 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 941: + - Pressed: DoorBolt + 942: + - Pressed: DoorBolt + 943: + - Pressed: DoorBolt + 956: + - Pressed: Toggle + 955: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 950 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 940: + - Pressed: DoorBolt + 939: + - Pressed: DoorBolt + 938: + - Pressed: DoorBolt + 957: + - Pressed: Toggle + 958: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignDirectionalFood + entities: + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 739 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 741 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform +- proto: SignDirectionalHydro + entities: + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: -2.4910388,4.210334 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 712 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 713 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 981 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 271 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: SpawnMobCow + entities: + - uid: 214 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 803 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 181 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 17 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 23 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 602 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 177 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 800 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 59 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 289 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 308 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraSupply + entities: + - uid: 225 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 2 + type: SurveillanceCamera + - uid: 636 + components: + - rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Janitor + type: SurveillanceCamera + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 1 + type: SurveillanceCamera + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Freezer + type: SurveillanceCamera + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 1 + type: SurveillanceCamera + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 2 + type: SurveillanceCamera + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Kitchen + type: SurveillanceCamera +- proto: TableCounterMetal + entities: + - uid: 2 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 94 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 692 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 693 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 764 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 801 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 148 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 534 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 81 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 455 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineColaBlack + entities: + - uid: 851 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 127 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineCuddlyCritterVend + entities: + - uid: 852 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 146 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 819 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 853 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 444 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 725 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 198 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachinePride + entities: + - uid: 866 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineRestockBooze + entities: + - uid: 894 + components: + - pos: -2.606868,13.727668 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: -2.356868,13.654751 + parent: 1 + type: Transform +- proto: VendingMachineRestockChefvend + entities: + - uid: 349 + components: + - pos: -3.3606324,7.799815 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: -3.589799,7.9143987 + parent: 1 + type: Transform +- proto: VendingMachineRestockCondimentStation + entities: + - uid: 892 + components: + - pos: -2.5964513,13.863084 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: -2.325618,13.769334 + parent: 1 + type: Transform +- proto: VendingMachineRestockCostumes + entities: + - uid: 91 + components: + - pos: -3.6016417,8.945648 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: -3.3099751,8.851898 + parent: 1 + type: Transform +- proto: VendingMachineRestockCuddlyCritterVend + entities: + - uid: 806 + components: + - pos: -2.3244715,11.857673 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: -2.5848882,11.96184 + parent: 1 + type: Transform +- proto: VendingMachineRestockDinnerware + entities: + - uid: 306 + components: + - pos: -3.631466,7.695648 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: -3.3397992,7.633148 + parent: 1 + type: Transform +- proto: VendingMachineRestockDonut + entities: + - uid: 170 + components: + - pos: -3.5964513,13.915168 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: -3.325618,13.811001 + parent: 1 + type: Transform +- proto: VendingMachineRestockGetmoreChocolateCorp + entities: + - uid: 890 + components: + - pos: -3.6277013,13.717251 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: -3.325618,13.633918 + parent: 1 + type: Transform +- proto: VendingMachineRestockHappyHonk + entities: + - uid: 221 + components: + - pos: -1.5844793,13.925584 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -1.3032293,13.831834 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -1.3136461,13.675584 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -1.6261461,13.769334 + parent: 1 + type: Transform +- proto: VendingMachineRestockNutriMax + entities: + - uid: 563 + components: + - pos: -3.3308084,8.643565 + parent: 1 + type: Transform +- proto: VendingMachineRestockPride + entities: + - uid: 805 + components: + - pos: -2.6369717,11.753507 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: -2.3244715,11.670173 + parent: 1 + type: Transform +- proto: VendingMachineRestockRobustSoftdrinks + entities: + - uid: 591 + components: + - pos: -1.626555,11.732673 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: -1.3036382,11.68059 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -1.3036382,11.83684 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -1.5848882,11.920173 + parent: 1 + type: Transform +- proto: VendingMachineRestockSeeds + entities: + - uid: 562 + components: + - pos: -3.6433086,8.758148 + parent: 1 + type: Transform +- proto: VendingMachineRestockSmokes + entities: + - uid: 686 + components: + - pos: -3.310824,11.640575 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -3.644157,11.723909 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -3.3316572,11.813148 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -3.581657,11.927731 + parent: 1 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 536 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform +- proto: VendingMachineSnackGreen + entities: + - uid: 560 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform +- proto: WallmountTelevisionFrame + entities: + - uid: 737 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 317 + components: + - rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 424 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 521 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 594 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 718 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 734 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 10 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 284 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 590 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 694 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 65 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 736 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 327 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 277 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - links: + - 827 + type: DeviceLinkSink + - linkedPorts: + 827: + - DoorStatus: Close + type: DeviceLinkSource + - uid: 827 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - links: + - 141 + type: DeviceLinkSink + - linkedPorts: + 141: + - DoorStatus: Close + type: DeviceLinkSource +... diff --git a/Resources/Maps/Shuttles/opportunity.yml b/Resources/Maps/Shuttles/opportunity.yml new file mode 100644 index 00000000000..3c1e8ddc22e --- /dev/null +++ b/Resources/Maps/Shuttles/opportunity.yml @@ -0,0 +1,7073 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 32: FloorDarkMono + 43: FloorGlass + 84: FloorSteel + 85: FloorSteelCheckerDark + 96: FloorTechMaint + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - name: Opportunity + type: MetaData + - pos: -0.48958334,-0.47394052 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: YAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: 1 + decals: + 126: -5,4 + 154: -3,-3 + 162: -2,-11 + - node: + color: '#FFFFFFFF' + id: 2 + decals: + 2: -3,0 + 155: -1,-3 + 163: -1,-11 + - node: + color: '#FFFFFFFF' + id: 3 + decals: + 1: 3,0 + 156: 1,-3 + 164: 0,-11 + - node: + color: '#FFFFFFFF' + id: 4 + decals: + 0: 5,4 + 157: 3,-3 + 165: 1,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 170: 0,0 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 171: 0,0 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 158: 1,-11 + 159: 0,-11 + 160: -1,-11 + 161: -2,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 172: 0,-4 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 150: -3,-3 + 151: -1,-3 + 152: 1,-3 + 153: 3,-3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 89: 3,-12 + 90: 4,-12 + 91: -3,-12 + 92: -4,-12 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 96: -2,-12 + 97: -1,-12 + 98: 0,-12 + - node: + color: '#1861D5FF' + id: BrickTileWhiteCornerNe + decals: + 35: -2,-5 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerNe + decals: + 72: -2,1 + 73: 6,5 + 74: 4,1 + 104: 4,10 + 105: 5,9 + 106: 6,8 + 124: -4,5 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerNw + decals: + 69: 4,5 + 70: 2,1 + 71: -4,1 + 102: -5,9 + 103: -4,10 + 107: -6,8 + 123: -6,5 + - node: + color: '#1861D5FF' + id: BrickTileWhiteCornerSe + decals: + 38: -2,-8 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerSe + decals: + 3: 2,3 + 4: 6,7 + 66: -2,-1 + 67: 4,-1 + 68: 6,3 + 125: -4,3 + - node: + color: '#1861D5FF' + id: BrickTileWhiteCornerSw + decals: + 99: -4,-8 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerSw + decals: + 5: -2,3 + 6: -6,7 + 75: -4,-1 + 76: 2,-1 + 77: 4,3 + 118: -6,3 + - node: + color: '#951710FF' + id: BrickTileWhiteInnerNe + decals: + 80: 0,-10 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerNe + decals: + 110: 4,9 + 111: 5,8 + - node: + color: '#1861D5FF' + id: BrickTileWhiteInnerNw + decals: + 81: 0,-10 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerNw + decals: + 108: -5,8 + 109: -4,9 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerSe + decals: + 79: 2,7 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerSw + decals: + 78: -2,7 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineE + decals: + 27: -2,-7 + 28: -2,-6 + - node: + color: '#951710FF' + id: BrickTileWhiteLineE + decals: + 21: 8,-9 + 22: 8,-8 + 25: -10,-9 + 26: -10,-8 + 39: 0,-9 + 40: 0,-8 + 41: 0,-7 + 42: 0,-6 + 43: 0,-5 + 44: 0,-4 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineE + decals: + 7: 2,4 + 8: 2,5 + 9: 2,6 + 63: 6,4 + 64: 4,0 + 65: -2,0 + 122: -4,4 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineN + decals: + 36: -3,-5 + 45: -1,-10 + 46: -2,-10 + 87: -3,-10 + 88: -4,-10 + - node: + color: '#951710FF' + id: BrickTileWhiteLineN + decals: + 82: 2,-10 + 84: 1,-10 + 85: 3,-10 + 86: 4,-10 + 127: 0,1 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineN + decals: + 47: -3,10 + 48: -2,10 + 49: -1,10 + 50: 0,10 + 51: 1,10 + 52: 2,10 + 53: 3,10 + 54: 5,5 + 55: 3,1 + 56: -3,1 + 121: -5,5 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineS + decals: + 100: -3,-8 + - node: + color: '#951710FF' + id: BrickTileWhiteLineS + decals: + 16: 1,3 + 17: 0,3 + 18: -1,3 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineS + decals: + 13: -3,7 + 14: 5,7 + 15: 3,7 + 57: -3,-1 + 58: 3,-1 + 59: 5,3 + 83: 2,-12 + 93: -2,-12 + 94: -1,-12 + 95: 0,-12 + 115: 4,7 + 116: -5,7 + 117: -4,7 + 120: -5,3 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineW + decals: + 29: 0,-9 + 30: 0,-8 + 31: 0,-7 + 32: 0,-6 + 33: 0,-5 + 34: 0,-4 + 37: -4,-6 + 101: -4,-7 + - node: + color: '#951710FF' + id: BrickTileWhiteLineW + decals: + 19: -8,-9 + 20: -8,-8 + 23: 10,-9 + 24: 10,-8 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineW + decals: + 10: -2,4 + 11: -2,5 + 12: -2,6 + 60: 4,4 + 61: 2,0 + 62: -4,0 + 119: -6,4 + - node: + angle: 3.141592653589793 rad + color: '#0E7F1BFF' + id: LoadingArea + decals: + 173: -1,5 + - node: + color: '#951710FF' + id: StandClear + decals: + 112: 0,3 + 113: 1,3 + 114: -1,3 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 128: 0,1 + 129: 0,3 + 130: -1,3 + 131: 1,3 + 132: -11,-8 + 133: -11,-6 + 134: -2,-9 + 135: 11,-8 + 136: 11,-6 + 137: 0,-2 + 138: 0,-3 + 139: 0,-1 + 166: -10,-10 + 167: 10,-10 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 144: -12,-6 + 145: -12,-8 + 146: 10,-8 + 147: 10,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 141: 0,-1 + 168: -10,-9 + 169: 10,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 142: -10,-8 + 143: -10,-6 + 148: 12,-6 + 149: 12,-8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 140: 0,-3 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 65331 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65279 + 1: 256 + 1,1: + 0: 65535 + 1,2: + 0: 14335 + 2,1: + 0: 4912 + 2,2: + 0: 1 + -3,1: + 0: 2176 + -2,1: + 0: 65534 + -2,2: + 0: 36079 + -2,0: + 0: 61064 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -3,-3: + 0: 65516 + -3,-2: + 0: 65535 + -3,-1: + 0: 3822 + -2,-3: + 0: 65535 + -2,-2: + 2: 1 + 0: 36862 + -2,-4: + 0: 32768 + -2,-1: + 0: 34816 + -1,-4: + 0: 65516 + 3: 2 + -1,-3: + 0: 65533 + 1: 2 + -1,-2: + 0: 65533 + 1: 2 + -1,-1: + 0: 65535 + 0,-4: + 0: 65527 + 3: 8 + 0,-3: + 0: 65527 + 1: 8 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 12544 + 1,-3: + 1: 1 + 0: 65534 + 1,-2: + 0: 16127 + 1: 256 + 1,-1: + 0: 13073 + 2,-3: + 0: 65527 + 2,-2: + 4: 1 + 0: 61438 + 2,-1: + 0: 3822 + 3,-3: + 0: 4352 + 3,-2: + 0: 4369 + -1,-5: + 3: 49152 + 0,-5: + 3: 28672 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 18.591623 + - 69.93992 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 18.601082 + - 69.97551 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Opportunity + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 270 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 735 + type: DeviceNetwork + - devices: + - 689 + - 690 + - 691 + - 687 + - 688 + - 692 + - 734 + - 731 + - 732 + - 733 + - 730 + - 729 + - 735 + type: DeviceList + - uid: 271 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 736 + - 664 + - 737 + - 662 + - 738 + - 663 + - 739 + - 661 + - 724 + - 686 + - 740 + - 665 + type: DeviceNetwork + - devices: + - 736 + - 664 + - 737 + - 662 + - 738 + - 663 + - 739 + - 661 + - 724 + - 686 + - 740 + - 665 + type: DeviceList +- proto: AirCanister + entities: + - uid: 168 + components: + - pos: -1.5,-13.5 + parent: 2 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 217 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 170 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + type: Transform + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 150 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 198 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 199 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 5 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 109 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 176 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 179 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + type: Transform +- proto: APCBasic + entities: + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform +- proto: APCHighCapacity + entities: + - uid: 216 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform + - uid: 292 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 2 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + type: Transform + - uid: 421 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform +- proto: Beaker + entities: + - uid: 942 + components: + - pos: 2.5238996,8.7574 + parent: 2 + type: Transform +- proto: Bed + entities: + - uid: 186 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 274 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - uid: 331 + components: + - pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 332 + components: + - pos: -3.5,3.5 + parent: 2 + type: Transform + - uid: 333 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 334 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 393 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 394 + components: + - pos: -6.5,-7.5 + parent: 2 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 399 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 338 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 2 + type: Transform +- proto: BedsheetRed + entities: + - uid: 400 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 402 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + type: Transform +- proto: BlastDoor + entities: + - uid: 160 + components: + - pos: -9.5,-9.5 + parent: 2 + type: Transform + - links: + - 66 + type: DeviceLinkSink + - uid: 241 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - links: + - 771 + type: DeviceLinkSink + - uid: 243 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - links: + - 772 + type: DeviceLinkSink + - uid: 247 + components: + - pos: -4.5,0.5 + parent: 2 + type: Transform + - invokeCounter: 1 + links: + - 770 + type: DeviceLinkSink + - uid: 248 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - links: + - 769 + type: DeviceLinkSink + - uid: 775 + components: + - pos: 10.5,-9.5 + parent: 2 + type: Transform + - links: + - 106 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 776 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - links: + - 768 + type: DeviceLinkSink + - uid: 777 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - links: + - 768 + type: DeviceLinkSink + - uid: 778 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - links: + - 767 + type: DeviceLinkSink + - uid: 779 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - links: + - 767 + type: DeviceLinkSink + - uid: 780 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - links: + - 246 + type: DeviceLinkSink + - uid: 781 + components: + - pos: -0.5,-5.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 782 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 783 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 784 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform + - links: + - 766 + type: DeviceLinkSink + - uid: 785 + components: + - pos: -10.5,-7.5 + parent: 2 + type: Transform + - links: + - 77 + type: DeviceLinkSink + - uid: 786 + components: + - pos: -10.5,-5.5 + parent: 2 + type: Transform + - links: + - 77 + type: DeviceLinkSink + - uid: 787 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - links: + - 65 + type: DeviceLinkSink + - uid: 788 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - links: + - 65 + type: DeviceLinkSink + - uid: 789 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - links: + - 65 + type: DeviceLinkSink + - uid: 790 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - links: + - 78 + type: DeviceLinkSink + - uid: 791 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - links: + - 78 + type: DeviceLinkSink + - uid: 792 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - links: + - 797 + type: DeviceLinkSink + - uid: 793 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - links: + - 798 + type: DeviceLinkSink + - uid: 794 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 795 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - links: + - 766 + type: DeviceLinkSink + - uid: 796 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - links: + - 766 + type: DeviceLinkSink + - uid: 853 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - links: + - 774 + type: DeviceLinkSink +- proto: BoxBodyBag + entities: + - uid: 929 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxDarts + entities: + - uid: 305 + components: + - flags: InContainer + type: MetaData + - parent: 880 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Bucket + entities: + - uid: 938 + components: + - pos: 5.4013104,9.71546 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 443 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 444 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 445 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 446 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 447 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 448 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 449 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 450 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 451 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 452 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 453 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 454 + components: + - pos: -3.5,-10.5 + parent: 2 + type: Transform + - uid: 455 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 456 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 457 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 458 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 459 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 460 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 461 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: -9.5,-8.5 + parent: 2 + type: Transform + - uid: 463 + components: + - pos: -9.5,-7.5 + parent: 2 + type: Transform + - uid: 464 + components: + - pos: -9.5,-6.5 + parent: 2 + type: Transform + - uid: 465 + components: + - pos: -9.5,-5.5 + parent: 2 + type: Transform + - uid: 466 + components: + - pos: -9.5,-4.5 + parent: 2 + type: Transform + - uid: 467 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 468 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 469 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform + - uid: 470 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 471 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 472 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 473 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 474 + components: + - pos: 10.5,-8.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 476 + components: + - pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 477 + components: + - pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 478 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 479 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 480 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 481 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 482 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 483 + components: + - pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 484 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 485 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 487 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 488 + components: + - pos: 3.5,-6.5 + parent: 2 + type: Transform + - uid: 489 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 490 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 491 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 492 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 493 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 494 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 495 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 496 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 497 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 498 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 499 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 500 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform + - uid: 501 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 502 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 503 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 505 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 506 + components: + - pos: 5.5,8.5 + parent: 2 + type: Transform + - uid: 507 + components: + - pos: 6.5,8.5 + parent: 2 + type: Transform + - uid: 508 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - uid: 509 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 510 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - uid: 511 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - uid: 512 + components: + - pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 513 + components: + - pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 514 + components: + - pos: -5.5,7.5 + parent: 2 + type: Transform + - uid: 515 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform + - uid: 516 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 517 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 518 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 519 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 520 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - uid: 521 + components: + - pos: -3.5,7.5 + parent: 2 + type: Transform + - uid: 522 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 523 + components: + - pos: -3.5,5.5 + parent: 2 + type: Transform + - uid: 524 + components: + - pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 525 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform + - uid: 526 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - uid: 527 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 528 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 529 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 530 + components: + - pos: 2.5,0.5 + parent: 2 + type: Transform + - uid: 531 + components: + - pos: 3.5,0.5 + parent: 2 + type: Transform + - uid: 532 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 533 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 534 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 535 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 536 + components: + - pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 537 + components: + - pos: -2.5,0.5 + parent: 2 + type: Transform + - uid: 834 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 872 + components: + - pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 874 + components: + - pos: 0.5,-13.5 + parent: 2 + type: Transform + - uid: 888 + components: + - pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 889 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 948 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 949 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 418 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 598 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 804 + components: + - pos: -0.5,-15.5 + parent: 2 + type: Transform + - uid: 869 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform + - uid: 870 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 425 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 426 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 427 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 428 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 429 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 430 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 431 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 432 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - uid: 433 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 434 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 435 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 436 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 437 + components: + - pos: 0.5,-4.5 + parent: 2 + type: Transform + - uid: 438 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 439 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 440 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 441 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 442 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 538 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 539 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 540 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 541 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 542 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 543 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 544 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 545 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 546 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 547 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 548 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 549 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 550 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 551 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 552 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 553 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 554 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 555 + components: + - pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 556 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 557 + components: + - pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 558 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 559 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 560 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 561 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 562 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 563 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 564 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 565 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 566 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 567 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 568 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 569 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 570 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 571 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 572 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 573 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 574 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 575 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 576 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform + - uid: 577 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 578 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform + - uid: 579 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - uid: 580 + components: + - pos: 0.5,11.5 + parent: 2 + type: Transform + - uid: 581 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 582 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 583 + components: + - pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 584 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 585 + components: + - pos: -0.5,10.5 + parent: 2 + type: Transform + - uid: 586 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform + - uid: 587 + components: + - pos: -2.5,10.5 + parent: 2 + type: Transform + - uid: 588 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 589 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 590 + components: + - pos: -1.5,-9.5 + parent: 2 + type: Transform + - uid: 591 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 592 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 593 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 594 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 595 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 596 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 597 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 599 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 601 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 602 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 603 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 604 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform + - uid: 605 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 606 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 608 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 873 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 890 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 891 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 892 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 893 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 424 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: CargoPallet + entities: + - uid: 151 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 218 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 383 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 384 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 144 + components: + - pos: -11.5,-9.5 + parent: 2 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + type: Transform + - uid: 169 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 258 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + type: Transform + - uid: 403 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform + - uid: 420 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 866 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 875 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + type: Transform + - uid: 905 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 906 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + type: Transform +- proto: Chair + entities: + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 309 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 330 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + type: Transform + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 391 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 2 + type: Transform +- proto: ChessBoard + entities: + - uid: 322 + components: + - flags: InContainer + type: MetaData + - parent: 880 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClosetBase + entities: + - uid: 880 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 305 + - 1 + - 322 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClothingBeltBandolier + entities: + - uid: 928 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot + entities: + - uid: 925 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadPrisonGuard + entities: + - uid: 288 + components: + - flags: InContainer + type: MetaData + - parent: 273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 289 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 405 + components: + - flags: InContainer + type: MetaData + - parent: 395 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 412 + components: + - flags: InContainer + type: MetaData + - parent: 396 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 325 + components: + - flags: InContainer + type: MetaData + - parent: 273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 922 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 923 + components: + - flags: InContainer + type: MetaData + - parent: 395 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 924 + components: + - flags: InContainer + type: MetaData + - parent: 396 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterArmorRiot + entities: + - uid: 927 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisonGuard + entities: + - uid: 287 + components: + - flags: InContainer + type: MetaData + - parent: 273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 319 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 411 + components: + - flags: InContainer + type: MetaData + - parent: 395 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 422 + components: + - flags: InContainer + type: MetaData + - parent: 396 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComputerRadar + entities: + - uid: 193 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 190 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + type: Transform +- proto: CrateFreezer + entities: + - uid: 634 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 635 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateMaterialUranium + entities: + - uid: 878 + components: + - pos: 3.5,-11.5 + parent: 2 + type: Transform +- proto: CrateSecurityNonlethal + entities: + - uid: 939 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 847 + components: + - pos: 4.5,-8.5 + parent: 2 + type: Transform +- proto: DiceBag + entities: + - uid: 1 + components: + - flags: InContainer + type: MetaData + - parent: 880 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DisposalUnit + entities: + - uid: 629 + components: + - pos: -5.5,7.5 + parent: 2 + type: Transform + - powerDisabled: True + type: ApcPowerReceiver +- proto: DrinkMugDog + entities: + - uid: 944 + components: + - rot: -6.283185307179586 rad + pos: -2.7532914,9.185598 + parent: 2 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 941 + components: + - rot: -6.283185307179586 rad + pos: -2.9616246,9.258565 + parent: 2 + type: Transform + - uid: 945 + components: + - rot: -6.283185307179586 rad + pos: -3.1803746,9.16475 + parent: 2 + type: Transform + - uid: 946 + components: + - pos: -2.8782914,8.977119 + parent: 2 + type: Transform +- proto: EmergencyLight + entities: + - uid: 910 + components: + - pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 911 + components: + - pos: 8.5,-7.5 + parent: 2 + type: Transform + - uid: 912 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 913 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 914 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 915 + components: + - pos: -0.5,-13.5 + parent: 2 + type: Transform + - uid: 916 + components: + - pos: -0.5,10.5 + parent: 2 + type: Transform + - uid: 917 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 2 + type: Transform + - uid: 918 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 919 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - uid: 920 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 921 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + type: Transform +- proto: EncryptionKeyCommon + entities: + - uid: 908 + components: + - flags: InContainer + type: MetaData + - parent: 907 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 909 + components: + - flags: InContainer + type: MetaData + - parent: 907 + type: Transform + - canCollide: False + type: Physics +- proto: FaxMachineShip + entities: + - uid: 947 + components: + - pos: 4.5,-7.5 + parent: 2 + type: Transform +- proto: FirelockGlass + entities: + - uid: 894 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 895 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 896 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 897 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 898 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 899 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 900 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 901 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 902 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 903 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 904 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 635 + components: + - flags: InContainer + type: MetaData + - parent: 634 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 654 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 728 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 758 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 759 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 760 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 721 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 742 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 751 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 642 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 643 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 646 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 648 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 650 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 651 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 652 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 668 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 677 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 678 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 679 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 680 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 681 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 682 + components: + - pos: -1.5,5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 683 + components: + - pos: -1.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 684 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 685 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 693 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 694 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 695 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 704 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 706 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 707 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 708 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 709 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 710 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 711 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 712 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 713 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 714 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 715 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 716 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 717 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 718 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 719 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 720 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 722 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 723 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 725 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 745 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 750 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 649 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 670 + components: + - pos: 2.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 671 + components: + - pos: -3.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 672 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 675 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 676 + components: + - pos: -1.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 756 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 761 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 762 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + type: Transform +- proto: GasPressurePump + entities: + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 729 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 730 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 731 + components: + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 732 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 733 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 735 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 736 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 737 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 739 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 661 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 662 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 664 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 665 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 687 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 690 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 692 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 871 + components: + - pos: -1.5,-14.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 126 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 363 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 365 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + type: Transform + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 370 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 371 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + type: Transform + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 374 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 375 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + type: Transform + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + type: Transform + - uid: 408 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - uid: 409 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 410 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 413 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 414 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 415 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 416 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 417 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 764 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 801 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + type: Transform + - uid: 802 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + type: Transform +- proto: GunSafe + entities: + - uid: 268 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 925 + - 927 + - 928 + - 929 + - 930 + - 931 + - 932 + - 926 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: GyroscopeSecurity + entities: + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + type: Transform + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 320 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 633 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 321 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform +- proto: KnifePlastic + entities: + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: 2.5949287,8.437385 + parent: 2 + type: Transform +- proto: LargeBeaker + entities: + - uid: 933 + components: + - pos: 2.3449287,8.833493 + parent: 2 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 934 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform +- proto: LockerEvidence + entities: + - uid: 112 + components: + - name: Prisoner 3 + type: MetaData + - pos: 2.2262268,-9.480581 + parent: 2 + type: Transform + - uid: 821 + components: + - name: Prisoner 2 + type: MetaData + - pos: 1.7262269,-9.470158 + parent: 2 + type: Transform + - uid: 822 + components: + - name: Prisoner 1 + type: MetaData + - pos: 1.2574768,-9.470158 + parent: 2 + type: Transform + - uid: 824 + components: + - name: Prisoner 4 + type: MetaData + - pos: 2.7262268,-9.491006 + parent: 2 + type: Transform +- proto: LockerSalvageSpecialist + entities: + - uid: 812 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 820 + - 813 + - 814 + - 815 + - 816 + - 817 + - 818 + - 819 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSecurity + entities: + - uid: 273 + components: + - pos: 8.241622,-7.4725633 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6174853 + - 6.0848265 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 325 + - 288 + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 277 + components: + - pos: 8.741621,-7.4725633 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 922 + - 289 + - 319 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 395 + components: + - pos: -7.770107,-7.4811745 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.6165915 + - 6.0814633 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 411 + - 405 + - 923 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 396 + components: + - pos: -7.2731934,-7.478086 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6166629 + - 6.0817323 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 924 + - 412 + - 422 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 423 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 826 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform +- proto: LockerWardenFilledHardsuit + entities: + - uid: 266 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform +- proto: MagazineShotgun + entities: + - uid: 932 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag + entities: + - uid: 931 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OreBag + entities: + - uid: 813 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 814 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 815 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 820 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OreBox + entities: + - uid: 385 + components: + - anchored: True + pos: 1.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 386 + components: + - anchored: True + pos: 0.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 387 + components: + - anchored: True + pos: -0.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 388 + components: + - anchored: True + pos: -1.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics +- proto: OreProcessor + entities: + - uid: 879 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform +- proto: Pickaxe + entities: + - uid: 816 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 817 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 818 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 819 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PlastitaniumWindow + entities: + - uid: 8 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 9 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 12 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 13 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 14 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 15 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 22 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 24 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 26 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 28 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 29 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 30 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 31 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 32 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 34 + components: + - pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 35 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 36 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 37 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 56 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 57 + components: + - pos: 0.5,11.5 + parent: 2 + type: Transform + - uid: 58 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 114 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 119 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - uid: 122 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - uid: 124 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 131 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 139 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 143 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + type: Transform + - uid: 164 + components: + - pos: -1.5,-12.5 + parent: 2 + type: Transform + - uid: 166 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 177 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 178 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 806 + components: + - pos: -0.5,-15.5 + parent: 2 + type: Transform +- proto: PosterLegitDoNotQuestion + entities: + - uid: 846 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 2 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 845 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform + - uid: 839 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + type: Transform + - uid: 840 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 841 + components: + - rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 842 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 843 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 2 + type: Transform + - uid: 844 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 837 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 836 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 + type: Transform +- proto: PosterLegitPizzaHope + entities: + - uid: 835 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 833 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 832 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 830 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 838 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 2 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 881 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 615 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 616 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: PoweredlightColoredRed + entities: + - uid: 609 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 610 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 612 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + type: Transform + - uid: 613 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 614 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 617 + components: + - pos: -6.5,-7.5 + parent: 2 + type: Transform + - uid: 618 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 935 + components: + - pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 936 + components: + - pos: -11.5,-9.5 + parent: 2 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 763 + components: + - pos: -9.5,-2.5 + parent: 2 + type: Transform + - uid: 765 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 628 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 620 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 621 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + type: Transform + - uid: 624 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + type: Transform + - uid: 626 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 627 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform +- proto: Railing + entities: + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + type: Transform + - uid: 404 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 823 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 825 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 831 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 829 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform +- proto: ReagentContainerMilk + entities: + - uid: 943 + components: + - pos: 2.8427145,8.851215 + parent: 2 + type: Transform +- proto: RiotShield + entities: + - uid: 926 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SheetUranium + entities: + - uid: 877 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 255 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 256 + components: + - pos: 0.5,11.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 257 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 249 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 250 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 251 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 252 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 253 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - links: + - 800 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 2 + type: Transform + - linkedPorts: + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + 789: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 66 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + type: Transform + - linkedPorts: + 160: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + type: Transform + - linkedPorts: + 785: + - Pressed: Toggle + 786: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - linkedPorts: + 790: + - Pressed: Toggle + 791: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + type: Transform + - linkedPorts: + 775: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 246 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - linkedPorts: + 780: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - linkedPorts: + 795: + - Pressed: Toggle + 796: + - Pressed: Toggle + 784: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 778: + - Pressed: Toggle + 779: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 768 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 777: + - Pressed: Toggle + 776: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 769 + components: + - pos: -2.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 248: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 770 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 247: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 771 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 241: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 772 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 243: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 773 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + type: Transform + - linkedPorts: + 794: + - Pressed: Toggle + 783: + - Pressed: Toggle + 781: + - Pressed: Toggle + 782: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 853: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 797 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 2 + type: Transform + - linkedPorts: + 792: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 798 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + type: Transform + - linkedPorts: + 793: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 799 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - linkedPorts: + 250: + - Pressed: Toggle + 251: + - Pressed: Toggle + 249: + - Pressed: Toggle + 252: + - Pressed: Toggle + 255: + - Pressed: Toggle + 256: + - Pressed: Toggle + 257: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 800 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - linkedPorts: + 253: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignBridge + entities: + - uid: 828 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform +- proto: SignCargo + entities: + - uid: 827 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 854 + components: + - pos: -5.5,-10.5 + parent: 2 + type: Transform +- proto: SignEngineering + entities: + - uid: 848 + components: + - pos: -0.5,-12.5 + parent: 2 + type: Transform +- proto: SignPlaque + entities: + - uid: 862 + components: + - desc: 'A prestigious golden plaque commemorating the name and commission of the ship. Architect signature: "Magnus Crowe"' + name: NFS Opportunity + type: MetaData + - pos: 3.5,-8.5 + parent: 2 + type: Transform +- proto: SignPrison + entities: + - uid: 631 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 849 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 850 + components: + - pos: -11.5,-6.5 + parent: 2 + type: Transform + - uid: 851 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 852 + components: + - pos: -6.5,2.5 + parent: 2 + type: Transform + - uid: 863 + components: + - pos: -3.5,11.5 + parent: 2 + type: Transform + - uid: 864 + components: + - pos: 4.5,11.5 + parent: 2 + type: Transform +- proto: SignRedFour + entities: + - uid: 861 + components: + - pos: 2.7114413,-8.854052 + parent: 2 + type: Transform +- proto: SignRedOne + entities: + - uid: 857 + components: + - pos: 1.2550371,-8.849894 + parent: 2 + type: Transform +- proto: SignRedThree + entities: + - uid: 860 + components: + - pos: 2.208355,-8.847875 + parent: 2 + type: Transform +- proto: SignRedTwo + entities: + - uid: 859 + components: + - pos: 1.7114414,-8.847875 + parent: 2 + type: Transform +- proto: SignShield + entities: + - uid: 858 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform +- proto: SinkWide + entities: + - uid: 937 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 163 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 887 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform +- proto: SteelBench + entities: + - uid: 636 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 637 + components: + - pos: 3.5,-6.5 + parent: 2 + type: Transform +- proto: Stool + entities: + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 286 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 259 + components: + - pos: -5.5,5.5 + parent: 2 + type: Transform + - uid: 260 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 261 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 262 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 264 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 630 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 856 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform +- proto: Table + entities: + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + type: Transform +- proto: TableCarpet + entities: + - uid: 303 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - uid: 304 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 306 + components: + - pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 308 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform +- proto: TableReinforced + entities: + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 855 + components: + - pos: 4.5,-7.5 + parent: 2 + type: Transform + - uid: 883 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: TargetDarts + entities: + - uid: 311 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + type: Transform +- proto: TelecomServer + entities: + - uid: 907 + components: + - pos: -0.5,-14.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 908 + - 909 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: ThrusterSecurity + entities: + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 2 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 2 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - uid: 210 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 211 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 213 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 214 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 2 + type: Transform + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 950 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 951 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 952 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 953 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 265 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 324 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 302 + components: + - pos: 6.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineSoda + entities: + - uid: 267 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 323 + components: + - pos: 2.5,6.5 + parent: 2 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 6 + components: + - pos: -2.5,-1.5 + parent: 2 + type: Transform + - uid: 7 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - uid: 10 + components: + - pos: -3.5,-1.5 + parent: 2 + type: Transform + - uid: 11 + components: + - pos: -4.5,-1.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 18 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: 1.5,0.5 + parent: 2 + type: Transform + - uid: 20 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 38 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform + - uid: 39 + components: + - pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 40 + components: + - pos: -6.5,2.5 + parent: 2 + type: Transform + - uid: 41 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 42 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 43 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 44 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: 5.5,2.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 48 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 50 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 51 + components: + - pos: -6.5,3.5 + parent: 2 + type: Transform + - uid: 52 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - uid: 53 + components: + - pos: -6.5,6.5 + parent: 2 + type: Transform + - uid: 54 + components: + - pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 55 + components: + - pos: -4.5,1.5 + parent: 2 + type: Transform + - uid: 59 + components: + - pos: -3.5,11.5 + parent: 2 + type: Transform + - uid: 60 + components: + - pos: -1.5,11.5 + parent: 2 + type: Transform + - uid: 61 + components: + - pos: -0.5,11.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: 1.5,11.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: 2.5,11.5 + parent: 2 + type: Transform + - uid: 64 + components: + - pos: 4.5,11.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: 7.5,8.5 + parent: 2 + type: Transform + - uid: 68 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 69 + components: + - pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: -6.5,8.5 + parent: 2 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 2 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 2 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 98 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 100 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + type: Transform + - uid: 101 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 105 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 + type: Transform + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + type: Transform + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + type: Transform + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 133 + components: + - pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 2 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 149 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 157 + components: + - pos: 3.5,-13.5 + parent: 2 + type: Transform + - uid: 158 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 159 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 161 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 165 + components: + - pos: 3.5,-12.5 + parent: 2 + type: Transform + - uid: 167 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 2 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 200 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 201 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 204 + components: + - pos: -0.5,-4.5 + parent: 2 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 236 + components: + - pos: -2.5,-12.5 + parent: 2 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + type: Transform + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 278 + components: + - pos: -2.5,-13.5 + parent: 2 + type: Transform + - uid: 285 + components: + - pos: -3.5,-12.5 + parent: 2 + type: Transform + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + type: Transform + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 805 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 2 + type: Transform + - uid: 810 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform + - uid: 811 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + type: Transform + - uid: 865 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 867 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 2 + type: Transform + - uid: 868 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 2 + type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 3 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 + type: Transform + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + type: Transform + - uid: 73 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 74 + components: + - pos: -5.5,10.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: -4.5,11.5 + parent: 2 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - uid: 127 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 2 + type: Transform + - uid: 152 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + type: Transform + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + type: Transform + - uid: 192 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + type: Transform + - uid: 229 + components: + - pos: -7.5,8.5 + parent: 2 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + type: Transform + - uid: 803 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 807 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + type: Transform + - uid: 808 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 + type: Transform + - uid: 809 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 884 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 885 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 339 + components: + - pos: -5.5,3.5 + parent: 2 + type: Transform + - uid: 340 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 341 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 342 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform +- proto: WarpPointShip + entities: + - uid: 886 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 882 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 930 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WindoorSecureBrigLocked + entities: + - uid: 326 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + type: Transform +- proto: Wrench + entities: + - uid: 134 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/Shuttles/pulse.yml b/Resources/Maps/Shuttles/pulse.yml index 369bd5ea3f7..0aade9ae82a 100644 --- a/Resources/Maps/Shuttles/pulse.yml +++ b/Resources/Maps/Shuttles/pulse.yml @@ -119,8 +119,7 @@ entities: 0,0: 0: 65535 0,-1: - 0: 64511 - 1: 1024 + 0: 65535 -2,-1: 0: 34952 -1,-2: @@ -153,21 +152,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -175,6 +159,49 @@ entities: - id: Pulse type: BecomesStation - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 183 + - 54 + - 53 + - 184 + - 197 + - 180 + - 149 + - 182 + - 198 + - 181 + - 195 + - 199 + type: DeviceNetwork + - devices: + - 183 + - 54 + - 53 + - 184 + - 197 + - 180 + - 149 + - 182 + - 198 + - 181 + - 195 + - 199 + type: DeviceList +- proto: AirCanister + entities: + - uid: 200 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform - proto: AirlockCommandGlass entities: - uid: 2 @@ -220,6 +247,44 @@ entities: - pos: -0.5,1.5 parent: 1 type: Transform +- proto: AirSensor + entities: + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - uid: 198 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - uid: 199 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork - proto: APCBasic entities: - uid: 9 @@ -391,11 +456,6 @@ entities: - pos: 1.5,1.5 parent: 1 type: Transform - - uid: 41 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - proto: CableMV entities: - uid: 42 @@ -433,20 +493,6 @@ entities: - pos: -1.5,-2.5 parent: 1 type: Transform -- proto: Chair - entities: - - uid: 49 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 50 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - proto: ChairPilotSeat entities: - uid: 51 @@ -455,67 +501,6 @@ entities: pos: 2.5,0.5 parent: 1 type: Transform -- proto: ClothingBeltMedicalFilled - entities: - - uid: 53 - components: - - flags: InContainer - type: MetaData - - parent: 52 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetVoidParamed - entities: - - uid: 58 - components: - - pos: 0.6700474,2.9632742 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCap - entities: - - uid: 54 - components: - - flags: InContainer - type: MetaData - - parent: 52 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitVoidParamed - entities: - - uid: 61 - components: - - pos: 0.39199796,2.626689 - parent: 1 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]5%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]25%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]50%[/color]. - priority: 0 - component: Armor - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - type: GroupExamine - proto: ComputerCrewMonitoring entities: - uid: 178 @@ -553,17 +538,13 @@ entities: pos: 1.5,-3.5 parent: 1 type: Transform -- proto: DrinkFlask +- proto: EncryptionKeyMedical entities: - - uid: 55 + - uid: 41 components: - - flags: InContainer - type: MetaData - - parent: 52 + - pos: 2.5332139,1.5263536 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: FaxMachineShip entities: - uid: 69 @@ -571,6 +552,289 @@ entities: - pos: 3.5,1.5 parent: 1 type: Transform +- proto: GasPassiveVent + entities: + - uid: 196 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 201 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 142 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 185 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 59 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 65 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 110 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 187 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 183 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - proto: GeneratorWallmountAPU entities: - uid: 70 @@ -730,16 +994,7 @@ entities: entities: - uid: 56 components: - - flags: InContainer - type: MetaData - - parent: 52 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 96 - components: - - pos: 0.53956485,3.540295 + - pos: 0.57133067,2.3182166 parent: 1 type: Transform - proto: HospitalCurtainsOpen @@ -762,20 +1017,34 @@ entities: pos: 3.5,-0.5 parent: 1 type: Transform -- proto: LockerCaptain +- proto: LockerCaptainFilled entities: - uid: 52 components: - pos: 2.5,-1.5 parent: 1 type: Transform +- proto: LockerParamedicFilled + entities: + - uid: 61 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: LockerWallMedical + entities: + - uid: 100 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform - air: volume: 200 immutable: False - temperature: 293.1497 + temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -792,41 +1061,36 @@ entities: showEnts: False occludes: True ents: - - 56 - - 53 - - 54 - - 55 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + - 102 + - 101 type: ContainerContainer -- proto: LockerParamedicFilledHardsuit - entities: - - uid: 57 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- proto: LockerWallMedical - entities: - - uid: 100 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - proto: MedkitFilled entities: - uid: 101 components: - - pos: 0.36918023,2.9868414 - parent: 1 + - flags: InContainer + type: MetaData + - parent: 100 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: MedkitOxygenFilled entities: - uid: 102 components: - - pos: 0.5963607,2.6604457 + - flags: InContainer + type: MetaData + - parent: 100 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PowerCellRecharger + entities: + - uid: 63 + components: + - pos: 0.5,2.5 parent: 1 type: Transform - proto: PoweredlightLED @@ -1033,9 +1297,9 @@ entities: type: Transform - proto: SpawnPointParamedic entities: - - uid: 140 + - uid: 203 components: - - pos: 0.5,-1.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - proto: SubstationWallBasic @@ -1045,14 +1309,15 @@ entities: - pos: 0.5,1.5 parent: 1 type: Transform -- proto: TableGlass +- proto: SuitStorageParamedic entities: - - uid: 142 + - uid: 49 components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 + - pos: 0.5,-1.5 parent: 1 type: Transform +- proto: TableGlass + entities: - uid: 143 components: - rot: 1.5707963267948966 rad @@ -1093,11 +1358,16 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 149 + - uid: 50 components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,2.5 + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 55 + components: + - pos: -1.5,3.5 parent: 1 type: Transform - proto: WallShuttle @@ -1255,4 +1525,11 @@ entities: pos: -0.5,-4.5 parent: 1 type: Transform +- proto: Wrench + entities: + - uid: 202 + components: + - pos: 0.5390229,3.4032404 + parent: 1 + type: Transform ... diff --git a/Resources/Maps/Shuttles/searchlight.yml b/Resources/Maps/Shuttles/searchlight.yml new file mode 100644 index 00000000000..d923846dc0d --- /dev/null +++ b/Resources/Maps/Shuttles/searchlight.yml @@ -0,0 +1,2664 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 28: FloorDarkDiagonal + 31: FloorDarkMini + 32: FloorDarkMono + 43: FloorGlass + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5312576,-0.453125 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1: -1,-12 + 2: 1,-12 + 42: 1,-10 + 43: -1,-10 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 51: 5,-4 + 52: 4,-4 + - node: + color: '#00FFFFFF' + id: BotGreyscale + decals: + 71: -3,-6 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 0: -2,-10 + 17: -3,-7 + 44: 5,-7 + 65: 0,2 + 66: -1,0 + 67: 1,0 + 72: -2,-9 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 3: 1,-12 + 4: -1,-12 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 68: -1,-1 + 69: 1,-1 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 28: 1,-7 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 27: -1,-7 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 20: 1,-10 + 21: 1,-9 + 22: 1,-8 + 38: -1,-5 + 39: -1,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 33: 2,-6 + 34: 1,-6 + 35: 3,-6 + 36: -2,-6 + 37: -1,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 26: -2,-7 + 29: 2,-7 + 30: 3,-7 + 31: 5,-7 + 32: 4,-7 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 23: -1,-10 + 24: -1,-9 + 25: -1,-8 + 40: 1,-5 + 41: 1,-4 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 45: 4,-6 + 46: 5,-6 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 18: -3,-8 + 19: -3,-9 + 70: 1,-2 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 47: 4,-4 + 48: 5,-4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 57: 1,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 58: -1,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 55: 1,-2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 54: -1,-2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteEndN + decals: + 64: 0,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNe + decals: + 60: 0,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNw + decals: + 61: 0,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 56: 1,-1 + 62: 0,1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineS + decals: + 53: 0,-2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 59: -1,-1 + 63: 0,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 9: 4,-3 + 10: 5,-3 + 11: 5,-5 + 12: 4,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5: 4,-3 + 6: 5,-3 + 13: 4,-5 + 14: 5,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 7: 4,-3 + 8: 5,-3 + 15: 4,-5 + 16: 5,-5 + 49: 4,-6 + 50: 5,-6 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 13175 + 0,-1: + 0: 30719 + 1: 2048 + -1,-1: + 0: 52462 + 1: 1 + -1,0: + 0: 35020 + 0,1: + 0: 1 + 1: 16 + 1,0: + 1: 13107 + 1,1: + 1: 4371 + -1,-3: + 0: 65516 + 1: 2 + -1,-2: + 0: 65535 + -1,-4: + 0: 49152 + 0,-4: + 0: 28672 + 0,-3: + 0: 65527 + 1: 8 + 0,-2: + 0: 65535 + 1,-3: + 0: 13072 + 1: 16384 + 1,-2: + 0: 30583 + 1,-1: + 0: 119 + 1: 14080 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: searchlight + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 279 + - 278 + - 277 + - 276 + - 275 + - 280 + - 244 + - 242 + - 326 + - 272 + - 271 + type: DeviceNetwork + - devices: + - 326 + - 242 + - 244 + - 280 + - 275 + - 276 + - 277 + - 278 + - 279 + - 272 + - 271 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 325 + - 243 + - 245 + - 280 + type: DeviceNetwork + - devices: + - 325 + - 243 + - 245 + - 280 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged +- proto: AirCanister + entities: + - uid: 166 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlass + entities: + - uid: 113 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 105 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - links: + - 285 + type: DeviceLinkSink + - uid: 106 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - links: + - 285 + type: DeviceLinkSink + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - links: + - 286 + type: DeviceLinkSink + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - links: + - 286 + type: DeviceLinkSink +- proto: AirlockFreezer + entities: + - uid: 204 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 109 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 325 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + type: DeviceNetwork + - uid: 326 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 287 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 101 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - links: + - 191 + type: DeviceLinkSink + - uid: 102 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - links: + - 191 + type: DeviceLinkSink +- proto: BoxCardboard + entities: + - uid: 249 + components: + - name: searchlight tube box + type: MetaData + - pos: -1.2302189,-7.346061 + parent: 1 + type: Transform + - storageUsed: 25 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 256 + - 257 + - 267 + - 268 + - 269 + type: ContainerContainer +- proto: CableApcExtension + entities: + - uid: 132 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 42 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 34 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 131 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 3 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 201 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform +- proto: ClothingBeltParamedicFilled + entities: + - uid: 283 + components: + - pos: 4.5010185,-6.2714972 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 30 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 25 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 27 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 221 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 324 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 331 + components: + - pos: -1.4515424,-5.290521 + parent: 1 + type: Transform +- proto: ExteriorLightTube + entities: + - uid: 129 + components: + - flags: InContainer + type: MetaData + - parent: 128 + type: Transform + - canCollide: False + type: Physics + - uid: 256 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 257 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 267 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 268 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 269 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics +- proto: ExtinguisherCabinetFilled + entities: + - uid: 222 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 125 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 271 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork +- proto: FirelockGlass + entities: + - uid: 275 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 278 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 279 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + - 270 + type: DeviceNetwork +- proto: FlashlightLantern + entities: + - uid: 75 + components: + - pos: 4.2779503,-6.5243893 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 4.2779503,-6.2431393 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 246 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 230 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 259 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 260 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 336 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 337 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 338 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 339 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 233 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 243 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 335 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 139 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 6 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 134 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 217 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 252 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 341 + components: + - pos: -2.1047392,-6.3594756 + parent: 1 + type: Transform + - stampState: paper_stamp-ce + stampedBy: + - stampedBorderless: False + stampedColor: '#C69B17FF' + stampedName: stamp-component-stamped-name-ce + - stampedBorderless: False + stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + [head=1]========================[/head] + + [head=1]Lantern-class medical ship[/head] + + [head=1] [/head] + + [head=1] PREFLIGHT CHECKLIST[/head] + + [head=1]========================[/head] + + + [head=2]1. Power supply.[/head] + + [head=3]1.1. Battery units.[/head] + + [bullet/][ ] Check if the SMES unit is anchored to the floor. + + [bullet/][ ] Check if the APC unit's Main Breaker is toggled on. + + [bullet/][ ] Check the APC unit's current Load[bold]*[/bold] (W). + + [head=3]1.2. P.A.C.K.M.A.N. generator unit.[/head] + + [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit is anchored to the floor. + + [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + + [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit is set to HV output. + + [bullet/][ ] Set Target Power for 15-16[bold]**[/bold] [bold]k[/bold]W. + + [bullet/][ ] Start the P.A.C.K.M.A.N. generator unit. + + + [head=2]2. Atmospherics.[/head] + + [head=3]2.1. Distribution Loop.[/head] + + [bullet/][ ] Check if the air canister is anchored to connector port. + + + [head=2]3. Other checks.[/head] + + [bullet/][ ] Check if the gyroscope is anchored, powered, and enabled. + + [bullet/][ ] Check if the mini gravity generator is anchored, powered, and enabled. + + [bullet/][ ] Check if the bow blastdoors are closed. + + + __________________________________________________________________ + + [bold]*[/bold] - Lantern-class medical ship are equipped with a single APC unit that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the P.A.C.K.M.A.N. generator unit Target Power output: to keep substation and APC fully charged, P.A.C.K.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines. + + [bold]**[/bold] - Lantern-class medical ship have average power demand meaning that standard P.A.C.K.M.A.N. generator unit's Target Power value can be put at 15 kW. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 16 kW. + type: Paper +- proto: PortableGeneratorPacman + entities: + - uid: 140 + components: + - anchored: True + pos: -2.5,-6.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage +- proto: PottedPlantRandom + entities: + - uid: 321 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 254 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 129 + type: ContainerContainer + - powerLoad: 100 + type: ApcPowerReceiver + - links: + - 188 + type: DeviceLinkSink +- proto: PoweredlightLED + entities: + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: RailingRound + entities: + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 332 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 2 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform +- proto: RollerBed + entities: + - uid: 215 + components: + - pos: -1.4910297,-4.2335505 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -1.4910297,-3.2179255 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 205 + components: + - pos: -2.6292348,-6.46939 + parent: 1 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item +- proto: SignalButton + entities: + - uid: 191 + components: + - name: blastdoors switch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 102: + - Pressed: Toggle + 101: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonDirectional + entities: + - uid: 188 + components: + - name: frontal floodlight switch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - linkedPorts: + 128: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 285 + components: + - name: airlock bolts switch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 106: + - Pressed: DoorBolt + 105: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 286 + components: + - name: airlock bolts switch + type: MetaData + - pos: 3.7922952,-4.4013705 + parent: 1 + type: Transform + - linkedPorts: + 111: + - Pressed: DoorBolt + 112: + - Pressed: DoorBolt + type: DeviceLinkSource +- proto: SignElectricalMed + entities: + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 207 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 220 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform +- proto: SignSpace + entities: + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 136 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 258 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 250 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 54 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 208 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 248 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: SuitStorageParamedic + entities: + - uid: 255 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 316 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 219 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 23 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform +- proto: WarningAir + entities: + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 251 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 323 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: WeaponGrapplingGun + entities: + - uid: 284 + components: + - rot: -1.5707963267948966 rad + pos: 4.7154503,-6.4150143 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: 4.5435753,-6.4775143 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 206 + components: + - pos: -2.4509153,-6.50064 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/skipper.yml b/Resources/Maps/Shuttles/skipper.yml index e5ac727231c..3840f172719 100644 --- a/Resources/Maps/Shuttles/skipper.yml +++ b/Resources/Maps/Shuttles/skipper.yml @@ -316,7 +316,8 @@ entities: 0: 30719 1: 34816 -1,0: - 0: 65535 + 0: 61439 + 2: 4096 -1,-1: 0: 65535 0,-1: @@ -336,7 +337,7 @@ entities: 0: 8 -2,0: 0: 63487 - 2: 2048 + 3: 2048 -2,1: 0: 61435 2: 4 @@ -401,6 +402,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -1299,9 +1315,10 @@ entities: type: EntityStorage - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 147 + - uid: 34 components: - - pos: -4.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 parent: 1 type: Transform - proto: ComputerShuttle @@ -1334,7 +1351,7 @@ entities: - type: ItemSlots - proto: CrateNPCCow entities: - - uid: 223 + - uid: 36 components: - pos: -4.5,2.5 parent: 1 @@ -1855,9 +1872,9 @@ entities: type: Transform - proto: LockerBotanistFilled entities: - - uid: 241 + - uid: 44 components: - - pos: -2.5,8.5 + - pos: -1.5,8.5 parent: 1 type: Transform - proto: LockerFreezer @@ -1906,19 +1923,25 @@ entities: - pos: -2.4983687,3.2123425 parent: 1 type: Transform -- proto: PlantBag +- proto: PortableGeneratorPacman entities: - - uid: 373 + - uid: 41 components: - - pos: -1.2547346,5.524218 + - anchored: True + pos: -2.5,8.5 parent: 1 type: Transform -- proto: PortableGeneratorPacman - entities: - - uid: 34 + - storage: + Plasma: 3000 + type: MaterialStorage + - bodyType: Static + type: Physics + - endTime: 0 + type: InsertingMaterialStorage + - uid: 46 components: - anchored: True - pos: -1.5,8.5 + pos: -0.5,8.5 parent: 1 type: Transform - storage: @@ -2016,14 +2039,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver -- proto: Rack - entities: - - uid: 36 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - proto: ReagentContainerFlour entities: - uid: 256 @@ -2054,11 +2069,22 @@ entities: type: Transform - proto: SeedExtractor entities: - - uid: 262 + - uid: 45 components: - - pos: -0.5,8.5 + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 43 + components: + - pos: -1.5039086,7.4487405 parent: 1 type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item - proto: ShuttersNormal entities: - uid: 263 @@ -2359,7 +2385,7 @@ entities: pos: 1.5,2.5 parent: 1 type: Transform - - uid: 41 + - uid: 48 components: - rot: 3.141592653589793 rad pos: 0.5,5.5 @@ -2367,9 +2393,9 @@ entities: type: Transform - proto: SpawnMobAlexander entities: - - uid: 294 + - uid: 47 components: - - pos: -1.5,7.5 + - pos: -4.5,3.5 parent: 1 type: Transform - proto: SpawnPointBotanist diff --git a/Resources/Maps/Shuttles/spectre.yml b/Resources/Maps/Shuttles/spectre.yml new file mode 100644 index 00000000000..6fc907e0828 --- /dev/null +++ b/Resources/Maps/Shuttles/spectre.yml @@ -0,0 +1,9039 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBlueCircuit + 27: FloorDark + 28: FloorDarkDiagonal + 36: FloorDarkPlastic + 43: FloorGlass + 62: FloorMetalDiamond + 71: FloorRGlass + 73: FloorReinforcedHardened + 85: FloorSteelCheckerDark + 97: FloorTechMaint2 + 100: FloorWhite + 109: FloorWhitePlastic + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 3 + components: + - name: grid + type: MetaData + - pos: -1.484375,-0.5 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAJAAAAAAAPgAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAJAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: bwAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAARwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAARwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAKwAAAAAAcQAAAAAAPgAAAAAAJAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAJAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: 1 + decals: + 69: -13,-5 + - node: + color: '#DE3A3AFF' + id: 1 + decals: + 70: -13,-5 + - node: + color: '#DE3A3AFF' + id: 2 + decals: + 71: -7,-3 + - node: + color: '#DE3A3AFF' + id: 3 + decals: + 72: 7,-3 + - node: + color: '#DE3A3AFF' + id: 4 + decals: + 73: 13,-5 + - node: + color: '#EFB34196' + id: BotLeft + decals: + 16: -13,-8 + 17: -7,-6 + 18: 7,-6 + 19: 13,-8 + 77: -7,6 + 78: -7,5 + 79: -7,4 + 80: -7,3 + 81: 7,3 + 82: 7,4 + 83: 7,6 + 84: 5,6 + 85: 5,5 + 86: 5,4 + 87: 5,3 + 88: -5,4 + 89: -5,5 + 90: -5,6 + - node: + color: '#EFB341FF' + id: BotLeft + decals: + 180: 7,5 + 181: 5,5 + 182: 5,6 + 183: 5,4 + 184: 5,3 + 185: 7,3 + 186: 7,6 + 187: -5,6 + 188: -5,4 + 189: -5,3 + 190: -5,5 + 191: -7,5 + 192: -7,4 + 193: -7,3 + 194: -7,6 + - node: + color: '#52B4E9FF' + id: BotLeftGreyscale + decals: + 74: -2,-5 + - node: + color: '#DE3A3A96' + id: BotLeftGreyscale + decals: + 75: -1,-6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerNe + decals: + 103: -10,0 + 129: 8,1 + 141: 13,0 + 142: 14,-1 + 149: 2,7 + 150: 3,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerNw + decals: + 99: -14,-1 + 101: -13,0 + 116: -8,1 + 139: 10,0 + 151: -2,7 + 152: -3,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerSe + decals: + 105: -10,-2 + 161: 3,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerSw + decals: + 137: 10,-2 + 177: -3,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNe + decals: + 130: 7,1 + 131: 13,-1 + 179: 2,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 100: -13,-1 + 117: -7,1 + 178: -2,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSe + decals: + 107: -12,-2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 132: 12,-2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineE + decals: + 104: -10,-1 + 108: -12,-3 + 109: -12,-4 + 110: -12,-5 + 111: -5,-3 + 112: -5,-2 + 113: -5,-1 + 114: -5,0 + 115: -5,1 + 126: 8,-3 + 127: 8,-2 + 128: 8,-1 + 143: 14,-2 + 144: 14,-3 + 145: 14,-4 + 146: 14,-5 + 148: 8,0 + 158: 3,3 + 159: 3,4 + 160: 3,5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 24: -2,18 + 25: -1,18 + 26: 0,18 + 27: 1,18 + 28: 2,18 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 147: 12,0 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 102: -11,0 + 140: 11,0 + 153: -1,7 + 154: 0,7 + 155: 1,7 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 106: -11,-2 + 136: 11,-2 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 91: 0,2 + 92: 1,2 + 93: 2,2 + 94: 3,2 + 162: -1,2 + 163: -2,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 95: -14,-5 + 96: -14,-4 + 97: -14,-3 + 98: -14,-2 + 118: -8,0 + 119: -8,-2 + 120: -8,-3 + 121: -8,-1 + 122: 5,-3 + 123: 5,-2 + 124: 5,-1 + 125: 5,1 + 133: 12,-3 + 134: 12,-4 + 135: 12,-5 + 138: 10,-1 + 156: -3,5 + 157: -3,4 + 176: -3,3 + - node: + color: '#951710FF' + id: Delivery + decals: + 164: -1,3 + 165: 0,3 + 166: 1,3 + 167: -2,3 + 168: -2,4 + 169: -2,5 + 170: -1,5 + 171: 1,5 + 172: 1,5 + 173: 2,5 + 174: 2,4 + 175: 2,3 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 29: 4,2 + 76: -4,2 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineN + decals: + 32: -12,0 + - node: + color: '#D381C996' + id: MiniTileWhiteLineN + decals: + 31: -6,6 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineN + decals: + 30: 6,6 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 20: -1,22 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 22: 1,20 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 23: -1,20 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 21: 1,22 + - node: + color: '#EFB34196' + id: WarnFull + decals: + 0: -7,-7 + 1: -8,-6 + 2: -7,-5 + 3: -6,-6 + 4: 7,-7 + 5: 6,-6 + 6: 7,-5 + 7: 8,-6 + 8: 13,-9 + 9: 12,-8 + 10: 13,-7 + 11: 14,-8 + 12: -13,-7 + 13: -12,-8 + 14: -13,-9 + 15: -14,-8 + - node: + color: '#DE3A3A96' + id: WarnLineN + decals: + 33: 14,-5 + 34: 13,-5 + 35: 12,-5 + 36: 8,-3 + 37: 7,-3 + 38: 6,-3 + 39: -6,-3 + 40: -7,-3 + 41: -7,-3 + 42: -8,-3 + 43: -6,-3 + 44: -8,-3 + 45: -12,-5 + 46: -12,-5 + 47: -13,-5 + 48: -13,-5 + 49: -14,-5 + 50: -14,-5 + 51: 14,-5 + 52: 14,-5 + 53: 13,-5 + 54: 13,-5 + 55: 12,-5 + 56: 12,-5 + 57: 8,-3 + 58: 7,-3 + 59: 6,-3 + 60: 6,-3 + 61: 7,-3 + 62: 8,-3 + 63: -6,-3 + 64: -7,-3 + 65: -8,-3 + 66: -12,-5 + 67: -13,-5 + 68: -14,-5 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 61167 + 1,3: + 0: 44782 + 2,0: + 0: 49151 + 2,1: + 0: 39867 + 2,2: + 0: 2457 + 3,0: + 0: 32767 + 3,1: + 0: 9011 + 3,2: + 0: 818 + -4,0: + 0: 52991 + -4,1: + 0: 34952 + -3,0: + 0: 49151 + -3,1: + 0: 11195 + -3,2: + 0: 818 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 61439 + -2,3: + 0: 44782 + -1,1: + 0: 65535 + -1,2: + 0: 61167 + -1,3: + 0: 61166 + 0,-3: + 0: 30464 + 0,-2: + 0: 65399 + 1,-1: + 0: 65535 + 1,-3: + 0: 8928 + 1,-2: + 0: 65262 + 2,-3: + 0: 43704 + 2,-2: + 0: 48059 + 2,-1: + 0: 65531 + 2,-4: + 0: 32768 + 3,-4: + 0: 61440 + 3,-3: + 0: 65416 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 30719 + 0,7: + 0: 30583 + 1,4: + 0: 238 + -4,-4: + 0: 57344 + -4,-3: + 0: 60962 + -4,-2: + 0: 65518 + -4,-1: + 0: 65535 + -3,-4: + 0: 12288 + -3,-3: + 0: 48034 + -3,-2: + 0: 48059 + -3,-1: + 0: 65531 + -2,-3: + 0: 35056 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,-2: + 0: 65228 + -1,-3: + 0: 52224 + -2,4: + 0: 238 + -1,4: + 0: 61166 + -1,5: + 0: 61166 + -1,6: + 0: 52462 + -1,7: + 0: 52428 + -1,8: + 0: 52428 + -1,9: + 0: 52428 + -1,10: + 0: 1092 + 0,8: + 0: 30583 + 0,9: + 0: 30583 + 0,10: + 0: 1092 + -4,2: + 0: 2184 + -5,-2: + 0: 32768 + -5,-1: + 0: 34952 + 4,-2: + 0: 12544 + 4,-1: + 0: 13107 + 4,0: + 0: 19 + -5,0: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Spectre + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 738 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1470 + - 1469 + - 449 + - 500 + type: DeviceNetwork + - devices: + - 685 + - 633 + - 449 + - 1469 + - 1470 + - 500 + type: DeviceList + - uid: 798 + components: + - pos: -10.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 674 + - 764 + type: DeviceNetwork + - devices: + - 674 + - 764 + type: DeviceList + - uid: 932 + components: + - pos: 11.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 701 + - 686 + type: DeviceNetwork + - devices: + - 686 + - 701 + type: DeviceList + - uid: 933 + components: + - pos: 2.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 449 + - 633 + - 685 + type: DeviceNetwork + - devices: + - 449 + - 633 + - 685 + type: DeviceList + - linkedPorts: + 939: + - AirWarning: Close + - AirNormal: Open + type: DeviceLinkSource + - uid: 934 + components: + - pos: 0.5,-3.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1473 + type: DeviceNetwork + - devices: + - 635 + - 1473 + type: DeviceList + - uid: 1055 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1472 + - 534 + type: DeviceNetwork + - devices: + - 1063 + - 1057 + - 1472 + - 534 + type: DeviceList +- proto: AirlockAtmospherics + entities: + - uid: 607 + components: + - pos: 2.5,-3.5 + parent: 3 + type: Transform +- proto: AirlockCommand + entities: + - uid: 2 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 244 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 114 + components: + - pos: 0.5,1.5 + parent: 3 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 25 + components: + - pos: 15.5,-2.5 + parent: 3 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 3 + type: Transform + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 3 + type: Transform + - uid: 465 + components: + - pos: 15.5,-0.5 + parent: 3 + type: Transform +- proto: AirlockGlass + entities: + - uid: 1551 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 3 + type: Transform + - uid: 1552 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 3 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 47 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 3 + type: Transform + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 3 + type: Transform + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 3 + type: Transform + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 3 + type: Transform +- proto: AirlockMaintGlass + entities: + - uid: 595 + components: + - pos: 12.5,1.5 + parent: 3 + type: Transform + - uid: 598 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 592 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 3 + type: Transform +- proto: AirlockScience + entities: + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 3 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 3 + type: Transform + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 3 + type: Transform + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 3 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 3 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 3 + type: Transform + - uid: 939 + components: + - pos: 0.5,8.5 + parent: 3 + type: Transform + - links: + - 933 + type: DeviceLinkSink +- proto: AirlockSecurity + entities: + - uid: 600 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform +- proto: AmeController + entities: + - uid: 601 + components: + - pos: -1.5,0.5 + parent: 3 + type: Transform + - injectionAmount: 4 + injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 602 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 40 + components: + - pos: 3.5392103,-1.3966094 + parent: 3 + type: Transform + - uid: 160 + components: + - pos: 3.3517103,-1.4122344 + parent: 3 + type: Transform + - uid: 602 + components: + - flags: InContainer + type: MetaData + - parent: 601 + type: Transform + - canCollide: False + type: Physics +- proto: AmeShielding + entities: + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 3 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 3 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 3 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 3 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 3 + type: Transform + - uid: 34 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 3 + type: Transform + - uid: 36 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 3 + type: Transform + - uid: 38 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 3 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 3 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 3 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 605 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 3 + type: Transform + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 3 + type: Transform +- proto: AnomalyLocator + entities: + - uid: 79 + components: + - pos: 5.6005936,0.1949054 + parent: 3 + type: Transform + - uid: 268 + components: + - pos: -4.474732,0.1949054 + parent: 3 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 67 + components: + - rot: 1.5707963267948966 rad + pos: -4.4982333,-0.275599 + parent: 3 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 5.5017667,-0.306849 + parent: 3 + type: Transform +- proto: APCBasic + entities: + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 390 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 415 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 493 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 494 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 495 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 1064 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1179 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 1213 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 3 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 416 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 3 + type: Transform + - uid: 419 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 3 + type: Transform + - uid: 420 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 3 + type: Transform + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 3 + type: Transform + - uid: 1258 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 3 + type: Transform + - uid: 1259 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 3 + type: Transform + - uid: 1260 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 3 + type: Transform + - uid: 1261 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 3 + type: Transform +- proto: Autolathe + entities: + - uid: 947 + components: + - pos: 2.5,10.5 + parent: 3 + type: Transform +- proto: BenchSofaCorpLeft + entities: + - uid: 1543 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpMiddle + entities: + - uid: 1542 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpRight + entities: + - uid: 1541 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: BlastDoor + entities: + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 3 + type: Transform + - links: + - 373 + type: DeviceLinkSink + - uid: 388 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 3 + type: Transform + - links: + - 400 + type: DeviceLinkSink + - uid: 389 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 3 + type: Transform + - links: + - 375 + type: DeviceLinkSink + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 3 + type: Transform + - links: + - 369 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 333 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 3 + type: Transform + - links: + - 370 + type: DeviceLinkSink + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 3 + type: Transform + - links: + - 370 + type: DeviceLinkSink + - uid: 349 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 3 + type: Transform + - links: + - 370 + type: DeviceLinkSink + - uid: 350 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 3 + type: Transform + - links: + - 372 + type: DeviceLinkSink + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 3 + type: Transform + - links: + - 372 + type: DeviceLinkSink + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 3 + type: Transform + - links: + - 372 + type: DeviceLinkSink + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 3 + type: Transform + - invokeCounter: 2 + links: + - 374 + type: DeviceLinkSink + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 3 + type: Transform + - invokeCounter: 2 + links: + - 374 + type: DeviceLinkSink + - uid: 355 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 3 + type: Transform + - invokeCounter: 2 + links: + - 374 + type: DeviceLinkSink + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 3 + type: Transform + - links: + - 376 + type: DeviceLinkSink + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 3 + type: Transform + - links: + - 376 + type: DeviceLinkSink + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 3 + type: Transform + - links: + - 376 + type: DeviceLinkSink +- proto: BookshelfFilled + entities: + - uid: 1534 + components: + - pos: -7.5,1.5 + parent: 3 + type: Transform + - uid: 1535 + components: + - pos: 8.5,1.5 + parent: 3 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 1284 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 3 + type: Transform +- proto: CableApcExtension + entities: + - uid: 12 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 13 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 14 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 22 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 43 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 61 + components: + - pos: 4.5,-3.5 + parent: 3 + type: Transform + - uid: 63 + components: + - pos: -5.5,17.5 + parent: 3 + type: Transform + - uid: 76 + components: + - pos: 3.5,20.5 + parent: 3 + type: Transform + - uid: 131 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 177 + components: + - pos: 4.5,-4.5 + parent: 3 + type: Transform + - uid: 210 + components: + - pos: 6.5,-3.5 + parent: 3 + type: Transform + - uid: 239 + components: + - pos: -4.5,14.5 + parent: 3 + type: Transform + - uid: 302 + components: + - pos: 2.5,-3.5 + parent: 3 + type: Transform + - uid: 323 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 324 + components: + - pos: -0.5,1.5 + parent: 3 + type: Transform + - uid: 325 + components: + - pos: 14.5,-1.5 + parent: 3 + type: Transform + - uid: 399 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 418 + components: + - pos: 1.5,2.5 + parent: 3 + type: Transform + - uid: 421 + components: + - pos: -10.5,-6.5 + parent: 3 + type: Transform + - uid: 429 + components: + - pos: -4.5,15.5 + parent: 3 + type: Transform + - uid: 440 + components: + - pos: -6.5,2.5 + parent: 3 + type: Transform + - uid: 444 + components: + - pos: 7.5,2.5 + parent: 3 + type: Transform + - uid: 452 + components: + - pos: -5.5,11.5 + parent: 3 + type: Transform + - uid: 453 + components: + - pos: 3.5,-3.5 + parent: 3 + type: Transform + - uid: 455 + components: + - pos: -10.5,-5.5 + parent: 3 + type: Transform + - uid: 458 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 460 + components: + - pos: 5.5,-4.5 + parent: 3 + type: Transform + - uid: 467 + components: + - pos: 5.5,-9.5 + parent: 3 + type: Transform + - uid: 468 + components: + - pos: 5.5,-7.5 + parent: 3 + type: Transform + - uid: 470 + components: + - pos: 5.5,-6.5 + parent: 3 + type: Transform + - uid: 473 + components: + - pos: 5.5,-5.5 + parent: 3 + type: Transform + - uid: 475 + components: + - pos: 1.5,20.5 + parent: 3 + type: Transform + - uid: 487 + components: + - pos: -0.5,1.5 + parent: 3 + type: Transform + - uid: 491 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 496 + components: + - pos: 11.5,-5.5 + parent: 3 + type: Transform + - uid: 497 + components: + - pos: 11.5,-8.5 + parent: 3 + type: Transform + - uid: 498 + components: + - pos: 11.5,-6.5 + parent: 3 + type: Transform + - uid: 499 + components: + - pos: -5.5,2.5 + parent: 3 + type: Transform + - uid: 501 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 502 + components: + - pos: 11.5,-9.5 + parent: 3 + type: Transform + - uid: 503 + components: + - pos: 11.5,-7.5 + parent: 3 + type: Transform + - uid: 504 + components: + - pos: 12.5,-9.5 + parent: 3 + type: Transform + - uid: 506 + components: + - pos: 5.5,2.5 + parent: 3 + type: Transform + - uid: 507 + components: + - pos: 6.5,2.5 + parent: 3 + type: Transform + - uid: 509 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 510 + components: + - pos: 0.5,2.5 + parent: 3 + type: Transform + - uid: 511 + components: + - pos: 0.5,3.5 + parent: 3 + type: Transform + - uid: 512 + components: + - pos: 0.5,3.5 + parent: 3 + type: Transform + - uid: 514 + components: + - pos: 0.5,4.5 + parent: 3 + type: Transform + - uid: 515 + components: + - pos: 0.5,5.5 + parent: 3 + type: Transform + - uid: 516 + components: + - pos: 0.5,6.5 + parent: 3 + type: Transform + - uid: 517 + components: + - pos: 0.5,7.5 + parent: 3 + type: Transform + - uid: 520 + components: + - pos: 0.5,10.5 + parent: 3 + type: Transform + - uid: 521 + components: + - pos: -0.5,10.5 + parent: 3 + type: Transform + - uid: 522 + components: + - pos: -1.5,10.5 + parent: 3 + type: Transform + - uid: 523 + components: + - pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 525 + components: + - pos: 0.5,11.5 + parent: 3 + type: Transform + - uid: 526 + components: + - pos: 0.5,12.5 + parent: 3 + type: Transform + - uid: 527 + components: + - pos: 0.5,13.5 + parent: 3 + type: Transform + - uid: 528 + components: + - pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 529 + components: + - pos: 0.5,15.5 + parent: 3 + type: Transform + - uid: 530 + components: + - pos: 0.5,16.5 + parent: 3 + type: Transform + - uid: 531 + components: + - pos: 0.5,17.5 + parent: 3 + type: Transform + - uid: 533 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 545 + components: + - pos: 5.5,-10.5 + parent: 3 + type: Transform + - uid: 548 + components: + - pos: -3.5,-4.5 + parent: 3 + type: Transform + - uid: 566 + components: + - pos: -6.5,-10.5 + parent: 3 + type: Transform + - uid: 568 + components: + - pos: -7.5,1.5 + parent: 3 + type: Transform + - uid: 569 + components: + - pos: -7.5,0.5 + parent: 3 + type: Transform + - uid: 570 + components: + - pos: -7.5,-0.5 + parent: 3 + type: Transform + - uid: 571 + components: + - pos: -8.5,-0.5 + parent: 3 + type: Transform + - uid: 573 + components: + - pos: -10.5,-0.5 + parent: 3 + type: Transform + - uid: 574 + components: + - pos: -10.5,-1.5 + parent: 3 + type: Transform + - uid: 575 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 576 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 577 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 578 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 580 + components: + - pos: 11.5,-3.5 + parent: 3 + type: Transform + - uid: 581 + components: + - pos: 12.5,-3.5 + parent: 3 + type: Transform + - uid: 582 + components: + - pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 583 + components: + - pos: 11.5,-1.5 + parent: 3 + type: Transform + - uid: 585 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 587 + components: + - pos: 8.5,-0.5 + parent: 3 + type: Transform + - uid: 588 + components: + - pos: 8.5,0.5 + parent: 3 + type: Transform + - uid: 589 + components: + - pos: 8.5,1.5 + parent: 3 + type: Transform + - uid: 590 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 612 + components: + - pos: -10.5,-4.5 + parent: 3 + type: Transform + - uid: 614 + components: + - pos: -10.5,-7.5 + parent: 3 + type: Transform + - uid: 700 + components: + - pos: -10.5,-8.5 + parent: 3 + type: Transform + - uid: 718 + components: + - pos: -10.5,-9.5 + parent: 3 + type: Transform + - uid: 719 + components: + - pos: -11.5,-9.5 + parent: 3 + type: Transform + - uid: 721 + components: + - pos: 11.5,-4.5 + parent: 3 + type: Transform + - uid: 725 + components: + - pos: 5.5,-8.5 + parent: 3 + type: Transform + - uid: 728 + components: + - pos: 13.5,-1.5 + parent: 3 + type: Transform + - uid: 731 + components: + - pos: -14.5,-1.5 + parent: 3 + type: Transform + - uid: 732 + components: + - pos: -15.5,-1.5 + parent: 3 + type: Transform + - uid: 733 + components: + - pos: 15.5,-1.5 + parent: 3 + type: Transform + - uid: 734 + components: + - pos: 16.5,-1.5 + parent: 3 + type: Transform + - uid: 1086 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 1104 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1112 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1113 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - uid: 1114 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - uid: 1115 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - uid: 1116 + components: + - pos: 2.5,23.5 + parent: 3 + type: Transform + - uid: 1117 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1118 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1119 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 1120 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 1121 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 1122 + components: + - pos: -11.5,-3.5 + parent: 3 + type: Transform + - uid: 1123 + components: + - pos: -12.5,-3.5 + parent: 3 + type: Transform + - uid: 1126 + components: + - pos: -13.5,-1.5 + parent: 3 + type: Transform + - uid: 1127 + components: + - pos: -13.5,-1.5 + parent: 3 + type: Transform + - uid: 1128 + components: + - pos: -13.5,-0.5 + parent: 3 + type: Transform + - uid: 1131 + components: + - pos: -12.5,-4.5 + parent: 3 + type: Transform + - uid: 1132 + components: + - pos: -13.5,-0.5 + parent: 3 + type: Transform + - uid: 1133 + components: + - pos: -12.5,-0.5 + parent: 3 + type: Transform + - uid: 1134 + components: + - pos: -11.5,-0.5 + parent: 3 + type: Transform + - uid: 1136 + components: + - pos: -11.5,1.5 + parent: 3 + type: Transform + - uid: 1137 + components: + - pos: -12.5,-5.5 + parent: 3 + type: Transform + - uid: 1139 + components: + - pos: -12.5,-6.5 + parent: 3 + type: Transform + - uid: 1141 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 1142 + components: + - pos: -6.5,-5.5 + parent: 3 + type: Transform + - uid: 1143 + components: + - pos: -6.5,-5.5 + parent: 3 + type: Transform + - uid: 1144 + components: + - pos: -6.5,-4.5 + parent: 3 + type: Transform + - uid: 1145 + components: + - pos: -6.5,-3.5 + parent: 3 + type: Transform + - uid: 1146 + components: + - pos: -6.5,-2.5 + parent: 3 + type: Transform + - uid: 1147 + components: + - pos: -6.5,-1.5 + parent: 3 + type: Transform + - uid: 1149 + components: + - pos: -6.5,-0.5 + parent: 3 + type: Transform + - uid: 1150 + components: + - pos: -6.5,-0.5 + parent: 3 + type: Transform + - uid: 1151 + components: + - pos: -5.5,3.5 + parent: 3 + type: Transform + - uid: 1152 + components: + - pos: -5.5,4.5 + parent: 3 + type: Transform + - uid: 1153 + components: + - pos: -5.5,5.5 + parent: 3 + type: Transform + - uid: 1155 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform + - uid: 1156 + components: + - pos: -5.5,8.5 + parent: 3 + type: Transform + - uid: 1157 + components: + - pos: 6.5,3.5 + parent: 3 + type: Transform + - uid: 1158 + components: + - pos: 6.5,4.5 + parent: 3 + type: Transform + - uid: 1159 + components: + - pos: 6.5,5.5 + parent: 3 + type: Transform + - uid: 1161 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform + - uid: 1162 + components: + - pos: 6.5,8.5 + parent: 3 + type: Transform + - uid: 1199 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1200 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - uid: 1203 + components: + - pos: 0.5,20.5 + parent: 3 + type: Transform + - uid: 1205 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 1206 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - uid: 1207 + components: + - pos: 0.5,24.5 + parent: 3 + type: Transform + - uid: 1208 + components: + - pos: 0.5,25.5 + parent: 3 + type: Transform + - uid: 1209 + components: + - pos: 0.5,26.5 + parent: 3 + type: Transform + - uid: 1210 + components: + - pos: -0.5,26.5 + parent: 3 + type: Transform + - uid: 1212 + components: + - pos: 1.5,26.5 + parent: 3 + type: Transform + - uid: 1222 + components: + - pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 1230 + components: + - pos: 7.5,-0.5 + parent: 3 + type: Transform + - uid: 1231 + components: + - pos: 7.5,-1.5 + parent: 3 + type: Transform + - uid: 1232 + components: + - pos: 7.5,-3.5 + parent: 3 + type: Transform + - uid: 1233 + components: + - pos: 7.5,-2.5 + parent: 3 + type: Transform + - uid: 1234 + components: + - pos: 7.5,-4.5 + parent: 3 + type: Transform + - uid: 1235 + components: + - pos: 7.5,-5.5 + parent: 3 + type: Transform + - uid: 1236 + components: + - pos: 13.5,-3.5 + parent: 3 + type: Transform + - uid: 1237 + components: + - pos: 13.5,-4.5 + parent: 3 + type: Transform + - uid: 1238 + components: + - pos: 13.5,-5.5 + parent: 3 + type: Transform + - uid: 1239 + components: + - pos: 13.5,-6.5 + parent: 3 + type: Transform + - uid: 1240 + components: + - pos: 13.5,-7.5 + parent: 3 + type: Transform + - uid: 1262 + components: + - pos: 12.5,-1.5 + parent: 3 + type: Transform + - uid: 1303 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 1304 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 1305 + components: + - pos: 1.5,-5.5 + parent: 3 + type: Transform + - uid: 1306 + components: + - pos: 0.5,-5.5 + parent: 3 + type: Transform + - uid: 1308 + components: + - pos: 1.5,-6.5 + parent: 3 + type: Transform + - uid: 1310 + components: + - pos: -11.5,1.5 + parent: 3 + type: Transform + - uid: 1311 + components: + - pos: -11.5,2.5 + parent: 3 + type: Transform + - uid: 1314 + components: + - pos: -11.5,5.5 + parent: 3 + type: Transform + - uid: 1315 + components: + - pos: -5.5,9.5 + parent: 3 + type: Transform + - uid: 1316 + components: + - pos: -5.5,10.5 + parent: 3 + type: Transform + - uid: 1319 + components: + - pos: 6.5,8.5 + parent: 3 + type: Transform + - uid: 1320 + components: + - pos: 6.5,9.5 + parent: 3 + type: Transform + - uid: 1321 + components: + - pos: 6.5,10.5 + parent: 3 + type: Transform + - uid: 1322 + components: + - pos: 6.5,10.5 + parent: 3 + type: Transform + - uid: 1323 + components: + - pos: 6.5,11.5 + parent: 3 + type: Transform + - uid: 1325 + components: + - pos: 12.5,-0.5 + parent: 3 + type: Transform + - uid: 1326 + components: + - pos: 12.5,0.5 + parent: 3 + type: Transform + - uid: 1327 + components: + - pos: 12.5,1.5 + parent: 3 + type: Transform + - uid: 1328 + components: + - pos: 12.5,2.5 + parent: 3 + type: Transform + - uid: 1329 + components: + - pos: 12.5,2.5 + parent: 3 + type: Transform + - uid: 1330 + components: + - pos: 12.5,3.5 + parent: 3 + type: Transform + - uid: 1331 + components: + - pos: 12.5,4.5 + parent: 3 + type: Transform + - uid: 1332 + components: + - pos: 12.5,4.5 + parent: 3 + type: Transform + - uid: 1333 + components: + - pos: 12.5,5.5 + parent: 3 + type: Transform + - uid: 1343 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 1345 + components: + - pos: -4.5,15.5 + parent: 3 + type: Transform + - uid: 1346 + components: + - pos: -4.5,14.5 + parent: 3 + type: Transform + - uid: 1347 + components: + - pos: -4.5,13.5 + parent: 3 + type: Transform + - uid: 1348 + components: + - pos: -4.5,12.5 + parent: 3 + type: Transform + - uid: 1349 + components: + - pos: -4.5,11.5 + parent: 3 + type: Transform + - uid: 1355 + components: + - pos: -10.5,8.5 + parent: 3 + type: Transform + - uid: 1363 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 1364 + components: + - pos: -10.5,3.5 + parent: 3 + type: Transform + - uid: 1365 + components: + - pos: -10.5,4.5 + parent: 3 + type: Transform + - uid: 1366 + components: + - pos: -10.5,5.5 + parent: 3 + type: Transform + - uid: 1367 + components: + - pos: -10.5,5.5 + parent: 3 + type: Transform + - uid: 1368 + components: + - pos: -10.5,6.5 + parent: 3 + type: Transform + - uid: 1369 + components: + - pos: -10.5,7.5 + parent: 3 + type: Transform + - uid: 1370 + components: + - pos: -10.5,9.5 + parent: 3 + type: Transform + - uid: 1371 + components: + - pos: -10.5,10.5 + parent: 3 + type: Transform + - uid: 1372 + components: + - pos: -10.5,10.5 + parent: 3 + type: Transform + - uid: 1374 + components: + - pos: -11.5,10.5 + parent: 3 + type: Transform + - uid: 1375 + components: + - pos: -11.5,10.5 + parent: 3 + type: Transform + - uid: 1378 + components: + - pos: -5.5,-10.5 + parent: 3 + type: Transform + - uid: 1379 + components: + - pos: -4.5,-10.5 + parent: 3 + type: Transform + - uid: 1380 + components: + - pos: -4.5,-9.5 + parent: 3 + type: Transform + - uid: 1381 + components: + - pos: -4.5,-8.5 + parent: 3 + type: Transform + - uid: 1382 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - uid: 1383 + components: + - pos: -4.5,-7.5 + parent: 3 + type: Transform + - uid: 1384 + components: + - pos: -4.5,-7.5 + parent: 3 + type: Transform + - uid: 1385 + components: + - pos: -4.5,-6.5 + parent: 3 + type: Transform + - uid: 1386 + components: + - pos: -4.5,-6.5 + parent: 3 + type: Transform + - uid: 1387 + components: + - pos: -4.5,-5.5 + parent: 3 + type: Transform + - uid: 1388 + components: + - pos: -4.5,-4.5 + parent: 3 + type: Transform + - uid: 1389 + components: + - pos: -4.5,-4.5 + parent: 3 + type: Transform + - uid: 1391 + components: + - pos: -5.5,-3.5 + parent: 3 + type: Transform + - uid: 1392 + components: + - pos: -3.5,-3.5 + parent: 3 + type: Transform + - uid: 1393 + components: + - pos: -2.5,-3.5 + parent: 3 + type: Transform + - uid: 1394 + components: + - pos: -2.5,-3.5 + parent: 3 + type: Transform + - uid: 1395 + components: + - pos: -1.5,-3.5 + parent: 3 + type: Transform + - uid: 1396 + components: + - pos: -0.5,-3.5 + parent: 3 + type: Transform + - uid: 1397 + components: + - pos: -0.5,-3.5 + parent: 3 + type: Transform + - uid: 1398 + components: + - pos: 0.5,-3.5 + parent: 3 + type: Transform + - uid: 1399 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 1400 + components: + - pos: 2.5,-6.5 + parent: 3 + type: Transform + - uid: 1401 + components: + - pos: 2.5,-7.5 + parent: 3 + type: Transform + - uid: 1402 + components: + - pos: 2.5,-7.5 + parent: 3 + type: Transform + - uid: 1403 + components: + - pos: 2.5,-8.5 + parent: 3 + type: Transform + - uid: 1404 + components: + - pos: 2.5,-8.5 + parent: 3 + type: Transform + - uid: 1405 + components: + - pos: 1.5,-8.5 + parent: 3 + type: Transform + - uid: 1406 + components: + - pos: 1.5,-9.5 + parent: 3 + type: Transform + - uid: 1407 + components: + - pos: 0.5,-9.5 + parent: 3 + type: Transform + - uid: 1408 + components: + - pos: -0.5,-9.5 + parent: 3 + type: Transform + - uid: 1410 + components: + - pos: 6.5,-10.5 + parent: 3 + type: Transform + - uid: 1411 + components: + - pos: 7.5,-10.5 + parent: 3 + type: Transform + - uid: 1423 + components: + - pos: 9.5,2.5 + parent: 3 + type: Transform + - uid: 1424 + components: + - pos: 10.5,2.5 + parent: 3 + type: Transform + - uid: 1425 + components: + - pos: 9.5,3.5 + parent: 3 + type: Transform + - uid: 1426 + components: + - pos: 9.5,4.5 + parent: 3 + type: Transform + - uid: 1427 + components: + - pos: 9.5,6.5 + parent: 3 + type: Transform + - uid: 1428 + components: + - pos: 9.5,5.5 + parent: 3 + type: Transform + - uid: 1429 + components: + - pos: 11.5,5.5 + parent: 3 + type: Transform + - uid: 1430 + components: + - pos: 11.5,6.5 + parent: 3 + type: Transform + - uid: 1431 + components: + - pos: 11.5,7.5 + parent: 3 + type: Transform + - uid: 1432 + components: + - pos: 11.5,8.5 + parent: 3 + type: Transform + - uid: 1433 + components: + - pos: 11.5,9.5 + parent: 3 + type: Transform + - uid: 1434 + components: + - pos: 11.5,10.5 + parent: 3 + type: Transform + - uid: 1437 + components: + - pos: 5.5,17.5 + parent: 3 + type: Transform + - uid: 1438 + components: + - pos: 5.5,16.5 + parent: 3 + type: Transform + - uid: 1439 + components: + - pos: 5.5,15.5 + parent: 3 + type: Transform + - uid: 1440 + components: + - pos: 5.5,14.5 + parent: 3 + type: Transform + - uid: 1441 + components: + - pos: 5.5,13.5 + parent: 3 + type: Transform + - uid: 1442 + components: + - pos: 5.5,12.5 + parent: 3 + type: Transform + - uid: 1443 + components: + - pos: 5.5,11.5 + parent: 3 + type: Transform + - uid: 1446 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1448 + components: + - pos: -0.5,20.5 + parent: 3 + type: Transform + - uid: 1449 + components: + - pos: -1.5,20.5 + parent: 3 + type: Transform + - uid: 1450 + components: + - pos: -2.5,20.5 + parent: 3 + type: Transform + - uid: 1452 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 1471 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 1474 + components: + - pos: -8.5,3.5 + parent: 3 + type: Transform + - uid: 1475 + components: + - pos: -8.5,4.5 + parent: 3 + type: Transform + - uid: 1476 + components: + - pos: -8.5,5.5 + parent: 3 + type: Transform + - uid: 1477 + components: + - pos: -8.5,6.5 + parent: 3 + type: Transform + - uid: 1478 + components: + - pos: -8.5,2.5 + parent: 3 + type: Transform + - uid: 1480 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 1481 + components: + - pos: -10.5,3.5 + parent: 3 + type: Transform + - uid: 1482 + components: + - pos: -10.5,4.5 + parent: 3 + type: Transform + - uid: 1483 + components: + - pos: -9.5,2.5 + parent: 3 + type: Transform + - uid: 1484 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 1485 + components: + - pos: -8.5,2.5 + parent: 3 + type: Transform + - uid: 1487 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 1489 + components: + - pos: -1.5,20.5 + parent: 3 + type: Transform + - uid: 1492 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1493 + components: + - pos: 6.5,17.5 + parent: 3 + type: Transform + - uid: 1494 + components: + - pos: 5.5,17.5 + parent: 3 + type: Transform + - uid: 1495 + components: + - pos: 12.5,10.5 + parent: 3 + type: Transform + - uid: 1496 + components: + - pos: 11.5,10.5 + parent: 3 + type: Transform + - uid: 1553 + components: + - pos: -0.5,5.5 + parent: 3 + type: Transform + - uid: 1554 + components: + - pos: -1.5,5.5 + parent: 3 + type: Transform + - uid: 1555 + components: + - pos: 1.5,5.5 + parent: 3 + type: Transform + - uid: 1556 + components: + - pos: 2.5,5.5 + parent: 3 + type: Transform +- proto: CableHV + entities: + - uid: 280 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 476 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 478 + components: + - pos: -1.5,0.5 + parent: 3 + type: Transform + - uid: 482 + components: + - pos: 2.5,-2.5 + parent: 3 + type: Transform + - uid: 489 + components: + - pos: 2.5,-1.5 + parent: 3 + type: Transform + - uid: 492 + components: + - pos: 3.5,-0.5 + parent: 3 + type: Transform + - uid: 554 + components: + - pos: 2.5,-0.5 + parent: 3 + type: Transform + - uid: 723 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 1061 + components: + - pos: 1.5,-0.5 + parent: 3 + type: Transform + - uid: 1062 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform +- proto: CableMV + entities: + - uid: 113 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 551 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 555 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 556 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 557 + components: + - pos: 1.5,2.5 + parent: 3 + type: Transform + - uid: 558 + components: + - pos: 0.5,10.5 + parent: 3 + type: Transform + - uid: 579 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 591 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 722 + components: + - pos: 1.5,-0.5 + parent: 3 + type: Transform + - uid: 724 + components: + - pos: 1.5,-1.5 + parent: 3 + type: Transform + - uid: 804 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 806 + components: + - pos: -2.5,1.5 + parent: 3 + type: Transform + - uid: 807 + components: + - pos: -2.5,2.5 + parent: 3 + type: Transform + - uid: 808 + components: + - pos: -3.5,2.5 + parent: 3 + type: Transform + - uid: 809 + components: + - pos: -4.5,2.5 + parent: 3 + type: Transform + - uid: 810 + components: + - pos: -4.5,2.5 + parent: 3 + type: Transform + - uid: 811 + components: + - pos: -5.5,2.5 + parent: 3 + type: Transform + - uid: 812 + components: + - pos: -6.5,2.5 + parent: 3 + type: Transform + - uid: 813 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 814 + components: + - pos: -7.5,1.5 + parent: 3 + type: Transform + - uid: 815 + components: + - pos: -7.5,0.5 + parent: 3 + type: Transform + - uid: 816 + components: + - pos: -7.5,0.5 + parent: 3 + type: Transform + - uid: 817 + components: + - pos: -7.5,-0.5 + parent: 3 + type: Transform + - uid: 818 + components: + - pos: -8.5,-0.5 + parent: 3 + type: Transform + - uid: 819 + components: + - pos: -9.5,-0.5 + parent: 3 + type: Transform + - uid: 820 + components: + - pos: -10.5,-0.5 + parent: 3 + type: Transform + - uid: 821 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 822 + components: + - pos: -10.5,-1.5 + parent: 3 + type: Transform + - uid: 823 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 824 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 825 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 826 + components: + - pos: 2.5,1.5 + parent: 3 + type: Transform + - uid: 827 + components: + - pos: 3.5,1.5 + parent: 3 + type: Transform + - uid: 828 + components: + - pos: 3.5,2.5 + parent: 3 + type: Transform + - uid: 829 + components: + - pos: 4.5,2.5 + parent: 3 + type: Transform + - uid: 830 + components: + - pos: 5.5,2.5 + parent: 3 + type: Transform + - uid: 831 + components: + - pos: 6.5,2.5 + parent: 3 + type: Transform + - uid: 832 + components: + - pos: 7.5,2.5 + parent: 3 + type: Transform + - uid: 833 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 834 + components: + - pos: 8.5,1.5 + parent: 3 + type: Transform + - uid: 835 + components: + - pos: 8.5,0.5 + parent: 3 + type: Transform + - uid: 836 + components: + - pos: 8.5,-0.5 + parent: 3 + type: Transform + - uid: 837 + components: + - pos: 8.5,-0.5 + parent: 3 + type: Transform + - uid: 838 + components: + - pos: 9.5,-0.5 + parent: 3 + type: Transform + - uid: 839 + components: + - pos: 10.5,-0.5 + parent: 3 + type: Transform + - uid: 840 + components: + - pos: 10.5,-1.5 + parent: 3 + type: Transform + - uid: 841 + components: + - pos: 11.5,-1.5 + parent: 3 + type: Transform + - uid: 842 + components: + - pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 844 + components: + - pos: 11.5,-3.5 + parent: 3 + type: Transform + - uid: 845 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 846 + components: + - pos: 1.5,-0.5 + parent: 3 + type: Transform + - uid: 847 + components: + - pos: 1.5,-1.5 + parent: 3 + type: Transform + - uid: 848 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 849 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 850 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 854 + components: + - pos: -1.5,0.5 + parent: 3 + type: Transform + - uid: 856 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 857 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 859 + components: + - pos: 0.5,2.5 + parent: 3 + type: Transform + - uid: 860 + components: + - pos: 0.5,3.5 + parent: 3 + type: Transform + - uid: 861 + components: + - pos: 0.5,4.5 + parent: 3 + type: Transform + - uid: 862 + components: + - pos: 0.5,5.5 + parent: 3 + type: Transform + - uid: 863 + components: + - pos: 0.5,7.5 + parent: 3 + type: Transform + - uid: 864 + components: + - pos: 0.5,6.5 + parent: 3 + type: Transform + - uid: 865 + components: + - pos: 0.5,8.5 + parent: 3 + type: Transform + - uid: 866 + components: + - pos: 0.5,9.5 + parent: 3 + type: Transform + - uid: 870 + components: + - pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 871 + components: + - pos: 0.5,11.5 + parent: 3 + type: Transform + - uid: 872 + components: + - pos: 0.5,12.5 + parent: 3 + type: Transform + - uid: 873 + components: + - pos: 0.5,12.5 + parent: 3 + type: Transform + - uid: 874 + components: + - pos: 0.5,13.5 + parent: 3 + type: Transform + - uid: 875 + components: + - pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 876 + components: + - pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 877 + components: + - pos: 0.5,15.5 + parent: 3 + type: Transform + - uid: 878 + components: + - pos: 0.5,16.5 + parent: 3 + type: Transform + - uid: 879 + components: + - pos: 0.5,17.5 + parent: 3 + type: Transform + - uid: 880 + components: + - pos: 0.5,17.5 + parent: 3 + type: Transform + - uid: 881 + components: + - pos: 0.5,18.5 + parent: 3 + type: Transform + - uid: 882 + components: + - pos: 0.5,18.5 + parent: 3 + type: Transform + - uid: 883 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 896 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 897 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 898 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 985 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 986 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 987 + components: + - pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 988 + components: + - pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 989 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 990 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 995 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 996 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 999 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 1001 + components: + - pos: -2.5,8.5 + parent: 3 + type: Transform + - uid: 1002 + components: + - pos: -1.5,8.5 + parent: 3 + type: Transform + - uid: 1004 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 1005 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 1006 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 1007 + components: + - pos: 1.5,8.5 + parent: 3 + type: Transform + - uid: 1008 + components: + - pos: 2.5,8.5 + parent: 3 + type: Transform + - uid: 1009 + components: + - pos: 2.5,8.5 + parent: 3 + type: Transform + - uid: 1010 + components: + - pos: 3.5,8.5 + parent: 3 + type: Transform + - uid: 1013 + components: + - pos: 3.5,8.5 + parent: 3 + type: Transform + - uid: 1014 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform + - uid: 1015 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform + - uid: 1016 + components: + - pos: 4.5,7.5 + parent: 3 + type: Transform + - uid: 1019 + components: + - pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 1020 + components: + - pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 1021 + components: + - pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 1023 + components: + - pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 1077 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 1085 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1180 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 1182 + components: + - pos: -5.5,6.5 + parent: 3 + type: Transform + - uid: 1183 + components: + - pos: -5.5,5.5 + parent: 3 + type: Transform + - uid: 1184 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform + - uid: 1185 + components: + - pos: -5.5,5.5 + parent: 3 + type: Transform + - uid: 1186 + components: + - pos: -5.5,4.5 + parent: 3 + type: Transform + - uid: 1187 + components: + - pos: -5.5,3.5 + parent: 3 + type: Transform + - uid: 1188 + components: + - pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 1189 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 1190 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 1191 + components: + - pos: -2.5,8.5 + parent: 3 + type: Transform + - uid: 1192 + components: + - pos: -2.5,9.5 + parent: 3 + type: Transform + - uid: 1193 + components: + - pos: 0.5,20.5 + parent: 3 + type: Transform + - uid: 1194 + components: + - pos: 0.5,21.5 + parent: 3 + type: Transform + - uid: 1195 + components: + - pos: 0.5,22.5 + parent: 3 + type: Transform + - uid: 1196 + components: + - pos: 0.5,22.5 + parent: 3 + type: Transform + - uid: 1197 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - uid: 1198 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1214 + components: + - pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 1216 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform + - uid: 1217 + components: + - pos: 6.5,5.5 + parent: 3 + type: Transform + - uid: 1218 + components: + - pos: 6.5,6.5 + parent: 3 + type: Transform + - uid: 1219 + components: + - pos: 6.5,4.5 + parent: 3 + type: Transform + - uid: 1220 + components: + - pos: 6.5,4.5 + parent: 3 + type: Transform + - uid: 1221 + components: + - pos: 6.5,3.5 + parent: 3 + type: Transform + - uid: 1257 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 1300 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 1301 + components: + - pos: 1.5,-5.5 + parent: 3 + type: Transform + - uid: 1302 + components: + - pos: 0.5,-5.5 + parent: 3 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 1549 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 3 + type: Transform + - uid: 1550 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 3 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 3 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 3 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 3 + type: Transform +- proto: ChemistryEmptyBottle01 + entities: + - uid: 1532 + components: + - name: bottle (Artifexium) + type: MetaData + - rot: 1.5707963267948966 rad + pos: 5.2801228,-1.4821787 + parent: 3 + type: Transform + - originalName: bottle + currentLabel: Artifexium + type: Label + - uid: 1533 + components: + - name: bottle (Artifexium) + type: MetaData + - rot: 1.5707963267948966 rad + pos: -4.7511272,-1.4978037 + parent: 3 + type: Transform + - originalName: bottle + currentLabel: Artifexium + type: Label +- proto: CircuitImprinter + entities: + - uid: 19 + components: + - pos: 2.5,11.5 + parent: 3 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1011 + components: + - pos: -1.5,7.5 + parent: 3 + type: Transform +- proto: ClosetL3Janitor + entities: + - uid: 1577 + components: + - pos: -2.5,5.5 + parent: 3 + type: Transform + - uid: 1578 + components: + - pos: 3.5,5.5 + parent: 3 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 1519 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1520 + components: + - pos: -0.5,-3.5 + parent: 3 + type: Transform +- proto: ClothingBackpackEngineering + entities: + - uid: 1531 + components: + - rot: -1.5707963267948966 rad + pos: 3.4341726,-2.4703193 + parent: 3 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 998 + components: + - rot: -1.5707963267948966 rad + pos: 3.7952256,-2.4230478 + parent: 3 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 1540 + components: + - rot: 3.141592653589793 rad + pos: 3.7113142,-2.5887642 + parent: 3 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 943 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 347: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource + - uid: 944 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 346: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerRadar + entities: + - uid: 58 + components: + - pos: -0.5,26.5 + parent: 3 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 735 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 3 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 53 + components: + - pos: 0.5,26.5 + parent: 3 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 46 + components: + - pos: 1.5,26.5 + parent: 3 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 1521 + components: + - pos: -0.5,19.5 + parent: 3 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateArtifactContainer + entities: + - uid: 447 + components: + - pos: -11.5,-4.5 + parent: 3 + type: Transform + - uid: 448 + components: + - pos: 12.5,-4.5 + parent: 3 + type: Transform + - uid: 1267 + components: + - pos: -1.5,9.5 + parent: 3 + type: Transform + - uid: 1268 + components: + - pos: -1.5,10.5 + parent: 3 + type: Transform + - uid: 1269 + components: + - pos: -1.5,11.5 + parent: 3 + type: Transform +- proto: CrateFunPirate + entities: + - uid: 422 + components: + - pos: 6.5,12.5 + parent: 3 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateMaterialPlasma + entities: + - uid: 1583 + components: + - pos: 1.5,3.5 + parent: 3 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 1465 + components: + - pos: 12.5,5.5 + parent: 3 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1523 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 3 + type: Transform +- proto: DisposalBend + entities: + - uid: 1586 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 3 + type: Transform + - uid: 1589 + components: + - pos: 15.5,-3.5 + parent: 3 + type: Transform + - uid: 1601 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 3 + type: Transform + - uid: 1604 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 3 + type: Transform +- proto: DisposalPipe + entities: + - uid: 1587 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 3 + type: Transform + - uid: 1588 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 3 + type: Transform + - uid: 1590 + components: + - pos: 15.5,-4.5 + parent: 3 + type: Transform + - uid: 1591 + components: + - pos: 15.5,-6.5 + parent: 3 + type: Transform + - uid: 1592 + components: + - pos: 15.5,-5.5 + parent: 3 + type: Transform + - uid: 1593 + components: + - pos: 15.5,-7.5 + parent: 3 + type: Transform + - uid: 1594 + components: + - pos: 15.5,-8.5 + parent: 3 + type: Transform + - uid: 1595 + components: + - pos: 15.5,-9.5 + parent: 3 + type: Transform + - uid: 1596 + components: + - pos: 15.5,-10.5 + parent: 3 + type: Transform + - uid: 1597 + components: + - pos: 15.5,-11.5 + parent: 3 + type: Transform + - uid: 1602 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 3 + type: Transform + - uid: 1603 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 3 + type: Transform + - uid: 1605 + components: + - pos: -14.5,-4.5 + parent: 3 + type: Transform + - uid: 1606 + components: + - pos: -14.5,-5.5 + parent: 3 + type: Transform + - uid: 1607 + components: + - pos: -14.5,-6.5 + parent: 3 + type: Transform + - uid: 1608 + components: + - pos: -14.5,-7.5 + parent: 3 + type: Transform + - uid: 1609 + components: + - pos: -14.5,-8.5 + parent: 3 + type: Transform + - uid: 1610 + components: + - pos: -14.5,-9.5 + parent: 3 + type: Transform + - uid: 1611 + components: + - pos: -14.5,-10.5 + parent: 3 + type: Transform + - uid: 1612 + components: + - pos: -14.5,-11.5 + parent: 3 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1567 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 3 + type: Transform + - uid: 1585 + components: + - pos: 12.5,-2.5 + parent: 3 + type: Transform + - uid: 1598 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 3 + type: Transform + - uid: 1600 + components: + - pos: -11.5,-2.5 + parent: 3 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1565 + components: + - pos: -11.5,-2.5 + parent: 3 + type: Transform + - uid: 1584 + components: + - pos: 12.5,-2.5 + parent: 3 + type: Transform +- proto: EmergencyLight + entities: + - uid: 1066 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 3 + type: Transform + - uid: 1067 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + type: Transform + - uid: 1068 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + type: Transform + - uid: 1069 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 3 + type: Transform + - uid: 1070 + components: + - pos: 0.5,-4.5 + parent: 3 + type: Transform + - uid: 1071 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 1072 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 1073 + components: + - pos: -0.5,7.5 + parent: 3 + type: Transform + - uid: 1074 + components: + - pos: 1.5,7.5 + parent: 3 + type: Transform + - uid: 1075 + components: + - pos: 1.5,18.5 + parent: 3 + type: Transform + - uid: 1076 + components: + - pos: -0.5,18.5 + parent: 3 + type: Transform +- proto: EncryptionKeyCommon + entities: + - uid: 1526 + components: + - flags: InContainer + type: MetaData + - parent: 1524 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedicalScience + entities: + - uid: 1525 + components: + - flags: InContainer + type: MetaData + - parent: 1524 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyTraffic + entities: + - uid: 1527 + components: + - flags: InContainer + type: MetaData + - parent: 1524 + type: Transform + - canCollide: False + type: Physics +- proto: FaxMachineShip + entities: + - uid: 1528 + components: + - pos: 7.5,8.5 + parent: 3 + type: Transform +- proto: filingCabinet + entities: + - uid: 1538 + components: + - pos: -13.5,-1.5 + parent: 3 + type: Transform + - uid: 1539 + components: + - pos: 14.5,-1.5 + parent: 3 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 81 + components: + - pos: 1.5,19.5 + parent: 3 + type: Transform + - locked: False + type: Lock +- proto: Firelock + entities: + - uid: 68 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform + - uid: 141 + components: + - pos: -11.5,1.5 + parent: 3 + type: Transform + - uid: 449 + components: + - pos: 0.5,8.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 933 + - 738 + type: DeviceNetwork + - uid: 481 + components: + - pos: 12.5,1.5 + parent: 3 + type: Transform + - uid: 483 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform + - uid: 500 + components: + - pos: 0.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - uid: 534 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1055 + type: DeviceNetwork + - uid: 1469 + components: + - pos: -8.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - uid: 1470 + components: + - pos: 9.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - uid: 1472 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1055 + type: DeviceNetwork + - uid: 1473 + components: + - pos: 2.5,-3.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 934 + type: DeviceNetwork +- proto: Floodlight + entities: + - uid: 1544 + components: + - pos: -9.498063,0.6183729 + parent: 3 + type: Transform + - uid: 1545 + components: + - pos: 10.511866,0.5871229 + parent: 3 + type: Transform + - uid: 1546 + components: + - pos: 2.512366,2.5137527 + parent: 3 + type: Transform +- proto: FloorDrain + entities: + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 343 + components: + - pos: -12.5,-6.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 396 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 648 + components: + - pos: 12.5,3.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasDualPortVentPump + entities: + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasMixer + entities: + - uid: 387 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 3 + type: Transform + - inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + type: GasMixer +- proto: GasPassiveVent + entities: + - uid: 1309 + components: + - anchored: False + pos: 6.5,14.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - canCollide: True + bodyType: Dynamic + type: Physics +- proto: GasPipeBend + entities: + - uid: 616 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 624 + components: + - pos: 2.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 626 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 3 + type: Transform + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 3 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 680 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 684 + components: + - pos: 1.5,4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 687 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 693 + components: + - pos: 7.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 696 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 703 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 745 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 752 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1051 + components: + - pos: 2.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1054 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1154 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 631 + components: + - pos: 0.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 649 + components: + - pos: 6.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 457 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 619 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 623 + components: + - pos: 2.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 627 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 628 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 629 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 634 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 638 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 640 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 641 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 642 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 643 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 650 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 651 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 652 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 654 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 657 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 658 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 664 + components: + - pos: -6.5,4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 665 + components: + - pos: -6.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 666 + components: + - pos: -6.5,2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 667 + components: + - pos: -6.5,1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 668 + components: + - pos: -6.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 675 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 677 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 679 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 681 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 682 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 694 + components: + - pos: 7.5,2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 695 + components: + - pos: 7.5,1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 702 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 704 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 705 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 706 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 708 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 709 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 710 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 711 + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 712 + components: + - rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 713 + components: + - rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 714 + components: + - rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 715 + components: + - rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 716 + components: + - rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 717 + components: + - rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 746 + components: + - pos: -1.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 747 + components: + - pos: -1.5,6.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 748 + components: + - pos: -1.5,5.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 749 + components: + - pos: -1.5,3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 750 + components: + - pos: -1.5,3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 751 + components: + - pos: -1.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 755 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 757 + components: + - pos: -5.5,1.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 760 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 761 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 762 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 763 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 765 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 768 + components: + - rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 770 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 771 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 772 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 773 + components: + - rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 774 + components: + - rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 775 + components: + - rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1038 + components: + - pos: 1.5,19.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1039 + components: + - pos: 1.5,20.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1040 + components: + - pos: 1.5,21.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1041 + components: + - pos: 1.5,22.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1042 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1043 + components: + - pos: 2.5,18.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1044 + components: + - pos: 2.5,19.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1045 + components: + - pos: 2.5,19.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1047 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1048 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1049 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1050 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1052 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1053 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 391 + components: + - pos: 0.5,-4.5 + parent: 3 + type: Transform + - uid: 620 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1160 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 3 + type: Transform + - uid: 610 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 3 + type: Transform + - uid: 1536 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 3 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 606 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 3 + type: Transform +- proto: GasVentPump + entities: + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 633 + components: + - pos: 0.5,6.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 933 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 798 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 701 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 932 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1063 + components: + - pos: 1.5,24.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 933 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 686 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 932 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 798 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1057 + components: + - pos: -0.5,24.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 1292 + components: + - pos: -0.5,-6.5 + parent: 3 + type: Transform +- proto: Grille + entities: + - uid: 1497 + components: + - pos: -1.5,24.5 + parent: 3 + type: Transform + - uid: 1498 + components: + - pos: -1.5,25.5 + parent: 3 + type: Transform + - uid: 1499 + components: + - pos: -1.5,26.5 + parent: 3 + type: Transform + - uid: 1500 + components: + - pos: -0.5,27.5 + parent: 3 + type: Transform + - uid: 1501 + components: + - pos: 0.5,27.5 + parent: 3 + type: Transform + - uid: 1502 + components: + - pos: 1.5,27.5 + parent: 3 + type: Transform + - uid: 1503 + components: + - pos: 2.5,26.5 + parent: 3 + type: Transform + - uid: 1504 + components: + - pos: 2.5,25.5 + parent: 3 + type: Transform + - uid: 1505 + components: + - pos: 2.5,24.5 + parent: 3 + type: Transform + - uid: 1506 + components: + - pos: 6.5,13.5 + parent: 3 + type: Transform + - uid: 1507 + components: + - pos: 12.5,-5.5 + parent: 3 + type: Transform + - uid: 1508 + components: + - pos: 14.5,-5.5 + parent: 3 + type: Transform + - uid: 1509 + components: + - pos: 8.5,-3.5 + parent: 3 + type: Transform + - uid: 1510 + components: + - pos: 6.5,-3.5 + parent: 3 + type: Transform + - uid: 1511 + components: + - pos: -5.5,-3.5 + parent: 3 + type: Transform + - uid: 1512 + components: + - pos: -7.5,-3.5 + parent: 3 + type: Transform + - uid: 1513 + components: + - pos: -11.5,-5.5 + parent: 3 + type: Transform + - uid: 1514 + components: + - pos: -13.5,-5.5 + parent: 3 + type: Transform +- proto: Gyroscope + entities: + - uid: 963 + components: + - pos: 0.5,-6.5 + parent: 3 + type: Transform + - uid: 1294 + components: + - pos: 1.5,-6.5 + parent: 3 + type: Transform +- proto: HandLabeler + entities: + - uid: 1566 + components: + - rot: 1.5707963267948966 rad + pos: -4.120806,-1.5464296 + parent: 3 + type: Transform + - uid: 1568 + components: + - rot: 1.5707963267948966 rad + pos: 5.9039626,-1.5151796 + parent: 3 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 957 + components: + - pos: 2.5,13.5 + parent: 3 + type: Transform +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 6 + components: + - pos: -0.5,22.5 + parent: 3 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 997 + components: + - pos: 2.5,0.5 + parent: 3 + type: Transform +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 57 + components: + - pos: 1.5,22.5 + parent: 3 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 1581 + components: + - pos: -4.5,1.5 + parent: 3 + type: Transform + - uid: 1582 + components: + - pos: 5.5,1.5 + parent: 3 + type: Transform +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 1518 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 3 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MachineAnomalyGenerator + entities: + - uid: 1557 + components: + - pos: 0.5,4.5 + parent: 3 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 392 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 3 + type: Transform + - uid: 393 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 3 + type: Transform +- proto: MachineAPE + entities: + - uid: 153 + components: + - name: Left A.P.E + type: MetaData + - anchored: False + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 3 + type: Transform + - powerLoad: 1 + type: ApcPowerReceiver + - links: + - 83 + type: DeviceLinkSink + - bodyType: Dynamic + type: Physics + - uid: 216 + components: + - name: Left A.P.E + type: MetaData + - anchored: False + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 3 + type: Transform + - powerLoad: 1 + type: ApcPowerReceiver + - links: + - 82 + type: DeviceLinkSink + - bodyType: Dynamic + type: Physics +- proto: MachineArtifactAnalyzer + entities: + - uid: 346 + components: + - pos: 13.5,-7.5 + parent: 3 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 347 + components: + - pos: -12.5,-7.5 + parent: 3 + type: Transform + - links: + - 943 + type: DeviceLinkSink +- proto: MachineCryoSleepPod + entities: + - uid: 1000 + components: + - pos: -11.5,5.5 + parent: 3 + type: Transform +- proto: MopBucketFull + entities: + - uid: 1468 + components: + - pos: 12.462342,3.6039221 + parent: 3 + type: Transform +- proto: MopItem + entities: + - uid: 1467 + components: + - pos: 12.527638,3.503134 + parent: 3 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 611 + components: + - anchored: True + pos: -0.5,-5.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: OxygenCanister + entities: + - uid: 608 + components: + - anchored: True + pos: -1.5,-4.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: Paper + entities: + - uid: 1530 + components: + - flags: InContainer + type: MetaData + - parent: 1529 + type: Transform + - canCollide: False + type: Physics +- proto: PaperBin10 + entities: + - uid: 1529 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 3 + type: Transform + - items: + - 1530 + type: Bin + - containers: + bin-container: !type:Container + showEnts: False + occludes: True + ents: + - 1530 + type: ContainerContainer +- proto: PortableScrubber + entities: + - uid: 1537 + components: + - pos: -1.5,2.5 + parent: 3 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 1022 + components: + - pos: -13.5,0.5 + parent: 3 + type: Transform +- proto: PosterLegitEatMeat + entities: + - uid: 1059 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 3 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 991 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 3 + type: Transform + - uid: 992 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 3 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 1575 + components: + - pos: -2.5,6.5 + parent: 3 + type: Transform + - uid: 1576 + components: + - pos: 3.5,6.5 + parent: 3 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + type: Transform +- proto: Poweredlight + entities: + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 3 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 3 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 3 + type: Transform + - uid: 1089 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 3 + type: Transform + - uid: 1090 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 3 + type: Transform + - uid: 1091 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 3 + type: Transform + - uid: 1092 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 3 + type: Transform + - uid: 1095 + components: + - pos: -10.5,0.5 + parent: 3 + type: Transform + - uid: 1096 + components: + - pos: 11.5,0.5 + parent: 3 + type: Transform + - uid: 1097 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 3 + type: Transform + - uid: 1098 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 3 + type: Transform + - uid: 1099 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 3 + type: Transform + - uid: 1100 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 3 + type: Transform + - uid: 1102 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 3 + type: Transform + - uid: 1103 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 3 + type: Transform + - uid: 1105 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 3 + type: Transform + - uid: 1106 + components: + - pos: -0.5,-4.5 + parent: 3 + type: Transform + - uid: 1107 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 1108 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 3 + type: Transform + - uid: 1109 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 3 + type: Transform + - uid: 1163 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 3 + type: Transform + - uid: 1164 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 3 + type: Transform + - uid: 1165 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 3 + type: Transform + - uid: 1166 + components: + - pos: 12.5,5.5 + parent: 3 + type: Transform + - uid: 1167 + components: + - pos: -11.5,5.5 + parent: 3 + type: Transform + - uid: 1168 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 3 + type: Transform + - uid: 1169 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 3 + type: Transform + - uid: 1170 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 3 + type: Transform + - uid: 1171 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 3 + type: Transform + - uid: 1172 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 3 + type: Transform + - uid: 1173 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 3 + type: Transform + - uid: 1174 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 3 + type: Transform + - uid: 1175 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 3 + type: Transform + - uid: 1176 + components: + - pos: -5.5,12.5 + parent: 3 + type: Transform + - uid: 1177 + components: + - pos: 6.5,12.5 + parent: 3 + type: Transform + - uid: 1178 + components: + - pos: -0.5,22.5 + parent: 3 + type: Transform + - uid: 1547 + components: + - pos: -0.5,7.5 + parent: 3 + type: Transform + - uid: 1569 + components: + - pos: 1.5,7.5 + parent: 3 + type: Transform + - uid: 1570 + components: + - pos: -6.5,6.5 + parent: 3 + type: Transform + - uid: 1571 + components: + - pos: 7.5,6.5 + parent: 3 + type: Transform +- proto: Protolathe + entities: + - uid: 946 + components: + - pos: 2.5,9.5 + parent: 3 + type: Transform +- proto: Rack + entities: + - uid: 1 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 3 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 3 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 3 + type: Transform + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 3 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 3 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 541 + components: + - pos: -0.5,14.5 + parent: 3 + type: Transform + - uid: 542 + components: + - pos: -0.5,15.5 + parent: 3 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 80 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 3 + type: Transform +- proto: RandomInstruments + entities: + - uid: 1572 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 3 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 950 + components: + - pos: 2.5,18.5 + parent: 3 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 951 + components: + - pos: -1.5,18.5 + parent: 3 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 3 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 3 + type: Transform + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 3 + type: Transform + - uid: 338 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 3 + type: Transform + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 3 + type: Transform + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 3 + type: Transform + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 3 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 3 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 3 + type: Transform + - uid: 431 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 3 + type: Transform + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 3 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 3 + type: Transform + - uid: 737 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 3 + type: Transform + - uid: 942 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 3 + type: Transform + - uid: 1344 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 3 + type: Transform + - uid: 1376 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 3 + type: Transform + - uid: 1412 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 3 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 82 + components: + - name: Left APE controller + type: MetaData + - pos: 5.5852942,-1.4258032 + parent: 3 + type: Transform + - linkedPorts: + 216: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 83 + components: + - name: Left APE controller + type: MetaData + - pos: -4.453634,-1.4258032 + parent: 3 + type: Transform + - linkedPorts: + 153: + - Pressed: Toggle + type: DeviceLinkSource +- proto: ResearchAndDevelopmentServer + entities: + - uid: 941 + components: + - pos: -6.5,9.5 + parent: 3 + type: Transform +- proto: SignalButton + entities: + - uid: 369 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 395: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 370 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 3 + type: Transform + - linkedPorts: + 333: + - Pressed: Toggle + 348: + - Pressed: Toggle + 349: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 3 + type: Transform + - linkedPorts: + 350: + - Pressed: Toggle + 351: + - Pressed: Toggle + 352: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 3 + type: Transform + - linkedPorts: + 42: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 374 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 3 + type: Transform + - linkedPorts: + 353: + - Pressed: Toggle + 354: + - Pressed: Toggle + 355: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 389: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 376 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 3 + type: Transform + - linkedPorts: + 358: + - Pressed: Toggle + 357: + - Pressed: Toggle + 356: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 3 + type: Transform + - linkedPorts: + 388: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 1558 + components: + - pos: -3.5,5.5 + parent: 3 + type: Transform + - uid: 1559 + components: + - pos: 4.5,5.5 + parent: 3 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 3 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 3 + type: Transform +- proto: SignDanger + entities: + - uid: 1560 + components: + - pos: -3.5,3.5 + parent: 3 + type: Transform + - uid: 1561 + components: + - pos: 4.5,3.5 + parent: 3 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 1270 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 3 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 1017 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 3 + type: Transform +- proto: SignDirectionalCryo + entities: + - uid: 955 + components: + - pos: -1.5,8.5 + parent: 3 + type: Transform + - uid: 1012 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 3 + type: Transform + - uid: 1056 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 3 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 994 + components: + - pos: 1.5,8.5 + parent: 3 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 1466 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 3 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 970 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 1291 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 1599 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 3 + type: Transform +- proto: SignEngine + entities: + - uid: 1058 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 3 + type: Transform +- proto: SignEngineering + entities: + - uid: 993 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 3 + type: Transform +- proto: SignMedical + entities: + - uid: 1517 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 3 + type: Transform +- proto: SinkWide + entities: + - uid: 676 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 3 + type: Transform +- proto: SMESBasic + entities: + - uid: 488 + components: + - pos: 3.5,-0.5 + parent: 3 + type: Transform +- proto: soda_dispenser + entities: + - uid: 1286 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 3 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 1271 + components: + - pos: -1.5,13.5 + parent: 3 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 1339 + components: + - pos: -11.5,4.5 + parent: 3 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 1288 + components: + - pos: 0.5,20.5 + parent: 3 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 1579 + components: + - pos: -12.5,-2.5 + parent: 3 + type: Transform + - uid: 1580 + components: + - pos: 13.5,-2.5 + parent: 3 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 543 + components: + - pos: 2.5,-0.5 + parent: 3 + type: Transform +- proto: StoolBar + entities: + - uid: 1272 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 1273 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 3 + type: Transform + - uid: 1274 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 3 + type: Transform +- proto: SubstationBasic + entities: + - uid: 490 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 3 + type: Transform + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 3 + type: Transform + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + type: Transform + - uid: 450 + components: + - pos: 7.5,9.5 + parent: 3 + type: Transform + - uid: 451 + components: + - pos: 7.5,8.5 + parent: 3 + type: Transform + - uid: 954 + components: + - pos: 2.5,12.5 + parent: 3 + type: Transform + - uid: 956 + components: + - pos: 2.5,13.5 + parent: 3 + type: Transform +- proto: TableCounterWood + entities: + - uid: 1275 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 3 + type: Transform + - uid: 1276 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 3 + type: Transform + - uid: 1277 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 3 + type: Transform + - uid: 1278 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 3 + type: Transform + - uid: 1279 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 3 + type: Transform + - uid: 1280 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 3 + type: Transform + - uid: 1281 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 3 + type: Transform +- proto: TelecomServer + entities: + - uid: 1524 + components: + - pos: -5.5,12.5 + parent: 3 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 1525 + - 1526 + - 1527 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: Thruster + entities: + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 3 + type: Transform + - uid: 59 + components: + - pos: 3.5,20.5 + parent: 3 + type: Transform + - uid: 70 + components: + - pos: 6.5,17.5 + parent: 3 + type: Transform + - uid: 74 + components: + - pos: 12.5,10.5 + parent: 3 + type: Transform + - uid: 217 + components: + - pos: 10.5,2.5 + parent: 3 + type: Transform + - uid: 326 + components: + - pos: -11.5,10.5 + parent: 3 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 3 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 3 + type: Transform + - uid: 329 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 3 + type: Transform + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 3 + type: Transform + - uid: 335 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 3 + type: Transform + - uid: 344 + components: + - pos: -2.5,20.5 + parent: 3 + type: Transform + - uid: 377 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 3 + type: Transform + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 3 + type: Transform + - uid: 381 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 3 + type: Transform + - uid: 383 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 3 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 3 + type: Transform + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 3 + type: Transform + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 3 + type: Transform + - uid: 540 + components: + - pos: -5.5,17.5 + parent: 3 + type: Transform + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 3 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 3 + type: Transform + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 3 + type: Transform + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 3 + type: Transform + - uid: 552 + components: + - pos: -9.5,2.5 + parent: 3 + type: Transform +- proto: ToyAi + entities: + - uid: 1562 + components: + - pos: 0.49317026,4.358873 + parent: 3 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 1574 + components: + - pos: 1.5,7.5 + parent: 3 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 1573 + components: + - pos: -0.5,7.5 + parent: 3 + type: Transform +- proto: WallReinforced + entities: + - uid: 5 + components: + - pos: -16.5,0.5 + parent: 3 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 3 + type: Transform + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 3 + type: Transform + - uid: 17 + components: + - pos: -10.5,-4.5 + parent: 3 + type: Transform + - uid: 24 + components: + - pos: 16.5,0.5 + parent: 3 + type: Transform + - uid: 26 + components: + - pos: 16.5,-3.5 + parent: 3 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 3 + type: Transform + - uid: 51 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 3 + type: Transform + - uid: 54 + components: + - pos: 15.5,0.5 + parent: 3 + type: Transform + - uid: 55 + components: + - pos: 17.5,0.5 + parent: 3 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 3 + type: Transform + - uid: 60 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 3 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 71 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 3 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 3 + type: Transform + - uid: 78 + components: + - pos: 17.5,-3.5 + parent: 3 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 3 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 3 + type: Transform + - uid: 88 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 3 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 3 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 3 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 3 + type: Transform + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 3 + type: Transform + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 3 + type: Transform + - uid: 95 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 3 + type: Transform + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 3 + type: Transform + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 3 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 3 + type: Transform + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 3 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 3 + type: Transform + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 3 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 3 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,22.5 + parent: 3 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 3 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 3 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 116 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 3 + type: Transform + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 3 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 3 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 3 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 3 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 3 + type: Transform + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 3 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 3 + type: Transform + - uid: 124 + components: + - pos: 5.5,10.5 + parent: 3 + type: Transform + - uid: 125 + components: + - pos: 5.5,9.5 + parent: 3 + type: Transform + - uid: 126 + components: + - pos: 7.5,10.5 + parent: 3 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 3 + type: Transform + - uid: 128 + components: + - pos: 7.5,12.5 + parent: 3 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 3 + type: Transform + - uid: 130 + components: + - pos: 7.5,11.5 + parent: 3 + type: Transform + - uid: 132 + components: + - pos: 5.5,11.5 + parent: 3 + type: Transform + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 3 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 3 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 3 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 3 + type: Transform + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 3 + type: Transform + - uid: 138 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 3 + type: Transform + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 3 + type: Transform + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 3 + type: Transform + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 3 + type: Transform + - uid: 143 + components: + - pos: 11.5,5.5 + parent: 3 + type: Transform + - uid: 144 + components: + - pos: 11.5,4.5 + parent: 3 + type: Transform + - uid: 145 + components: + - pos: 11.5,2.5 + parent: 3 + type: Transform + - uid: 146 + components: + - pos: 11.5,3.5 + parent: 3 + type: Transform + - uid: 147 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 3 + type: Transform + - uid: 149 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 3 + type: Transform + - uid: 150 + components: + - pos: 13.5,5.5 + parent: 3 + type: Transform + - uid: 151 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 3 + type: Transform + - uid: 152 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 3 + type: Transform + - uid: 154 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 3 + type: Transform + - uid: 155 + components: + - pos: 13.5,4.5 + parent: 3 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 3 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 3 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 3 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 3 + type: Transform + - uid: 161 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 3 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 3 + type: Transform + - uid: 163 + components: + - pos: 15.5,-1.5 + parent: 3 + type: Transform + - uid: 164 + components: + - pos: 15.5,-3.5 + parent: 3 + type: Transform + - uid: 165 + components: + - pos: 15.5,-4.5 + parent: 3 + type: Transform + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 3 + type: Transform + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 3 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 3 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 3 + type: Transform + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 3 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 3 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 3 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 3 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 3 + type: Transform + - uid: 176 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 3 + type: Transform + - uid: 178 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 3 + type: Transform + - uid: 179 + components: + - pos: 11.5,-4.5 + parent: 3 + type: Transform + - uid: 180 + components: + - pos: 11.5,-3.5 + parent: 3 + type: Transform + - uid: 181 + components: + - pos: 2.5,-5.5 + parent: 3 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 3 + type: Transform + - uid: 183 + components: + - pos: 3.5,-4.5 + parent: 3 + type: Transform + - uid: 184 + components: + - pos: 2.5,-6.5 + parent: 3 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 3 + type: Transform + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 3 + type: Transform + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 3 + type: Transform + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 3 + type: Transform + - uid: 189 + components: + - pos: -2.5,-4.5 + parent: 3 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-9.5 + parent: 3 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 3 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 3 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 3 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 3 + type: Transform + - uid: 196 + components: + - pos: -1.5,-5.5 + parent: 3 + type: Transform + - uid: 197 + components: + - pos: -1.5,-6.5 + parent: 3 + type: Transform + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 3 + type: Transform + - uid: 199 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 3 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 3 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 3 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 3 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 3 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 3 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 3 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 3 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 3 + type: Transform + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 3 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 3 + type: Transform + - uid: 213 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 3 + type: Transform + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 3 + type: Transform + - uid: 215 + components: + - pos: 10.5,-2.5 + parent: 3 + type: Transform + - uid: 219 + components: + - pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 3 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 3 + type: Transform + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 3 + type: Transform + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 3 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 3 + type: Transform + - uid: 225 + components: + - pos: 8.5,8.5 + parent: 3 + type: Transform + - uid: 227 + components: + - pos: 8.5,9.5 + parent: 3 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 3 + type: Transform + - uid: 229 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 3 + type: Transform + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 3 + type: Transform + - uid: 231 + components: + - pos: -4.5,11.5 + parent: 3 + type: Transform + - uid: 232 + components: + - pos: -4.5,10.5 + parent: 3 + type: Transform + - uid: 233 + components: + - pos: -4.5,12.5 + parent: 3 + type: Transform + - uid: 235 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 3 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 3 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 3 + type: Transform + - uid: 240 + components: + - pos: -6.5,12.5 + parent: 3 + type: Transform + - uid: 241 + components: + - pos: -6.5,11.5 + parent: 3 + type: Transform + - uid: 242 + components: + - pos: -6.5,10.5 + parent: 3 + type: Transform + - uid: 243 + components: + - pos: -7.5,8.5 + parent: 3 + type: Transform + - uid: 245 + components: + - pos: -7.5,9.5 + parent: 3 + type: Transform + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 3 + type: Transform + - uid: 247 + components: + - pos: -10.5,3.5 + parent: 3 + type: Transform + - uid: 248 + components: + - pos: -7.5,3.5 + parent: 3 + type: Transform + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 250 + components: + - pos: -7.5,4.5 + parent: 3 + type: Transform + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 3 + type: Transform + - uid: 252 + components: + - pos: -7.5,6.5 + parent: 3 + type: Transform + - uid: 253 + components: + - pos: -7.5,5.5 + parent: 3 + type: Transform + - uid: 254 + components: + - pos: -12.5,4.5 + parent: 3 + type: Transform + - uid: 255 + components: + - pos: -12.5,5.5 + parent: 3 + type: Transform + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 3 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 3 + type: Transform + - uid: 258 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 3 + type: Transform + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 3 + type: Transform + - uid: 260 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 3 + type: Transform + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,6.5 + parent: 3 + type: Transform + - uid: 262 + components: + - pos: -10.5,4.5 + parent: 3 + type: Transform + - uid: 263 + components: + - pos: -10.5,5.5 + parent: 3 + type: Transform + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 3 + type: Transform + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 3 + type: Transform + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 3 + type: Transform + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 3 + type: Transform + - uid: 270 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 3 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 3 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 3 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 3 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 3 + type: Transform + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 3 + type: Transform + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 3 + type: Transform + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 3 + type: Transform + - uid: 278 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 3 + type: Transform + - uid: 279 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 3 + type: Transform + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 3 + type: Transform + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 3 + type: Transform + - uid: 283 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 3 + type: Transform + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 3 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 3 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 3 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 3 + type: Transform + - uid: 289 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 3 + type: Transform + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 3 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 3 + type: Transform + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 3 + type: Transform + - uid: 294 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 3 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 3 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 3 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 3 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 3 + type: Transform + - uid: 300 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 3 + type: Transform + - uid: 303 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 3 + type: Transform + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 3 + type: Transform + - uid: 306 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 3 + type: Transform + - uid: 307 + components: + - pos: -8.5,2.5 + parent: 3 + type: Transform + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 3 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 3 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 3 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 3 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 3 + type: Transform + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 3 + type: Transform + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 3 + type: Transform + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 3 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 3 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 3 + type: Transform + - uid: 319 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 3 + type: Transform + - uid: 320 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 3 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 3 + type: Transform + - uid: 362 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 3 + type: Transform + - uid: 364 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 3 + type: Transform + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 3 + type: Transform + - uid: 371 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 3 + type: Transform + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 3 + type: Transform + - uid: 380 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 3 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 3 + type: Transform + - uid: 414 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 3 + type: Transform + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 3 + type: Transform + - uid: 424 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 3 + type: Transform + - uid: 426 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 3 + type: Transform + - uid: 430 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 3 + type: Transform + - uid: 432 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 3 + type: Transform + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 3 + type: Transform + - uid: 435 + components: + - pos: -11.5,6.5 + parent: 3 + type: Transform + - uid: 436 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 3 + type: Transform + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 3 + type: Transform + - uid: 441 + components: + - pos: 12.5,6.5 + parent: 3 + type: Transform + - uid: 442 + components: + - pos: -4.5,9.5 + parent: 3 + type: Transform + - uid: 443 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 3 + type: Transform + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 3 + type: Transform + - uid: 474 + components: + - pos: 9.5,-4.5 + parent: 3 + type: Transform + - uid: 518 + components: + - rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 3 + type: Transform + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 3 + type: Transform + - uid: 550 + components: + - pos: 5.5,-3.5 + parent: 3 + type: Transform + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 3 + type: Transform + - uid: 565 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 3 + type: Transform + - uid: 567 + components: + - pos: -4.5,15.5 + parent: 3 + type: Transform + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 3 + type: Transform + - uid: 599 + components: + - pos: 5.5,12.5 + parent: 3 + type: Transform + - uid: 720 + components: + - pos: 17.5,-1.5 + parent: 3 + type: Transform + - uid: 726 + components: + - pos: 4.5,-3.5 + parent: 3 + type: Transform + - uid: 729 + components: + - pos: -15.5,0.5 + parent: 3 + type: Transform + - uid: 730 + components: + - pos: -14.5,0.5 + parent: 3 + type: Transform + - uid: 953 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 3 + type: Transform + - uid: 1307 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 3 + type: Transform +- proto: WallSolid + entities: + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 3 + type: Transform + - uid: 20 + components: + - pos: -12.5,9.5 + parent: 3 + type: Transform + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 3 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 3 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 3 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 3 + type: Transform + - uid: 85 + components: + - pos: -1.5,1.5 + parent: 3 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 3 + type: Transform + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 3 + type: Transform + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 3 + type: Transform + - uid: 200 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 3 + type: Transform + - uid: 234 + components: + - pos: -5.5,13.5 + parent: 3 + type: Transform + - uid: 290 + components: + - pos: -3.5,1.5 + parent: 3 + type: Transform + - uid: 345 + components: + - pos: 4.5,-1.5 + parent: 3 + type: Transform + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 3 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 3 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 3 + type: Transform + - uid: 402 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 403 + components: + - pos: -3.5,-2.5 + parent: 3 + type: Transform + - uid: 404 + components: + - pos: 4.5,-2.5 + parent: 3 + type: Transform + - uid: 405 + components: + - pos: 3.5,0.5 + parent: 3 + type: Transform + - uid: 406 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 3 + type: Transform + - uid: 407 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 3 + type: Transform + - uid: 409 + components: + - pos: -3.5,-1.5 + parent: 3 + type: Transform + - uid: 410 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 411 + components: + - pos: 2.5,1.5 + parent: 3 + type: Transform + - uid: 412 + components: + - pos: 3.5,1.5 + parent: 3 + type: Transform + - uid: 413 + components: + - pos: -3.5,-0.5 + parent: 3 + type: Transform + - uid: 417 + components: + - pos: -3.5,0.5 + parent: 3 + type: Transform + - uid: 425 + components: + - pos: -0.5,23.5 + parent: 3 + type: Transform + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 3 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 3 + type: Transform + - uid: 434 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 3 + type: Transform + - uid: 456 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 3 + type: Transform + - uid: 462 + components: + - pos: -12.5,1.5 + parent: 3 + type: Transform + - uid: 463 + components: + - pos: 4.5,-0.5 + parent: 3 + type: Transform + - uid: 464 + components: + - pos: 4.5,0.5 + parent: 3 + type: Transform + - uid: 486 + components: + - pos: -6.5,7.5 + parent: 3 + type: Transform + - uid: 594 + components: + - pos: 13.5,1.5 + parent: 3 + type: Transform + - uid: 596 + components: + - pos: 7.5,7.5 + parent: 3 + type: Transform + - uid: 603 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 604 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform + - uid: 935 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 936 + components: + - pos: -1.5,8.5 + parent: 3 + type: Transform + - uid: 937 + components: + - pos: 2.5,8.5 + parent: 3 + type: Transform + - uid: 938 + components: + - pos: 1.5,8.5 + parent: 3 + type: Transform + - uid: 958 + components: + - pos: -3.5,5.5 + parent: 3 + type: Transform + - uid: 960 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 3 + type: Transform + - uid: 1065 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 3 + type: Transform + - uid: 1093 + components: + - pos: 4.5,2.5 + parent: 3 + type: Transform + - uid: 1094 + components: + - pos: -3.5,2.5 + parent: 3 + type: Transform + - uid: 1110 + components: + - pos: 4.5,3.5 + parent: 3 + type: Transform + - uid: 1111 + components: + - pos: 4.5,6.5 + parent: 3 + type: Transform + - uid: 1289 + components: + - pos: -3.5,3.5 + parent: 3 + type: Transform + - uid: 1290 + components: + - pos: 4.5,5.5 + parent: 3 + type: Transform + - uid: 1548 + components: + - pos: -3.5,6.5 + parent: 3 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 3 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 3 + type: Transform + - uid: 41 + components: + - pos: -1.5,29.5 + parent: 3 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 3 + type: Transform + - uid: 461 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 3 + type: Transform + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 3 + type: Transform + - uid: 469 + components: + - pos: -13.5,3.5 + parent: 3 + type: Transform + - uid: 471 + components: + - pos: -3.5,8.5 + parent: 3 + type: Transform + - uid: 472 + components: + - pos: -6.5,17.5 + parent: 3 + type: Transform + - uid: 477 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 3 + type: Transform + - uid: 479 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 3 + type: Transform + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 3 + type: Transform + - uid: 484 + components: + - pos: -7.5,10.5 + parent: 3 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 3 + type: Transform + - uid: 537 + components: + - pos: -15.5,1.5 + parent: 3 + type: Transform + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 3 + type: Transform + - uid: 539 + components: + - pos: -14.5,2.5 + parent: 3 + type: Transform + - uid: 553 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 3 + type: Transform + - uid: 559 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 3 + type: Transform + - uid: 560 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 3 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 3 + type: Transform + - uid: 562 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 3 + type: Transform + - uid: 563 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 3 + type: Transform + - uid: 593 + components: + - pos: -12.5,10.5 + parent: 3 + type: Transform +- proto: WarpPointShip + entities: + - uid: 4 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform +- proto: WaterTankFull + entities: + - uid: 21 + components: + - pos: -12.5,0.5 + parent: 3 + type: Transform + - uid: 961 + components: + - anchored: True + pos: 2.5,7.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics + - uid: 1003 + components: + - anchored: True + pos: 2.5,14.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics + - uid: 1515 + components: + - pos: 13.5,0.5 + parent: 3 + type: Transform +- proto: Windoor + entities: + - uid: 1285 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 3 + type: Transform +- proto: Window + entities: + - uid: 1204 + components: + - pos: 6.5,13.5 + parent: 3 + type: Transform +... diff --git a/Resources/Maps/Shuttles/wasp.yml b/Resources/Maps/Shuttles/wasp.yml index 2d0ca3cecb9..c80d5fbf78f 100644 --- a/Resources/Maps/Shuttles/wasp.yml +++ b/Resources/Maps/Shuttles/wasp.yml @@ -9701,7 +9701,7 @@ entities: entities: - uid: 1776 components: - - pos: 0.5,6.5 + - pos: 0.5,-17.5 parent: 1 type: Transform - proto: SpawnPointPrisonGuard diff --git a/Resources/Maps/anomalouslab.yml b/Resources/Maps/anomalouslab.yml index 22feaea5363..95aa2edbf3c 100644 --- a/Resources/Maps/anomalouslab.yml +++ b/Resources/Maps/anomalouslab.yml @@ -4891,6 +4891,8 @@ entities: - pos: 15.5,3.5 parent: 1 type: Transform + - name: Anomalous Lab + type: FaxMachine - delay: 999999 type: Anchorable - proto: Firelock diff --git a/Resources/Maps/beacon.yml b/Resources/Maps/beacon.yml new file mode 100644 index 00000000000..416b8233806 --- /dev/null +++ b/Resources/Maps/beacon.yml @@ -0,0 +1,8987 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 24: FloorConcrete + 25: FloorConcreteMono + 27: FloorDark + 69: FloorPlanetGrass + 71: FloorRGlass + 81: FloorSilver + 84: FloorSteel + 86: FloorSteelCheckerLight + 97: FloorTechMaint2 + 101: FloorWhiteDiagonal + 103: FloorWhiteHerringbone + 105: FloorWhiteMono + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.51562405,-0.4921837 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: UQAAAAAAaQAAAAACbwAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAARQAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAUQAAAAAAaQAAAAABbwAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAAAcQAAAAAARQAAAAABcQAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAaQAAAAADBwAAAAAABwAAAAAJbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGAAAAAABRQAAAAACBwAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAABGQAAAAAARQAAAAADRQAAAAAARQAAAAABRQAAAAABRQAAAAADRQAAAAABRQAAAAAARQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAACGQAAAAABRQAAAAADRQAAAAADRQAAAAADRQAAAAACRQAAAAAARQAAAAABRQAAAAADRQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABRQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAABBwAAAAAABwAAAAAEAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: RQAAAAABRQAAAAACRQAAAAACRQAAAAAARQAAAAABRQAAAAAARQAAAAADRQAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAADbwAAAAADaQAAAAADBwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAcQAAAAAABwAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbwAAAAACaQAAAAACAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAADBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABBwAAAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAKBwAAAAACBwAAAAAARQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHcQAAAAAARQAAAAABRQAAAAAARQAAAAAARQAAAAADRQAAAAADRQAAAAACRQAAAAADGQAAAAACRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAARQAAAAACRQAAAAADRQAAAAABRQAAAAABRQAAAAACRQAAAAAARQAAAAACGQAAAAACRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAARQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAcQAAAAAARQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJRQAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: RQAAAAAARQAAAAAARQAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAADRQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAARQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGAAAAAACRQAAAAADBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACRQAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAACRQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABRQAAAAADRQAAAAAARQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAAARQAAAAAARQAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAJBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAABRQAAAAAARQAAAAADRQAAAAABRQAAAAADRQAAAAABRQAAAAAARQAAAAAARQAAAAAARQAAAAACcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAADRQAAAAACRQAAAAADRQAAAAABRQAAAAABRQAAAAADRQAAAAACRQAAAAAARQAAAAADRQAAAAACcQAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGQAAAAACBwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAACVgAAAAABcQAAAAAARQAAAAADcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAABBwAAAAAABwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAADVgAAAAAAcQAAAAAARQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAACbwAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABcQAAAAAAVgAAAAABcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAADbwAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADcQAAAAAARQAAAAABcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAbwAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAACcQAAAAAARQAAAAABcQAAAAAABwAAAAAMBwAAAAAJBwAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAABRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAACRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARQAAAAABGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAABGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGRQAAAAACRQAAAAABRQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIcQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAARQAAAAABRQAAAAADRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAACRQAAAAABRQAAAAADRQAAAAADRQAAAAAARQAAAAACRQAAAAAARQAAAAACRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAARQAAAAADRQAAAAABRQAAAAACRQAAAAABRQAAAAAARQAAAAADRQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAGQAAAAABAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAACcQAAAAAAZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAABBwAAAAAAGQAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACRQAAAAAAcQAAAAAAZwAAAAACbgAAAAAAbgAAAAAAbgAAAAABZwAAAAABBwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADcQAAAAAAZwAAAAABbgAAAAABbgAAAAADbgAAAAADZwAAAAACbwAAAAACaQAAAAACRQAAAAACRQAAAAACRQAAAAACRQAAAAABRQAAAAAARQAAAAADRQAAAAADRQAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbwAAAAABaQAAAAABGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbwAAAAAAUQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAADRQAAAAABRQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAADRQAAAAADRQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAABRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAADRQAAAAAB + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAARQAAAAADRQAAAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACcQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAB + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAABZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAADRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: GAAAAAAAGAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAADZQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACZQAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABZQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAACZQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 131: 11,-8 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 193: 9.939519,1.252021 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 194: -8.919856,3.8475733 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 195: -5.091731,5.614425 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 191: -4.669856,-7.0037127 + 192: 6.345769,5.3329797 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 132: 10,0 + 137: -1,14 + 190: -7.388606,-7.472789 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 125: -24,-3 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 126: -24,1 + 128: 5,-4 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 120: -21,-1 + 121: -24,-1 + 127: -22,-2 + 129: 6,-4 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 122: -24,1 + 123: -26,0 + 124: -25,-3 + 130: 3,-4 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 97: 1,13 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 196: 7.220769,5.4893384 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 101: 1,7 + 102: 6,-7 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 98: -6,6 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 99: 5,5 + 103: -1,-9 + 104: 1,-15 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 100: -2,6 + 107: -18,-2 + 198: 10.064519,-1.5780705 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 105: -5,-7 + 106: -13,0 + 108: -15,-2 + 197: 10.017644,1.8618193 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 109: -12,-2 + 110: -1,3 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 111: 1,11 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 119: 1,15 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 116: -14,0 + 199: 9.986394,-3.4231005 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 114: 1,-6 + 115: -6,-8 + 117: -1,5 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 112: 9,-2 + 113: 2,-8 + 118: -1,11 + 200: 7.798894,-7.2226152 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 84: 5,6 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 85: -3,5 + 201: 8.923894,-7.6916914 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 86: -10,0 + 202: 8.877019,5.192257 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 87: -9,-6 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 92: 1,-18 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 88: -15,0 + 89: -10,-2 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 90: 4,-8 + 91: -1,-18 + 93: -5,-8 + 94: 9,1 + 95: 3,6 + 96: -1,13 + 203: -8.013606,-7.1913424 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 34: -1,15 + 35: 1,12 + 36: 1,9 + 37: 3,5 + 38: -4,6 + 39: -7,5 + 40: -9,2 + 41: -13,-2 + 42: -18,0 + 43: -9,-5 + 44: -7,-8 + 45: -1,-7 + 46: 1,-8 + 47: 1,-16 + 48: 5,-7 + 49: 9,-5 + 50: 9,2 + 51: 8,5 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 52: 6,-8 + 53: -1,-6 + 54: -6,-7 + 55: -12,0 + 56: -6,5 + 57: -1,10 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 58: -1,12 + 59: 6,6 + 60: 1,4 + 61: -5,5 + 62: -16,-2 + 63: -2,-8 + 64: -1,-15 + 65: 3,-9 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 66: 4,6 + 67: -1,7 + 68: -2,5 + 69: -16,0 + 70: -9,-4 + 71: -3,-8 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 72: -4,-8 + 73: 7,-7 + 74: -11,0 + 75: -9,3 + 76: 1,10 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 77: -1,-10 + 78: -4,-7 + 79: 9,-4 + 80: -9,0 + 81: 2,6 + 82: -1,9 + 83: 7,5 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 153: -1,-14 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNw + decals: + 150: 1,-14 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSe + decals: + 151: -1,-12 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSw + decals: + 152: 1,-12 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 146: -1,-13 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 149: 0,-14 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 148: 0,-12 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineW + decals: + 147: 1,-13 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNe + decals: + 218: -2,18 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNw + decals: + 219: 2,18 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSe + decals: + 216: -2,22 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSw + decals: + 217: 2,22 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 207: -2,21 + 208: -2,20 + 209: -2,19 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 210: -1,18 + 211: 0,18 + 212: 1,18 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineS + decals: + 213: -1,22 + 214: 0,22 + 215: 1,22 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 204: 2,20 + 205: 2,21 + 206: 2,19 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 0: -3,3 + 5: -7,-3 + 14: -3,0 + 141: 1,1 + 154: 8,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3: -7,3 + 4: -7,0 + 6: -3,-3 + 16: -3,-3 + 32: 3,3 + 138: -1,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 2: -3,2 + 139: 1,-3 + 155: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 1: -7,2 + 33: 3,-2 + 140: -1,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 156: 5,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 166: -8,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 19: -7,-5 + 175: -5,0 + 181: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 18: -3,-5 + 167: -7,-1 + 174: -5,0 + 180: 3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 157: 5,-2 + 172: -5,2 + 182: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 158: 5,-2 + 168: -7,-1 + 169: -8,-1 + 173: -5,2 + 183: 3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 15: -3,-2 + 23: -7,-4 + 142: 1,0 + 143: 1,-2 + 161: 8,-1 + 162: 8,0 + 163: 8,1 + 164: 8,2 + 171: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 7: -6,3 + 8: -5,3 + 9: -4,3 + 12: -6,0 + 13: -4,0 + 20: -6,-5 + 21: -5,-5 + 22: -4,-5 + 30: 5,3 + 31: 6,3 + 160: 8,-3 + 165: 7,3 + 176: -2,-1 + 177: 2,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 10: -6,2 + 11: -4,2 + 28: 4,-2 + 29: 6,-2 + 159: 7,-2 + 178: -2,-1 + 179: 2,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 17: -3,-4 + 24: -7,-2 + 25: 3,2 + 26: 3,1 + 27: 3,0 + 144: -1,0 + 145: -1,-2 + 170: -5,1 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 133: -14,-2 + 184: 8.080144,6.0053215 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 134: 1,6 + - node: + color: '#FFFFFFFF' + id: bushsnowa3 + decals: + 185: 10.095769,4.4104643 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 135: -17,0 + 186: -8.701106,4.9577193 + 187: 5.158269,-7.707326 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 136: 1,-9 + 188: -1.1854811,-7.472789 + 189: 9.877019,-7.1288004 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 639 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 1741 + 3,0: + 0: 8191 + 3,1: + 0: 4369 + -4,0: + 0: 36607 + -3,0: + 0: 65535 + -3,1: + 0: 61166 + -3,2: + 0: 12 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 1279 + -1,1: + 0: 65535 + -1,2: + 0: 61183 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 4097 + 1,-3: + 0: 65395 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65518 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4368 + 3,-2: + 0: 4401 + 3,-1: + 0: 65535 + -4,-1: + 0: 65535 + -4,-2: + 0: 57352 + -3,-2: + 0: 52991 + -3,-1: + 0: 65535 + -3,-3: + 0: 52936 + -2,-3: + 0: 65516 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65262 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-6: + 0: 28672 + 0,-5: + 0: 65527 + -1,-5: + 0: 61166 + -1,-6: + 0: 49152 + 4,0: + 0: 255 + 4,-1: + 0: 65523 + 5,-1: + 0: 65535 + -7,0: + 0: 36590 + -6,0: + 0: 16383 + -5,0: + 0: 255 + -7,-1: + 0: 65278 + -6,-1: + 0: 65535 + -5,-1: + 0: 65535 + 0,3: + 0: 30719 + -1,3: + 0: 61183 + -1,4: + 0: 61166 + -1,5: + 0: 61166 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 5,0: + 0: 4095 + 6,0: + 0: 1911 + 6,-1: + 0: 30583 + -8,1: + 0: 34816 + -8,2: + 0: 34824 + -8,3: + 0: 8 + -7,1: + 0: 65288 + -7,2: + 0: 65295 + -7,3: + 0: 15 + -6,1: + 0: 65299 + -6,2: + 0: 65311 + -6,3: + 0: 31 + -5,1: + 0: 13056 + -5,2: + 0: 13059 + -5,3: + 0: 3 + -8,-4: + 0: 34816 + -8,-3: + 0: 34824 + -8,-2: + 0: 8 + -7,-4: + 0: 65280 + -7,-3: + 0: 65295 + -7,-2: + 0: 34831 + -6,-4: + 0: 65296 + -6,-3: + 0: 65311 + -6,-2: + 0: 13087 + -5,-4: + 0: 13056 + -5,-3: + 0: 13059 + -5,-2: + 0: 3 + 2,-4: + 0: 30208 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Beacon + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 1358 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1188 + - 1189 + type: DeviceNetwork + - devices: + - 1188 + - 1189 + type: DeviceList + - uid: 1359 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1261 + - 1260 + type: DeviceNetwork + - devices: + - 1260 + - 1261 + type: DeviceList + - uid: 1360 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1106 + - 1114 + - 1289 + - 1297 + type: DeviceNetwork + - devices: + - 1106 + - 1114 + - 1289 + - 1297 + type: DeviceList + - uid: 1362 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1244 + - 1243 + - 1259 + - 1258 + - 1253 + type: DeviceNetwork + - devices: + - 1258 + - 1259 + - 1243 + - 1244 + - 1253 + type: DeviceList + - uid: 1363 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 344 + - 1339 + - 1070 + - 1087 + type: DeviceNetwork + - devices: + - 1339 + - 344 + - 1070 + - 1087 + type: DeviceList +- proto: Airlock + entities: + - uid: 1169 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 514 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - links: + - 515 + type: DeviceLinkSink + - linkedPorts: + 515: + - DoorStatus: Close + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 515 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 1 + type: Transform + - links: + - 514 + type: DeviceLinkSink + - linkedPorts: + 514: + - DoorStatus: DoorBolt + - DoorStatus: Close + type: DeviceLinkSource + - uid: 516 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - links: + - 517 + type: DeviceLinkSink + - linkedPorts: + 517: + - DoorStatus: DoorBolt + - DoorStatus: Close + type: DeviceLinkSource + - uid: 517 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 1 + type: Transform + - links: + - 516 + type: DeviceLinkSink + - linkedPorts: + 516: + - DoorStatus: DoorBolt + - DoorStatus: Close + type: DeviceLinkSource +- proto: AirlockGlass + entities: + - uid: 1028 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 1131 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + type: Transform +- proto: AltarChaos + entities: + - uid: 55 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: AltarDruid + entities: + - uid: 1074 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform +- proto: AltarHeaven + entities: + - uid: 113 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 1107 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 671 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 673 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 767 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 1115 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: BedsheetCult + entities: + - uid: 1118 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: BenchParkLeft + entities: + - uid: 1165 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1166 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchParkRight + entities: + - uid: 1167 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1168 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewLeft + entities: + - uid: 875 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1129 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewMiddle + entities: + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1126 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1127 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewRight + entities: + - uid: 793 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 877 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: Bible + entities: + - uid: 1090 + components: + - pos: -5.5565104,3.5076962 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 146 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 931 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 932 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 942 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 958 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 959 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 961 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 992 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 995 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 1061 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 1182 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 1268 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 395 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -23.5,-3.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: -25.5,-11.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -21.5,-13.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 59 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 1007 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 1281 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 1298 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 610 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 614 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 615 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 617 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 618 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 620 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 1 + type: Transform + - uid: 627 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 1 + type: Transform + - uid: 628 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 629 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 637 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 643 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 647 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,11.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1 + type: Transform + - uid: 654 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1 + type: Transform + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 658 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 663 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 664 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 1123 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 873 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 1305 + components: + - pos: -1.6190104,-6.5948977 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 1171 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: ComputerSolarControl + entities: + - uid: 1172 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - needsPower: False + type: ApcPowerReceiver + missingComponents: + - Anchorable +- proto: CrateFreezer + entities: + - uid: 1136 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsSeeds + entities: + - uid: 1124 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 1125 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 1141 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: CrystalBlue + entities: + - uid: 1342 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform +- proto: CrystalCyan + entities: + - uid: 1343 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform +- proto: CrystalGreen + entities: + - uid: 1344 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: CrystalGrey + entities: + - uid: 1349 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform +- proto: CrystalOrange + entities: + - uid: 1346 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform +- proto: CrystalPink + entities: + - uid: 1347 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 1348 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 1311 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 1308 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1310 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1309 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 1042 + components: + - pos: 3.7068906,2.4921455 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 3.3318906,2.4608746 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: -3.0274844,0.8191091 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: -3.0431094,0.5376626 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: -3.2931094,0.8660165 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: -3.3399844,0.58457196 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: -3.6212344,0.80347264 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: -3.6212344,0.45948422 + parent: 1 + type: Transform +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 1041 + components: + - pos: 3.5506406,3.0081291 + parent: 1 + type: Transform +- proto: DrinkWineBottleFull + entities: + - uid: 1040 + components: + - pos: 3.2850156,3.0394 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 1133 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - name: Omnichurch Beacon + type: FaxMachine + missingComponents: + - Anchorable +- proto: filingCabinetRandom + entities: + - uid: 1122 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform +- proto: FloorWaterEntity + entities: + - uid: 879 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: FloraTreeLarge01 + entities: + - uid: 1073 + components: + - pos: -1.4664649,-17.652534 + parent: 1 + type: Transform +- proto: FloraTreeLarge06 + entities: + - uid: 1072 + components: + - pos: 2.5335355,-17.579567 + parent: 1 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 1050 + components: + - pos: 8.503765,2.8674068 + parent: 1 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 1192 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 101.3 + type: GasMixer + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 1195 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 145 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 175 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 177 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 777 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 782 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1088 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1194 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1198 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1199 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1200 + components: + - pos: -20.5,-0.5 + parent: 1 + type: Transform + - uid: 1201 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1203 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1223 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1242 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 1221 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1264 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1290 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 57 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 118 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 119 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 147 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 148 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 149 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 150 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 151 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 152 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 174 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 341 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 357 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 775 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 776 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 783 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1097 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1100 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1104 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1105 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1193 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1197 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1205 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1206 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1207 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1208 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1209 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1210 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1211 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1212 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1213 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1214 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1215 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1216 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1217 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1218 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1219 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1220 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1224 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1225 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1226 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1227 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1228 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1229 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1230 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1231 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1232 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1233 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1234 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1235 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1236 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1237 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1238 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1239 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1240 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1241 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1245 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1247 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1248 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1249 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1250 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1251 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1252 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1254 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1255 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1256 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1257 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1262 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1263 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1265 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1266 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1287 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1288 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1291 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1292 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1293 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1294 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1295 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1296 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1314 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1315 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1316 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1317 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1335 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1336 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1337 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1338 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 761 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1202 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1246 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 1190 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 1087 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1363 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1106 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1360 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1188 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1358 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1222 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1244 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1362 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1258 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1362 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1261 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1359 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1297 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1360 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1339 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1363 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 344 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1363 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1070 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1363 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1114 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1360 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1189 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1358 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1243 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1362 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1253 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1362 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1259 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1362 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1260 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1359 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1289 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1360 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 1196 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GeneratorBasic15kW + entities: + - uid: 1067 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: GravityGeneratorMini + entities: + - uid: 1341 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - needsPower: False + type: ApcPowerReceiver +- proto: Grille + entities: + - uid: 5 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 363 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 1120 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 1075 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 1051 + components: + - pos: 8.472515,2.445238 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 1137 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: KitchenReagentGrinder + entities: + - uid: 675 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 1170 + components: + - pos: -20.5,0.5 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 1138 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 1366 + components: + - anchored: True + pos: -20.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: OxygenCanister + entities: + - uid: 1365 + components: + - anchored: True + pos: -21.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: PaintingMoony + entities: + - uid: 1052 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: PaintingSaturn + entities: + - uid: 1053 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform +- proto: PaintingTheKiss + entities: + - uid: 1054 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: PaintingTheScream + entities: + - uid: 1055 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: PaintingTheSonOfMan + entities: + - uid: 1056 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: PottedPlant1 + entities: + - uid: 791 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform +- proto: PottedPlant10 + entities: + - uid: 780 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: PottedPlant18 + entities: + - uid: 885 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: PottedPlant19 + entities: + - uid: 1128 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform +- proto: PottedPlant2 + entities: + - uid: 1071 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform +- proto: PottedPlant21 + entities: + - uid: 884 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: PottedPlant3 + entities: + - uid: 790 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: PottedPlant7 + entities: + - uid: 1154 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 792 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredRed + entities: + - uid: 1274 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 1163 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmallRed + entities: + - uid: 1275 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 788 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 1065 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 1066 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: Shovel + entities: + - uid: 1306 + components: + - pos: -0.84557295,-9.057547 + parent: 1 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 24 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 258 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 512 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 753 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 872 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 393 + components: + - pos: -25.5,1.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable + - uid: 396 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: SolarPanel + entities: + - uid: 475 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 524 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 534 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 550 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 553 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 556 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 557 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 559 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 573 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 577 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 579 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 599 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 600 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 601 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 602 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 603 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 606 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 518 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 1307 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 1030 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 1364 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 665 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable + - uid: 666 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: TableCounterWood + entities: + - uid: 878 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 949 + components: + - rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 1130 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 1134 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 1135 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 757 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 1116 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 1121 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: WallRock + entities: + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 745 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform +- proto: WallSandstone + entities: + - uid: 56 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 770 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 771 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 779 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -20.5,-3.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -25.5,-3.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 506 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 749 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 672 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 744 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 747 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 1029 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - location: Omnichurch Beacon + type: WarpPoint +- proto: Window + entities: + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 1069 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 1117 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 758 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/frontier.yml b/Resources/Maps/frontier.yml index e218e8ea5a7..40f4bd38f32 100644 --- a/Resources/Maps/frontier.yml +++ b/Resources/Maps/frontier.yml @@ -5,26 +5,26 @@ tilemap: 0: Space 14: FloorBlue 15: FloorBlueCircuit - 26: FloorDark - 30: FloorDarkMini - 31: FloorDarkMono - 41: FloorFreezer - 42: FloorGlass - 59: FloorLino - 61: FloorMetalDiamond - 83: FloorSteel - 88: FloorSteelDirty - 91: FloorSteelMono - 92: FloorSteelOffset - 93: FloorSteelPavement - 94: FloorSteelPavementVertical - 95: FloorTechMaint - 96: FloorTechMaint2 - 99: FloorWhite - 103: FloorWhiteMini - 109: FloorWood - 111: Lattice - 112: Plating + 27: FloorDark + 31: FloorDarkMini + 32: FloorDarkMono + 42: FloorFreezer + 43: FloorGlass + 60: FloorLino + 62: FloorMetalDiamond + 84: FloorSteel + 89: FloorSteelDirty + 92: FloorSteelMono + 93: FloorSteelOffset + 94: FloorSteelPavement + 95: FloorSteelPavementVertical + 96: FloorTechMaint + 97: FloorTechMaint2 + 100: FloorWhite + 104: FloorWhiteMini + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -50,131 +50,131 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABXAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAABGgAAAAABKgAAAAADGgAAAAADcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAACGgAAAAABKgAAAAAAGgAAAAABKgAAAAAAGgAAAAAAGgAAAAADUwAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADKgAAAAABGgAAAAABKgAAAAAAGgAAAAACKgAAAAACGgAAAAABGgAAAAACXAAAAAAAXAAAAAAAGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAADUwAAAAABXAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAGgAAAAACKgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACKgAAAAADKgAAAAACGgAAAAACUwAAAAADXwAAAAAAGgAAAAADGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAGgAAAAADGgAAAAACXwAAAAAAGgAAAAACGgAAAAAAKgAAAAAAGgAAAAAAGgAAAAADKgAAAAAB + tiles: XwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABYAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABYAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADYAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADYAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABXQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADGwAAAAABGwAAAAABKwAAAAADGwAAAAADcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAACGwAAAAABKwAAAAAAGwAAAAABKwAAAAAAGwAAAAAAGwAAAAADVAAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADKwAAAAABGwAAAAABKwAAAAAAGwAAAAACKwAAAAACGwAAAAABGwAAAAACXQAAAAAAXQAAAAAAGwAAAAACKwAAAAACGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAADVAAAAAABXQAAAAAAGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAVAAAAAAAGwAAAAACKwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACKwAAAAADKwAAAAACGwAAAAACVAAAAAADYAAAAAAAGwAAAAADGwAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAGwAAAAADGwAAAAACYAAAAAAAGwAAAAACGwAAAAAAKwAAAAAAGwAAAAAAGwAAAAADKwAAAAAB version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAXwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABXwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAXAAAAAAAUwAAAAACXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADXAAAAAAAXAAAAAAAXAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABKgAAAAABGgAAAAABGgAAAAACUwAAAAAAUwAAAAACGgAAAAABKgAAAAABGgAAAAADGgAAAAABKgAAAAAAGgAAAAACKgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAUwAAAAACUwAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABKgAAAAACGgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACKgAAAAACGgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACGgAAAAACKgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAXAAAAAAAUwAAAAADXAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADKgAAAAADGgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAADXwAAAAAAGgAAAAACGgAAAAABGgAAAAABXwAAAAAAUwAAAAACUwAAAAAC + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAYAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABYAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAXQAAAAAAVAAAAAACXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADXQAAAAAAXQAAAAAAXQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAABKwAAAAABGwAAAAABGwAAAAACVAAAAAAAVAAAAAACGwAAAAABKwAAAAABGwAAAAADGwAAAAABKwAAAAAAGwAAAAACKwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAVAAAAAACVAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABKwAAAAACGwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAACKwAAAAACGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACGwAAAAACKwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAXQAAAAAAVAAAAAADXQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAACKwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADKwAAAAADGwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADYAAAAAAAGwAAAAACGwAAAAABGwAAAAABYAAAAAAAVAAAAAACVAAAAAAC version: 6 1,0: ind: 1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABXwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAZwAAAAACZwAAAAABZwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAABGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAZwAAAAACZwAAAAABZwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAADGgAAAAAAXwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAAAGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADGgAAAAACGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAABYAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABYAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAaAAAAAACaAAAAAABaAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAABGwAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAaAAAAAACaAAAAAABaAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAADGwAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADGwAAAAAAGwAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAGwAAAAADGwAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAYAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAADGwAAAAACGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAC version: 6 -2,0: ind: -2,0 - tiles: cAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABXwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACXwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAADKgAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAA + tiles: cQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABYAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACYAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACYAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAGwAAAAACGwAAAAADKwAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: cAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAABXgAAAAADXgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAUwAAAAADUwAAAAACUwAAAAADXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAADXwAAAAAAXQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXwAAAAABXwAAAAADXwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAADVAAAAAACVAAAAAADYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAADYAAAAAAAXgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAADXwAAAAAAUwAAAAACUwAAAAACUwAAAAADXwAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAACXwAAAAAAUwAAAAADUwAAAAADUwAAAAADXwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAABXwAAAAAAUwAAAAABUwAAAAABUwAAAAACXwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAXwAAAAABXwAAAAACXwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAADYAAAAAAAVAAAAAACVAAAAAACVAAAAAADYAAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAACYAAAAAAAVAAAAAADVAAAAAADVAAAAAADYAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAABYAAAAAAAVAAAAAABVAAAAAABVAAAAAACYAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABYwAAAAACXwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACYwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADYwAAAAADXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADYwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWwAAAAADUwAAAAACYwAAAAACXwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAACYwAAAAADXwAAAAAAHgAAAAACHgAAAAADHgAAAAABcAAAAAAAXwAAAAAAUwAAAAADUwAAAAABXwAAAAAAcAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAHgAAAAAAHgAAAAADHgAAAAADcAAAAAAAXwAAAAAAUwAAAAABUwAAAAAAXwAAAAAAcAAAAAAAHwAAAAABHwAAAAADHwAAAAADUwAAAAACUwAAAAACGgAAAAADcAAAAAAAHgAAAAADHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAABHwAAAAADUwAAAAABUwAAAAADGgAAAAAAcAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACGgAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAABZAAAAAACYAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACZAAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADZAAAAAADYAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADZAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXAAAAAADVAAAAAACZAAAAAACYAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABVAAAAAACZAAAAAADYAAAAAAAHwAAAAACHwAAAAADHwAAAAABcQAAAAAAYAAAAAAAVAAAAAADVAAAAAABYAAAAAAAcQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAHwAAAAAAHwAAAAADHwAAAAADcQAAAAAAYAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAcQAAAAAAIAAAAAABIAAAAAADIAAAAAADVAAAAAACVAAAAAACGwAAAAADcQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAABIAAAAAADVAAAAAABVAAAAAADGwAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAACGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACGwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXQAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAcAAAAAAAXQAAAAABXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAGgAAAAABYwAAAAACAAAAAAAAcAAAAAAAXQAAAAADXwAAAAAAUwAAAAADUwAAAAABUwAAAAADXwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAADGgAAAAAAGgAAAAABGgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAADGgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAGgAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAABGgAAAAABGgAAAAACGgAAAAABYwAAAAAAYwAAAAABYwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADGgAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABGgAAAAAAGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAA + tiles: AAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXgAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACYAAAAAAAZAAAAAABZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAcQAAAAAAXgAAAAABYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAAAGwAAAAABZAAAAAACAAAAAAAAcQAAAAAAXgAAAAADYAAAAAAAVAAAAAADVAAAAAABVAAAAAADYAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAABZAAAAAADGwAAAAAAGwAAAAABGwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAABZAAAAAADGwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAGwAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABGwAAAAABGwAAAAACGwAAAAABZAAAAAAAZAAAAAABZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAADGwAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAAAZAAAAAABZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAZAAAAAACZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAZAAAAAADZAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAACGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAADXgAAAAABXgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXwAAAAADXwAAAAABXwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAHwAAAAADHwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAHwAAAAABHwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABXwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAXwAAAAAAGgAAAAADGgAAAAADGgAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAHgAAAAABHgAAAAACHgAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAUwAAAAADUwAAAAABUwAAAAACXwAAAAAAHgAAAAACHgAAAAADHgAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAHgAAAAABHgAAAAACHgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAADwAAAAAADgAAAAAADwAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAIAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAIAAAAAADIAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAIAAAAAABIAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABYAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAYAAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAHwAAAAABHwAAAAACHwAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAHwAAAAACHwAAAAADHwAAAAABcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAHwAAAAABHwAAAAACHwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAADwAAAAAADgAAAAAADwAAAAAAcQAAAAAAcQAAAAAA version: 6 3,0: ind: 3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADXwAAAAAAUwAAAAAAUwAAAAACUwAAAAACXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADXwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAXQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADXwAAAAAAUwAAAAADUwAAAAADUwAAAAACXwAAAAAAXQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADYAAAAAAAVAAAAAAAVAAAAAACVAAAAAACYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADYAAAAAAAVAAAAAACVAAAAAABVAAAAAACYAAAAAAAXgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADYAAAAAAAVAAAAAADVAAAAAADVAAAAAACYAAAAAAAXgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXwAAAAABXwAAAAACXwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: UwAAAAADXwAAAAAAGgAAAAADGgAAAAADGgAAAAAAXwAAAAAAGgAAAAAAGgAAAAACGgAAAAACXwAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACUwAAAAABXwAAAAAAGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAXwAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAACWwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWwAAAAAAUwAAAAABUwAAAAACWwAAAAADUwAAAAADUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABXwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADUwAAAAADUwAAAAACUwAAAAACXwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACXwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAADYAAAAAAAGwAAAAADGwAAAAADGwAAAAAAYAAAAAAAGwAAAAAAGwAAAAACGwAAAAACYAAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACVAAAAAABYAAAAAAAGwAAAAACKwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAYAAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACVAAAAAACXAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAXAAAAAAAVAAAAAABVAAAAAACXAAAAAADVAAAAAADVAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABYAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABcQAAAAAAVAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADVAAAAAADVAAAAAACVAAAAAACYAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABYAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADYAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACYAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAABXwAAAAAAGgAAAAAAGgAAAAABGgAAAAABXwAAAAAAUwAAAAADUwAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAACcAAAAAAAGgAAAAACKgAAAAAAGgAAAAACXwAAAAAAUwAAAAADUwAAAAADbQAAAAADbQAAAAADbQAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABXwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAABYAAAAAAAGwAAAAAAGwAAAAABGwAAAAABYAAAAAAAVAAAAAADVAAAAAACbgAAAAAAbgAAAAADbgAAAAACcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAACcQAAAAAAGwAAAAACKwAAAAAAGwAAAAACYAAAAAAAVAAAAAADVAAAAAADbgAAAAADbgAAAAADbgAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABYAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAYAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAAB version: 6 -2,1: ind: -2,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: GgAAAAADGgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACWwAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAWwAAAAACUwAAAAADWwAAAAADUwAAAAABWwAAAAABUwAAAAADWwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAcAAAAAAAXgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GwAAAAADGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACXAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAXAAAAAACVAAAAAADXAAAAAADVAAAAAABXAAAAAABVAAAAAADXAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAcQAAAAAAXwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: UwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAACHwAAAAABHwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAAAHwAAAAADHwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAWwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACWwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABWwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABWwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAWwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAACIAAAAAABIAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAAAIAAAAAADIAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAXAAAAAABVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACXAAAAAADVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABXAAAAAABVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAABXAAAAAABVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAXAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAACWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAADVAAAAAACXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABVAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAADVAAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA version: 6 2,1: ind: 2,1 - tiles: UwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAADwAAAAAADgAAAAAADwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAHwAAAAABHwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADXwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACXwAAAAAAUwAAAAACUwAAAAACXwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACXwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAADwAAAAAADgAAAAAADwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAIAAAAAABIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAIAAAAAABIAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADYAAAAAAAVAAAAAADVAAAAAABYAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAVAAAAAACVAAAAAACYAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAACYAAAAAAAVAAAAAADVAAAAAABYAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: UwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADXwAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAXQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABXwAAAAAAUwAAAAAAUwAAAAACUwAAAAADXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAABXgAAAAAAXgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADYAAAAAAAVAAAAAABVAAAAAADVAAAAAADYAAAAAAAXgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABYAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAABYAAAAAAAVAAAAAAAVAAAAAACVAAAAAADYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXwAAAAABXwAAAAAAXwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,3: ind: 0,3 - tiles: UwAAAAACWwAAAAAAWwAAAAACWwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABWwAAAAABWwAAAAADWwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAWwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAADUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAACXAAAAAAAXAAAAAACXAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABXAAAAAABXAAAAAADXAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAXAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAABVAAAAAADVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABXAAAAAACVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: cAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAHgAAAAADXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAHgAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAADcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADXwAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAADcAAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADYAAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAZAAAAAACZAAAAAADcQAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -201,299 +201,300 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 2595: 3,40 - 2596: 4,40 + 2559: 3,40 + 2560: 4,40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2597: 3,37 - 2598: 4,37 + 2561: 3,37 + 2562: 4,37 - node: color: '#334E6DC8' id: ArrowsGreyscale decals: - 2520: 0,9 - 2521: 0,9 - 2522: 0,9 - 2523: 0,9 - 2555: -2,9 - 2556: -2,9 - 2557: -2,9 - 2558: -2,9 - 2559: -2,9 + 2484: 0,9 + 2485: 0,9 + 2486: 0,9 + 2487: 0,9 + 2519: -2,9 + 2520: -2,9 + 2521: -2,9 + 2522: -2,9 + 2523: -2,9 - node: angle: 3.141592653589793 rad color: '#334E6DC8' id: ArrowsGreyscale decals: - 2514: -2,12 - 2515: -2,12 - 2516: -2,12 - 2517: 0,12 - 2518: 0,12 - 2519: 0,12 + 2478: -2,12 + 2479: -2,12 + 2480: -2,12 + 2481: 0,12 + 2482: 0,12 + 2483: 0,12 - node: color: '#52B4E9FF' id: ArrowsGreyscale decals: - 601: 15,21 - 602: 17,21 - 603: 19,21 - 604: 25,21 - 605: 27,21 + 582: 15,21 + 583: 17,21 + 584: 19,21 + 585: 25,21 + 586: 27,21 - node: color: '#52B4F3AD' id: ArrowsGreyscale decals: - 1966: 23,21 - 1967: 23,21 - 1968: 23,21 - 1969: 23,21 - 1970: 23,21 - 1971: 23,21 - 1972: 23,21 - 1973: 23,21 - 1974: 23,21 - 1975: 23,21 - 1978: 21,21 - 1979: 21,21 - 1980: 21,21 - 1981: 21,21 + 1941: 23,21 + 1942: 23,21 + 1943: 23,21 + 1944: 23,21 + 1945: 23,21 + 1946: 23,21 + 1947: 23,21 + 1948: 23,21 + 1949: 23,21 + 1950: 23,21 + 1953: 21,21 + 1954: 21,21 + 1955: 21,21 + 1956: 21,21 - node: color: '#DE3A3A96' id: Bot decals: - 428: 31,15 + 412: 31,15 - node: zIndex: 180 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 2623: -1,45 - 2624: -1,44 - 2625: -1,43 - 2626: 5,43 - 2627: 5,44 - 2628: 5,45 - 2629: 2,48 + 2587: -1,45 + 2588: -1,44 + 2589: -1,43 + 2590: 5,43 + 2591: 5,44 + 2592: 5,45 + 2593: 2,48 + - node: + color: '#52B4E996' + id: BotLeftGreyscale + decals: + 2972: 26,20 - node: color: '#52B4E9AE' id: BotLeftGreyscale decals: - 1914: 4,25 - 1915: 5,25 - 1916: 6,25 - 1917: 8,25 - 1964: 7,25 - 1965: 24,20 + 1889: 4,25 + 1890: 5,25 + 1891: 6,25 + 1892: 8,25 + 1939: 7,25 + 1940: 24,20 - node: color: '#52B4E9FF' id: BotLeftGreyscale decals: - 595: 16,20 - 596: 18,20 - 597: 20,20 - 598: 22,20 - 599: 26,20 - 600: 28,20 + 577: 16,20 + 578: 18,20 + 579: 20,20 + 580: 22,20 + 581: 28,20 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 507: 9,11 - 508: 9,10 - 509: 11,11 - 510: 11,10 - 511: 13,11 - 512: 13,10 - 513: 12,15 - 514: 15,15 - 515: 13,14 - 516: 14,14 - 517: 3,17 - 518: 3,14 - 519: 3,12 - 520: 3,10 - 834: -12,13 - 835: -11,12 - 836: -12,11 - 837: -15,11 - 1732: -17,11 - 1733: -11,14 - 2965: -5,10 - 2966: -5,12 - 2967: -5,14 - 2968: -5,17 - 2969: -11,14 - 2970: -12,13 - 2971: -11,12 - 2972: -12,11 - 2973: -10,11 - 2974: -10,13 - 2975: -15,11 - 2976: -17,11 + 491: 9,11 + 492: 9,10 + 493: 11,11 + 494: 11,10 + 495: 13,11 + 496: 13,10 + 497: 12,15 + 498: 15,15 + 499: 13,14 + 500: 14,14 + 501: 3,17 + 502: 3,14 + 503: 3,12 + 504: 3,10 + 815: -12,13 + 816: -11,12 + 817: -12,11 + 818: -15,11 + 1707: -17,11 + 1708: -11,14 + 2926: -5,10 + 2927: -5,12 + 2928: -5,14 + 2929: -5,17 + 2930: -11,14 + 2931: -12,13 + 2932: -11,12 + 2933: -12,11 + 2934: -10,11 + 2935: -10,13 + 2936: -15,11 + 2937: -17,11 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1757: -5,17 - 1758: -5,14 - 1759: -5,12 - 1760: -5,10 + 1732: -5,17 + 1733: -5,14 + 1734: -5,12 + 1735: -5,10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 302: 38,15 - 527: -4,28 - 548: 22,13 - 2503: 1,9 + 296: 38,15 + 511: -4,28 + 532: 22,13 + 2467: 1,9 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 301: 36,15 - 530: -6,28 - 547: 19,13 - 2552: -3,9 + 295: 36,15 + 514: -6,28 + 531: 19,13 + 2516: -3,9 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 300: 38,13 - 529: -4,26 - 545: 22,9 - 1762: 1,12 + 294: 38,13 + 513: -4,26 + 529: 22,9 + 1737: 1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 299: 36,13 - 528: -6,26 - 546: 19,9 - 1761: -3,12 + 293: 36,13 + 512: -6,26 + 530: 19,9 + 1736: -3,12 - node: color: '#FFFFFF81' id: BrickTileDarkInnerNe decals: - 2479: -3,12 - 2480: -3,12 - 2489: -1,12 - 2490: -1,12 + 2443: -3,12 + 2444: -3,12 + 2453: -1,12 + 2454: -1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 170: 4,14 - 262: 34,11 - 469: 11,12 - 2505: 0,9 + 260: 34,11 + 453: 11,12 + 2469: 0,9 - node: color: '#FFFFFF81' id: BrickTileDarkInnerNw decals: - 2483: -1,12 - 2484: -1,12 - 2491: 1,12 - 2492: 1,12 + 2447: -1,12 + 2448: -1,12 + 2455: 1,12 + 2456: 1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 263: 40,11 - 470: 16,12 - 2554: -2,9 + 261: 40,11 + 454: 16,12 + 2518: -2,9 - node: color: '#FFFFFF81' id: BrickTileDarkInnerSe decals: - 2540: -1,9 - 2541: -1,9 - 2542: -3,9 - 2543: -3,9 + 2504: -1,9 + 2505: -1,9 + 2506: -3,9 + 2507: -3,9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 169: 4,17 - 264: 34,17 - 1766: 0,12 + 1741: 0,12 - node: color: '#FFFFFF81' id: BrickTileDarkInnerSw decals: - 2510: 1,9 - 2511: 1,9 - 2546: -1,9 - 2547: -1,9 + 2474: 1,9 + 2475: 1,9 + 2510: -1,9 + 2511: -1,9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 265: 40,17 - 1765: -2,12 + 262: 40,17 + 1740: -2,12 - node: color: '#52B4E996' id: BrickTileDarkLineE decals: - 2981: -48,2 + 2942: -48,2 - node: color: '#FFFFFF81' id: BrickTileDarkLineE decals: - 2477: -3,13 - 2478: -3,13 - 2487: -1,13 - 2488: -1,13 - 2534: -3,8 - 2535: -3,8 - 2536: -1,8 - 2537: -1,8 + 2441: -3,13 + 2442: -3,13 + 2451: -1,13 + 2452: -1,13 + 2498: -3,8 + 2499: -3,8 + 2500: -1,8 + 2501: -1,8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: 167: 4,15 168: 4,16 - 257: 34,12 - 258: 34,13 - 259: 34,14 - 260: 34,15 - 261: 34,16 - 303: 38,14 - 332: 48,11 - 333: 48,12 - 334: 48,13 - 473: 11,13 - 474: 11,14 - 533: -4,27 - 542: 22,12 - 543: 22,11 - 544: 22,10 - 1763: 1,13 - 2504: 1,8 - 2527: -3,11 - 2528: -3,10 - 2979: -48,2 - 2980: -48,1 + 257: 34,14 + 258: 34,15 + 259: 34,16 + 297: 38,14 + 323: 48,11 + 324: 48,12 + 325: 48,13 + 457: 11,13 + 458: 11,14 + 517: -4,27 + 526: 22,12 + 527: 22,11 + 528: 22,10 + 1738: 1,13 + 2468: 1,8 + 2491: -3,11 + 2492: -3,10 + 2940: -48,2 + 2941: -48,1 - node: color: '#FFFFFF81' id: BrickTileDarkLineN decals: - 2481: -2,12 - 2482: -2,12 - 2495: 0,12 - 2496: 0,12 - 2506: 0,9 - 2507: 0,9 - 2548: -1,9 - 2549: -1,9 - 2550: -2,9 - 2551: -2,9 + 2445: -2,12 + 2446: -2,12 + 2459: 0,12 + 2460: 0,12 + 2470: 0,9 + 2471: 0,9 + 2512: -1,9 + 2513: -1,9 + 2514: -2,9 + 2515: -2,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -503,59 +504,56 @@ entities: 254: 37,11 255: 36,11 256: 35,11 - 306: 37,15 - 307: 46,18 - 308: 44,18 - 309: 45,18 - 310: 43,18 - 311: 42,18 - 312: 40,18 - 313: 39,18 - 314: 38,18 - 315: 32,18 - 316: 33,18 - 317: 34,18 - 363: 41,18 - 376: 42,8 - 377: 43,8 - 378: 42,9 - 379: 43,9 - 429: 6,16 - 430: 8,16 - 433: 10,16 - 434: 11,16 - 435: 12,16 - 436: 13,16 - 437: 14,16 - 438: 15,16 - 439: 16,16 - 440: 17,16 - 465: 12,12 - 466: 13,12 - 467: 14,12 - 468: 15,12 - 499: 7,16 - 531: -5,28 - 540: 20,13 - 541: 21,13 - 615: 36,22 - 616: 37,22 - 617: 36,21 - 618: 37,21 + 300: 37,15 + 301: 46,18 + 302: 44,18 + 303: 45,18 + 304: 43,18 + 305: 42,18 + 306: 40,18 + 307: 39,18 + 308: 38,18 + 347: 41,18 + 360: 42,8 + 361: 43,8 + 362: 42,9 + 363: 43,9 + 413: 6,16 + 414: 8,16 + 417: 10,16 + 418: 11,16 + 419: 12,16 + 420: 13,16 + 421: 14,16 + 422: 15,16 + 423: 16,16 + 424: 17,16 + 449: 12,12 + 450: 13,12 + 451: 14,12 + 452: 15,12 + 483: 7,16 + 515: -5,28 + 524: 20,13 + 525: 21,13 + 596: 36,22 + 597: 37,22 + 598: 36,21 + 599: 37,21 - node: color: '#FFFFFF81' id: BrickTileDarkLineS decals: - 2497: -2,12 - 2498: -2,12 - 2499: 0,12 - 2500: 0,12 - 2501: -1,12 - 2502: -1,12 - 2512: 0,9 - 2513: 0,9 - 2544: -2,9 - 2545: -2,9 + 2461: -2,12 + 2462: -2,12 + 2463: 0,12 + 2464: 0,12 + 2465: -1,12 + 2466: -1,12 + 2476: 0,9 + 2477: 0,9 + 2508: -2,9 + 2509: -2,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -565,55 +563,53 @@ entities: 244: 37,17 245: 38,17 246: 39,17 - 304: 37,13 - 318: 33,9 - 319: 34,9 - 320: 35,9 - 321: 36,9 - 322: 37,9 - 323: 38,9 - 324: 39,9 - 325: 40,9 - 326: 43,11 - 327: 42,11 - 328: 41,11 - 352: 31,13 - 353: 32,13 - 372: 42,8 - 373: 43,8 - 374: 43,9 - 375: 42,9 - 431: 6,15 - 432: 8,15 - 441: 8,12 - 442: 9,12 - 443: 10,12 - 444: 11,12 - 445: 12,12 - 446: 13,12 - 497: 7,15 - 501: 7,18 - 502: 6,18 - 503: 8,18 - 532: -5,26 - 538: 20,9 - 539: 21,9 - 611: 36,21 - 612: 37,21 - 613: 36,22 - 614: 37,22 + 298: 37,13 + 309: 33,9 + 310: 34,9 + 311: 35,9 + 312: 36,9 + 313: 37,9 + 314: 38,9 + 315: 39,9 + 316: 40,9 + 317: 43,11 + 318: 42,11 + 319: 41,11 + 356: 42,8 + 357: 43,8 + 358: 43,9 + 359: 42,9 + 415: 6,15 + 416: 8,15 + 425: 8,12 + 426: 9,12 + 427: 10,12 + 428: 11,12 + 429: 12,12 + 430: 13,12 + 481: 7,15 + 485: 7,18 + 486: 6,18 + 487: 8,18 + 516: -5,26 + 522: 20,9 + 523: 21,9 + 592: 36,21 + 593: 37,21 + 594: 36,22 + 595: 37,22 - node: color: '#FFFFFF81' id: BrickTileDarkLineW decals: - 2485: -1,13 - 2486: -1,13 - 2493: 1,13 - 2494: 1,13 - 2508: 1,8 - 2509: 1,8 - 2538: -1,8 - 2539: -1,8 + 2449: -1,13 + 2450: -1,13 + 2457: 1,13 + 2458: 1,13 + 2472: 1,8 + 2473: 1,8 + 2502: -1,8 + 2503: -1,8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -623,439 +619,452 @@ entities: 249: 40,14 250: 40,13 251: 40,12 - 305: 36,14 - 329: 45,11 - 330: 45,12 - 331: 45,13 - 447: 8,11 - 448: 8,10 - 449: 10,11 - 450: 10,10 - 451: 12,11 - 452: 12,10 - 471: 16,13 - 472: 16,14 - 534: -6,27 - 535: 19,10 - 536: 19,11 - 537: 19,12 - 1764: -3,13 - 2525: 1,11 - 2526: 1,10 - 2553: -3,8 + 299: 36,14 + 320: 45,11 + 321: 45,12 + 322: 45,13 + 431: 8,11 + 432: 8,10 + 433: 10,11 + 434: 10,10 + 435: 12,11 + 436: 12,10 + 455: 16,13 + 456: 16,14 + 518: -6,27 + 519: 19,10 + 520: 19,11 + 521: 19,12 + 1739: -3,13 + 2489: 1,11 + 2490: 1,10 + 2517: -3,8 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 851: -48,8 + 832: -48,8 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 606: 15,21 - 607: 17,21 - 608: 19,21 - 609: 25,21 - 610: 27,21 - 1976: 23,21 - 1977: 21,21 + 587: 15,21 + 588: 17,21 + 589: 19,21 + 590: 25,21 + 591: 27,21 + 1951: 23,21 + 1952: 21,21 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2982: -48,2 - 2983: -48,1 + 2943: -48,2 + 2944: -48,1 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 846: -48,3 - 847: -48,4 - 848: -48,5 - 849: -48,6 - 850: -48,7 + 827: -48,3 + 828: -48,4 + 829: -48,5 + 830: -48,6 + 831: -48,7 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2532: 0,11 - 2533: 0,10 + 2496: 0,11 + 2497: 0,10 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 843: -48,15 - 844: -51,15 - 852: -49,8 - 853: -50,8 - 854: -51,8 - 855: -52,8 - 856: -53,8 - 857: -54,8 - 858: -55,8 - 878: -49,15 - 879: -50,15 + 824: -48,15 + 825: -51,15 + 833: -49,8 + 834: -50,8 + 835: -51,8 + 836: -52,8 + 837: -53,8 + 838: -54,8 + 839: -55,8 + 859: -49,15 + 860: -50,15 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 838: -53,18 - 839: -53,16 - 840: -53,14 - 841: -53,12 - 842: -53,11 - 874: -53,10 - 875: -53,13 - 876: -53,15 - 877: -53,17 + 819: -53,18 + 820: -53,16 + 821: -53,14 + 822: -53,12 + 823: -53,11 + 855: -53,10 + 856: -53,13 + 857: -53,15 + 858: -53,17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: 165: -3,42 - 2524: -2,10 - 2531: -2,11 + 2488: -2,10 + 2495: -2,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 199: -48,18 - 985: -44,11 + 965: -44,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 197: -50,18 - 983: -46,11 + 963: -46,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 196: -48,17 - 978: -44,8 + 958: -44,8 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2587: -3,36 + 2551: -3,36 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 198: -50,17 - 980: -46,8 + 960: -46,8 - node: color: '#52DFC4DB' id: BrickTileWhiteInnerNe decals: - 1044: -33,12 - 1046: -32,12 + 1024: -33,12 + 1026: -32,12 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: 174: 4,14 - 484: 11,12 + 468: 11,12 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 289: 34,11 + 283: 34,11 - node: color: '#52DFC4DB' id: BrickTileWhiteInnerNw decals: - 1045: -32,12 - 1047: -31,12 + 1025: -32,12 + 1027: -31,12 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 483: 16,12 + 467: 16,12 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 287: 40,11 + 282: 40,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe decals: 173: 4,17 - node: - color: '#DE3A3A96' + color: '#B02E26E5' id: BrickTileWhiteInnerSe decals: - 288: 34,17 + 2968: 34,17 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1022: -32,11 + 1002: -32,11 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 286: 40,17 + 281: 40,17 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: 171: 4,15 172: 4,16 - 475: 11,14 - 476: 11,13 + 459: 11,14 + 460: 11,13 - node: zIndex: 180 color: '#A4610696' id: BrickTileWhiteLineE decals: - 2600: 8,52 - 2601: 8,51 - 2602: 8,50 - 2603: 8,49 - 2604: 8,48 - 2605: 8,47 - 2606: 8,46 - 2607: 8,45 - 2608: 8,44 - 2609: 8,43 - 2610: 8,42 - 2611: 8,41 - 2612: 8,56 - 2613: 8,57 + 2564: 8,52 + 2565: 8,51 + 2566: 8,50 + 2567: 8,49 + 2568: 8,48 + 2569: 8,47 + 2570: 8,46 + 2571: 8,45 + 2572: 8,44 + 2573: 8,43 + 2574: 8,42 + 2575: 8,41 + 2576: 8,56 + 2577: 8,57 + - node: + color: '#B02E26E5' + id: BrickTileWhiteLineE + decals: + 2975: 34,13 + 2976: 34,12 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 271: 34,12 - 272: 34,13 - 273: 34,14 - 274: 34,15 - 275: 34,16 - 335: 48,11 - 336: 48,12 - 337: 48,13 + 268: 34,14 + 269: 34,15 + 270: 34,16 + 326: 48,11 + 327: 48,12 + 328: 48,13 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1017: -32,6 - 1018: -32,7 - 1019: -32,8 - 1020: -32,9 - 1021: -32,10 + 997: -32,6 + 998: -32,7 + 999: -32,8 + 1000: -32,9 + 1001: -32,10 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 986: -44,10 - 987: -44,9 + 966: -44,10 + 967: -44,9 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 479: 12,12 - 480: 13,12 - 481: 14,12 - 482: 15,12 - 485: 10,16 - 486: 8,16 - 487: 6,16 - 488: 11,16 - 489: 12,16 - 490: 13,16 - 491: 14,16 - 492: 15,16 - 493: 16,16 - 494: 17,16 - 500: 7,16 + 463: 12,12 + 464: 13,12 + 465: 14,12 + 466: 15,12 + 469: 10,16 + 470: 8,16 + 471: 6,16 + 472: 11,16 + 473: 12,16 + 474: 13,16 + 475: 14,16 + 476: 15,16 + 477: 16,16 + 478: 17,16 + 484: 7,16 + - node: + color: '#B02E26E5' + id: BrickTileWhiteLineN + decals: + 2964: 32,18 + 2965: 33,18 + 2966: 34,18 + 2967: 31,18 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 266: 35,11 - 267: 36,11 - 268: 37,11 - 269: 38,11 - 270: 39,11 - 356: 32,18 - 357: 33,18 - 358: 34,18 - 359: 38,18 - 360: 39,18 - 361: 40,18 - 362: 42,18 - 364: 41,18 - 365: 43,18 - 366: 44,18 - 367: 45,18 - 368: 46,18 - 380: 42,9 - 381: 43,9 - 382: 42,8 - 383: 43,8 - 619: 36,22 - 620: 37,22 - 621: 36,21 - 622: 37,21 + 263: 35,11 + 264: 36,11 + 265: 37,11 + 266: 38,11 + 267: 39,11 + 343: 38,18 + 344: 39,18 + 345: 40,18 + 346: 42,18 + 348: 41,18 + 349: 43,18 + 350: 44,18 + 351: 45,18 + 352: 46,18 + 364: 42,9 + 365: 43,9 + 366: 42,8 + 367: 43,8 + 600: 36,22 + 601: 37,22 + 602: 36,21 + 603: 37,21 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1028: -42,12 - 1029: -41,12 - 1030: -40,12 - 1031: -39,12 - 1032: -38,12 - 1033: -37,12 - 1034: -36,12 - 1035: -35,12 - 1036: -34,12 - 1037: -32,12 - 1038: -31,12 - 1039: -30,12 - 1040: -29,12 - 1041: -28,12 - 1042: -27,12 - 1043: -33,12 + 1008: -42,12 + 1009: -41,12 + 1010: -40,12 + 1011: -39,12 + 1012: -38,12 + 1013: -37,12 + 1014: -36,12 + 1015: -35,12 + 1016: -34,12 + 1017: -32,12 + 1018: -31,12 + 1019: -30,12 + 1020: -29,12 + 1021: -28,12 + 1022: -27,12 + 1023: -33,12 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: 201: -49,18 - 984: -45,11 + 964: -45,11 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 463: 12,12 - 464: 13,12 + 447: 12,12 + 448: 13,12 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 495: 8,15 - 496: 6,15 - 498: 7,15 - 504: 6,18 - 505: 7,18 - 506: 8,18 + 479: 8,15 + 480: 6,15 + 482: 7,15 + 488: 6,18 + 489: 7,18 + 490: 8,18 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2588: -2,36 - 2589: -1,36 - 2590: 0,36 - 2591: 1,36 - 2592: 2,36 - 2593: 3,36 - 2594: 4,36 + 2552: -2,36 + 2553: -1,36 + 2554: 0,36 + 2555: 1,36 + 2556: 2,36 + 2557: 3,36 + 2558: 4,36 + - node: + color: '#B02E26E5' + id: BrickTileWhiteLineS + decals: + 2973: 31,14 + 2974: 32,14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 281: 35,17 - 282: 36,17 - 283: 37,17 - 284: 38,17 - 285: 39,17 - 341: 43,11 - 342: 42,11 - 343: 41,11 - 344: 40,9 - 345: 39,9 - 346: 38,9 - 347: 37,9 - 348: 35,9 - 349: 36,9 - 350: 34,9 - 351: 33,9 - 354: 31,13 - 355: 32,13 - 384: 42,8 - 385: 43,8 - 386: 42,9 - 387: 43,9 - 455: 8,12 - 456: 9,12 - 623: 36,21 - 624: 37,21 - 625: 37,22 - 626: 36,22 + 276: 35,17 + 277: 36,17 + 278: 37,17 + 279: 38,17 + 280: 39,17 + 332: 43,11 + 333: 42,11 + 334: 41,11 + 335: 40,9 + 336: 39,9 + 337: 38,9 + 338: 37,9 + 339: 35,9 + 340: 36,9 + 341: 34,9 + 342: 33,9 + 368: 42,8 + 369: 43,8 + 370: 42,9 + 371: 43,9 + 439: 8,12 + 440: 9,12 + 604: 36,21 + 605: 37,21 + 606: 37,22 + 607: 36,22 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 457: 10,12 - 458: 11,12 - 1023: -31,11 - 1024: -30,11 - 1025: -29,11 - 1026: -28,11 - 1027: -27,11 + 441: 10,12 + 442: 11,12 + 1003: -31,11 + 1004: -30,11 + 1005: -29,11 + 1006: -28,11 + 1007: -27,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: 200: -49,17 - 979: -45,8 + 959: -45,8 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 461: 12,11 - 462: 12,10 + 445: 12,11 + 446: 12,10 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 477: 16,14 - 478: 16,13 + 461: 16,14 + 462: 16,13 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: 166: -3,42 - 2582: -3,41 - 2583: -3,40 - 2584: -3,39 - 2585: -3,38 - 2586: -3,37 + 2546: -3,41 + 2547: -3,40 + 2548: -3,39 + 2549: -3,38 + 2550: -3,37 - node: zIndex: 180 color: '#A4610696' id: BrickTileWhiteLineW decals: - 2614: -3,47 - 2615: -3,46 + 2578: -3,47 + 2579: -3,46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 276: 40,12 - 277: 40,13 - 278: 40,14 - 279: 40,15 - 280: 40,16 - 338: 45,11 - 339: 45,12 - 340: 45,13 - 453: 8,10 - 454: 8,11 + 271: 40,12 + 272: 40,13 + 273: 40,14 + 274: 40,15 + 275: 40,16 + 329: 45,11 + 330: 45,12 + 331: 45,13 + 437: 8,10 + 438: 8,11 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 459: 10,11 - 460: 10,10 + 443: 10,11 + 444: 10,10 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 981: -46,9 - 982: -46,10 + 961: -46,9 + 962: -46,10 - node: color: '#9FED580F' id: CheckerNESW @@ -1079,2116 +1088,2103 @@ entities: color: '#FFA5007F' id: CheckerNESW decals: - 662: 58,24 + 643: 58,24 - node: color: '#FFA5007F' id: CheckerNWSE decals: - 661: 58,25 - 663: 56,24 + 642: 58,25 + 644: 56,24 - node: zIndex: 180 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 2630: 1,48 - 2631: 3,48 + 2594: 1,48 + 2595: 3,48 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 665: 9,54 - 666: 10,55 - 667: 10,54 - 668: 11,55 - 669: 7,56 - 670: 7,50 - 671: 1,46 - 672: 4,45 - 673: 3,43 - 674: -4,43 - 675: 0,43 - 676: 1,42 - 677: 3,45 - 678: 6,49 - 679: 1,45 - 680: 1,43 - 681: -2,35 - 682: 1,46 - 683: -1,35 - 684: 1,31 - 685: 9,24 - 686: 9,23 - 687: 12,23 - 688: 12,25 - 689: 38,24 - 690: 55,25 - 691: 57,23 - 692: 58,25 - 693: 57,26 - 694: 56,26 - 695: 56,24 - 696: 58,25 - 697: 55,26 - 698: 55,25 - 699: 44,22 - 700: 35,24 - 701: 17,21 - 702: 2,27 - 703: 3,14 - 704: 4,17 - 705: -6,7 - 706: -3,4 - 707: -3,3 + 646: 9,54 + 647: 10,55 + 648: 10,54 + 649: 11,55 + 650: 7,56 + 651: 7,50 + 652: 1,46 + 653: 4,45 + 654: 3,43 + 655: -4,43 + 656: 0,43 + 657: 1,42 + 658: 3,45 + 659: 6,49 + 660: 1,45 + 661: 1,43 + 662: -2,35 + 663: 1,46 + 664: -1,35 + 665: 1,31 + 666: 9,24 + 667: 9,23 + 668: 12,23 + 669: 12,25 + 670: 38,24 + 671: 55,25 + 672: 57,23 + 673: 58,25 + 674: 57,26 + 675: 56,26 + 676: 56,24 + 677: 58,25 + 678: 55,26 + 679: 55,25 + 680: 44,22 + 681: 35,24 + 682: 17,21 + 683: 2,27 + 684: 3,14 + 685: 4,17 + 686: -6,7 + 687: -3,4 + 688: -3,3 + 689: 55,3 + 690: 57,2 + 691: 59,2 + 692: 59,3 + 693: 59,1 + 694: 59,3 + 695: 56,0 + 696: 57,0 + 697: 60,2 + 698: 60,1 + 699: 60,2 + 700: 60,3 + 701: 57,1 + 702: 57,0 + 703: 56,2 + 704: 56,4 + 705: 58,1 + 706: 56,-2 + 707: 57,1 708: 55,3 - 709: 57,2 - 710: 59,2 - 711: 59,3 - 712: 59,1 - 713: 59,3 - 714: 56,0 - 715: 57,0 - 716: 60,2 - 717: 60,1 - 718: 60,2 - 719: 60,3 - 720: 57,1 - 721: 57,0 - 722: 56,2 - 723: 56,4 - 724: 58,1 - 725: 56,-2 - 726: 57,1 - 727: 55,3 - 728: 45,8 - 729: 44,8 - 730: 42,11 - 731: 43,11 - 732: 42,10 - 733: 42,9 - 734: 43,7 - 735: 42,7 - 736: 43,8 - 737: 42,9 - 738: 43,11 - 739: 42,11 - 740: 40,12 - 741: 43,12 - 742: 49,9 - 743: 43,9 - 744: 46,9 - 745: 45,7 - 746: 43,7 - 747: 26,2 - 748: 0,7 - 749: -3,6 - 750: -5,7 - 751: 18,2 - 752: 1,2 - 753: -1,2 - 754: -22,0 - 755: -42,6 - 756: -52,9 - 757: -52,9 - 758: -52,9 - 759: -52,9 - 760: -52,9 - 761: -50,9 - 762: -53,9 - 763: -57,3 - 764: -61,2 - 765: -63,3 - 766: -61,1 - 767: -61,2 - 768: -61,1 - 769: -60,0 - 770: -59,0 - 771: -59,-1 - 772: -57,-1 - 773: -56,0 - 774: -57,1 - 775: -47,1 - 776: -47,3 - 777: -31,9 - 778: -32,13 - 779: -33,13 - 780: -3,5 - 781: 4,7 - 782: 1,3 - 783: 4,13 - 784: -7,16 - 785: -12,19 - 786: -12,11 - 787: -15,13 - 788: -3,19 - 789: -7,15 - 790: 4,8 - 791: 2,7 - 792: 2,7 - 793: 2,7 - 794: 1,6 - 795: 37,8 - 796: 28,-11 - 797: -2,0 - 798: 1,0 - 799: 0,0 - 800: -2,0 - 801: -13,5 - 802: -30,-11 - 803: -29,-28 - 804: -31,-26 - 805: -30,-28 - 806: -28,-27 - 807: -29,-26 - 808: -27,-26 - 809: -27,-27 - 810: -27,-29 - 811: -30,-29 - 812: -31,-30 - 813: -32,-28 - 814: -33,-27 - 815: -33,-28 - 816: -34,5 - 817: -43,6 - 818: -47,4 - 819: -48,9 - 820: -49,9 - 821: -50,18 - 822: -50,17 - 823: -49,17 - 824: -49,18 - 825: -48,17 - 826: -49,17 - 827: -50,18 - 828: -48,18 - 829: -49,17 - 830: -50,17 - 831: -50,18 - 832: -48,18 - 833: -48,18 - 2921: 5,3 - 2922: 6,3 - 2923: 9,3 - 2924: 8,2 - 2925: 10,3 - 2926: 9,2 - 2927: 8,3 - 2928: 7,3 - 2929: 6,3 - 2930: 7,4 - 2931: 8,4 - 2932: 11,3 - 2933: 5,3 - 2934: -13,3 - 2935: -13,3 - 2936: -12,3 - 2937: -11,3 - 2938: -11,3 - 2939: -11,4 - 2940: -10,2 - 2941: -9,2 - 2942: -9,3 - 2943: -10,3 - 2944: -8,3 - 2945: -7,3 - 2946: -8,3 + 709: 45,8 + 710: 44,8 + 711: 42,11 + 712: 43,11 + 713: 42,10 + 714: 42,9 + 715: 43,7 + 716: 42,7 + 717: 43,8 + 718: 42,9 + 719: 43,11 + 720: 42,11 + 721: 40,12 + 722: 43,12 + 723: 49,9 + 724: 43,9 + 725: 46,9 + 726: 45,7 + 727: 43,7 + 728: 26,2 + 729: 0,7 + 730: -3,6 + 731: -5,7 + 732: 18,2 + 733: 1,2 + 734: -1,2 + 735: -22,0 + 736: -42,6 + 737: -52,9 + 738: -52,9 + 739: -52,9 + 740: -52,9 + 741: -52,9 + 742: -50,9 + 743: -53,9 + 744: -57,3 + 745: -61,2 + 746: -63,3 + 747: -61,1 + 748: -61,2 + 749: -61,1 + 750: -60,0 + 751: -59,0 + 752: -59,-1 + 753: -57,-1 + 754: -56,0 + 755: -57,1 + 756: -47,1 + 757: -47,3 + 758: -31,9 + 759: -32,13 + 760: -33,13 + 761: -3,5 + 762: 4,7 + 763: 1,3 + 764: 4,13 + 765: -7,16 + 766: -12,19 + 767: -12,11 + 768: -15,13 + 769: -3,19 + 770: -7,15 + 771: 4,8 + 772: 2,7 + 773: 2,7 + 774: 2,7 + 775: 1,6 + 776: 37,8 + 777: 28,-11 + 778: -2,0 + 779: 1,0 + 780: 0,0 + 781: -2,0 + 782: -13,5 + 783: -30,-11 + 784: -29,-28 + 785: -31,-26 + 786: -30,-28 + 787: -28,-27 + 788: -29,-26 + 789: -27,-26 + 790: -27,-27 + 791: -27,-29 + 792: -30,-29 + 793: -31,-30 + 794: -32,-28 + 795: -33,-27 + 796: -33,-28 + 797: -34,5 + 798: -43,6 + 799: -47,4 + 800: -48,9 + 801: -49,9 + 802: -50,18 + 803: -50,17 + 804: -49,17 + 805: -49,18 + 806: -48,17 + 807: -49,17 + 808: -50,18 + 809: -48,18 + 810: -49,17 + 811: -50,17 + 812: -50,18 + 813: -48,18 + 814: -48,18 + 2882: 5,3 + 2883: 6,3 + 2884: 9,3 + 2885: 8,2 + 2886: 10,3 + 2887: 9,2 + 2888: 8,3 + 2889: 7,3 + 2890: 6,3 + 2891: 7,4 + 2892: 8,4 + 2893: 11,3 + 2894: 5,3 + 2895: -13,3 + 2896: -13,3 + 2897: -12,3 + 2898: -11,3 + 2899: -11,3 + 2900: -11,4 + 2901: -10,2 + 2902: -9,2 + 2903: -9,3 + 2904: -10,3 + 2905: -8,3 + 2906: -7,3 + 2907: -8,3 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 869: -60,3 - 2530: -3,10 + 850: -60,3 + 2494: -3,10 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 880: -53,14 - 881: -51,13 - 882: -52,10 - 883: -50,11 - 884: -48,11 - 885: -49,14 - 942: -52,8 - 943: -52,7 - 944: -53,6 - 945: -53,5 - 946: -50,4 - 947: -51,3 - 948: -51,3 - 949: -49,3 - 950: -49,3 - 951: -52,5 - 988: -46,11 - 989: -45,8 - 1048: -41,11 - 1049: -37,12 - 1050: -34,11 - 1051: -33,9 - 1052: -32,7 - 1053: -31,12 - 1054: -28,11 - 1064: -31,11 - 1065: -32,10 - 1066: -46,1 - 1067: -41,3 - 1068: -39,4 - 1069: -36,2 - 1070: -40,4 - 1071: -42,4 - 1072: -44,2 - 1073: -44,4 - 1074: -39,4 - 1075: -37,4 - 1076: -44,5 - 1077: -45,4 - 1078: -45,5 - 1079: -43,5 - 1080: -36,4 - 1081: -36,3 - 1082: -38,5 - 1083: -36,5 - 1084: -33,2 - 1085: -31,2 - 1086: -31,4 - 1087: -34,4 - 1088: -33,4 - 1089: -35,2 - 1090: -36,1 - 1091: -39,1 - 1092: -41,3 - 1093: -41,1 - 1094: -31,2 - 1095: -31,1 - 1096: -30,1 - 1097: -30,2 - 1098: -30,4 - 1099: -30,5 - 1100: -29,5 - 1101: -29,2 - 1142: -58,2 - 1143: -60,1 - 1144: -60,-1 - 1145: -53,7 - 1207: -31,-3 - 1208: -28,-6 - 1209: -29,-8 - 1210: -30,-10 - 1211: -31,-10 - 1212: -31,-13 - 1213: -29,-18 - 1214: -30,-17 - 1215: -4,6 - 1216: -5,6 - 1217: -8,5 - 1218: -10,5 - 1219: -10,6 - 1220: -11,5 - 1221: -12,5 - 1222: -15,2 - 1223: -16,2 - 1224: -14,1 - 1225: -10,2 - 1226: -8,1 - 1227: -7,2 - 1228: -9,1 - 1229: -5,3 - 1230: -4,4 - 1231: -4,3 - 1232: -4,2 - 1233: -16,1 - 1234: -17,2 - 1235: -17,3 - 1236: -20,1 - 1237: -20,2 - 1238: -21,3 - 1239: -23,1 - 1240: -25,2 - 1241: -25,3 - 1242: -26,3 - 1243: -27,1 - 1244: -27,3 - 1295: -2,6 - 1296: -2,4 - 1297: -1,3 - 1298: -2,3 - 1299: -2,2 - 1300: 0,3 - 1394: 6,2 - 1395: 6,2 - 1396: 5,5 - 1397: 3,6 - 1398: 3,2 - 1399: 9,2 - 1400: 8,5 - 1401: 10,5 - 1402: 12,2 - 1403: 13,3 - 1404: 14,2 - 1405: 14,2 - 1406: 14,4 - 1407: 17,2 - 1408: 18,3 - 1409: 18,3 - 1410: 20,2 - 1411: 21,1 - 1412: 24,3 - 1413: 23,3 - 1414: 22,3 - 1415: 22,2 - 1416: 22,2 - 1417: 23,2 - 1553: 52,1 - 1554: 53,2 - 1555: 52,2 - 1556: 52,3 - 1557: 55,0 - 1558: 54,1 - 1559: 47,2 - 1560: 44,3 - 1561: 44,4 - 1562: 45,3 - 1563: 42,2 - 1564: 39,1 - 1565: 38,3 - 1566: 35,3 - 1567: 35,2 - 1568: 34,4 - 1569: 33,4 - 1570: 31,2 - 1571: 29,1 - 1572: 28,3 - 1573: 28,1 - 1574: 35,5 - 1575: 45,6 - 1576: 45,5 - 1577: 48,4 - 1578: 47,4 - 1579: 34,8 - 1580: 34,7 - 1581: 35,7 - 1582: 39,7 - 1606: 41,15 - 1607: 41,14 - 1608: 41,13 - 1609: 38,10 - 1610: 36,10 - 1612: 34,15 - 1613: 31,13 - 1614: 34,12 - 1615: 33,9 - 1620: 27,-1 - 1621: 29,-3 - 1622: 28,-4 - 1623: 28,-6 - 1624: 28,-8 - 1625: 27,-6 - 1626: 27,-5 - 1627: 29,-5 - 1628: 29,-7 - 1629: 29,-8 - 1630: 29,-9 - 1631: 29,-11 - 1632: 27,-12 - 1633: 27,-13 - 1634: 28,-13 - 1635: 29,-13 - 1636: 28,-16 - 1637: 27,-18 - 1638: 28,-19 - 1639: 27,-20 - 1640: 29,-22 - 1641: 29,-23 - 1642: 29,-24 - 1683: 10,4 - 1684: -2,29 - 1685: -1,27 - 1686: -1,25 - 1687: -1,24 - 1688: 0,22 - 1689: 1,22 - 1690: 1,24 - 1691: 0,22 - 1692: -2,21 - 1693: -2,20 - 1694: 1,20 - 1695: 1,21 - 1714: -2,28 - 1715: -1,26 - 1716: -1,25 - 1734: -19,11 - 1735: -17,10 - 1736: -14,12 - 1737: -13,11 - 1738: -14,10 - 1751: -15,10 - 1789: -2,15 - 1790: -2,16 - 1791: -2,17 - 1792: -2,17 - 1793: -2,17 - 1794: 0,18 - 1803: -2,18 - 1804: -2,18 - 1811: -3,18 - 1812: -3,18 - 1833: -4,15 - 1834: -4,14 - 1841: -4,12 - 1842: -6,11 - 1843: -6,11 - 1844: -6,11 - 1867: -5,8 - 1868: -5,8 - 1869: -5,8 - 1870: 2,10 - 1871: 2,9 - 1872: 3,8 - 1918: 3,28 - 1919: 4,26 - 1920: 8,28 - 1921: 6,28 - 1922: 9,26 - 1923: 10,26 - 1924: 10,24 - 1925: 10,23 - 1926: 11,24 - 1927: 11,25 - 1928: 11,28 - 1963: 11,26 - 1982: 12,26 - 1983: 13,26 - 1984: 13,24 - 1985: 13,22 - 1986: 16,23 - 1987: 14,21 - 1988: 13,20 - 1989: 14,20 - 1990: 15,23 - 1991: 18,25 - 1992: 15,26 - 1993: 14,26 - 1994: 16,25 - 1995: 17,22 - 1996: 18,25 - 1997: 19,25 - 1998: 17,25 - 1999: 18,22 - 2000: 19,23 - 2001: 22,22 - 2002: 18,23 - 2003: 19,25 - 2004: 17,24 - 2005: 19,23 - 2006: 23,25 - 2007: 21,26 - 2008: 20,25 - 2009: 23,21 - 2010: 21,22 - 2011: 25,22 - 2012: 25,24 - 2013: 25,23 - 2014: 25,25 - 2015: 24,25 - 2016: 28,24 - 2017: 30,23 - 2018: 26,24 - 2019: 27,25 - 2020: 27,24 - 2021: 27,23 - 2022: 29,22 - 2023: 30,22 - 2024: 30,21 - 2025: 29,20 - 2026: 29,20 - 2027: 30,19 - 2028: 32,23 - 2029: 32,23 - 2030: 33,25 - 2031: 33,25 - 2032: 31,26 - 2168: 16,21 - 2169: 24,21 - 2170: 24,21 - 2171: 33,20 - 2172: 33,20 - 2173: 31,20 - 2174: 34,22 - 2175: 30,19 - 2176: 29,19 - 2177: 29,19 - 2191: 36,26 - 2192: 37,24 - 2193: 37,24 - 2225: 48,24 - 2226: 47,24 - 2227: 47,23 - 2228: 48,23 - 2229: 49,22 - 2230: 49,22 - 2231: 49,23 - 2232: 52,24 - 2233: 51,25 - 2234: 50,26 - 2235: 49,25 - 2236: 51,25 - 2237: 52,26 - 2238: 52,26 - 2239: 50,26 - 2240: 53,26 - 2241: 53,26 - 2242: 54,26 - 2301: 40,22 - 2302: 52,22 - 2303: 51,22 - 2304: 52,22 - 2305: 53,23 - 2306: 53,24 - 2307: 54,24 - 2308: 54,23 - 2309: 43,18 - 2310: 39,18 - 2311: 37,17 - 2312: 36,17 - 2313: 34,17 - 2314: 34,18 - 2315: 35,18 - 2316: 33,15 - 2317: 33,16 - 2318: 32,16 - 2319: 32,15 - 2341: 39,17 - 2342: 41,18 - 2343: 41,18 - 2344: 41,17 - 2345: 41,16 - 2346: 42,18 - 2347: 40,15 - 2348: 31,10 - 2349: 31,8 - 2350: 30,8 - 2351: 30,8 - 2352: 30,8 - 2353: 31,7 - 2354: 31,7 - 2355: 31,9 - 2356: 30,10 - 2357: 30,11 - 2398: 14,15 - 2399: 12,16 - 2400: 11,16 - 2401: 10,15 - 2402: 12,15 - 2403: 14,15 - 2404: 15,16 - 2405: 16,16 - 2406: 16,15 - 2407: 16,14 - 2408: 16,13 - 2409: 17,14 - 2410: 16,13 - 2411: 16,11 - 2412: 15,10 - 2413: 15,10 - 2414: 15,12 - 2415: 15,12 - 2416: 15,11 - 2417: 16,10 - 2418: 17,11 - 2419: 17,11 - 2420: 16,12 - 2421: 13,12 - 2422: 13,12 - 2455: -3,33 - 2456: -2,33 - 2457: -2,32 - 2458: -2,32 - 2459: -1,31 - 2460: 0,31 - 2461: 0,31 - 2903: 7,2 - 2904: 6,4 - 2905: 4,3 - 2906: 5,4 - 2907: 11,3 - 2908: 10,2 - 2947: -8,4 - 2948: -7,4 - 2985: -50,3 - 2986: -50,3 - 2987: -53,6 - 2988: -52,6 + 861: -53,14 + 862: -51,13 + 863: -52,10 + 864: -50,11 + 865: -48,11 + 866: -49,14 + 923: -52,8 + 924: -52,7 + 925: -53,6 + 926: -53,5 + 927: -50,4 + 928: -51,3 + 929: -51,3 + 930: -49,3 + 931: -49,3 + 932: -52,5 + 968: -46,11 + 969: -45,8 + 1028: -41,11 + 1029: -37,12 + 1030: -34,11 + 1031: -33,9 + 1032: -32,7 + 1033: -31,12 + 1034: -28,11 + 1044: -31,11 + 1045: -32,10 + 1046: -46,1 + 1047: -41,3 + 1048: -39,4 + 1049: -36,2 + 1050: -40,4 + 1051: -42,4 + 1052: -44,2 + 1053: -44,4 + 1054: -39,4 + 1055: -37,4 + 1056: -44,5 + 1057: -45,4 + 1058: -45,5 + 1059: -43,5 + 1060: -36,4 + 1061: -36,3 + 1062: -38,5 + 1063: -36,5 + 1064: -33,2 + 1065: -31,2 + 1066: -31,4 + 1067: -34,4 + 1068: -33,4 + 1069: -35,2 + 1070: -36,1 + 1071: -39,1 + 1072: -41,3 + 1073: -41,1 + 1074: -31,2 + 1075: -31,1 + 1076: -30,1 + 1077: -30,2 + 1078: -30,4 + 1079: -30,5 + 1080: -29,5 + 1081: -29,2 + 1122: -58,2 + 1123: -60,1 + 1124: -60,-1 + 1125: -53,7 + 1187: -31,-3 + 1188: -28,-6 + 1189: -29,-8 + 1190: -30,-10 + 1191: -31,-10 + 1192: -31,-13 + 1193: -29,-18 + 1194: -30,-17 + 1195: -4,6 + 1196: -5,6 + 1197: -8,5 + 1198: -10,5 + 1199: -10,6 + 1200: -11,5 + 1201: -12,5 + 1202: -15,2 + 1203: -16,2 + 1204: -14,1 + 1205: -10,2 + 1206: -8,1 + 1207: -7,2 + 1208: -9,1 + 1209: -5,3 + 1210: -4,4 + 1211: -4,3 + 1212: -4,2 + 1213: -16,1 + 1214: -17,2 + 1215: -17,3 + 1216: -20,1 + 1217: -20,2 + 1218: -21,3 + 1219: -23,1 + 1220: -25,2 + 1221: -25,3 + 1222: -26,3 + 1223: -27,1 + 1224: -27,3 + 1275: -2,6 + 1276: -2,4 + 1277: -1,3 + 1278: -2,3 + 1279: -2,2 + 1280: 0,3 + 1374: 6,2 + 1375: 6,2 + 1376: 5,5 + 1377: 3,6 + 1378: 3,2 + 1379: 9,2 + 1380: 8,5 + 1381: 10,5 + 1382: 12,2 + 1383: 13,3 + 1384: 14,2 + 1385: 14,2 + 1386: 14,4 + 1387: 17,2 + 1388: 18,3 + 1389: 18,3 + 1390: 20,2 + 1391: 21,1 + 1392: 24,3 + 1393: 23,3 + 1394: 22,3 + 1395: 22,2 + 1396: 22,2 + 1397: 23,2 + 1533: 52,1 + 1534: 53,2 + 1535: 52,2 + 1536: 52,3 + 1537: 55,0 + 1538: 54,1 + 1539: 47,2 + 1540: 44,3 + 1541: 44,4 + 1542: 45,3 + 1543: 42,2 + 1544: 39,1 + 1545: 38,3 + 1546: 35,3 + 1547: 35,2 + 1548: 34,4 + 1549: 33,4 + 1550: 31,2 + 1551: 29,1 + 1552: 28,3 + 1553: 28,1 + 1554: 35,5 + 1555: 45,6 + 1556: 45,5 + 1557: 48,4 + 1558: 47,4 + 1559: 34,8 + 1560: 34,7 + 1561: 35,7 + 1562: 39,7 + 1583: 41,15 + 1584: 41,14 + 1585: 41,13 + 1586: 38,10 + 1587: 36,10 + 1589: 34,15 + 1590: 33,9 + 1595: 27,-1 + 1596: 29,-3 + 1597: 28,-4 + 1598: 28,-6 + 1599: 28,-8 + 1600: 27,-6 + 1601: 27,-5 + 1602: 29,-5 + 1603: 29,-7 + 1604: 29,-8 + 1605: 29,-9 + 1606: 29,-11 + 1607: 27,-12 + 1608: 27,-13 + 1609: 28,-13 + 1610: 29,-13 + 1611: 28,-16 + 1612: 27,-18 + 1613: 28,-19 + 1614: 27,-20 + 1615: 29,-22 + 1616: 29,-23 + 1617: 29,-24 + 1658: 10,4 + 1659: -2,29 + 1660: -1,27 + 1661: -1,25 + 1662: -1,24 + 1663: 0,22 + 1664: 1,22 + 1665: 1,24 + 1666: 0,22 + 1667: -2,21 + 1668: -2,20 + 1669: 1,20 + 1670: 1,21 + 1689: -2,28 + 1690: -1,26 + 1691: -1,25 + 1709: -19,11 + 1710: -17,10 + 1711: -14,12 + 1712: -13,11 + 1713: -14,10 + 1726: -15,10 + 1764: -2,15 + 1765: -2,16 + 1766: -2,17 + 1767: -2,17 + 1768: -2,17 + 1769: 0,18 + 1778: -2,18 + 1779: -2,18 + 1786: -3,18 + 1787: -3,18 + 1808: -4,15 + 1809: -4,14 + 1816: -4,12 + 1817: -6,11 + 1818: -6,11 + 1819: -6,11 + 1842: -5,8 + 1843: -5,8 + 1844: -5,8 + 1845: 2,10 + 1846: 2,9 + 1847: 3,8 + 1893: 3,28 + 1894: 4,26 + 1895: 8,28 + 1896: 6,28 + 1897: 9,26 + 1898: 10,26 + 1899: 10,24 + 1900: 10,23 + 1901: 11,24 + 1902: 11,25 + 1903: 11,28 + 1938: 11,26 + 1957: 12,26 + 1958: 13,26 + 1959: 13,24 + 1960: 13,22 + 1961: 16,23 + 1962: 14,21 + 1963: 13,20 + 1964: 14,20 + 1965: 15,23 + 1966: 18,25 + 1967: 15,26 + 1968: 14,26 + 1969: 16,25 + 1970: 17,22 + 1971: 18,25 + 1972: 19,25 + 1973: 17,25 + 1974: 18,22 + 1975: 19,23 + 1976: 22,22 + 1977: 18,23 + 1978: 19,25 + 1979: 17,24 + 1980: 19,23 + 1981: 23,25 + 1982: 21,26 + 1983: 20,25 + 1984: 23,21 + 1985: 21,22 + 1986: 25,22 + 1987: 25,24 + 1988: 25,23 + 1989: 25,25 + 1990: 24,25 + 1991: 28,24 + 1992: 30,23 + 1993: 26,24 + 1994: 27,25 + 1995: 27,24 + 1996: 27,23 + 1997: 29,22 + 1998: 30,22 + 1999: 30,21 + 2000: 29,20 + 2001: 29,20 + 2002: 30,19 + 2003: 32,23 + 2004: 32,23 + 2005: 33,25 + 2006: 33,25 + 2007: 31,26 + 2142: 16,21 + 2143: 24,21 + 2144: 24,21 + 2145: 33,20 + 2146: 33,20 + 2147: 31,20 + 2148: 34,22 + 2149: 30,19 + 2163: 36,26 + 2164: 37,24 + 2165: 37,24 + 2197: 48,24 + 2198: 47,24 + 2199: 47,23 + 2200: 48,23 + 2201: 49,22 + 2202: 49,22 + 2203: 49,23 + 2204: 52,24 + 2205: 51,25 + 2206: 50,26 + 2207: 49,25 + 2208: 51,25 + 2209: 52,26 + 2210: 52,26 + 2211: 50,26 + 2212: 53,26 + 2213: 53,26 + 2214: 54,26 + 2273: 40,22 + 2274: 52,22 + 2275: 51,22 + 2276: 52,22 + 2277: 53,23 + 2278: 53,24 + 2279: 54,24 + 2280: 54,23 + 2281: 43,18 + 2282: 39,18 + 2283: 37,17 + 2284: 36,17 + 2285: 35,18 + 2305: 39,17 + 2306: 41,18 + 2307: 41,18 + 2308: 41,17 + 2309: 41,16 + 2310: 42,18 + 2311: 40,15 + 2312: 31,10 + 2313: 31,8 + 2314: 30,8 + 2315: 30,8 + 2316: 30,8 + 2317: 31,7 + 2318: 31,7 + 2319: 31,9 + 2320: 30,10 + 2321: 30,11 + 2362: 14,15 + 2363: 12,16 + 2364: 11,16 + 2365: 10,15 + 2366: 12,15 + 2367: 14,15 + 2368: 15,16 + 2369: 16,16 + 2370: 16,15 + 2371: 16,14 + 2372: 16,13 + 2373: 17,14 + 2374: 16,13 + 2375: 16,11 + 2376: 15,10 + 2377: 15,10 + 2378: 15,12 + 2379: 15,12 + 2380: 15,11 + 2381: 16,10 + 2382: 17,11 + 2383: 17,11 + 2384: 16,12 + 2385: 13,12 + 2386: 13,12 + 2419: -3,33 + 2420: -2,33 + 2421: -2,32 + 2422: -2,32 + 2423: -1,31 + 2424: 0,31 + 2425: 0,31 + 2864: 7,2 + 2865: 6,4 + 2866: 4,3 + 2867: 5,4 + 2868: 11,3 + 2869: 10,2 + 2908: -8,4 + 2909: -7,4 + 2946: -50,3 + 2947: -50,3 + 2948: -53,6 + 2949: -52,6 + 2969: 31,18 + 2970: 32,16 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtHeavy decals: - 2713: 5,48 - 2714: 5,49 - 2715: 4,49 - 2716: 5,51 - 2717: 5,53 - 2718: 5,54 - 2719: 5,55 - 2720: 6,55 - 2721: 7,57 - 2722: 6,54 - 2723: 6,54 - 2724: 8,55 - 2725: 7,50 - 2726: 8,50 - 2727: 3,50 - 2728: 2,47 - 2729: -2,45 - 2730: 4,47 - 2731: 8,45 - 2732: 7,46 - 2733: 7,43 - 2734: 8,42 - 2735: 4,41 - 2736: 2,39 - 2737: 0,39 - 2738: -1,39 - 2739: -1,38 - 2787: 8,51 - 2801: 10,53 - 2802: 10,53 - 2803: 11,55 - 2804: 11,55 - 2805: -6,44 - 2806: -6,45 - 2807: -5,44 - 2808: -6,43 - 2809: -5,43 - 2810: -5,43 - 2811: 0,40 - 2812: 4,40 - 2813: -34,8 - 2814: -33,7 - 2815: -32,8 - 2816: -33,10 - 2817: -33,10 - 2818: -34,10 - 2819: -32,11 - 2820: -36,12 - 2821: -35,11 - 2822: -39,11 - 2823: -40,12 - 2850: -53,18 - 2851: -53,16 - 2852: -52,15 - 2853: -52,14 - 2854: -51,15 - 2874: -49,5 - 2875: -49,5 - 2876: -56,2 - 2877: -46,4 - 2878: -42,3 - 2879: -42,3 + 2677: 5,48 + 2678: 5,49 + 2679: 4,49 + 2680: 5,51 + 2681: 5,53 + 2682: 5,54 + 2683: 5,55 + 2684: 6,55 + 2685: 7,57 + 2686: 6,54 + 2687: 6,54 + 2688: 8,55 + 2689: 7,50 + 2690: 8,50 + 2691: 3,50 + 2692: 2,47 + 2693: -2,45 + 2694: 4,47 + 2695: 8,45 + 2696: 7,46 + 2697: 7,43 + 2698: 8,42 + 2699: 4,41 + 2700: 2,39 + 2701: 0,39 + 2702: -1,39 + 2703: -1,38 + 2751: 8,51 + 2765: 10,53 + 2766: 10,53 + 2767: 11,55 + 2768: 11,55 + 2769: -6,44 + 2770: -6,45 + 2771: -5,44 + 2772: -6,43 + 2773: -5,43 + 2774: -5,43 + 2775: 0,40 + 2776: 4,40 + 2777: -34,8 + 2778: -33,7 + 2779: -32,8 + 2780: -33,10 + 2781: -33,10 + 2782: -34,10 + 2783: -32,11 + 2784: -36,12 + 2785: -35,11 + 2786: -39,11 + 2787: -40,12 + 2814: -53,18 + 2815: -53,16 + 2816: -52,15 + 2817: -52,14 + 2818: -51,15 + 2835: -49,5 + 2836: -49,5 + 2837: -56,2 + 2838: -46,4 + 2839: -42,3 + 2840: -42,3 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 953: -46,7 - 2529: -3,11 + 933: -46,7 + 2493: -3,11 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 990: -46,9 - 991: -44,11 - 992: -44,11 - 993: -44,8 - 994: -46,8 - 995: -45,10 - 1055: -34,6 - 1102: -46,2 - 1103: -45,1 - 1104: -45,2 - 1105: -45,4 - 1106: -39,3 - 1107: -38,2 - 1108: -37,1 - 1109: -37,3 - 1110: -40,3 - 1111: -42,2 - 1112: -34,2 - 1113: -34,3 - 1114: -36,4 - 1115: -32,3 - 1116: -32,1 - 1117: -35,1 - 1192: -31,-3 - 1193: -31,-4 - 1194: -31,-7 - 1195: -28,-9 - 1196: -29,-9 - 1197: -30,-12 - 1198: -29,-15 - 1199: -30,-12 - 1200: -30,-15 - 1201: -30,-15 - 1202: -29,-17 - 1203: -29,-16 - 1204: -30,-23 - 1205: -28,-23 - 1206: -29,-22 - 1245: -27,4 - 1246: -25,2 - 1247: -24,1 - 1248: -20,3 - 1249: -18,3 - 1250: -19,2 - 1251: -16,4 - 1252: -12,4 - 1253: -12,4 - 1254: -7,5 - 1301: 0,6 - 1302: 0,2 - 1373: 16,2 - 1374: 19,1 - 1375: 19,1 - 1376: 20,2 - 1377: 19,3 - 1378: 19,3 - 1379: 24,3 - 1380: 24,4 - 1381: 24,2 - 1382: 25,1 - 1383: 12,3 - 1384: 11,2 - 1385: 14,1 - 1386: 14,1 - 1387: 14,1 - 1388: 5,1 - 1389: 4,4 - 1390: 4,4 - 1391: 4,4 - 1392: 3,3 - 1393: 5,2 - 1480: 46,3 - 1481: 46,5 - 1482: 47,6 - 1483: 47,7 - 1484: 46,8 - 1485: 45,8 - 1486: 46,6 - 1487: 45,2 - 1488: 43,2 - 1489: 42,5 - 1490: 41,4 - 1491: 39,3 - 1492: 39,4 - 1493: 38,5 - 1494: 36,3 - 1495: 34,3 - 1496: 32,4 - 1497: 32,3 - 1498: 32,2 - 1499: 34,2 - 1500: 33,3 - 1501: 33,2 - 1502: 29,2 - 1503: 29,4 - 1504: 28,5 - 1505: 28,3 - 1506: 27,2 - 1507: 27,3 - 1508: 28,2 - 1509: 30,1 - 1510: 32,1 - 1511: 33,1 - 1611: 41,14 - 1720: -1,23 - 1721: -1,23 - 1722: -1,21 - 1723: 0,21 - 1724: 0,25 - 1725: 0,27 - 1726: 0,27 - 1727: -2,28 - 1728: -1,28 - 1729: 1,26 - 1730: -2,22 - 1731: -1,22 - 1752: -16,10 - 1753: -18,11 - 1754: -13,10 - 1755: -11,13 - 1756: -12,17 - 1795: -1,18 - 1796: 0,17 - 1805: -1,18 - 1806: -1,17 - 1813: -3,16 - 1814: -3,16 - 1815: -3,16 - 1816: -4,17 - 1817: -4,17 - 1818: -4,18 - 1819: -4,18 - 1825: -6,18 - 1826: -5,17 - 1827: -4,16 - 1835: -6,14 - 1836: -6,13 - 1837: -6,15 - 1838: -5,16 - 1839: -4,11 - 1840: -4,11 - 1852: -4,9 - 1853: -6,10 - 1854: -6,10 - 1855: -3,11 - 1856: -6,13 - 1857: -6,13 - 1858: -6,18 - 1873: 4,9 - 1874: 3,12 - 1875: 3,13 - 1876: 3,13 - 1877: 2,12 - 1878: 2,12 - 1879: 3,11 - 1880: 3,10 - 1881: 3,14 - 1882: 3,17 - 1883: 3,17 - 1929: 3,28 - 1930: 3,27 - 1931: 3,26 - 1932: 3,25 - 1933: 7,26 - 1934: 7,27 - 1935: 6,27 - 1955: 4,25 - 1956: 6,25 - 1957: 8,25 - 1958: 8,25 - 2033: 14,25 - 2034: 13,25 - 2035: 14,23 - 2036: 14,23 - 2037: 13,23 - 2038: 15,24 - 2039: 15,24 - 2040: 16,24 - 2041: 17,23 - 2042: 16,22 - 2043: 15,22 - 2044: 18,24 - 2045: 19,25 - 2046: 19,24 - 2047: 20,24 - 2048: 20,24 - 2049: 20,23 - 2050: 20,23 - 2051: 19,26 - 2052: 19,26 - 2053: 18,26 - 2054: 17,26 - 2055: 16,26 - 2056: 21,24 - 2057: 21,24 - 2058: 21,22 - 2059: 23,22 - 2060: 21,23 - 2061: 21,23 - 2062: 20,22 - 2063: 22,23 - 2064: 23,24 - 2065: 22,25 - 2066: 21,24 - 2067: 22,24 - 2068: 23,24 - 2069: 24,24 - 2070: 26,25 - 2071: 26,25 - 2072: 24,24 - 2073: 24,23 - 2074: 27,22 - 2075: 27,22 - 2076: 26,22 - 2077: 26,23 - 2078: 28,23 - 2079: 28,23 - 2080: 28,24 - 2081: 29,24 - 2082: 29,24 - 2083: 31,24 - 2084: 31,25 - 2085: 29,25 - 2086: 30,24 - 2087: 29,22 - 2088: 31,23 - 2089: 31,23 - 2090: 31,22 - 2091: 32,22 - 2092: 30,23 - 2093: 29,23 - 2094: 29,21 - 2095: 28,22 - 2096: 30,20 - 2097: 31,21 - 2098: 31,21 - 2099: 32,22 - 2100: 33,24 - 2101: 33,24 - 2102: 32,24 - 2103: 32,25 - 2104: 32,26 - 2178: 34,23 - 2179: 34,23 - 2180: 34,25 - 2181: 34,26 - 2194: 41,25 - 2195: 40,26 - 2196: 40,26 - 2197: 39,25 - 2198: 40,24 - 2199: 39,23 - 2200: 40,22 - 2201: 41,23 - 2202: 44,24 - 2203: 44,25 - 2204: 43,25 - 2205: 42,25 - 2206: 43,25 - 2207: 44,26 - 2208: 44,26 - 2209: 46,25 - 2210: 47,26 - 2211: 49,26 - 2212: 48,26 - 2213: 49,25 - 2214: 49,26 - 2215: 50,25 - 2216: 50,24 - 2217: 50,22 - 2218: 50,22 - 2219: 50,23 - 2220: 49,24 - 2221: 48,24 - 2222: 46,23 - 2223: 46,23 - 2224: 46,24 - 2290: 50,26 - 2291: 51,23 - 2292: 51,24 - 2293: 45,22 - 2294: 45,22 - 2295: 45,23 - 2296: 44,23 - 2297: 42,23 - 2298: 43,22 - 2299: 42,22 - 2300: 41,22 - 2320: 33,14 - 2321: 32,14 - 2322: 32,13 - 2323: 32,13 - 2324: 34,11 - 2325: 34,10 - 2326: 33,10 - 2327: 35,10 - 2328: 38,10 - 2329: 37,11 - 2330: 38,11 - 2366: 30,9 - 2367: 30,9 - 2368: 14,11 - 2369: 14,11 - 2370: 14,11 - 2371: 14,10 - 2372: 13,10 - 2373: 13,11 - 2374: 11,11 - 2375: 10,11 - 2376: 9,11 - 2377: 9,11 - 2378: 9,10 - 2379: 9,13 - 2380: 9,13 - 2381: 9,13 - 2382: 9,13 - 2383: 11,14 - 2384: 11,15 - 2385: 12,16 - 2386: 11,16 - 2387: 10,15 - 2388: 11,15 - 2389: 15,16 - 2390: 13,14 - 2391: 15,15 - 2392: 16,16 - 2393: 17,16 - 2394: 17,15 - 2395: 17,13 - 2396: 17,13 - 2397: 17,12 - 2423: 10,12 - 2424: 11,12 - 2425: 11,13 - 2426: 11,13 - 2427: 9,12 - 2428: 8,12 - 2429: 8,12 - 2430: 10,14 - 2462: -3,32 - 2463: -2,32 - 2464: -2,31 - 2465: -2,31 - 2466: 0,33 - 2467: 0,33 - 2562: -3,13 - 2563: -2,10 - 2564: -3,9 - 2565: -1,8 - 2566: -1,9 - 2567: 0,10 - 2571: -1,12 - 2572: -1,13 - 2573: -3,12 - 2574: 0,11 - 2575: 1,13 - 2576: 3,16 - 2577: 3,16 - 2578: 3,18 - 2579: 3,18 - 2580: 3,18 - 2581: 2,18 - 2909: 8,2 - 2910: 7,4 - 2911: 11,4 - 2912: 6,5 - 2949: -14,2 - 2950: -14,4 - 2951: -13,2 + 970: -46,9 + 971: -44,11 + 972: -44,11 + 973: -44,8 + 974: -46,8 + 975: -45,10 + 1035: -34,6 + 1082: -46,2 + 1083: -45,1 + 1084: -45,2 + 1085: -45,4 + 1086: -39,3 + 1087: -38,2 + 1088: -37,1 + 1089: -37,3 + 1090: -40,3 + 1091: -42,2 + 1092: -34,2 + 1093: -34,3 + 1094: -36,4 + 1095: -32,3 + 1096: -32,1 + 1097: -35,1 + 1172: -31,-3 + 1173: -31,-4 + 1174: -31,-7 + 1175: -28,-9 + 1176: -29,-9 + 1177: -30,-12 + 1178: -29,-15 + 1179: -30,-12 + 1180: -30,-15 + 1181: -30,-15 + 1182: -29,-17 + 1183: -29,-16 + 1184: -30,-23 + 1185: -28,-23 + 1186: -29,-22 + 1225: -27,4 + 1226: -25,2 + 1227: -24,1 + 1228: -20,3 + 1229: -18,3 + 1230: -19,2 + 1231: -16,4 + 1232: -12,4 + 1233: -12,4 + 1234: -7,5 + 1281: 0,6 + 1282: 0,2 + 1353: 16,2 + 1354: 19,1 + 1355: 19,1 + 1356: 20,2 + 1357: 19,3 + 1358: 19,3 + 1359: 24,3 + 1360: 24,4 + 1361: 24,2 + 1362: 25,1 + 1363: 12,3 + 1364: 11,2 + 1365: 14,1 + 1366: 14,1 + 1367: 14,1 + 1368: 5,1 + 1369: 4,4 + 1370: 4,4 + 1371: 4,4 + 1372: 3,3 + 1373: 5,2 + 1460: 46,3 + 1461: 46,5 + 1462: 47,6 + 1463: 47,7 + 1464: 46,8 + 1465: 45,8 + 1466: 46,6 + 1467: 45,2 + 1468: 43,2 + 1469: 42,5 + 1470: 41,4 + 1471: 39,3 + 1472: 39,4 + 1473: 38,5 + 1474: 36,3 + 1475: 34,3 + 1476: 32,4 + 1477: 32,3 + 1478: 32,2 + 1479: 34,2 + 1480: 33,3 + 1481: 33,2 + 1482: 29,2 + 1483: 29,4 + 1484: 28,5 + 1485: 28,3 + 1486: 27,2 + 1487: 27,3 + 1488: 28,2 + 1489: 30,1 + 1490: 32,1 + 1491: 33,1 + 1588: 41,14 + 1695: -1,23 + 1696: -1,23 + 1697: -1,21 + 1698: 0,21 + 1699: 0,25 + 1700: 0,27 + 1701: 0,27 + 1702: -2,28 + 1703: -1,28 + 1704: 1,26 + 1705: -2,22 + 1706: -1,22 + 1727: -16,10 + 1728: -18,11 + 1729: -13,10 + 1730: -11,13 + 1731: -12,17 + 1770: -1,18 + 1771: 0,17 + 1780: -1,18 + 1781: -1,17 + 1788: -3,16 + 1789: -3,16 + 1790: -3,16 + 1791: -4,17 + 1792: -4,17 + 1793: -4,18 + 1794: -4,18 + 1800: -6,18 + 1801: -5,17 + 1802: -4,16 + 1810: -6,14 + 1811: -6,13 + 1812: -6,15 + 1813: -5,16 + 1814: -4,11 + 1815: -4,11 + 1827: -4,9 + 1828: -6,10 + 1829: -6,10 + 1830: -3,11 + 1831: -6,13 + 1832: -6,13 + 1833: -6,18 + 1848: 4,9 + 1849: 3,12 + 1850: 3,13 + 1851: 3,13 + 1852: 2,12 + 1853: 2,12 + 1854: 3,11 + 1855: 3,10 + 1856: 3,14 + 1857: 3,17 + 1858: 3,17 + 1904: 3,28 + 1905: 3,27 + 1906: 3,26 + 1907: 3,25 + 1908: 7,26 + 1909: 7,27 + 1910: 6,27 + 1930: 4,25 + 1931: 6,25 + 1932: 8,25 + 1933: 8,25 + 2008: 14,25 + 2009: 13,25 + 2010: 14,23 + 2011: 14,23 + 2012: 13,23 + 2013: 15,24 + 2014: 15,24 + 2015: 16,24 + 2016: 17,23 + 2017: 16,22 + 2018: 15,22 + 2019: 18,24 + 2020: 19,25 + 2021: 19,24 + 2022: 20,24 + 2023: 20,24 + 2024: 20,23 + 2025: 20,23 + 2026: 19,26 + 2027: 19,26 + 2028: 18,26 + 2029: 17,26 + 2030: 16,26 + 2031: 21,24 + 2032: 21,24 + 2033: 21,22 + 2034: 23,22 + 2035: 21,23 + 2036: 21,23 + 2037: 20,22 + 2038: 22,23 + 2039: 23,24 + 2040: 22,25 + 2041: 21,24 + 2042: 22,24 + 2043: 23,24 + 2044: 24,24 + 2045: 26,25 + 2046: 26,25 + 2047: 24,24 + 2048: 24,23 + 2049: 27,22 + 2050: 27,22 + 2051: 26,22 + 2052: 26,23 + 2053: 28,23 + 2054: 28,23 + 2055: 28,24 + 2056: 29,24 + 2057: 29,24 + 2058: 31,24 + 2059: 31,25 + 2060: 29,25 + 2061: 30,24 + 2062: 29,22 + 2063: 31,23 + 2064: 31,23 + 2065: 31,22 + 2066: 32,22 + 2067: 30,23 + 2068: 29,23 + 2069: 29,21 + 2070: 28,22 + 2071: 30,20 + 2072: 31,21 + 2073: 31,21 + 2074: 32,22 + 2075: 33,24 + 2076: 33,24 + 2077: 32,24 + 2078: 32,25 + 2079: 32,26 + 2150: 34,23 + 2151: 34,23 + 2152: 34,25 + 2153: 34,26 + 2166: 41,25 + 2167: 40,26 + 2168: 40,26 + 2169: 39,25 + 2170: 40,24 + 2171: 39,23 + 2172: 40,22 + 2173: 41,23 + 2174: 44,24 + 2175: 44,25 + 2176: 43,25 + 2177: 42,25 + 2178: 43,25 + 2179: 44,26 + 2180: 44,26 + 2181: 46,25 + 2182: 47,26 + 2183: 49,26 + 2184: 48,26 + 2185: 49,25 + 2186: 49,26 + 2187: 50,25 + 2188: 50,24 + 2189: 50,22 + 2190: 50,22 + 2191: 50,23 + 2192: 49,24 + 2193: 48,24 + 2194: 46,23 + 2195: 46,23 + 2196: 46,24 + 2262: 50,26 + 2263: 51,23 + 2264: 51,24 + 2265: 45,22 + 2266: 45,22 + 2267: 45,23 + 2268: 44,23 + 2269: 42,23 + 2270: 43,22 + 2271: 42,22 + 2272: 41,22 + 2286: 33,14 + 2287: 32,14 + 2288: 34,11 + 2289: 34,10 + 2290: 33,10 + 2291: 35,10 + 2292: 38,10 + 2293: 37,11 + 2294: 38,11 + 2330: 30,9 + 2331: 30,9 + 2332: 14,11 + 2333: 14,11 + 2334: 14,11 + 2335: 14,10 + 2336: 13,10 + 2337: 13,11 + 2338: 11,11 + 2339: 10,11 + 2340: 9,11 + 2341: 9,11 + 2342: 9,10 + 2343: 9,13 + 2344: 9,13 + 2345: 9,13 + 2346: 9,13 + 2347: 11,14 + 2348: 11,15 + 2349: 12,16 + 2350: 11,16 + 2351: 10,15 + 2352: 11,15 + 2353: 15,16 + 2354: 13,14 + 2355: 15,15 + 2356: 16,16 + 2357: 17,16 + 2358: 17,15 + 2359: 17,13 + 2360: 17,13 + 2361: 17,12 + 2387: 10,12 + 2388: 11,12 + 2389: 11,13 + 2390: 11,13 + 2391: 9,12 + 2392: 8,12 + 2393: 8,12 + 2394: 10,14 + 2426: -3,32 + 2427: -2,32 + 2428: -2,31 + 2429: -2,31 + 2430: 0,33 + 2431: 0,33 + 2526: -3,13 + 2527: -2,10 + 2528: -3,9 + 2529: -1,8 + 2530: -1,9 + 2531: 0,10 + 2535: -1,12 + 2536: -1,13 + 2537: -3,12 + 2538: 0,11 + 2539: 1,13 + 2540: 3,16 + 2541: 3,16 + 2542: 3,18 + 2543: 3,18 + 2544: 3,18 + 2545: 2,18 + 2870: 8,2 + 2871: 7,4 + 2872: 11,4 + 2873: 6,5 + 2910: -14,2 + 2911: -14,4 + 2912: -13,2 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2635: 6,57 - 2636: 5,57 - 2637: 5,56 - 2638: 5,54 - 2639: 7,54 - 2640: 7,54 - 2641: 6,54 - 2642: 6,53 - 2643: 5,53 - 2644: 7,53 - 2645: 8,51 - 2646: 8,49 - 2647: 7,48 - 2648: 7,50 - 2649: 7,50 - 2650: 5,50 - 2651: 4,48 - 2652: 5,47 - 2653: 4,50 - 2654: 2,50 - 2655: 2,50 - 2656: 1,51 - 2657: 1,51 - 2658: 0,50 - 2659: 1,49 - 2660: 0,48 - 2661: 1,48 - 2662: 0,47 - 2663: 0,47 - 2664: 0,47 - 2665: -1,47 - 2666: -1,46 - 2667: -2,47 - 2668: -2,47 - 2669: -2,46 - 2670: -2,45 - 2671: -3,45 - 2672: -3,44 - 2673: -3,44 - 2674: -1,44 - 2675: -1,44 - 2676: -3,43 - 2677: -2,43 - 2678: -1,43 - 2679: -1,42 - 2680: -2,42 - 2681: 0,41 - 2682: -1,41 - 2683: -2,40 - 2684: -2,40 - 2685: -3,40 - 2686: -3,39 - 2687: -2,38 - 2688: -3,38 - 2689: -2,38 - 2690: -3,37 - 2691: -3,36 - 2692: -2,36 - 2693: 0,36 - 2694: 0,38 - 2695: 1,38 - 2696: 3,38 - 2697: 1,40 - 2698: 3,41 - 2699: 5,41 - 2700: 2,41 - 2701: 3,36 - 2702: 4,36 - 2703: 4,37 - 2704: 6,41 - 2705: 7,41 - 2706: 7,42 - 2707: 8,43 - 2708: 8,43 - 2709: 7,45 - 2710: 7,47 - 2711: 8,47 - 2712: 5,48 - 2788: 6,52 - 2789: 5,52 - 2790: 6,51 - 2791: 6,51 - 2792: 1,41 - 2793: 1,41 - 2794: 11,53 - 2795: 11,53 - 2796: 11,53 - 2797: 10,55 - 2798: 10,55 - 2799: 10,54 - 2800: 11,54 - 2824: -40,11 - 2825: -41,12 - 2826: -38,12 - 2827: -37,11 - 2828: -36,11 - 2829: -36,11 - 2830: -35,12 - 2831: -32,12 - 2832: -29,12 - 2833: -28,12 - 2834: -27,12 - 2855: -53,15 - 2856: -51,14 - 2857: -51,14 - 2858: -53,12 - 2859: -53,12 - 2860: -53,13 - 2861: -52,12 + 2599: 6,57 + 2600: 5,57 + 2601: 5,56 + 2602: 5,54 + 2603: 7,54 + 2604: 7,54 + 2605: 6,54 + 2606: 6,53 + 2607: 5,53 + 2608: 7,53 + 2609: 8,51 + 2610: 8,49 + 2611: 7,48 + 2612: 7,50 + 2613: 7,50 + 2614: 5,50 + 2615: 4,48 + 2616: 5,47 + 2617: 4,50 + 2618: 2,50 + 2619: 2,50 + 2620: 1,51 + 2621: 1,51 + 2622: 0,50 + 2623: 1,49 + 2624: 0,48 + 2625: 1,48 + 2626: 0,47 + 2627: 0,47 + 2628: 0,47 + 2629: -1,47 + 2630: -1,46 + 2631: -2,47 + 2632: -2,47 + 2633: -2,46 + 2634: -2,45 + 2635: -3,45 + 2636: -3,44 + 2637: -3,44 + 2638: -1,44 + 2639: -1,44 + 2640: -3,43 + 2641: -2,43 + 2642: -1,43 + 2643: -1,42 + 2644: -2,42 + 2645: 0,41 + 2646: -1,41 + 2647: -2,40 + 2648: -2,40 + 2649: -3,40 + 2650: -3,39 + 2651: -2,38 + 2652: -3,38 + 2653: -2,38 + 2654: -3,37 + 2655: -3,36 + 2656: -2,36 + 2657: 0,36 + 2658: 0,38 + 2659: 1,38 + 2660: 3,38 + 2661: 1,40 + 2662: 3,41 + 2663: 5,41 + 2664: 2,41 + 2665: 3,36 + 2666: 4,36 + 2667: 4,37 + 2668: 6,41 + 2669: 7,41 + 2670: 7,42 + 2671: 8,43 + 2672: 8,43 + 2673: 7,45 + 2674: 7,47 + 2675: 8,47 + 2676: 5,48 + 2752: 6,52 + 2753: 5,52 + 2754: 6,51 + 2755: 6,51 + 2756: 1,41 + 2757: 1,41 + 2758: 11,53 + 2759: 11,53 + 2760: 11,53 + 2761: 10,55 + 2762: 10,55 + 2763: 10,54 + 2764: 11,54 + 2788: -40,11 + 2789: -41,12 + 2790: -38,12 + 2791: -37,11 + 2792: -36,11 + 2793: -36,11 + 2794: -35,12 + 2795: -32,12 + 2796: -29,12 + 2797: -28,12 + 2798: -27,12 + 2819: -53,15 + 2820: -51,14 + 2821: -51,14 + 2822: -53,12 + 2823: -53,12 + 2824: -53,13 + 2825: -52,12 - node: color: '#FFFFFFFF' id: DirtLight decals: - 870: -58,3 + 851: -58,3 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 886: -52,14 - 887: -53,17 - 888: -53,11 - 889: -48,12 - 890: -45,14 - 891: -45,14 - 892: -45,14 - 893: -44,16 - 894: -44,16 - 895: -44,16 - 896: -46,18 - 897: -46,18 - 898: -44,14 - 923: -54,8 - 924: -56,5 - 925: -55,2 - 926: -56,1 - 927: -56,1 - 928: -55,1 - 929: -53,1 - 930: -51,1 - 931: -52,2 - 932: -52,2 - 933: -51,2 - 934: -49,1 - 935: -48,2 - 936: -48,3 - 937: -49,4 - 938: -49,4 - 939: -48,5 - 940: -48,5 - 941: -48,8 - 996: -46,10 - 997: -44,9 - 998: -44,9 - 999: -45,9 - 1057: -37,11 - 1058: -41,12 - 1059: -39,11 - 1060: -33,12 - 1061: -33,12 - 1062: -30,11 - 1063: -29,12 - 1125: -35,3 - 1126: -33,3 - 1127: -32,2 - 1128: -32,1 - 1129: -34,1 - 1130: -30,3 - 1131: -29,3 - 1132: -29,4 - 1133: -43,5 - 1134: -40,5 - 1135: -40,5 - 1136: -40,5 - 1137: -41,6 - 1138: -41,4 - 1139: -40,3 - 1140: -43,3 - 1141: -45,3 - 1170: -29,-24 - 1171: -30,-24 - 1172: -30,-23 - 1173: -31,-20 - 1174: -31,-20 - 1175: -30,-21 - 1176: -30,-22 - 1177: -29,-19 - 1178: -29,-17 - 1179: -29,-15 - 1180: -31,-14 - 1181: -31,-14 - 1182: -31,-15 - 1183: -31,-15 - 1184: -30,-11 - 1185: -31,-9 - 1186: -30,-8 - 1187: -31,-8 - 1188: -31,-5 - 1189: -30,-3 - 1190: -30,-2 - 1191: -30,-3 - 1264: -11,5 - 1265: -10,5 - 1266: -10,4 - 1267: -9,4 - 1268: -6,2 - 1269: -6,4 - 1270: -6,3 - 1271: -6,3 - 1272: -5,4 - 1273: -6,5 - 1274: -6,5 - 1275: -6,6 - 1276: -6,6 - 1277: -6,2 - 1278: -5,2 - 1279: -5,1 - 1280: -5,1 - 1281: -5,2 - 1282: -5,2 - 1283: -13,1 - 1284: -16,2 - 1285: -16,3 - 1286: -16,3 - 1287: -18,3 - 1288: -20,3 - 1289: -20,4 - 1290: -21,2 - 1291: -24,2 - 1292: -25,3 - 1293: -24,3 - 1294: -26,4 - 1304: -1,5 - 1305: 13,1 - 1306: 12,3 - 1307: 7,5 - 1308: 4,5 - 1309: 4,6 - 1310: 2,6 - 1311: 3,4 - 1312: 2,3 - 1313: 3,1 - 1314: 4,1 - 1315: 5,1 - 1316: 6,1 - 1317: 7,1 - 1318: 9,1 - 1319: 8,4 - 1320: 8,6 - 1321: 9,6 - 1322: 9,6 - 1323: 12,3 - 1324: 13,4 - 1325: 15,4 - 1326: 13,5 - 1327: 14,5 - 1328: 15,3 - 1329: 17,2 - 1330: 17,4 - 1331: 18,4 - 1332: 20,1 - 1333: 19,1 - 1334: 20,1 - 1335: 21,2 - 1336: 20,4 - 1337: 23,3 - 1338: 22,2 - 1339: 23,2 - 1340: 24,3 - 1341: 25,4 - 1342: 25,4 - 1343: 24,1 - 1512: 28,2 - 1513: 29,1 - 1514: 29,1 - 1515: 32,2 - 1516: 34,2 - 1517: 36,2 - 1518: 35,2 - 1519: 34,2 - 1520: 35,3 - 1521: 33,4 - 1522: 33,3 - 1523: 31,3 - 1524: 36,4 - 1525: 40,4 - 1526: 38,5 - 1527: 43,3 - 1528: 44,3 - 1529: 44,3 - 1530: 44,3 - 1531: 44,3 - 1532: 41,2 - 1533: 43,1 - 1534: 45,1 - 1535: 45,2 - 1536: 40,1 - 1537: 38,2 - 1538: 41,1 - 1539: 42,1 - 1540: 47,3 - 1541: 47,5 - 1542: 48,6 - 1543: 47,5 - 1544: 48,3 - 1545: 51,2 - 1546: 51,1 - 1547: 50,2 - 1548: 51,3 - 1549: 48,2 - 1550: 46,1 - 1551: 53,1 - 1552: 53,2 - 1583: 38,8 - 1584: 40,8 - 1585: 40,7 - 1586: 36,9 - 1587: 36,11 - 1588: 34,10 - 1589: 34,10 - 1590: 33,11 - 1591: 33,13 - 1592: 32,14 - 1593: 32,14 - 1594: 33,15 - 1595: 34,18 - 1596: 36,18 - 1597: 36,18 - 1598: 37,19 - 1599: 37,19 - 1600: 41,17 - 1601: 41,17 - 1602: 40,17 - 1603: 40,17 - 1604: 40,18 - 1605: 45,18 - 1643: 27,-24 - 1644: 28,-24 - 1645: 28,-22 - 1646: 27,-21 - 1647: 27,-19 - 1648: 29,-19 - 1649: 28,-19 - 1650: 27,-16 - 1651: 29,-14 - 1652: 28,-14 - 1653: 28,-15 - 1654: 29,-14 - 1655: 28,-10 - 1656: 29,-8 - 1657: 29,-7 - 1658: 28,-6 - 1659: 29,-6 - 1660: 28,-2 - 1661: 27,-2 - 1662: 29,-1 - 1663: 29,-2 - 1682: 9,5 - 1696: 0,20 - 1697: -1,20 - 1698: -2,21 - 1699: -2,23 - 1700: -2,24 - 1701: -2,25 - 1702: 0,25 - 1703: 0,26 - 1704: 1,25 - 1705: 1,25 - 1706: 1,27 - 1707: 1,28 - 1708: 0,28 - 1709: -1,29 - 1710: 0,29 - 1711: 0,29 - 1712: -2,26 - 1713: -2,26 - 1739: -12,12 - 1740: -11,11 - 1741: -10,15 - 1742: -11,16 - 1743: -11,17 - 1783: -2,18 - 1784: -1,17 - 1785: -1,17 - 1786: -1,15 - 1787: -1,15 - 1788: 0,15 - 1797: -1,17 - 1798: 0,16 - 1799: 0,16 - 1800: 0,16 - 1801: -1,16 - 1802: -1,18 - 1807: -1,16 - 1808: -1,16 - 1809: -3,17 - 1810: -3,17 - 1845: -6,9 - 1846: -4,8 - 1847: -4,8 - 1848: -4,8 - 1849: -4,8 - 1859: -6,17 - 1860: -6,18 - 1861: -4,16 - 1862: -6,8 - 1863: -6,8 - 1864: -6,8 - 1865: -6,8 - 1866: -6,9 - 1884: 2,17 - 1885: 2,18 - 1886: 4,18 - 1887: 4,18 - 1888: 4,17 - 1889: 4,17 - 1890: 4,16 - 1891: 4,14 - 1892: 4,13 - 1893: 4,13 - 1894: 4,14 - 1895: 4,14 - 1896: 2,16 - 1897: 2,16 - 1898: 2,16 - 1899: 2,16 - 1900: 2,11 - 1901: 2,10 - 1902: 2,9 - 1903: 3,8 - 1904: 2,8 - 1936: 4,27 - 1937: 4,27 - 1938: 5,28 - 1939: 5,28 - 1940: 5,27 - 1941: 10,27 - 1942: 10,27 - 1943: 9,27 - 1944: 11,27 - 1945: 11,26 - 1961: 9,25 - 1962: 6,26 - 2105: 33,26 - 2106: 34,26 - 2107: 34,25 - 2108: 34,24 - 2109: 33,23 - 2110: 33,23 - 2111: 31,24 - 2112: 32,24 - 2113: 33,24 - 2114: 33,24 - 2115: 32,22 - 2116: 32,21 - 2117: 34,21 - 2118: 34,22 - 2119: 33,22 - 2120: 30,21 - 2121: 30,22 - 2122: 29,21 - 2123: 28,21 - 2124: 28,23 - 2125: 27,22 - 2126: 26,22 - 2127: 28,21 - 2128: 28,22 - 2129: 25,23 - 2130: 26,23 - 2131: 26,23 - 2132: 25,21 - 2133: 26,21 - 2134: 24,23 - 2135: 23,24 - 2136: 24,23 - 2137: 23,23 - 2138: 23,23 - 2139: 24,22 - 2140: 24,24 - 2141: 23,25 - 2142: 22,24 - 2143: 22,25 - 2144: 22,26 - 2145: 25,26 - 2146: 25,26 - 2147: 20,26 - 2148: 19,26 - 2149: 20,26 - 2150: 17,26 - 2151: 18,26 - 2152: 15,26 - 2153: 15,26 - 2154: 15,25 - 2155: 15,25 - 2156: 17,24 - 2157: 16,24 - 2158: 13,24 - 2159: 14,23 - 2160: 14,22 - 2161: 15,22 - 2162: 17,23 - 2163: 19,22 - 2164: 20,22 - 2165: 20,21 - 2166: 20,21 - 2167: 18,21 - 2182: 37,26 - 2183: 37,26 - 2184: 36,25 - 2185: 36,25 - 2186: 34,26 - 2187: 33,26 - 2188: 32,26 - 2189: 31,25 - 2190: 29,25 - 2260: 39,25 - 2261: 39,24 - 2262: 39,24 - 2263: 39,23 - 2264: 41,23 - 2265: 44,24 - 2266: 44,24 - 2267: 43,24 - 2268: 43,24 - 2269: 42,23 - 2270: 43,23 - 2271: 44,23 - 2272: 45,24 - 2273: 45,25 - 2274: 45,25 - 2275: 47,26 - 2276: 47,26 - 2277: 50,25 - 2278: 50,25 - 2279: 49,24 - 2280: 51,25 - 2281: 52,25 - 2282: 51,25 - 2283: 51,25 - 2284: 53,26 - 2285: 54,26 - 2286: 53,25 - 2287: 53,25 - 2288: 54,25 - 2289: 51,26 - 2331: 38,10 - 2332: 40,10 - 2333: 40,10 - 2334: 39,10 - 2335: 40,11 - 2336: 41,11 - 2337: 41,12 - 2338: 42,12 - 2339: 43,12 - 2340: 40,14 - 2358: 31,11 - 2359: 31,11 - 2360: 31,10 - 2361: 29,8 - 2362: 30,9 - 2363: 30,8 - 2364: 31,7 - 2365: 32,7 - 2431: 10,14 - 2432: 10,14 - 2433: 10,13 - 2434: 10,13 - 2435: 14,16 - 2436: 13,16 - 2437: 13,16 - 2438: 17,15 - 2439: 17,14 - 2440: 17,15 - 2441: 17,16 - 2442: 17,13 - 2443: 15,11 - 2444: 15,10 - 2445: 14,10 - 2446: 14,12 - 2447: 14,12 - 2448: 7,15 - 2449: 8,16 - 2450: 8,16 - 2451: 7,16 - 2452: 13,21 - 2453: 13,21 - 2454: 13,21 - 2468: -3,32 - 2469: -1,33 - 2470: -1,33 - 2471: -1,32 - 2472: 0,32 - 2473: 0,32 - 2474: 0,32 - 2475: 0,32 - 2560: -1,11 - 2561: -1,13 - 2568: -2,11 - 2569: 1,11 - 2570: -5,12 - 2913: 5,4 - 2914: 5,3 - 2915: 6,2 - 2916: 4,2 - 2917: 10,2 - 2952: -13,2 - 2953: -13,4 - 2954: -11,2 - 2955: -12,2 + 867: -52,14 + 868: -53,17 + 869: -53,11 + 870: -48,12 + 871: -45,14 + 872: -45,14 + 873: -45,14 + 874: -44,16 + 875: -44,16 + 876: -44,16 + 877: -46,18 + 878: -46,18 + 879: -44,14 + 904: -54,8 + 905: -56,5 + 906: -55,2 + 907: -56,1 + 908: -56,1 + 909: -55,1 + 910: -53,1 + 911: -51,1 + 912: -52,2 + 913: -52,2 + 914: -51,2 + 915: -49,1 + 916: -48,2 + 917: -48,3 + 918: -49,4 + 919: -49,4 + 920: -48,5 + 921: -48,5 + 922: -48,8 + 976: -46,10 + 977: -44,9 + 978: -44,9 + 979: -45,9 + 1037: -37,11 + 1038: -41,12 + 1039: -39,11 + 1040: -33,12 + 1041: -33,12 + 1042: -30,11 + 1043: -29,12 + 1105: -35,3 + 1106: -33,3 + 1107: -32,2 + 1108: -32,1 + 1109: -34,1 + 1110: -30,3 + 1111: -29,3 + 1112: -29,4 + 1113: -43,5 + 1114: -40,5 + 1115: -40,5 + 1116: -40,5 + 1117: -41,6 + 1118: -41,4 + 1119: -40,3 + 1120: -43,3 + 1121: -45,3 + 1150: -29,-24 + 1151: -30,-24 + 1152: -30,-23 + 1153: -31,-20 + 1154: -31,-20 + 1155: -30,-21 + 1156: -30,-22 + 1157: -29,-19 + 1158: -29,-17 + 1159: -29,-15 + 1160: -31,-14 + 1161: -31,-14 + 1162: -31,-15 + 1163: -31,-15 + 1164: -30,-11 + 1165: -31,-9 + 1166: -30,-8 + 1167: -31,-8 + 1168: -31,-5 + 1169: -30,-3 + 1170: -30,-2 + 1171: -30,-3 + 1244: -11,5 + 1245: -10,5 + 1246: -10,4 + 1247: -9,4 + 1248: -6,2 + 1249: -6,4 + 1250: -6,3 + 1251: -6,3 + 1252: -5,4 + 1253: -6,5 + 1254: -6,5 + 1255: -6,6 + 1256: -6,6 + 1257: -6,2 + 1258: -5,2 + 1259: -5,1 + 1260: -5,1 + 1261: -5,2 + 1262: -5,2 + 1263: -13,1 + 1264: -16,2 + 1265: -16,3 + 1266: -16,3 + 1267: -18,3 + 1268: -20,3 + 1269: -20,4 + 1270: -21,2 + 1271: -24,2 + 1272: -25,3 + 1273: -24,3 + 1274: -26,4 + 1284: -1,5 + 1285: 13,1 + 1286: 12,3 + 1287: 7,5 + 1288: 4,5 + 1289: 4,6 + 1290: 2,6 + 1291: 3,4 + 1292: 2,3 + 1293: 3,1 + 1294: 4,1 + 1295: 5,1 + 1296: 6,1 + 1297: 7,1 + 1298: 9,1 + 1299: 8,4 + 1300: 8,6 + 1301: 9,6 + 1302: 9,6 + 1303: 12,3 + 1304: 13,4 + 1305: 15,4 + 1306: 13,5 + 1307: 14,5 + 1308: 15,3 + 1309: 17,2 + 1310: 17,4 + 1311: 18,4 + 1312: 20,1 + 1313: 19,1 + 1314: 20,1 + 1315: 21,2 + 1316: 20,4 + 1317: 23,3 + 1318: 22,2 + 1319: 23,2 + 1320: 24,3 + 1321: 25,4 + 1322: 25,4 + 1323: 24,1 + 1492: 28,2 + 1493: 29,1 + 1494: 29,1 + 1495: 32,2 + 1496: 34,2 + 1497: 36,2 + 1498: 35,2 + 1499: 34,2 + 1500: 35,3 + 1501: 33,4 + 1502: 33,3 + 1503: 31,3 + 1504: 36,4 + 1505: 40,4 + 1506: 38,5 + 1507: 43,3 + 1508: 44,3 + 1509: 44,3 + 1510: 44,3 + 1511: 44,3 + 1512: 41,2 + 1513: 43,1 + 1514: 45,1 + 1515: 45,2 + 1516: 40,1 + 1517: 38,2 + 1518: 41,1 + 1519: 42,1 + 1520: 47,3 + 1521: 47,5 + 1522: 48,6 + 1523: 47,5 + 1524: 48,3 + 1525: 51,2 + 1526: 51,1 + 1527: 50,2 + 1528: 51,3 + 1529: 48,2 + 1530: 46,1 + 1531: 53,1 + 1532: 53,2 + 1563: 38,8 + 1564: 40,8 + 1565: 40,7 + 1566: 36,9 + 1567: 36,11 + 1568: 34,10 + 1569: 34,10 + 1570: 33,11 + 1571: 32,14 + 1572: 32,14 + 1573: 36,18 + 1574: 36,18 + 1575: 37,19 + 1576: 37,19 + 1577: 41,17 + 1578: 41,17 + 1579: 40,17 + 1580: 40,17 + 1581: 40,18 + 1582: 45,18 + 1618: 27,-24 + 1619: 28,-24 + 1620: 28,-22 + 1621: 27,-21 + 1622: 27,-19 + 1623: 29,-19 + 1624: 28,-19 + 1625: 27,-16 + 1626: 29,-14 + 1627: 28,-14 + 1628: 28,-15 + 1629: 29,-14 + 1630: 28,-10 + 1631: 29,-8 + 1632: 29,-7 + 1633: 28,-6 + 1634: 29,-6 + 1635: 28,-2 + 1636: 27,-2 + 1637: 29,-1 + 1638: 29,-2 + 1657: 9,5 + 1671: 0,20 + 1672: -1,20 + 1673: -2,21 + 1674: -2,23 + 1675: -2,24 + 1676: -2,25 + 1677: 0,25 + 1678: 0,26 + 1679: 1,25 + 1680: 1,25 + 1681: 1,27 + 1682: 1,28 + 1683: 0,28 + 1684: -1,29 + 1685: 0,29 + 1686: 0,29 + 1687: -2,26 + 1688: -2,26 + 1714: -12,12 + 1715: -11,11 + 1716: -10,15 + 1717: -11,16 + 1718: -11,17 + 1758: -2,18 + 1759: -1,17 + 1760: -1,17 + 1761: -1,15 + 1762: -1,15 + 1763: 0,15 + 1772: -1,17 + 1773: 0,16 + 1774: 0,16 + 1775: 0,16 + 1776: -1,16 + 1777: -1,18 + 1782: -1,16 + 1783: -1,16 + 1784: -3,17 + 1785: -3,17 + 1820: -6,9 + 1821: -4,8 + 1822: -4,8 + 1823: -4,8 + 1824: -4,8 + 1834: -6,17 + 1835: -6,18 + 1836: -4,16 + 1837: -6,8 + 1838: -6,8 + 1839: -6,8 + 1840: -6,8 + 1841: -6,9 + 1859: 2,17 + 1860: 2,18 + 1861: 4,18 + 1862: 4,18 + 1863: 4,17 + 1864: 4,17 + 1865: 4,16 + 1866: 4,14 + 1867: 4,13 + 1868: 4,13 + 1869: 4,14 + 1870: 4,14 + 1871: 2,16 + 1872: 2,16 + 1873: 2,16 + 1874: 2,16 + 1875: 2,11 + 1876: 2,10 + 1877: 2,9 + 1878: 3,8 + 1879: 2,8 + 1911: 4,27 + 1912: 4,27 + 1913: 5,28 + 1914: 5,28 + 1915: 5,27 + 1916: 10,27 + 1917: 10,27 + 1918: 9,27 + 1919: 11,27 + 1920: 11,26 + 1936: 9,25 + 1937: 6,26 + 2080: 33,26 + 2081: 34,26 + 2082: 34,25 + 2083: 34,24 + 2084: 33,23 + 2085: 33,23 + 2086: 31,24 + 2087: 32,24 + 2088: 33,24 + 2089: 33,24 + 2090: 32,22 + 2091: 32,21 + 2092: 34,21 + 2093: 34,22 + 2094: 33,22 + 2095: 30,21 + 2096: 30,22 + 2097: 29,21 + 2098: 28,21 + 2099: 28,23 + 2100: 27,22 + 2101: 26,22 + 2102: 28,21 + 2103: 28,22 + 2104: 25,23 + 2105: 26,23 + 2106: 26,23 + 2107: 25,21 + 2108: 24,23 + 2109: 23,24 + 2110: 24,23 + 2111: 23,23 + 2112: 23,23 + 2113: 24,22 + 2114: 24,24 + 2115: 23,25 + 2116: 22,24 + 2117: 22,25 + 2118: 22,26 + 2119: 25,26 + 2120: 25,26 + 2121: 20,26 + 2122: 19,26 + 2123: 20,26 + 2124: 17,26 + 2125: 18,26 + 2126: 15,26 + 2127: 15,26 + 2128: 15,25 + 2129: 15,25 + 2130: 17,24 + 2131: 16,24 + 2132: 13,24 + 2133: 14,23 + 2134: 14,22 + 2135: 15,22 + 2136: 17,23 + 2137: 19,22 + 2138: 20,22 + 2139: 20,21 + 2140: 20,21 + 2141: 18,21 + 2154: 37,26 + 2155: 37,26 + 2156: 36,25 + 2157: 36,25 + 2158: 34,26 + 2159: 33,26 + 2160: 32,26 + 2161: 31,25 + 2162: 29,25 + 2232: 39,25 + 2233: 39,24 + 2234: 39,24 + 2235: 39,23 + 2236: 41,23 + 2237: 44,24 + 2238: 44,24 + 2239: 43,24 + 2240: 43,24 + 2241: 42,23 + 2242: 43,23 + 2243: 44,23 + 2244: 45,24 + 2245: 45,25 + 2246: 45,25 + 2247: 47,26 + 2248: 47,26 + 2249: 50,25 + 2250: 50,25 + 2251: 49,24 + 2252: 51,25 + 2253: 52,25 + 2254: 51,25 + 2255: 51,25 + 2256: 53,26 + 2257: 54,26 + 2258: 53,25 + 2259: 53,25 + 2260: 54,25 + 2261: 51,26 + 2295: 38,10 + 2296: 40,10 + 2297: 40,10 + 2298: 39,10 + 2299: 40,11 + 2300: 41,11 + 2301: 41,12 + 2302: 42,12 + 2303: 43,12 + 2304: 40,14 + 2322: 31,11 + 2323: 31,11 + 2324: 31,10 + 2325: 29,8 + 2326: 30,9 + 2327: 30,8 + 2328: 31,7 + 2329: 32,7 + 2395: 10,14 + 2396: 10,14 + 2397: 10,13 + 2398: 10,13 + 2399: 14,16 + 2400: 13,16 + 2401: 13,16 + 2402: 17,15 + 2403: 17,14 + 2404: 17,15 + 2405: 17,16 + 2406: 17,13 + 2407: 15,11 + 2408: 15,10 + 2409: 14,10 + 2410: 14,12 + 2411: 14,12 + 2412: 7,15 + 2413: 8,16 + 2414: 8,16 + 2415: 7,16 + 2416: 13,21 + 2417: 13,21 + 2418: 13,21 + 2432: -3,32 + 2433: -1,33 + 2434: -1,33 + 2435: -1,32 + 2436: 0,32 + 2437: 0,32 + 2438: 0,32 + 2439: 0,32 + 2524: -1,11 + 2525: -1,13 + 2532: -2,11 + 2533: 1,11 + 2534: -5,12 + 2874: 5,4 + 2875: 5,3 + 2876: 6,2 + 2877: 4,2 + 2878: 10,2 + 2913: -13,2 + 2914: -13,4 + 2915: -11,2 + 2916: -12,2 + 2971: 33,17 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtLight decals: - 2740: -2,39 - 2741: -2,39 - 2742: 1,37 - 2743: 1,37 - 2744: -1,37 - 2745: -1,37 - 2746: -2,37 - 2747: -2,37 - 2748: -1,41 - 2749: -1,40 - 2750: 0,40 - 2751: -2,44 - 2752: 0,48 - 2753: 0,49 - 2754: 0,49 - 2755: 0,51 - 2756: 3,51 - 2757: 6,53 - 2758: 7,53 - 2759: 8,53 - 2760: 8,54 - 2761: 8,54 - 2762: 7,55 - 2784: 1,50 - 2785: 1,50 - 2786: 7,51 - 2835: -38,11 - 2836: -38,11 - 2837: -39,12 - 2838: -39,12 - 2839: -41,10 - 2840: -38,12 - 2841: -32,12 - 2842: -34,12 - 2843: -33,11 - 2844: -34,8 - 2845: -33,8 - 2846: -29,11 - 2847: -31,12 - 2848: -30,12 - 2849: -30,12 - 2862: -52,11 - 2863: -53,10 - 2864: -49,14 - 2865: -48,14 - 2866: -48,14 - 2867: -50,5 - 2868: -51,5 - 2869: -51,6 - 2870: -51,5 + 2704: -2,39 + 2705: -2,39 + 2706: 1,37 + 2707: 1,37 + 2708: -1,37 + 2709: -1,37 + 2710: -2,37 + 2711: -2,37 + 2712: -1,41 + 2713: -1,40 + 2714: 0,40 + 2715: -2,44 + 2716: 0,48 + 2717: 0,49 + 2718: 0,49 + 2719: 0,51 + 2720: 3,51 + 2721: 6,53 + 2722: 7,53 + 2723: 8,53 + 2724: 8,54 + 2725: 8,54 + 2726: 7,55 + 2748: 1,50 + 2749: 1,50 + 2750: 7,51 + 2799: -38,11 + 2800: -38,11 + 2801: -39,12 + 2802: -39,12 + 2803: -41,10 + 2804: -38,12 + 2805: -32,12 + 2806: -34,12 + 2807: -33,11 + 2808: -34,8 + 2809: -33,8 + 2810: -29,11 + 2811: -31,12 + 2812: -30,12 + 2813: -30,12 + 2826: -52,11 + 2827: -53,10 + 2828: -49,14 + 2829: -48,14 + 2830: -48,14 + 2831: -50,5 + 2832: -51,5 + 2833: -51,6 + 2834: -51,5 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 845: -49,13 + 826: -49,13 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 899: -46,14 - 900: -45,13 - 901: -44,18 - 902: -44,18 - 903: -44,18 - 904: -52,16 - 905: -54,8 - 906: -54,7 - 907: -54,6 - 908: -51,6 - 909: -51,4 - 910: -52,3 - 911: -54,3 - 912: -54,2 - 913: -55,2 - 914: -55,3 - 915: -55,1 - 916: -52,1 - 917: -49,2 - 918: -48,3 - 919: -49,1 - 920: -49,4 - 921: -49,6 - 922: -49,7 - 1000: -45,11 - 1001: -45,11 - 1056: -34,9 - 1118: -46,3 - 1119: -46,5 - 1120: -44,3 - 1121: -43,1 - 1122: -40,2 - 1123: -37,1 - 1124: -35,4 - 1146: -50,2 - 1147: -31,-1 - 1148: -30,-2 - 1149: -29,-3 - 1150: -29,-5 - 1151: -30,-7 - 1152: -31,-8 - 1153: -31,-10 - 1154: -30,-9 - 1155: -30,-8 - 1156: -30,-11 - 1157: -29,-14 - 1158: -29,-15 - 1159: -29,-13 - 1160: -30,-13 - 1161: -31,-17 - 1162: -30,-19 - 1163: -30,-20 - 1164: -29,-19 - 1165: -29,-20 - 1166: -29,-21 - 1167: -29,-24 - 1168: -31,-23 - 1169: -31,-24 - 1255: -22,3 - 1256: -23,2 - 1257: -22,1 - 1258: -23,3 - 1259: -26,1 - 1260: -15,2 - 1261: -14,3 - 1262: -14,3 - 1263: -15,4 - 1303: -1,4 - 1344: 16,1 - 1345: 16,1 - 1346: 14,3 - 1347: 13,3 - 1348: 11,2 - 1349: 9,4 - 1350: 7,5 - 1351: 5,2 - 1352: 4,5 - 1353: 4,5 - 1354: 2,5 - 1355: 3,3 - 1356: 2,6 - 1357: 4,6 - 1358: 4,5 - 1359: 3,2 - 1360: 3,1 - 1361: 4,1 - 1362: 7,1 - 1363: 8,1 - 1364: 11,4 - 1365: 10,5 - 1366: 12,5 - 1367: 15,2 - 1368: 16,3 - 1369: 17,4 - 1370: 17,4 - 1371: 17,1 - 1372: 19,1 - 1431: 27,1 - 1432: 30,3 - 1433: 31,3 - 1434: 31,1 - 1435: 28,4 - 1436: 30,4 - 1437: 34,3 - 1438: 33,1 - 1439: 34,4 - 1440: 34,5 - 1441: 37,4 - 1442: 35,1 - 1443: 37,1 - 1444: 39,3 - 1445: 38,2 - 1446: 37,2 - 1447: 37,2 - 1448: 41,2 - 1449: 42,4 - 1450: 44,5 - 1451: 44,2 - 1452: 43,1 - 1453: 45,4 - 1454: 45,6 - 1455: 43,6 - 1456: 42,5 - 1457: 44,2 - 1458: 48,7 - 1459: 46,9 - 1460: 47,9 - 1461: 47,8 - 1462: 48,8 - 1463: 48,7 - 1464: 46,5 - 1465: 48,3 - 1466: 49,3 - 1467: 49,4 - 1468: 49,4 - 1469: 49,1 - 1470: 47,1 - 1471: 45,1 - 1472: 46,2 - 1473: 52,1 - 1474: 51,3 - 1475: 53,3 - 1476: 53,3 - 1477: 53,1 - 1478: 54,2 - 1479: 54,3 - 1616: 37,9 - 1617: 34,16 - 1618: 37,17 - 1619: 38,18 - 1664: 27,-1 - 1665: 27,-3 - 1666: 29,-4 - 1667: 28,-3 - 1668: 29,-4 - 1669: 29,-7 - 1670: 29,-9 - 1671: 28,-10 - 1672: 28,-9 - 1673: 29,-10 - 1674: 29,-10 - 1675: 28,-12 - 1676: 28,-14 - 1677: 27,-14 - 1678: 27,-14 - 1679: 29,-12 - 1680: 29,-16 - 1681: 27,-19 - 1717: -2,27 - 1718: 0,23 - 1719: 1,23 - 1744: -9,17 - 1745: -8,15 - 1746: -9,15 - 1747: -10,14 - 1748: -13,12 - 1749: -15,12 - 1750: -14,11 - 1820: -5,18 - 1821: -5,18 - 1822: -5,17 - 1823: -6,17 - 1824: -6,16 - 1828: -6,16 - 1829: -5,15 - 1830: -5,13 - 1831: -5,13 - 1832: -4,13 - 1850: -5,9 - 1851: -4,10 - 1905: 2,8 - 1906: 4,9 - 1907: 4,10 - 1908: 3,9 - 1909: 4,12 - 1910: 4,13 - 1911: 2,15 - 1912: 2,14 - 1913: 4,15 - 1946: 3,28 - 1947: 4,28 - 1948: 5,28 - 1949: 7,28 - 1950: 7,28 - 1951: 6,27 - 1952: 5,26 - 1953: 5,26 - 1954: 8,27 - 1959: 10,23 - 1960: 11,23 - 2243: 48,26 - 2244: 49,26 - 2245: 48,25 - 2246: 47,25 - 2247: 46,26 - 2248: 45,26 - 2249: 45,26 - 2250: 40,26 - 2251: 43,26 - 2252: 43,26 - 2253: 42,24 - 2254: 41,24 - 2255: 42,25 - 2256: 42,26 - 2257: 41,26 - 2258: 40,25 - 2259: 39,26 - 2476: -1,32 - 2918: 4,3 - 2919: 6,4 - 2920: 11,2 - 2956: -9,4 - 2957: -10,4 - 2958: -8,2 - 2959: -12,4 - 2960: -11,2 - 2961: -12,2 - 2962: -12,1 - 2963: -13,4 - 2964: -13,5 + 880: -46,14 + 881: -45,13 + 882: -44,18 + 883: -44,18 + 884: -44,18 + 885: -52,16 + 886: -54,8 + 887: -54,7 + 888: -54,6 + 889: -51,6 + 890: -51,4 + 891: -52,3 + 892: -54,3 + 893: -54,2 + 894: -55,2 + 895: -55,3 + 896: -55,1 + 897: -52,1 + 898: -49,2 + 899: -48,3 + 900: -49,1 + 901: -49,4 + 902: -49,6 + 903: -49,7 + 980: -45,11 + 981: -45,11 + 1036: -34,9 + 1098: -46,3 + 1099: -46,5 + 1100: -44,3 + 1101: -43,1 + 1102: -40,2 + 1103: -37,1 + 1104: -35,4 + 1126: -50,2 + 1127: -31,-1 + 1128: -30,-2 + 1129: -29,-3 + 1130: -29,-5 + 1131: -30,-7 + 1132: -31,-8 + 1133: -31,-10 + 1134: -30,-9 + 1135: -30,-8 + 1136: -30,-11 + 1137: -29,-14 + 1138: -29,-15 + 1139: -29,-13 + 1140: -30,-13 + 1141: -31,-17 + 1142: -30,-19 + 1143: -30,-20 + 1144: -29,-19 + 1145: -29,-20 + 1146: -29,-21 + 1147: -29,-24 + 1148: -31,-23 + 1149: -31,-24 + 1235: -22,3 + 1236: -23,2 + 1237: -22,1 + 1238: -23,3 + 1239: -26,1 + 1240: -15,2 + 1241: -14,3 + 1242: -14,3 + 1243: -15,4 + 1283: -1,4 + 1324: 16,1 + 1325: 16,1 + 1326: 14,3 + 1327: 13,3 + 1328: 11,2 + 1329: 9,4 + 1330: 7,5 + 1331: 5,2 + 1332: 4,5 + 1333: 4,5 + 1334: 2,5 + 1335: 3,3 + 1336: 2,6 + 1337: 4,6 + 1338: 4,5 + 1339: 3,2 + 1340: 3,1 + 1341: 4,1 + 1342: 7,1 + 1343: 8,1 + 1344: 11,4 + 1345: 10,5 + 1346: 12,5 + 1347: 15,2 + 1348: 16,3 + 1349: 17,4 + 1350: 17,4 + 1351: 17,1 + 1352: 19,1 + 1411: 27,1 + 1412: 30,3 + 1413: 31,3 + 1414: 31,1 + 1415: 28,4 + 1416: 30,4 + 1417: 34,3 + 1418: 33,1 + 1419: 34,4 + 1420: 34,5 + 1421: 37,4 + 1422: 35,1 + 1423: 37,1 + 1424: 39,3 + 1425: 38,2 + 1426: 37,2 + 1427: 37,2 + 1428: 41,2 + 1429: 42,4 + 1430: 44,5 + 1431: 44,2 + 1432: 43,1 + 1433: 45,4 + 1434: 45,6 + 1435: 43,6 + 1436: 42,5 + 1437: 44,2 + 1438: 48,7 + 1439: 46,9 + 1440: 47,9 + 1441: 47,8 + 1442: 48,8 + 1443: 48,7 + 1444: 46,5 + 1445: 48,3 + 1446: 49,3 + 1447: 49,4 + 1448: 49,4 + 1449: 49,1 + 1450: 47,1 + 1451: 45,1 + 1452: 46,2 + 1453: 52,1 + 1454: 51,3 + 1455: 53,3 + 1456: 53,3 + 1457: 53,1 + 1458: 54,2 + 1459: 54,3 + 1591: 37,9 + 1592: 34,16 + 1593: 37,17 + 1594: 38,18 + 1639: 27,-1 + 1640: 27,-3 + 1641: 29,-4 + 1642: 28,-3 + 1643: 29,-4 + 1644: 29,-7 + 1645: 29,-9 + 1646: 28,-10 + 1647: 28,-9 + 1648: 29,-10 + 1649: 29,-10 + 1650: 28,-12 + 1651: 28,-14 + 1652: 27,-14 + 1653: 27,-14 + 1654: 29,-12 + 1655: 29,-16 + 1656: 27,-19 + 1692: -2,27 + 1693: 0,23 + 1694: 1,23 + 1719: -9,17 + 1720: -8,15 + 1721: -9,15 + 1722: -10,14 + 1723: -13,12 + 1724: -15,12 + 1725: -14,11 + 1795: -5,18 + 1796: -5,18 + 1797: -5,17 + 1798: -6,17 + 1799: -6,16 + 1803: -6,16 + 1804: -5,15 + 1805: -5,13 + 1806: -5,13 + 1807: -4,13 + 1825: -5,9 + 1826: -4,10 + 1880: 2,8 + 1881: 4,9 + 1882: 4,10 + 1883: 3,9 + 1884: 4,12 + 1885: 4,13 + 1886: 2,15 + 1887: 2,14 + 1888: 4,15 + 1921: 3,28 + 1922: 4,28 + 1923: 5,28 + 1924: 7,28 + 1925: 7,28 + 1926: 6,27 + 1927: 5,26 + 1928: 5,26 + 1929: 8,27 + 1934: 10,23 + 1935: 11,23 + 2215: 48,26 + 2216: 49,26 + 2217: 48,25 + 2218: 47,25 + 2219: 46,26 + 2220: 45,26 + 2221: 45,26 + 2222: 40,26 + 2223: 43,26 + 2224: 43,26 + 2225: 42,24 + 2226: 41,24 + 2227: 42,25 + 2228: 42,26 + 2229: 41,26 + 2230: 40,25 + 2231: 39,26 + 2440: -1,32 + 2879: 4,3 + 2880: 6,4 + 2881: 11,2 + 2917: -9,4 + 2918: -10,4 + 2919: -8,2 + 2920: -12,4 + 2921: -11,2 + 2922: -12,2 + 2923: -12,1 + 2924: -13,4 + 2925: -13,5 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtMedium decals: - 2763: 7,55 - 2764: 5,56 - 2765: 5,57 - 2766: 4,50 - 2767: 7,49 - 2768: 8,48 - 2769: 8,45 - 2770: 8,44 - 2771: 7,44 - 2772: 8,41 - 2773: 5,41 - 2774: 3,41 - 2775: 3,40 - 2776: 2,40 - 2777: 1,39 - 2778: -1,36 - 2779: 0,37 - 2780: 2,37 - 2781: 2,37 - 2782: -1,40 - 2783: -3,47 + 2727: 7,55 + 2728: 5,56 + 2729: 5,57 + 2730: 4,50 + 2731: 7,49 + 2732: 8,48 + 2733: 8,45 + 2734: 8,44 + 2735: 7,44 + 2736: 8,41 + 2737: 5,41 + 2738: 3,41 + 2739: 3,40 + 2740: 2,40 + 2741: 1,39 + 2742: -1,36 + 2743: 0,37 + 2744: 2,37 + 2745: 2,37 + 2746: -1,40 + 2747: -3,47 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 2984: -50,3 + 2945: -50,3 - node: color: '#35526FFF' id: FullTileOverlayGreyscale decals: - 859: -53,7 - 860: -53,6 - 861: -54,6 - 862: -52,6 - 863: -53,5 - 864: -50,4 - 865: -50,2 - 866: -51,3 - 867: -49,3 + 840: -53,7 + 841: -53,6 + 842: -54,6 + 843: -52,6 + 844: -53,5 + 845: -50,4 + 846: -50,2 + 847: -51,3 + 848: -49,3 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 400: -30,-26 + 384: -30,-26 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 409: 28,-26 + 393: 28,-26 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 421: 57,1 - 422: 56,1 - 1426: 47,9 - 1427: 48,9 + 405: 57,1 + 406: 56,1 + 1406: 47,9 + 1407: 48,9 - node: color: '#FFA5007F' id: HalfTileOverlayGreyscale decals: - 656: 58,26 - 657: 57,26 - 659: 56,25 - 660: 57,25 + 637: 58,26 + 638: 57,26 + 640: 56,25 + 641: 57,25 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 394: -31,-28 - 395: -30,-28 - 396: -29,-28 - 399: -30,-27 + 378: -31,-28 + 379: -30,-28 + 380: -29,-28 + 383: -30,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 417: 28,-28 + 401: 28,-28 - node: color: '#FFA5007F' id: HalfTileOverlayGreyscale180 decals: - 664: 57,24 + 645: 57,24 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 423: 58,2 - 424: 58,3 + 407: 58,2 + 408: 58,3 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 392: -59,2 + 376: -59,2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3201,8 +3197,8 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 2619: -1,42 - 2620: -1,46 + 2583: -1,42 + 2584: -1,46 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3216,21 +3212,21 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 2621: 5,42 - 2622: 5,46 + 2585: 5,42 + 2586: 5,46 - node: color: '#DE3A3A96' id: MiniTileCheckerAOverlay decals: - 290: 36,13 - 291: 36,14 - 292: 36,15 - 293: 37,15 - 294: 38,15 - 295: 38,14 - 296: 38,13 - 297: 37,13 - 298: 37,14 + 284: 36,13 + 285: 36,14 + 286: 36,15 + 287: 37,15 + 288: 38,15 + 289: 38,14 + 290: 38,13 + 291: 37,13 + 292: 37,14 - node: color: '#FFFFFFFF' id: MiniTileCheckerAOverlay @@ -3256,47 +3252,47 @@ entities: color: '#52B4E9FF' id: MiniTileCheckerBOverlay decals: - 966: -46,11 - 967: -45,11 - 968: -44,11 - 969: -44,10 - 970: -45,10 - 971: -46,10 - 972: -46,9 - 973: -45,9 - 974: -44,9 - 975: -44,8 - 976: -45,8 - 977: -46,8 + 946: -46,11 + 947: -45,11 + 948: -44,11 + 949: -44,10 + 950: -45,10 + 951: -46,10 + 952: -46,9 + 953: -45,9 + 954: -44,9 + 955: -44,8 + 956: -45,8 + 957: -46,8 - node: color: '#FFFFFFFF' id: MiniTileOverlay decals: - 954: -46,11 - 955: -45,11 - 956: -44,11 - 957: -44,10 - 958: -45,10 - 959: -46,10 - 960: -46,9 - 961: -45,9 - 962: -44,9 - 963: -44,8 - 964: -45,8 - 965: -46,8 + 934: -46,11 + 935: -45,11 + 936: -44,11 + 937: -44,10 + 938: -45,10 + 939: -46,10 + 940: -46,9 + 941: -45,9 + 942: -44,9 + 943: -44,8 + 944: -45,8 + 945: -46,8 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 397: -31,-28 - 406: -29,-26 + 381: -31,-28 + 390: -29,-26 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 410: 29,-26 - 412: 29,-27 - 419: 27,-28 + 394: 29,-26 + 396: 29,-27 + 403: 27,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3316,101 +3312,101 @@ entities: 237: 45,8 238: 45,9 239: 46,9 - 426: 57,2 - 1418: 37,5 - 1419: 38,5 - 1420: 39,5 - 1421: 40,5 - 1422: 41,5 - 1423: 42,6 - 1424: 43,6 - 1425: 44,6 + 410: 57,2 + 1398: 37,5 + 1399: 38,5 + 1400: 39,5 + 1401: 40,5 + 1402: 41,5 + 1403: 42,6 + 1404: 43,6 + 1405: 44,6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 872: -60,1 + 853: -60,1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 398: -31,-27 - 403: -29,-26 + 382: -31,-27 + 387: -29,-26 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 411: 29,-26 - 414: 29,-27 - 418: 27,-28 + 395: 29,-26 + 398: 29,-27 + 402: 27,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 425: 57,3 - 427: 56,2 - 631: 31,20 - 632: 32,20 - 633: 33,20 - 634: 33,21 - 635: 34,21 - 636: 34,22 + 409: 57,3 + 411: 56,2 + 612: 31,20 + 613: 32,20 + 614: 33,20 + 615: 33,21 + 616: 34,21 + 617: 34,22 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 873: -58,1 + 854: -58,1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 401: -31,-26 - 405: -29,-27 + 385: -31,-26 + 389: -29,-27 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 407: 27,-26 - 416: 29,-28 + 391: 27,-26 + 400: 29,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 637: 39,23 - 638: 39,22 - 639: 40,22 - 640: 41,22 - 641: 42,22 - 642: 43,22 - 643: 44,22 - 644: 45,22 - 645: 46,22 - 646: 47,22 - 647: 48,22 - 648: 49,22 - 649: 50,22 - 650: 51,22 - 651: 52,22 - 652: 53,22 - 655: 54,24 + 618: 39,23 + 619: 39,22 + 620: 40,22 + 621: 41,22 + 622: 42,22 + 623: 43,22 + 624: 44,22 + 625: 45,22 + 626: 46,22 + 627: 47,22 + 628: 48,22 + 629: 49,22 + 630: 50,22 + 631: 51,22 + 632: 52,22 + 633: 53,22 + 636: 54,24 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 868: -60,2 + 849: -60,2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 402: -31,-26 - 404: -29,-27 + 386: -31,-26 + 388: -29,-27 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 408: 27,-26 - 413: 28,-27 - 415: 29,-28 + 392: 27,-26 + 397: 28,-27 + 399: 29,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -3425,118 +3421,118 @@ entities: 224: 54,3 240: 46,9 241: 48,5 - 653: 53,22 - 654: 53,23 - 1428: 48,6 - 1429: 48,7 - 1430: 48,8 + 634: 53,22 + 635: 53,23 + 1408: 48,6 + 1409: 48,7 + 1410: 48,8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 1002: -46,5 - 1003: -45,5 - 1004: -44,5 - 1005: -43,5 - 1006: -42,5 - 1007: -39,5 - 1008: -38,5 - 1009: -37,5 - 1010: -36,5 + 982: -46,5 + 983: -45,5 + 984: -44,5 + 985: -43,5 + 986: -42,5 + 987: -39,5 + 988: -38,5 + 989: -37,5 + 990: -36,5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2884: -11,4 - 2899: 7,4 + 2845: -11,4 + 2860: 7,4 - node: color: '#FFFFFFFF' id: SpaceStationSign10 decals: - 2889: -10,2 - 2900: 8,2 + 2850: -10,2 + 2861: 8,2 - node: color: '#FFFFFFFF' id: SpaceStationSign11 decals: - 2890: -9,2 - 2901: 9,2 + 2851: -9,2 + 2862: 9,2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2891: -10,4 - 2902: 8,4 + 2852: -10,4 + 2863: 8,4 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2881: -13,3 - 2898: 5,3 + 2842: -13,3 + 2859: 5,3 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2882: -12,3 - 2897: 6,3 + 2843: -12,3 + 2858: 6,3 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2883: -11,3 - 2896: 7,3 + 2844: -11,3 + 2857: 7,3 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2885: -10,3 - 2895: 8,3 + 2846: -10,3 + 2856: 8,3 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2886: -9,3 - 2894: 9,3 + 2847: -9,3 + 2855: 9,3 - node: color: '#FFFFFFFF' id: SpaceStationSign8 decals: - 2887: -8,3 - 2893: 10,3 + 2848: -8,3 + 2854: 10,3 - node: color: '#FFFFFFFF' id: SpaceStationSign9 decals: - 2888: -7,3 - 2892: 11,3 + 2849: -7,3 + 2853: 11,3 - node: color: '#DE3A3A96' id: StandClear decals: - 388: 42,8 - 389: 43,8 - 390: 43,9 - 391: 42,9 - 627: 36,21 - 628: 37,21 - 629: 37,22 - 630: 36,22 + 372: 42,8 + 373: 43,8 + 374: 43,9 + 375: 42,9 + 608: 36,21 + 609: 37,21 + 610: 37,22 + 611: 36,22 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 420: 58,1 + 404: 58,1 - node: color: '#FFA5007F' id: ThreeQuarterTileOverlayGreyscale decals: - 658: 56,26 + 639: 56,26 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 393: -59,3 - 871: -59,1 + 377: -59,3 + 852: -59,1 - node: color: '#FFFFFFFF' id: WarnBox @@ -3562,12 +3558,12 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 370: 43,18 + 354: 43,18 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 371: 45,18 + 355: 45,18 - node: color: '#FFFFFFFF' id: WarnLineE @@ -3609,39 +3605,39 @@ entities: 144: -47,4 145: -57,1 146: -57,3 - 554: 2,26 - 555: 2,27 - 556: 2,28 - 570: 55,26 - 571: 55,25 - 572: 55,24 - 573: 38,24 - 574: 38,25 - 575: 38,26 - 576: 35,24 - 577: 35,25 - 578: 35,26 - 579: 12,23 - 580: 12,24 - 581: 12,25 - 582: 12,26 - 1767: 1,18 - 1768: 1,17 - 1769: 1,16 - 1770: 1,15 - 1775: -3,15 - 1776: -3,16 - 1777: -3,17 - 1778: -3,18 - 2977: -28,1 + 538: 2,26 + 539: 2,27 + 540: 2,28 + 554: 55,26 + 555: 55,25 + 556: 55,24 + 557: 38,24 + 558: 38,25 + 559: 38,26 + 560: 35,24 + 561: 35,25 + 562: 35,26 + 563: 12,23 + 564: 12,24 + 565: 12,25 + 566: 12,26 + 1742: 1,18 + 1743: 1,17 + 1744: 1,16 + 1745: 1,15 + 1750: -3,15 + 1751: -3,16 + 1752: -3,17 + 1753: -3,18 + 2938: -28,1 - node: zIndex: 180 color: '#FFFFFFFF' id: WarnLineE decals: - 2632: 8,53 - 2633: 8,54 - 2634: 8,55 + 2596: 8,53 + 2597: 8,54 + 2598: 8,55 - node: color: '#FFFFFFFF' id: WarnLineN @@ -3688,21 +3684,21 @@ entities: 156: -52,9 157: -53,9 158: -45,12 - 369: 44,18 - 583: 36,20 - 584: 37,20 - 585: 36,23 - 586: 37,23 - 592: 48,21 - 593: 30,18 - 1015: -41,8 - 1016: -40,8 - 2992: -31,0 - 2993: -30,0 - 2994: -29,0 - 2995: -31,-11 - 2996: -29,-11 - 3000: 29,-11 + 353: 44,18 + 567: 36,20 + 568: 37,20 + 569: 36,23 + 570: 37,23 + 576: 48,21 + 995: -41,8 + 996: -40,8 + 2953: -31,0 + 2954: -30,0 + 2955: -29,0 + 2956: -31,-11 + 2957: -29,-11 + 2961: 29,-11 + 2962: 29,19 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3744,39 +3740,39 @@ entities: 153: -47,14 154: -47,17 155: -51,17 - 551: 2,26 - 552: 2,27 - 553: 2,28 - 557: 12,23 - 558: 12,24 - 559: 12,25 - 560: 12,26 - 561: 35,24 - 562: 35,25 - 563: 35,26 - 564: 38,26 - 565: 38,25 - 566: 38,24 - 567: 55,24 - 568: 55,25 - 569: 55,26 - 1771: -3,18 - 1772: -3,17 - 1773: -3,16 - 1774: -3,15 - 1779: 1,15 - 1780: 1,16 - 1781: 1,17 - 1782: 1,18 - 2978: -28,1 + 535: 2,26 + 536: 2,27 + 537: 2,28 + 541: 12,23 + 542: 12,24 + 543: 12,25 + 544: 12,26 + 545: 35,24 + 546: 35,25 + 547: 35,26 + 548: 38,26 + 549: 38,25 + 550: 38,24 + 551: 55,24 + 552: 55,25 + 553: 55,26 + 1746: -3,18 + 1747: -3,17 + 1748: -3,16 + 1749: -3,15 + 1754: 1,15 + 1755: 1,16 + 1756: 1,17 + 1757: 1,18 + 2939: -28,1 - node: zIndex: 180 color: '#FFFFFFFF' id: WarnLineS decals: - 2616: -3,43 - 2617: -3,44 - 2618: -3,45 + 2580: -3,43 + 2581: -3,44 + 2582: -3,45 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3826,70 +3822,70 @@ entities: 175: -29,15 176: -28,15 177: -27,15 - 587: 37,23 - 588: 36,23 - 589: 37,20 - 590: 36,20 - 591: 48,21 - 594: 30,18 - 1011: -40,6 - 1012: -41,6 - 1013: -41,9 - 1014: -40,9 - 2989: -31,0 - 2990: -30,0 - 2991: -29,0 - 2997: -31,-11 - 2998: -29,-11 - 2999: 29,-11 + 571: 37,23 + 572: 36,23 + 573: 37,20 + 574: 36,20 + 575: 48,21 + 991: -40,6 + 992: -41,6 + 993: -41,9 + 994: -40,9 + 2950: -31,0 + 2951: -30,0 + 2952: -29,0 + 2958: -31,-11 + 2959: -29,-11 + 2960: 29,-11 + 2963: 29,19 - node: color: '#E69FAEFF' id: WoodTrimThinCornerNe decals: - 523: 26,13 + 507: 26,13 - node: color: '#E69FAEFF' id: WoodTrimThinCornerNw decals: - 522: 24,13 + 506: 24,13 - node: color: '#E69FAEFF' id: WoodTrimThinCornerSe decals: - 524: 26,12 + 508: 26,12 - node: color: '#E69FAEFF' id: WoodTrimThinCornerSw decals: - 525: 24,12 + 509: 24,12 - node: color: '#E69FAEFF' id: WoodTrimThinLineN decals: - 521: 25,13 + 505: 25,13 - node: color: '#E69FAEFF' id: WoodTrimThinLineS decals: - 526: 25,12 + 510: 25,12 - node: zIndex: 180 color: '#FF00FFFF' id: clown decals: - 2880: 6.027291,42.00365 + 2841: 6.027291,42.00365 - node: color: '#9BC516FF' id: shop decals: - 549: -13,5 - 550: 11,5 + 533: -13,5 + 534: 11,5 - node: zIndex: 180 color: '#FFFF00FF' id: trade decals: - 2599: 2,38 + 2563: 2,38 type: DecalGrid - version: 2 data: @@ -4192,7 +4188,8 @@ entities: 11,2: 0: 65535 11,3: - 0: 65535 + 0: 65343 + 2: 192 12,0: 0: 65535 12,1: @@ -4423,8 +4420,8 @@ entities: 0: 65535 -10,4: 0: 61937 - 2: 14 - 3: 3584 + 3: 14 + 4: 3584 -9,4: 0: 65535 -14,4: @@ -4490,6 +4487,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5483,7 +5495,7 @@ entities: pos: 56.5,29.5 parent: 2173 type: Transform - - name: 5A + - name: 5B type: Docking - uid: 2589 components: @@ -5499,7 +5511,7 @@ entities: pos: 61.5,26.5 parent: 2173 type: Transform - - name: 5B + - name: 5A type: Docking - uid: 3919 components: @@ -5507,7 +5519,7 @@ entities: pos: 58.5,29.5 parent: 2173 type: Transform - - name: 5A + - name: 5B type: Docking - uid: 3920 components: @@ -5515,7 +5527,7 @@ entities: pos: 57.5,29.5 parent: 2173 type: Transform - - name: 5A + - name: 5B type: Docking - uid: 4051 components: @@ -5531,7 +5543,7 @@ entities: pos: 61.5,24.5 parent: 2173 type: Transform - - name: 5B + - name: 5A type: Docking - uid: 4983 components: @@ -5539,7 +5551,7 @@ entities: pos: 61.5,25.5 parent: 2173 type: Transform - - name: 5B + - name: 5A type: Docking - uid: 5801 components: @@ -5612,6 +5624,12 @@ entities: pos: 48.5,21.5 parent: 2173 type: Transform + - uid: 2637 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2173 + type: Transform - uid: 4126 components: - pos: 28.5,6.5 @@ -5627,12 +5645,6 @@ entities: - pos: 52.5,4.5 parent: 2173 type: Transform - - uid: 4365 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 2173 - type: Transform - proto: AirlockMaintSecLocked entities: - uid: 2801 @@ -7039,6 +7051,11 @@ entities: - pos: 0.6921819,4.9265394 parent: 2173 type: Transform + - uid: 6047 + components: + - pos: 12.441788,13.714111 + parent: 2173 + type: Transform - proto: BoxFolderGrey entities: - uid: 2235 @@ -7046,6 +7063,13 @@ entities: - pos: -49.52271,7.3101997 parent: 2173 type: Transform +- proto: BoxFolderRed + entities: + - uid: 6048 + components: + - pos: 12.75118,13.469055 + parent: 2173 + type: Transform - proto: BoxFolderWhite entities: - uid: 2232 @@ -7060,9 +7084,9 @@ entities: type: Transform - proto: BoxForensicPad entities: - - uid: 2857 + - uid: 5863 components: - - pos: 33.099438,18.766659 + - pos: 32.034,18.765917 parent: 2173 type: Transform - proto: BoxNitrileGloves @@ -7170,6 +7194,11 @@ entities: - pos: 38.5,24.5 parent: 2173 type: Transform + - uid: 568 + components: + - pos: 32.5,17.5 + parent: 2173 + type: Transform - uid: 581 components: - pos: 16.5,24.5 @@ -7470,6 +7499,11 @@ entities: - pos: 3.5,27.5 parent: 2173 type: Transform + - uid: 829 + components: + - pos: 42.5,7.5 + parent: 2173 + type: Transform - uid: 1194 components: - pos: 8.5,26.5 @@ -7515,6 +7549,36 @@ entities: - pos: 44.5,26.5 parent: 2173 type: Transform + - uid: 1420 + components: + - pos: -11.5,11.5 + parent: 2173 + type: Transform + - uid: 1468 + components: + - pos: -12.5,11.5 + parent: 2173 + type: Transform + - uid: 1477 + components: + - pos: -14.5,11.5 + parent: 2173 + type: Transform + - uid: 1535 + components: + - pos: -15.5,11.5 + parent: 2173 + type: Transform + - uid: 1536 + components: + - pos: -16.5,11.5 + parent: 2173 + type: Transform + - uid: 1537 + components: + - pos: -14.5,17.5 + parent: 2173 + type: Transform - uid: 1568 components: - pos: 14.5,26.5 @@ -8720,11 +8784,46 @@ entities: - pos: 9.5,19.5 parent: 2173 type: Transform + - uid: 2681 + components: + - pos: -14.5,15.5 + parent: 2173 + type: Transform + - uid: 2856 + components: + - pos: -14.5,14.5 + parent: 2173 + type: Transform + - uid: 2857 + components: + - pos: 50.5,10.5 + parent: 2173 + type: Transform + - uid: 2858 + components: + - pos: 50.5,13.5 + parent: 2173 + type: Transform + - uid: 2985 + components: + - pos: -17.5,11.5 + parent: 2173 + type: Transform - uid: 3031 components: - pos: 30.5,23.5 parent: 2173 type: Transform + - uid: 3052 + components: + - pos: 50.5,12.5 + parent: 2173 + type: Transform + - uid: 3121 + components: + - pos: 50.5,11.5 + parent: 2173 + type: Transform - uid: 3143 components: - pos: 31.5,24.5 @@ -11415,21 +11514,6 @@ entities: - pos: 48.5,18.5 parent: 2173 type: Transform - - uid: 3715 - components: - - pos: 49.5,18.5 - parent: 2173 - type: Transform - - uid: 3716 - components: - - pos: 50.5,18.5 - parent: 2173 - type: Transform - - uid: 3717 - components: - - pos: 51.5,18.5 - parent: 2173 - type: Transform - uid: 3718 components: - pos: 51.5,13.5 @@ -11835,24 +11919,9 @@ entities: - pos: 42.5,8.5 parent: 2173 type: Transform - - uid: 3807 - components: - - pos: 43.5,8.5 - parent: 2173 - type: Transform - - uid: 3808 - components: - - pos: 43.5,9.5 - parent: 2173 - type: Transform - uid: 3809 components: - - pos: 43.5,10.5 - parent: 2173 - type: Transform - - uid: 3810 - components: - - pos: 43.5,11.5 + - pos: 31.5,11.5 parent: 2173 type: Transform - uid: 3811 @@ -12152,7 +12221,7 @@ entities: type: Transform - uid: 3870 components: - - pos: 27.5,15.5 + - pos: 28.5,16.5 parent: 2173 type: Transform - uid: 3871 @@ -12420,11 +12489,6 @@ entities: - pos: 5.5,21.5 parent: 2173 type: Transform - - uid: 3943 - components: - - pos: 5.5,20.5 - parent: 2173 - type: Transform - uid: 3944 components: - pos: 4.5,21.5 @@ -12920,64 +12984,34 @@ entities: - pos: -9.5,13.5 parent: 2173 type: Transform - - uid: 4388 - components: - - pos: -9.5,12.5 - parent: 2173 - type: Transform - - uid: 4389 - components: - - pos: -9.5,11.5 - parent: 2173 - type: Transform - uid: 4390 components: - - pos: -9.5,10.5 + - pos: -8.5,17.5 parent: 2173 type: Transform - uid: 4391 components: - - pos: -10.5,10.5 + - pos: -9.5,17.5 parent: 2173 type: Transform - uid: 4392 components: - - pos: -11.5,10.5 + - pos: -10.5,11.5 parent: 2173 type: Transform - uid: 4393 components: - - pos: -12.5,10.5 + - pos: -10.5,12.5 parent: 2173 type: Transform - uid: 4394 components: - - pos: -13.5,10.5 - parent: 2173 - type: Transform - - uid: 4395 - components: - - pos: -14.5,10.5 + - pos: -10.5,14.5 parent: 2173 type: Transform - uid: 4396 components: - - pos: -15.5,10.5 - parent: 2173 - type: Transform - - uid: 4397 - components: - - pos: -16.5,10.5 - parent: 2173 - type: Transform - - uid: 4398 - components: - - pos: -17.5,10.5 - parent: 2173 - type: Transform - - uid: 4399 - components: - - pos: -18.5,10.5 + - pos: -14.5,12.5 parent: 2173 type: Transform - uid: 4400 @@ -12985,21 +13019,6 @@ entities: - pos: -18.5,11.5 parent: 2173 type: Transform - - uid: 4401 - components: - - pos: -18.5,12.5 - parent: 2173 - type: Transform - - uid: 4402 - components: - - pos: -18.5,13.5 - parent: 2173 - type: Transform - - uid: 4403 - components: - - pos: -18.5,14.5 - parent: 2173 - type: Transform - uid: 4404 components: - pos: -18.5,15.5 @@ -13045,129 +13064,24 @@ entities: - pos: -13.5,18.5 parent: 2173 type: Transform - - uid: 4413 - components: - - pos: -12.5,18.5 - parent: 2173 - type: Transform - - uid: 4414 - components: - - pos: -11.5,18.5 - parent: 2173 - type: Transform - - uid: 4415 - components: - - pos: -10.5,18.5 - parent: 2173 - type: Transform - - uid: 4416 - components: - - pos: -9.5,18.5 - parent: 2173 - type: Transform - - uid: 4417 - components: - - pos: -8.5,18.5 - parent: 2173 - type: Transform - - uid: 4418 - components: - - pos: -7.5,18.5 - parent: 2173 - type: Transform - uid: 4419 components: - pos: -7.5,17.5 parent: 2173 type: Transform - - uid: 4420 - components: - - pos: -7.5,16.5 - parent: 2173 - type: Transform - - uid: 4421 - components: - - pos: -7.5,15.5 - parent: 2173 - type: Transform - - uid: 4422 - components: - - pos: -8.5,15.5 - parent: 2173 - type: Transform - - uid: 4423 - components: - - pos: -9.5,15.5 - parent: 2173 - type: Transform - - uid: 4424 - components: - - pos: -9.5,14.5 - parent: 2173 - type: Transform - uid: 4425 components: - pos: -10.5,13.5 parent: 2173 type: Transform - - uid: 4426 - components: - - pos: -11.5,13.5 - parent: 2173 - type: Transform - - uid: 4427 - components: - - pos: -12.5,13.5 - parent: 2173 - type: Transform - - uid: 4428 - components: - - pos: -13.5,13.5 - parent: 2173 - type: Transform - uid: 4429 components: - pos: -14.5,13.5 parent: 2173 type: Transform - - uid: 4430 - components: - - pos: -15.5,13.5 - parent: 2173 - type: Transform - - uid: 4431 - components: - - pos: -16.5,13.5 - parent: 2173 - type: Transform - - uid: 4432 - components: - - pos: -17.5,13.5 - parent: 2173 - type: Transform - - uid: 4433 - components: - - pos: -13.5,14.5 - parent: 2173 - type: Transform - - uid: 4434 - components: - - pos: -13.5,15.5 - parent: 2173 - type: Transform - - uid: 4435 - components: - - pos: -13.5,16.5 - parent: 2173 - type: Transform - uid: 4436 components: - - pos: -13.5,17.5 - parent: 2173 - type: Transform - - uid: 4437 - components: - - pos: -13.5,12.5 + - pos: -14.5,16.5 parent: 2173 type: Transform - uid: 4438 @@ -13225,11 +13139,6 @@ entities: - pos: 42.5,25.5 parent: 2173 type: Transform - - uid: 5859 - components: - - pos: 29.5,15.5 - parent: 2173 - type: Transform - uid: 5860 components: - pos: 29.5,16.5 @@ -13240,24 +13149,14 @@ entities: - pos: 29.5,17.5 parent: 2173 type: Transform - - uid: 5862 - components: - - pos: 30.5,17.5 - parent: 2173 - type: Transform - - uid: 5863 - components: - - pos: 30.5,18.5 - parent: 2173 - type: Transform - uid: 5864 components: - - pos: 30.5,19.5 + - pos: 29.5,19.5 parent: 2173 type: Transform - uid: 5865 components: - - pos: 30.5,20.5 + - pos: 29.5,18.5 parent: 2173 type: Transform - uid: 5866 @@ -13330,6 +13229,11 @@ entities: - pos: 34.5,21.5 parent: 2173 type: Transform + - uid: 6052 + components: + - pos: 29.5,20.5 + parent: 2173 + type: Transform - proto: CableHV entities: - uid: 1599 @@ -14072,11 +13976,6 @@ entities: - pos: 28.5,15.5 parent: 2173 type: Transform - - uid: 1809 - components: - - pos: 27.5,15.5 - parent: 2173 - type: Transform - uid: 1810 components: - pos: 27.5,16.5 @@ -14327,6 +14226,11 @@ entities: - pos: -3.5,40.5 parent: 2173 type: Transform + - uid: 3716 + components: + - pos: 28.5,16.5 + parent: 2173 + type: Transform - uid: 5803 components: - pos: -3.5,41.5 @@ -14334,6 +14238,21 @@ entities: type: Transform - proto: CableMV entities: + - uid: 658 + components: + - pos: 33.5,15.5 + parent: 2173 + type: Transform + - uid: 659 + components: + - pos: 33.5,16.5 + parent: 2173 + type: Transform + - uid: 660 + components: + - pos: 33.5,17.5 + parent: 2173 + type: Transform - uid: 669 components: - pos: 9.5,24.5 @@ -15174,16 +15093,6 @@ entities: - pos: -10.5,11.5 parent: 2173 type: Transform - - uid: 2985 - components: - - pos: -9.5,11.5 - parent: 2173 - type: Transform - - uid: 2986 - components: - - pos: -9.5,12.5 - parent: 2173 - type: Transform - uid: 2987 components: - pos: -9.5,13.5 @@ -15256,12 +15165,12 @@ entities: type: Transform - uid: 3001 components: - - pos: -9.5,14.5 + - pos: -10.5,14.5 parent: 2173 type: Transform - uid: 3002 components: - - pos: -9.5,15.5 + - pos: -10.5,13.5 parent: 2173 type: Transform - uid: 3003 @@ -15494,11 +15403,6 @@ entities: - pos: 27.5,16.5 parent: 2173 type: Transform - - uid: 3052 - components: - - pos: 27.5,15.5 - parent: 2173 - type: Transform - uid: 3053 components: - pos: 28.5,15.5 @@ -15839,21 +15743,6 @@ entities: - pos: 33.5,14.5 parent: 2173 type: Transform - - uid: 3121 - components: - - pos: 34.5,14.5 - parent: 2173 - type: Transform - - uid: 3122 - components: - - pos: 34.5,15.5 - parent: 2173 - type: Transform - - uid: 3123 - components: - - pos: 34.5,16.5 - parent: 2173 - type: Transform - uid: 3124 components: - pos: 34.5,17.5 @@ -15899,21 +15788,6 @@ entities: - pos: 40.5,19.5 parent: 2173 type: Transform - - uid: 3133 - components: - - pos: 37.5,18.5 - parent: 2173 - type: Transform - - uid: 3134 - components: - - pos: 37.5,19.5 - parent: 2173 - type: Transform - - uid: 3135 - components: - - pos: 37.5,20.5 - parent: 2173 - type: Transform - uid: 3157 components: - pos: 28.5,2.5 @@ -16019,6 +15893,11 @@ entities: - pos: 30.5,-15.5 parent: 2173 type: Transform + - uid: 3808 + components: + - pos: 28.5,16.5 + parent: 2173 + type: Transform - uid: 3939 components: - pos: 10.5,18.5 @@ -16029,6 +15908,21 @@ entities: - pos: 11.5,18.5 parent: 2173 type: Transform + - uid: 4195 + components: + - pos: -10.5,12.5 + parent: 2173 + type: Transform + - uid: 4388 + components: + - pos: -10.5,15.5 + parent: 2173 + type: Transform + - uid: 4389 + components: + - pos: -10.5,16.5 + parent: 2173 + type: Transform - uid: 4604 components: - pos: -51.5,8.5 @@ -16343,6 +16237,18 @@ entities: pos: 3.5,42.5 parent: 2173 type: Transform + - uid: 1201 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2173 + type: Transform + - uid: 1809 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2173 + type: Transform - uid: 2470 components: - pos: 28.5,7.5 @@ -16703,12 +16609,6 @@ entities: - pos: -47.5,7.5 parent: 2173 type: Transform - - uid: 2636 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 2173 - type: Transform - uid: 2671 components: - pos: -31.5,6.5 @@ -16719,6 +16619,12 @@ entities: - pos: -32.5,6.5 parent: 2173 type: Transform + - uid: 3133 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,17.5 + parent: 2173 + type: Transform - uid: 4452 components: - pos: -0.5,5.5 @@ -16772,11 +16678,29 @@ entities: - pos: 47.5,13.5 parent: 2173 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: ClosetEmergencyFilledRandom entities: - - uid: 2787 + - uid: 2631 components: - - pos: 29.5,13.5 + - pos: 24.5,18.5 parent: 2173 type: Transform - uid: 2789 @@ -17058,16 +16982,15 @@ entities: type: Transform - proto: ComputerCriminalRecords entities: - - uid: 2367 + - uid: 2623 components: - - rot: -1.5707963267948966 rad - pos: 38.5,13.5 + - pos: 43.5,13.5 parent: 2173 type: Transform - - uid: 2634 + - uid: 2636 components: - rot: 1.5707963267948966 rad - pos: 32.5,16.5 + pos: 31.5,16.5 parent: 2173 type: Transform - uid: 2831 @@ -17078,6 +17001,12 @@ entities: type: Transform - proto: ComputerId entities: + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2173 + type: Transform - uid: 2654 components: - rot: -1.5707963267948966 rad @@ -17137,12 +17066,6 @@ entities: pos: 48.5,11.5 parent: 2173 type: Transform - - uid: 2368 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 2173 - type: Transform - uid: 2421 components: - pos: -54.5,4.5 @@ -17237,11 +17160,30 @@ entities: occludes: True ents: [] type: ContainerContainer +- proto: ComputerShipyardScrap + entities: + - uid: 3807 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,9.5 + parent: 2173 + type: Transform + - containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - proto: ComputerShipyardSecurity entities: - - uid: 5742 + - uid: 5581 components: - - pos: 43.5,13.5 + - rot: 1.5707963267948966 rad + pos: 45.5,11.5 parent: 2173 type: Transform - containers: @@ -17266,10 +17208,10 @@ entities: type: RadarConsole - proto: ComputerStationRecords entities: - - uid: 2633 + - uid: 2634 components: - rot: 1.5707963267948966 rad - pos: 32.5,17.5 + pos: 31.5,17.5 parent: 2173 type: Transform - uid: 2837 @@ -17307,6 +17249,21 @@ entities: type: Transform - proto: ComputerWallmountBankATM entities: + - uid: 2823 + components: + - pos: 39.5,12.5 + parent: 2173 + type: Transform + - containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - uid: 6007 components: - rot: 1.5707963267948966 rad @@ -17661,38 +17618,22 @@ entities: - links: - 2737 type: DeviceLinkSink -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 2140 + - uid: 6083 components: - - pos: -3.5,24.5 + - rot: 1.5707963267948966 rad + pos: 52.5,18.5 parent: 2173 type: Transform -- proto: Crematorium + - links: + - 6145 + type: DeviceLinkSink +- proto: CrateServiceJanitorialSupplies entities: - - uid: 1468 + - uid: 2140 components: - - pos: -44.5,18.5 + - pos: -3.5,24.5 parent: 2173 type: Transform - - air: - volume: 200 - immutable: False - temperature: 99.138466 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrewMonitoringServer entities: - uid: 2517 @@ -17757,6 +17698,18 @@ entities: type: Transform - proto: DisposalBend entities: + - uid: 4403 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2173 + type: Transform + - uid: 4416 + components: + - rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 2173 + type: Transform - uid: 5352 components: - rot: 1.5707963267948966 rad @@ -17797,16 +17750,9 @@ entities: - pos: 3.5,16.5 parent: 2173 type: Transform - - uid: 5460 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 2173 - type: Transform - - uid: 5461 + - uid: 5457 components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + - pos: 48.5,24.5 parent: 2173 type: Transform - uid: 5462 @@ -17838,8 +17784,42 @@ entities: - pos: -45.5,14.5 parent: 2173 type: Transform + - uid: 6041 + components: + - rot: 3.141592653589793 rad + pos: 48.5,16.5 + parent: 2173 + type: Transform + - uid: 6082 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2173 + type: Transform + - uid: 6089 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,36.5 + parent: 2173 + type: Transform + - uid: 6142 + components: + - pos: 17.5,15.5 + parent: 2173 + type: Transform - proto: DisposalJunction entities: + - uid: 4413 + components: + - pos: 48.5,22.5 + parent: 2173 + type: Transform + - uid: 4430 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2173 + type: Transform - uid: 5520 components: - rot: 1.5707963267948966 rad @@ -17848,10 +17828,16 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 2145 + - uid: 4290 + components: + - rot: 3.141592653589793 rad + pos: 52.5,16.5 + parent: 2173 + type: Transform + - uid: 4415 components: - rot: 1.5707963267948966 rad - pos: -11.5,16.5 + pos: -0.5,16.5 parent: 2173 type: Transform - uid: 5355 @@ -17909,6 +17895,56 @@ entities: pos: 53.5,6.5 parent: 2173 type: Transform + - uid: 4402 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2173 + type: Transform + - uid: 4414 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2173 + type: Transform + - uid: 4417 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 2173 + type: Transform + - uid: 4418 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2173 + type: Transform + - uid: 4420 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2173 + type: Transform + - uid: 4421 + components: + - pos: -10.5,15.5 + parent: 2173 + type: Transform + - uid: 4422 + components: + - pos: -10.5,14.5 + parent: 2173 + type: Transform + - uid: 4423 + components: + - pos: -10.5,13.5 + parent: 2173 + type: Transform + - uid: 4424 + components: + - pos: -10.5,12.5 + parent: 2173 + type: Transform - uid: 5353 components: - pos: 48.5,4.5 @@ -17997,12 +18033,6 @@ entities: pos: 52.5,15.5 parent: 2173 type: Transform - - uid: 5374 - components: - - rot: 3.141592653589793 rad - pos: 52.5,16.5 - parent: 2173 - type: Transform - uid: 5375 components: - rot: 3.141592653589793 rad @@ -18358,12 +18388,6 @@ entities: pos: 0.5,16.5 parent: 2173 type: Transform - - uid: 5445 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 2173 - type: Transform - uid: 5446 components: - rot: -1.5707963267948966 rad @@ -18418,28 +18442,27 @@ entities: pos: -9.5,16.5 parent: 2173 type: Transform - - uid: 5455 + - uid: 5458 components: - - rot: -1.5707963267948966 rad - pos: -10.5,16.5 + - pos: 48.5,23.5 parent: 2173 type: Transform - - uid: 5457 + - uid: 5459 components: - rot: -1.5707963267948966 rad - pos: -12.5,16.5 + pos: 47.5,24.5 parent: 2173 type: Transform - - uid: 5458 + - uid: 5460 components: - rot: -1.5707963267948966 rad - pos: -13.5,16.5 + pos: 46.5,24.5 parent: 2173 type: Transform - - uid: 5459 + - uid: 5461 components: - rot: -1.5707963267948966 rad - pos: -14.5,16.5 + pos: 45.5,24.5 parent: 2173 type: Transform - uid: 5464 @@ -18456,22 +18479,26 @@ entities: type: Transform - uid: 5466 components: - - pos: -15.5,12.5 + - rot: -1.5707963267948966 rad + pos: 44.5,24.5 parent: 2173 type: Transform - uid: 5467 components: - - pos: -15.5,13.5 + - rot: -1.5707963267948966 rad + pos: 43.5,24.5 parent: 2173 type: Transform - uid: 5468 components: - - pos: -15.5,14.5 + - rot: -1.5707963267948966 rad + pos: 42.5,24.5 parent: 2173 type: Transform - uid: 5469 components: - - pos: -15.5,15.5 + - rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2173 type: Transform - uid: 5470 @@ -18972,13 +18999,481 @@ entities: pos: -46.5,14.5 parent: 2173 type: Transform + - uid: 6011 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,22.5 + parent: 2173 + type: Transform - uid: 6027 components: - pos: -11.5,17.5 parent: 2173 type: Transform + - uid: 6031 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2173 + type: Transform + - uid: 6032 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 2173 + type: Transform + - uid: 6033 + components: + - pos: 48.5,21.5 + parent: 2173 + type: Transform + - uid: 6034 + components: + - pos: 48.5,20.5 + parent: 2173 + type: Transform + - uid: 6035 + components: + - pos: 48.5,19.5 + parent: 2173 + type: Transform + - uid: 6036 + components: + - pos: 48.5,18.5 + parent: 2173 + type: Transform + - uid: 6037 + components: + - pos: 48.5,17.5 + parent: 2173 + type: Transform + - uid: 6038 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2173 + type: Transform + - uid: 6039 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2173 + type: Transform + - uid: 6040 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2173 + type: Transform + - uid: 6042 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2173 + type: Transform + - uid: 6053 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,24.5 + parent: 2173 + type: Transform + - uid: 6054 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2173 + type: Transform + - uid: 6055 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2173 + type: Transform + - uid: 6056 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,24.5 + parent: 2173 + type: Transform + - uid: 6057 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,24.5 + parent: 2173 + type: Transform + - uid: 6058 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,24.5 + parent: 2173 + type: Transform + - uid: 6059 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 2173 + type: Transform + - uid: 6060 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,24.5 + parent: 2173 + type: Transform + - uid: 6061 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2173 + type: Transform + - uid: 6062 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2173 + type: Transform + - uid: 6063 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2173 + type: Transform + - uid: 6064 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2173 + type: Transform + - uid: 6065 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2173 + type: Transform + - uid: 6066 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2173 + type: Transform + - uid: 6067 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,24.5 + parent: 2173 + type: Transform + - uid: 6068 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2173 + type: Transform + - uid: 6069 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2173 + type: Transform + - uid: 6070 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 2173 + type: Transform + - uid: 6071 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,24.5 + parent: 2173 + type: Transform + - uid: 6072 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2173 + type: Transform + - uid: 6073 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2173 + type: Transform + - uid: 6074 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 2173 + type: Transform + - uid: 6075 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 2173 + type: Transform + - uid: 6076 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2173 + type: Transform + - uid: 6077 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2173 + type: Transform + - uid: 6078 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2173 + type: Transform + - uid: 6079 + components: + - rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2173 + type: Transform + - uid: 6080 + components: + - rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 2173 + type: Transform + - uid: 6081 + components: + - rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2173 + type: Transform + - uid: 6085 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2173 + type: Transform + - uid: 6086 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 2173 + type: Transform + - uid: 6087 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 2173 + type: Transform + - uid: 6088 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,36.5 + parent: 2173 + type: Transform + - uid: 6090 + components: + - pos: -0.5,35.5 + parent: 2173 + type: Transform + - uid: 6091 + components: + - pos: -0.5,34.5 + parent: 2173 + type: Transform + - uid: 6092 + components: + - pos: -0.5,33.5 + parent: 2173 + type: Transform + - uid: 6093 + components: + - pos: -0.5,32.5 + parent: 2173 + type: Transform + - uid: 6094 + components: + - pos: -0.5,31.5 + parent: 2173 + type: Transform + - uid: 6095 + components: + - pos: -0.5,30.5 + parent: 2173 + type: Transform + - uid: 6096 + components: + - pos: -0.5,29.5 + parent: 2173 + type: Transform + - uid: 6097 + components: + - pos: -0.5,28.5 + parent: 2173 + type: Transform + - uid: 6098 + components: + - pos: -0.5,27.5 + parent: 2173 + type: Transform + - uid: 6099 + components: + - pos: -0.5,26.5 + parent: 2173 + type: Transform + - uid: 6100 + components: + - pos: -0.5,25.5 + parent: 2173 + type: Transform + - uid: 6101 + components: + - pos: -0.5,24.5 + parent: 2173 + type: Transform + - uid: 6102 + components: + - pos: -0.5,23.5 + parent: 2173 + type: Transform + - uid: 6103 + components: + - pos: -0.5,22.5 + parent: 2173 + type: Transform + - uid: 6104 + components: + - pos: -0.5,21.5 + parent: 2173 + type: Transform + - uid: 6105 + components: + - pos: -0.5,20.5 + parent: 2173 + type: Transform + - uid: 6106 + components: + - pos: -0.5,19.5 + parent: 2173 + type: Transform + - uid: 6107 + components: + - pos: -0.5,18.5 + parent: 2173 + type: Transform + - uid: 6108 + components: + - pos: -0.5,17.5 + parent: 2173 + type: Transform + - uid: 6125 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2173 + type: Transform + - uid: 6126 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2173 + type: Transform + - uid: 6127 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2173 + type: Transform + - uid: 6128 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2173 + type: Transform + - uid: 6129 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2173 + type: Transform + - uid: 6130 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2173 + type: Transform + - uid: 6131 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 2173 + type: Transform + - uid: 6132 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2173 + type: Transform + - uid: 6133 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2173 + type: Transform + - uid: 6134 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2173 + type: Transform + - uid: 6135 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2173 + type: Transform + - uid: 6136 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2173 + type: Transform + - uid: 6137 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2173 + type: Transform + - uid: 6138 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2173 + type: Transform + - uid: 6139 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2173 + type: Transform + - uid: 6140 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2173 + type: Transform + - uid: 6141 + components: + - rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 2173 + type: Transform - proto: DisposalTrunk entities: + - uid: 4433 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 2173 + type: Transform - uid: 5351 components: - rot: -1.5707963267948966 rad @@ -19000,6 +19495,12 @@ entities: - pos: 5.5,6.5 parent: 2173 type: Transform + - uid: 5455 + components: + - rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 2173 + type: Transform - uid: 5463 components: - rot: 3.141592653589793 rad @@ -19034,11 +19535,23 @@ entities: pos: -45.5,13.5 parent: 2173 type: Transform + - uid: 6010 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,22.5 + parent: 2173 + type: Transform - uid: 6026 components: - pos: -11.5,18.5 parent: 2173 type: Transform + - uid: 6143 + components: + - rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 2173 + type: Transform - proto: DisposalUnit entities: - uid: 1472 @@ -19091,6 +19604,16 @@ entities: - pos: 17.5,10.5 parent: 2173 type: Transform + - uid: 4426 + components: + - pos: 4.5,36.5 + parent: 2173 + type: Transform + - uid: 5445 + components: + - pos: 13.5,20.5 + parent: 2173 + type: Transform - uid: 5810 components: - pos: 44.5,22.5 @@ -19447,9 +19970,25 @@ entities: - pos: 6.5,23.5 parent: 2173 type: Transform + - name: Frontier Outpost SR + type: FaxMachine + - uid: 5742 + components: + - pos: 48.5,13.5 + parent: 2173 + type: Transform + - name: Frontier Outpost NFSD + type: FaxMachine + - uid: 5746 + components: + - pos: 13.5,16.5 + parent: 2173 + type: Transform + - name: Frontier Outpost STC + type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 4290 + - uid: 6049 components: - pos: 22.5,9.5 parent: 2173 @@ -19645,25 +20184,6 @@ entities: - 2338 - 2339 type: DeviceList - - uid: 5581 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,12.5 - parent: 2173 - type: Transform - - devices: - - 2345 - - 2346 - - 2343 - - 2344 - - 2349 - - 2351 - - 2350 - - 2352 - - 2353 - - 2354 - - 2355 - type: DeviceList - uid: 5583 components: - pos: 13.5,17.5 @@ -19813,6 +20333,38 @@ entities: - 2323 - 2324 type: DeviceList + - uid: 6050 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,16.5 + parent: 2173 + type: Transform + - ShutdownSubscribers: + - 2345 + - 2346 + - 2343 + - 2344 + - 2349 + - 2351 + - 2350 + - 2352 + - 2353 + - 2354 + - 2355 + type: DeviceNetwork + - devices: + - 2345 + - 2346 + - 2343 + - 2344 + - 2349 + - 2351 + - 2350 + - 2352 + - 2353 + - 2354 + - 2355 + type: DeviceList - proto: FireAxeCabinetFilled entities: - uid: 2550 @@ -19827,31 +20379,49 @@ entities: - pos: 35.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2351 components: - pos: 34.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2352 components: - pos: 36.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2353 components: - pos: 38.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2354 components: - pos: 39.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2355 components: - pos: 40.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - proto: FirelockGlass entities: - uid: 2213 @@ -20340,21 +20910,33 @@ entities: - pos: 46.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2344 components: - pos: 47.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2345 components: - pos: 42.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2346 components: - pos: 43.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2347 components: - pos: 42.5,7.5 @@ -20370,6 +20952,9 @@ entities: - pos: 32.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2653 components: - pos: 2.5,26.5 @@ -20425,11 +21010,6 @@ entities: - pos: 12.5,23.5 parent: 2173 type: Transform - - uid: 5830 - components: - - pos: 30.5,18.5 - parent: 2173 - type: Transform - uid: 5831 components: - pos: 35.5,26.5 @@ -20544,6 +21124,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 6084 + components: + - pos: 52.5,17.5 + parent: 2173 + type: Transform + - fixtures: {} + type: Fixtures - proto: FoodBowlBigTrash entities: - uid: 2808 @@ -20568,9 +21155,9 @@ entities: type: Transform - proto: ForensicScanner entities: - - uid: 2858 + - uid: 3122 components: - - pos: 33.447002,18.528852 + - pos: 32.35628,18.443474 parent: 2173 type: Transform - proto: GasAnalyzer @@ -20690,12 +21277,22 @@ entities: pos: -37.5,7.5 parent: 2173 type: Transform + - uid: 2394 + components: + - rot: 3.141592653589793 rad + pos: -14.5,12.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 2499 components: - rot: 1.5707963267948966 rad pos: 7.5,23.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 4520 components: - rot: 3.141592653589793 rad @@ -20889,18 +21486,10 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4960 + - uid: 4962 components: - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4961 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + pos: 36.5,17.5 parent: 2173 type: Transform - color: '#0055CCFF' @@ -21057,23 +21646,47 @@ entities: - pos: 57.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5974 components: - rot: 3.141592653589793 rad pos: 10.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6002 components: - pos: 58.5,28.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6003 components: - rot: -1.5707963267948966 rad pos: 60.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6119 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6120 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeFourway entities: - uid: 4548 @@ -21370,12 +21983,78 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 2145 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 2537 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2557 + components: + - rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2679 + components: + - rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2986 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4395 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4398 + components: + - rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4399 + components: + - rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4435 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 4495 components: - rot: 3.141592653589793 rad @@ -24057,13 +24736,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 4974 - components: - - pos: 36.5,18.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 4975 components: - pos: 36.5,19.5 @@ -25931,613 +26603,883 @@ entities: - pos: 37.5,20.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5881 components: - pos: 37.5,21.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5882 components: - pos: 37.5,22.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5883 components: - pos: 37.5,23.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5884 components: - pos: 37.5,24.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5885 components: - pos: 37.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5887 components: - rot: -1.5707963267948966 rad pos: 36.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5888 components: - rot: -1.5707963267948966 rad pos: 35.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5889 components: - rot: -1.5707963267948966 rad pos: 34.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5890 components: - rot: -1.5707963267948966 rad pos: 33.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5892 components: - rot: -1.5707963267948966 rad pos: 31.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5893 components: - rot: -1.5707963267948966 rad pos: 30.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5894 components: - rot: -1.5707963267948966 rad pos: 29.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5895 components: - rot: -1.5707963267948966 rad pos: 28.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5896 components: - rot: -1.5707963267948966 rad pos: 27.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5897 components: - rot: -1.5707963267948966 rad pos: 26.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5898 components: - rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5899 components: - rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5900 components: - rot: -1.5707963267948966 rad pos: 23.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5901 components: - rot: -1.5707963267948966 rad pos: 22.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5902 components: - rot: -1.5707963267948966 rad pos: 21.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5904 components: - rot: -1.5707963267948966 rad pos: 19.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5905 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5906 components: - rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5907 components: - rot: -1.5707963267948966 rad pos: 16.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5908 components: - rot: -1.5707963267948966 rad pos: 15.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5909 components: - rot: -1.5707963267948966 rad pos: 14.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5910 components: - rot: -1.5707963267948966 rad pos: 13.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5911 components: - rot: -1.5707963267948966 rad pos: 12.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5912 components: - rot: -1.5707963267948966 rad pos: 11.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5913 components: - rot: -1.5707963267948966 rad pos: 10.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5914 components: - rot: -1.5707963267948966 rad pos: 9.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5915 components: - rot: -1.5707963267948966 rad pos: 8.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5916 components: - rot: -1.5707963267948966 rad pos: 7.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5921 components: - rot: 1.5707963267948966 rad pos: 38.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5922 components: - rot: 1.5707963267948966 rad pos: 39.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5923 components: - rot: 1.5707963267948966 rad pos: 40.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5925 components: - rot: 1.5707963267948966 rad pos: 42.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5926 components: - rot: 1.5707963267948966 rad pos: 43.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5927 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5928 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5929 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5930 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5931 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5932 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5933 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5934 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5935 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5936 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5937 components: - rot: 1.5707963267948966 rad pos: 54.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5938 components: - rot: 1.5707963267948966 rad pos: 55.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5939 components: - rot: 1.5707963267948966 rad pos: 56.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5943 components: - rot: 3.141592653589793 rad pos: 36.5,20.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5944 components: - rot: 3.141592653589793 rad pos: 36.5,21.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5945 components: - rot: 3.141592653589793 rad pos: 36.5,22.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5946 components: - rot: 3.141592653589793 rad pos: 36.5,23.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5948 components: - rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5949 components: - rot: -1.5707963267948966 rad pos: 34.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5950 components: - rot: -1.5707963267948966 rad pos: 33.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5951 components: - rot: -1.5707963267948966 rad pos: 32.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5954 components: - rot: -1.5707963267948966 rad pos: 30.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5955 components: - rot: -1.5707963267948966 rad pos: 29.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5956 components: - rot: -1.5707963267948966 rad pos: 28.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5957 components: - rot: -1.5707963267948966 rad pos: 27.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5958 components: - rot: -1.5707963267948966 rad pos: 26.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5959 components: - rot: -1.5707963267948966 rad pos: 25.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5960 components: - rot: -1.5707963267948966 rad pos: 24.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5961 components: - rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5962 components: - rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5964 components: - rot: 1.5707963267948966 rad pos: 20.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5965 components: - rot: 1.5707963267948966 rad pos: 19.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5966 components: - rot: 1.5707963267948966 rad pos: 18.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5967 components: - rot: 1.5707963267948966 rad pos: 17.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5968 components: - rot: 1.5707963267948966 rad pos: 16.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5969 components: - rot: 1.5707963267948966 rad pos: 15.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5970 components: - rot: 1.5707963267948966 rad pos: 14.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5971 components: - rot: 1.5707963267948966 rad pos: 13.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5972 components: - rot: 1.5707963267948966 rad pos: 12.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5973 components: - rot: 1.5707963267948966 rad pos: 11.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5977 components: - rot: -1.5707963267948966 rad pos: 37.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5978 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5979 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5980 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5981 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5983 components: - rot: 1.5707963267948966 rad pos: 43.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5984 components: - rot: 1.5707963267948966 rad pos: 44.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5985 components: - rot: 1.5707963267948966 rad pos: 45.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5986 components: - rot: 1.5707963267948966 rad pos: 46.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5987 components: - rot: 1.5707963267948966 rad pos: 47.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5988 components: - rot: 1.5707963267948966 rad pos: 48.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5989 components: - rot: 1.5707963267948966 rad pos: 49.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5990 components: - rot: 1.5707963267948966 rad pos: 50.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5991 components: - rot: 1.5707963267948966 rad pos: 51.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5992 components: - rot: 1.5707963267948966 rad pos: 52.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5993 components: - rot: 1.5707963267948966 rad pos: 53.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5994 components: - rot: 1.5707963267948966 rad pos: 54.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5995 components: - rot: 1.5707963267948966 rad pos: 55.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5996 components: - rot: 1.5707963267948966 rad pos: 56.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5997 components: - rot: 1.5707963267948966 rad pos: 57.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5999 components: - rot: 3.141592653589793 rad pos: 58.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6000 components: - rot: 3.141592653589793 rad pos: 58.5,26.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6001 components: - rot: 3.141592653589793 rad pos: 58.5,27.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6004 components: - rot: -1.5707963267948966 rad pos: 59.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6109 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6111 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6112 + components: + - rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6113 + components: + - rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6115 + components: + - rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6116 + components: + - rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6117 + components: + - rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6118 + components: + - rot: 3.141592653589793 rad + pos: -11.5,12.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - uid: 1111 @@ -26609,6 +27551,8 @@ entities: pos: 6.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 2920 components: - rot: 1.5707963267948966 rad @@ -27001,8 +27945,8 @@ entities: type: AtmosPipeColor - uid: 4959 components: - - rot: 3.141592653589793 rad - pos: 36.5,17.5 + - rot: 1.5707963267948966 rad + pos: 36.5,18.5 parent: 2173 type: Transform - color: '#0055CCFF' @@ -27257,56 +28201,84 @@ entities: - pos: 37.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5891 components: - pos: 32.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5903 components: - pos: 20.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5917 components: - rot: 1.5707963267948966 rad pos: 6.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5924 components: - pos: 41.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5947 components: - pos: 36.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5952 components: - rot: 3.141592653589793 rad pos: 31.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5963 components: - rot: 3.141592653589793 rad pos: 21.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5982 components: - rot: 3.141592653589793 rad pos: 42.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5998 components: - rot: 3.141592653589793 rad pos: 58.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6114 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 1113 @@ -27381,6 +28353,8 @@ entities: pos: 8.5,23.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 4494 components: - rot: 1.5707963267948966 rad @@ -27592,10 +28566,9 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4962 + - uid: 4961 components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + - pos: 42.5,25.5 parent: 2173 type: Transform - color: '#0055CCFF' @@ -27730,34 +28703,69 @@ entities: pos: -0.5,17.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5953 components: - pos: 31.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5975 components: - pos: 10.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5976 components: - pos: 21.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6005 components: - pos: 60.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6006 components: - rot: 1.5707963267948966 rad pos: 57.5,28.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6121 + components: + - rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6124 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentScrubber entities: + - uid: 4397 + components: + - pos: -14.5,17.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 4493 components: - rot: 3.141592653589793 rad @@ -28108,30 +29116,48 @@ entities: - pos: 6.5,27.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5919 components: - rot: 3.141592653589793 rad pos: 20.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5920 components: - rot: 3.141592653589793 rad pos: 32.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5941 components: - rot: 3.141592653589793 rad pos: 57.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5942 components: - rot: 3.141592653589793 rad pos: 41.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6122 + components: + - rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasVolumePump entities: - uid: 1109 @@ -29888,11 +30914,6 @@ entities: - pos: -42.5,19.5 parent: 2173 type: Transform - - uid: 1477 - components: - - pos: -46.5,15.5 - parent: 2173 - type: Transform - uid: 1478 components: - pos: -46.5,18.5 @@ -30311,6 +31332,12 @@ entities: - pos: 41.5,19.5 parent: 2173 type: Transform + - uid: 5859 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2173 + type: Transform - proto: GrilleBroken entities: - uid: 2786 @@ -30545,10 +31572,17 @@ entities: type: Transform - proto: LampGold entities: - - uid: 2856 + - uid: 3134 components: - rot: -1.5707963267948966 rad - pos: 33.72139,18.78495 + pos: 32.575436,18.856201 + parent: 2173 + type: Transform +- proto: LessLethalVendingMachine + entities: + - uid: 4293 + components: + - pos: 6.5,6.5 parent: 2173 type: Transform - proto: LockerEvidence @@ -30558,14 +31592,32 @@ entities: - pos: 46.5,13.5 parent: 2173 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 2822 components: - - pos: 39.5,11.5 + - pos: 33.5,9.5 parent: 2173 type: Transform - - uid: 2823 + - uid: 6051 components: - - pos: 35.5,11.5 + - pos: 37.5,9.5 parent: 2173 type: Transform - proto: LockerHeadOfPersonnelFilled @@ -30596,6 +31648,11 @@ entities: type: Transform - proto: LockerSecurityFilled entities: + - uid: 2556 + components: + - pos: 30.5,10.5 + parent: 2173 + type: Transform - uid: 2558 components: - pos: 30.5,9.5 @@ -30670,26 +31727,19 @@ entities: - pos: -43.42814,10.691803 parent: 2173 type: Transform - - uid: 2679 - components: - - pos: -48.410625,6.81355 - parent: 2173 - type: Transform -- proto: MaterialBiomass1 - entities: - - uid: 2394 + - uid: 4428 components: - - pos: -48.735626,6.8385496 + - pos: -48.5437,6.7244673 parent: 2173 type: Transform - - uid: 4479 + - uid: 4431 components: - - pos: -48.610626,6.68855 + - pos: -48.71129,6.814751 parent: 2173 type: Transform - - uid: 4480 + - uid: 4432 components: - - pos: -48.635624,6.86355 + - pos: -48.389004,6.840546 parent: 2173 type: Transform - proto: MaterialCardboard1 @@ -30713,6 +31763,13 @@ entities: - pos: 6.6530757,18.317799 parent: 2173 type: Transform +- proto: MaterialReclaimer + entities: + - uid: 6144 + components: + - pos: 53.5,18.5 + parent: 2173 + type: Transform - proto: MedicalScanner entities: - uid: 1475 @@ -30854,6 +31911,16 @@ entities: pos: -42.5,16.5 parent: 2173 type: Transform + - uid: 4401 + components: + - pos: -45.5,18.5 + parent: 2173 + type: Transform + - uid: 6110 + components: + - pos: -44.5,18.5 + parent: 2173 + type: Transform - proto: Multitool entities: - uid: 2744 @@ -30889,46 +31956,46 @@ entities: - pos: -38.5,16.5 parent: 2173 type: Transform -- proto: PaperBin10 +- proto: Paper entities: - - uid: 2611 + - uid: 6043 components: - - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + - pos: 14.09188,16.706373 parent: 2173 type: Transform - - uid: 4454 + - uid: 6044 components: - - pos: -1.5,5.5 + - pos: 14.207902,16.500011 parent: 2173 type: Transform -- proto: PaperDoor - entities: - - uid: 4140 + - uid: 6045 components: - - pos: 24.5,11.5 + - pos: 14.349708,16.680578 parent: 2173 type: Transform -- proto: PaperOffice - entities: - - uid: 4291 + - uid: 6046 components: - - pos: 22.391647,10.582071 + - pos: 14.568859,16.461319 parent: 2173 type: Transform - - uid: 4292 +- proto: PaperBin10 + entities: + - uid: 2611 components: - - pos: 22.50872,10.450363 + - rot: 1.5707963267948966 rad + pos: 5.5,22.5 parent: 2173 type: Transform - - uid: 4293 + - uid: 4454 components: - - pos: 22.669697,10.567436 + - pos: -1.5,5.5 parent: 2173 type: Transform - - uid: 4294 +- proto: PaperDoor + entities: + - uid: 4140 components: - - pos: 22.596525,10.230852 + - pos: 24.5,11.5 parent: 2173 type: Transform - proto: PillCanister @@ -31052,6 +32119,20 @@ entities: - pos: -47.5,16.5 parent: 2173 type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 4974 + components: + - pos: -16.5,16.5 + parent: 2173 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 4960 + components: + - pos: 4.5,19.5 + parent: 2173 + type: Transform - proto: PottedPlantRandom entities: - uid: 268 @@ -31309,14 +32390,18 @@ entities: pos: 9.5,25.5 parent: 2173 type: Transform - - uid: 2681 + - uid: 3715 components: - rot: -1.5707963267948966 rad - pos: -42.5,16.5 + pos: 32.5,7.5 + parent: 2173 + type: Transform + - uid: 3717 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,12.5 parent: 2173 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4043 components: - rot: 1.5707963267948966 rad @@ -31338,14 +32423,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4195 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,10.5 - parent: 2173 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4196 components: - rot: -1.5707963267948966 rad @@ -31710,14 +32787,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4247 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 2173 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4248 components: - rot: 3.141592653589793 rad @@ -31740,6 +32809,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 4291 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 2173 + type: Transform - uid: 4312 components: - pos: -3.5,34.5 @@ -31846,14 +32921,18 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4443 + - uid: 4434 components: - - rot: 3.141592653589793 rad - pos: -12.5,10.5 + - rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2173 + type: Transform + - uid: 4437 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,15.5 parent: 2173 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 5011 components: - pos: 47.5,26.5 @@ -31865,6 +32944,11 @@ entities: pos: -11.5,16.5 parent: 2173 type: Transform + - uid: 6123 + components: + - pos: -16.5,12.5 + parent: 2173 + type: Transform - proto: PoweredlightLED entities: - uid: 4191 @@ -31877,6 +32961,12 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: + - uid: 1545 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2173 + type: Transform - uid: 2101 components: - rot: 1.5707963267948966 rad @@ -32201,6 +33291,13 @@ entities: pos: -49.5,11.5 parent: 2173 type: Transform +- proto: RandomFoodMeal + entities: + - uid: 4292 + components: + - pos: 22.5,10.5 + parent: 2173 + type: Transform - proto: RandomInstruments entities: - uid: 4375 @@ -32215,11 +33312,6 @@ entities: - pos: -3.5,28.5 parent: 2173 type: Transform - - uid: 4374 - components: - - pos: 51.5,9.5 - parent: 2173 - type: Transform - proto: RandomPosterContraband entities: - uid: 4492 @@ -32242,11 +33334,6 @@ entities: - pos: -19.5,18.5 parent: 2173 type: Transform - - uid: 5655 - components: - - pos: 23.5,12.5 - parent: 2173 - type: Transform - uid: 5656 components: - pos: 50.5,14.5 @@ -32406,6 +33493,11 @@ entities: - pos: -13.5,19.5 parent: 2173 type: Transform + - uid: 5655 + components: + - pos: 23.5,12.5 + parent: 2173 + type: Transform - proto: RandomSoap entities: - uid: 4178 @@ -34452,6 +35544,12 @@ entities: pos: 18.5,27.5 parent: 2173 type: Transform + - uid: 3943 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2173 + type: Transform - uid: 4040 components: - rot: 1.5707963267948966 rad @@ -35364,21 +36462,21 @@ entities: type: Transform - proto: StationAdminBankATM entities: - - uid: 2623 + - uid: 2367 components: - - rot: 1.5707963267948966 rad - pos: 45.5,11.5 + - rot: -1.5707963267948966 rad + pos: 38.5,13.5 parent: 2173 type: Transform - containers: - board: !type:Container - showEnts: False - occludes: True - ents: [] station-bank-ATM-cashSlot: !type:ContainerSlot showEnts: False occludes: True ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] type: ContainerContainer - uid: 5749 components: @@ -35694,16 +36792,16 @@ entities: pos: 48.5,13.5 parent: 2173 type: Transform - - uid: 2631 + - uid: 2632 components: - rot: -1.5707963267948966 rad - pos: 33.5,18.5 + pos: 32.5,18.5 parent: 2173 type: Transform - - uid: 2632 + - uid: 2633 components: - - rot: -1.5707963267948966 rad - pos: 32.5,18.5 + - rot: 1.5707963267948966 rad + pos: 31.5,18.5 parent: 2173 type: Transform - uid: 2739 @@ -35793,6 +36891,16 @@ entities: pos: 22.5,9.5 parent: 2173 type: Transform + - uid: 5374 + components: + - pos: 13.5,16.5 + parent: 2173 + type: Transform + - uid: 5723 + components: + - pos: 14.5,16.5 + parent: 2173 + type: Transform - proto: TelecomServerFilled entities: - uid: 2516 @@ -35847,11 +36955,6 @@ entities: - pos: -46.5,18.5 parent: 2173 type: Transform - - uid: 1420 - components: - - pos: -46.5,15.5 - parent: 2173 - type: Transform - uid: 1652 components: - rot: -1.5707963267948966 rad @@ -35876,6 +36979,7 @@ entities: pos: -18.5,14.5 parent: 2173 type: Transform + - type: StinkyTrait - uid: 4302 components: - pos: 26.5,10.5 @@ -36043,6 +37147,17 @@ entities: - Right: Reverse - Middle: Off type: DeviceLinkSource + - uid: 6145 + components: + - pos: 51.5,18.5 + parent: 2173 + type: Transform + - linkedPorts: + 6083: + - Left: Forward + - Right: Forward + - Middle: Off + type: DeviceLinkSource - proto: UniformPrinter entities: - uid: 514 @@ -36079,15 +37194,13 @@ entities: - pos: 4.5,51.5 parent: 2173 type: Transform -- proto: VendingMachineCargoDrobe +- proto: VendingMachineCart entities: - - uid: 5746 + - uid: 657 components: - - pos: 6.5,6.5 + - pos: 33.5,18.5 parent: 2173 type: Transform -- proto: VendingMachineCart - entities: - uid: 1211 components: - flags: SessionSpecific @@ -36095,15 +37208,6 @@ entities: - pos: 3.5,20.5 parent: 2173 type: Transform -- proto: VendingMachineChapel - entities: - - uid: 5723 - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,5.5 - parent: 2173 - type: Transform - proto: VendingMachineCigs entities: - uid: 2420 @@ -36214,6 +37318,13 @@ entities: - pos: -45.5,10.5 parent: 2173 type: Transform +- proto: VendingMachinePride + entities: + - uid: 4294 + components: + - pos: -17.5,5.5 + parent: 2173 + type: Transform - proto: VendingMachineRepDrobe entities: - uid: 5748 @@ -36239,19 +37350,15 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 2557 + - uid: 2787 components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,10.5 + - pos: 30.5,12.5 parent: 2173 type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 2556 + - uid: 3810 components: - - flags: SessionSpecific - type: MetaData - pos: 30.5,11.5 parent: 2173 type: Transform @@ -37838,12 +38945,6 @@ entities: pos: 28.5,17.5 parent: 2173 type: Transform - - uid: 568 - components: - - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 2173 - type: Transform - uid: 569 components: - pos: 35.5,23.5 @@ -37891,26 +38992,6 @@ entities: - pos: 34.5,19.5 parent: 2173 type: Transform - - uid: 657 - components: - - pos: 31.5,19.5 - parent: 2173 - type: Transform - - uid: 658 - components: - - pos: 31.5,18.5 - parent: 2173 - type: Transform - - uid: 659 - components: - - pos: 31.5,17.5 - parent: 2173 - type: Transform - - uid: 660 - components: - - pos: 31.5,16.5 - parent: 2173 - type: Transform - uid: 664 components: - pos: 46.5,19.5 @@ -38162,12 +39243,6 @@ entities: pos: 29.5,12.5 parent: 2173 type: Transform - - uid: 829 - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 2173 - type: Transform - uid: 830 components: - rot: 3.141592653589793 rad @@ -38446,12 +39521,6 @@ entities: - pos: -41.5,14.5 parent: 2173 type: Transform - - uid: 1201 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 2173 - type: Transform - uid: 1205 components: - rot: 1.5707963267948966 rad @@ -38768,24 +39837,6 @@ entities: pos: 45.5,17.5 parent: 2173 type: Transform - - uid: 1535 - components: - - rot: 3.141592653589793 rad - pos: 47.5,17.5 - parent: 2173 - type: Transform - - uid: 1536 - components: - - rot: 3.141592653589793 rad - pos: 47.5,16.5 - parent: 2173 - type: Transform - - uid: 1537 - components: - - rot: 3.141592653589793 rad - pos: 47.5,15.5 - parent: 2173 - type: Transform - uid: 1543 components: - rot: 3.141592653589793 rad @@ -38798,12 +39849,6 @@ entities: pos: 32.5,12.5 parent: 2173 type: Transform - - uid: 1545 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 2173 - type: Transform - uid: 1546 components: - rot: 3.141592653589793 rad @@ -38949,6 +39994,12 @@ entities: pos: 30.5,27.5 parent: 2173 type: Transform + - uid: 3123 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2173 + type: Transform - uid: 3142 components: - pos: 9.5,22.5 @@ -39025,6 +40076,12 @@ entities: pos: 47.5,20.5 parent: 2173 type: Transform + - uid: 4247 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2173 + type: Transform - uid: 4250 components: - rot: 3.141592653589793 rad @@ -39047,6 +40104,33 @@ entities: - pos: 17.5,27.5 parent: 2173 type: Transform + - uid: 4365 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 2173 + type: Transform + - uid: 4374 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2173 + type: Transform + - uid: 4443 + components: + - pos: 47.5,16.5 + parent: 2173 + type: Transform + - uid: 4479 + components: + - pos: 47.5,17.5 + parent: 2173 + type: Transform + - uid: 4480 + components: + - pos: 47.5,15.5 + parent: 2173 + type: Transform - uid: 4980 components: - rot: 1.5707963267948966 rad @@ -39075,6 +40159,18 @@ entities: - pos: 10.5,22.5 parent: 2173 type: Transform + - uid: 5830 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2173 + type: Transform + - uid: 5862 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2173 + type: Transform - proto: WallSolid entities: - uid: 256 @@ -39886,6 +40982,12 @@ entities: pos: -16.5,14.5 parent: 2173 type: Transform + - uid: 4427 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,15.5 + parent: 2173 + type: Transform - uid: 5706 components: - rot: 3.141592653589793 rad @@ -39955,10 +41057,10 @@ entities: pos: 45.5,13.5 parent: 2173 type: Transform - - uid: 2637 + - uid: 3135 components: - - rot: -1.5707963267948966 rad - pos: 32.5,18.5 + - rot: 1.5707963267948966 rad + pos: 31.5,18.5 parent: 2173 type: Transform - proto: WeaponDisabler diff --git a/Resources/Maps/grifty.yml b/Resources/Maps/grifty.yml new file mode 100644 index 00000000000..2e0ec139318 --- /dev/null +++ b/Resources/Maps/grifty.yml @@ -0,0 +1,5184 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 59: FloorLaundry + 65: FloorOldConcrete + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.484375,-0.47654724 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: OwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADYgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQQAAAAABQQAAAAABQQAAAAADQQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAQQAAAAACQQAAAAACQQAAAAABQQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAQQAAAAAAQQAAAAACQQAAAAAAQQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQQAAAAAAQQAAAAABQQAAAAACQQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAABQQAAAAAAQQAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAABQQAAAAAAQQAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAACQQAAAAABQQAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAAAQQAAAAACQQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAABQQAAAAACQQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAABYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAADYgAAAAABYgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAQQAAAAACQQAAAAACQQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABQQAAAAABQQAAAAABQQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAQQAAAAADQQAAAAADQQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAACQQAAAAABQQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAACQQAAAAACQQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAACYgAAAAADYgAAAAABcQAAAAAAcQAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#F9801DFF' + id: BotGreyscale + decals: + 0: 13,14 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 1: 13,12 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 2: 0,6 + 3: 3,6 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 4: -5,-6 + 5: -3,-5 + 6: -3,-4 + 7: -4,-3 + 8: -5,-2 + 9: -3,-2 + 10: -5,-4 + 11: 5,-2 + 12: 6,-3 + 13: 5,-5 + 14: 6,-5 + 15: 7,-6 + 16: 7,-4 + 17: 7,-2 + 18: 5,-6 + 19: 7,0 + 20: 4,0 + 21: 3,1 + 22: 4,2 + 23: -1,2 + 24: 0,2 + 25: 0,1 + 26: -3,1 + 27: -3,0 + 28: 0,0 + 29: -6,2 + 30: -7,1 + 31: -5,1 + 32: -4,3 + 33: -2,5 + 34: -2,6 + 35: 0,6 + 36: 1,5 + 37: 2,6 + 38: 6,6 + 39: 5,6 + 40: 7,6 + 41: 7,7 + 42: 9,4 + 43: 8,2 + 44: 7,3 + 45: 5,1 + 46: 8,1 + 47: 6,2 + 48: 6,4 + 49: 8,4 + 50: 2,2 + 51: -7,3 + 52: -6,5 + 53: -4,8 + 54: 4,1 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 55: -3,-2 + 56: -4,-4 + 57: -3,-5 + 58: -3,0 + 59: -4,1 + 60: 0,2 + 61: 0,1 + 62: 1,1 + 63: 3,2 + 64: 7,1 + 65: 6,5 + 66: 8,7 + 67: 8,6 + 68: 6,8 + 69: 3,5 + 70: 2,6 + 71: -3,5 + 72: -3,5 + 73: -5,5 + 74: -6,5 + 75: -7,1 + 76: -6,1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 77: -4,-5 + 78: -3,-6 + 79: -4,-5 + 80: -5,-1 + 81: -4,-2 + 82: -4,1 + 83: -2,2 + 84: -1,1 + 85: -2,1 + 86: 1,2 + 87: 2,0 + 88: 3,1 + 89: 4,1 + 90: 6,-1 + 91: 6,0 + 92: 7,2 + 93: 7,2 + 94: 5,2 + 95: 7,2 + 96: 8,2 + 97: 8,4 + 98: 7,5 + 99: 8,6 + 100: 8,7 + 101: 7,8 + 102: 7,8 + 103: 6,8 + 104: 5,7 + 105: 5,6 + 106: 6,-3 + 107: 7,-5 + 108: 7,-6 + 109: 7,-6 + 110: 6,-5 + 111: 5,-6 + 112: -2,1 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 113: -7,2 + 114: -7,4 + 115: -6,3 + 116: -4,5 + 117: -4,5 + 118: -2,5 + 119: -2,6 + 120: 0,6 + 121: 0,5 + 122: -4,8 + 123: -5,8 + 124: 6,2 + 125: 9,1 + 126: 9,3 + 127: 8,4 + 128: 8,6 + 129: 8,7 + 130: 5,6 + 131: 7,2 + 132: 8,3 + 133: 5,4 + 134: 6,3 + 135: 7,-5 + 136: 7,-5 + 137: 6,-5 + 138: 6,-4 + 139: 6,-4 + 140: -3,3 + 141: 1,1 + 142: -1,0 + 143: -1,1 + 144: 6,7 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 64767 + 2,0: + 0: 30583 + 2,1: + 0: 30583 + 2,2: + 0: 61491 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 35054 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 39423 + 0,-1: + 0: 61440 + 1,-2: + 0: 65520 + 1,-1: + 0: 65535 + 2,-2: + 0: 4368 + 2,-1: + 0: 12561 + -2,-1: + 0: 60620 + -2,-2: + 0: 52416 + -1,-2: + 0: 30576 + -1,-1: + 0: 63351 + 0,2: + 0: 50431 + 0,3: + 0: 65535 + 1,3: + 0: 65535 + 2,3: + 0: 63479 + 3,2: + 0: 61440 + 3,3: + 0: 65535 + -3,1: + 0: 2048 + -3,3: + 0: 128 + -2,3: + 0: 36863 + -1,3: + 0: 36863 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Grifty + type: BecomesStation +- proto: AirCanister + entities: + - uid: 233 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 200 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 403 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 375 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 605 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 414 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: BarSignEngineChange + entities: + - uid: 524 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - needsPower: False + type: ApcPowerReceiver +- proto: BookAurora + entities: + - uid: 680 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookBase + entities: + - uid: 674 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 675 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 676 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 677 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 678 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookCafe + entities: + - uid: 694 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookChemicalCompendium + entities: + - uid: 682 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookEarth + entities: + - uid: 673 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookEscalationSecurity + entities: + - uid: 671 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookFeather + entities: + - uid: 226 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookHowToKeepStationClean + entities: + - uid: 683 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookHowToSurvive + entities: + - uid: 681 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanAntarctica + entities: + - uid: 571 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanArctic + entities: + - uid: 686 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanCity + entities: + - uid: 693 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanDesert + entities: + - uid: 688 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanLostWolfPup + entities: + - uid: 690 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanMountain + entities: + - uid: 689 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanOcean + entities: + - uid: 687 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanRanch + entities: + - uid: 685 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookMedicalOfficer + entities: + - uid: 679 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookRufus + entities: + - uid: 684 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookshelfFilled + entities: + - uid: 530 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - storageUsed: 145 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 671 + - 226 + - 571 + - 672 + - 673 + - 674 + - 675 + - 676 + - 677 + - 678 + - 679 + - 680 + - 681 + - 682 + - 683 + - 684 + - 685 + - 686 + - 687 + - 688 + - 689 + - 690 + - 691 + - 692 + - 693 + - 694 + - 695 + - 696 + - 697 + type: ContainerContainer +- proto: BookSlothClownMMD + entities: + - uid: 697 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookSlothClownPranks + entities: + - uid: 695 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookSlothClownSSS + entities: + - uid: 696 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookTemple + entities: + - uid: 692 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookTruth + entities: + - uid: 691 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BoxLightMixed + entities: + - uid: 667 + components: + - pos: 1.750885,5.4413614 + parent: 1 + type: Transform +- proto: BrokenBottle + entities: + - uid: 616 + components: + - rot: -0.012171070789918303 rad + pos: 8.81443,3.1902108 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 6.343299,7.338259 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 2 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 136 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 416 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 286 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform +- proto: CartridgeMagnum + entities: + - uid: 700 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 701 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 702 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 703 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 704 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 705 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics +- proto: Catwalk + entities: + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 114 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: CigarCase + entities: + - uid: 604 + components: + - pos: 7.396858,5.4011035 + parent: 1 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 603 + components: + - pos: 7.599983,5.119657 + parent: 1 + type: Transform +- proto: CigCartonBlack + entities: + - uid: 576 + components: + - pos: 7.3696795,5.7634063 + parent: 1 + type: Transform +- proto: CigCartonGreen + entities: + - uid: 575 + components: + - pos: 7.6114073,6.123031 + parent: 1 + type: Transform +- proto: CigCartonMixed + entities: + - uid: 574 + components: + - pos: 7.4395323,6.5295634 + parent: 1 + type: Transform +- proto: CigPackMixedNasty + entities: + - uid: 572 + components: + - pos: -1.624001,3.1678529 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 631 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform +- proto: ComputerWithdrawBankATM + entities: + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CyberPen + entities: + - uid: 739 + components: + - rot: 3.141592653589793 rad + pos: -1.9171324,2.5791273 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilledOpen + entities: + - uid: 569 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 393 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 402 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: DrinkAleBottleFull + entities: + - uid: 590 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 591 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 592 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkBeerBottleFull + entities: + - uid: 587 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 589 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 593 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkChampagneBottleFull + entities: + - uid: 602 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkColaCan + entities: + - uid: 720 + components: + - pos: 6.584388,1.5785167 + parent: 1 + type: Transform +- proto: DrinkCreamCarton + entities: + - uid: 515 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkEnergyDrinkCan + entities: + - uid: 698 + components: + - pos: -0.22819132,5.4647512 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: EnergyDrink + Quantity: 25 + type: SolutionContainerManager + - opened: True + type: Openable +- proto: DrinkFourteenLokoCan + entities: + - uid: 719 + components: + - pos: 6.443763,1.7661483 + parent: 1 + type: Transform +- proto: DrinkGinBottleFull + entities: + - uid: 596 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 598 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 600 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkGoldschlagerBottleFull + entities: + - uid: 594 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkGrapeCan + entities: + - uid: 225 + components: + - pos: 6.053138,1.5785167 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 516 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkNuclearColaGlass + entities: + - uid: 711 + components: + - pos: 7.646888,4.2522497 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: 7.646888,4.564967 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 7.365638,4.4086084 + parent: 1 + type: Transform +- proto: DrinkRootBeerCan + entities: + - uid: 717 + components: + - pos: 6.146888,1.7974193 + parent: 1 + type: Transform +- proto: DrinkRumBottleFull + entities: + - uid: 597 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 599 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 601 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkSodaWaterCan + entities: + - uid: 723 + components: + - pos: 6.318763,1.5472457 + parent: 1 + type: Transform +- proto: DrinkVermouthBottleFull + entities: + - uid: 588 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: EggBoxBroken + entities: + - uid: 519 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FenceMetalBroken + entities: + - uid: 271 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform +- proto: FenceMetalCorner + entities: + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 389 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1 + type: Transform +- proto: FenceMetalGate + entities: + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform +- proto: FenceMetalStraight + entities: + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 545 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 556 + components: + - pos: 5.71742,3.4649358 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 554 + components: + - pos: 5.701795,3.7620168 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketDink + entities: + - uid: 555 + components: + - pos: 5.264295,3.5900216 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketGondola + entities: + - uid: 557 + components: + - pos: -5.766955,2.745686 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 553 + components: + - pos: 5.31117,3.8089242 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 558 + components: + - pos: -5.28258,2.7613206 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 559 + components: + - pos: -5.72008,2.479876 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketTeriyaki + entities: + - uid: 560 + components: + - pos: -5.266955,2.4329686 + parent: 1 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 550 + components: + - pos: -4.391955,2.6831422 + parent: 1 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 513 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodDonkpocketHonk + entities: + - uid: 561 + components: + - pos: -0.22007972,5.7634063 + parent: 1 + type: Transform +- proto: FoodMeatRotten + entities: + - uid: 518 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodSnackChips + entities: + - uid: 712 + components: + - pos: 7.662513,3.9082592 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: 7.412513,3.9551685 + parent: 1 + type: Transform +- proto: FoodSnackEnergy + entities: + - uid: 713 + components: + - pos: 7.365638,3.470456 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 7.678138,3.439185 + parent: 1 + type: Transform +- proto: FoodSnackRaisins + entities: + - uid: 709 + components: + - pos: 7.678138,3.736266 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: 7.381263,3.7831733 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 222 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 317 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 236 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 258 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 331 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 367 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 374 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 255 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 313 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: GasVolumePump + entities: + - uid: 372 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 407 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 7 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 55 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform +- proto: GunSafe + entities: + - uid: 563 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 699 + - 566 + - 564 + - 567 + - 565 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: HyperlinkBookSupernanny + entities: + - uid: 672 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: LightBulbBroken + entities: + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 1.89151,6.8016806 + parent: 1 + type: Transform +- proto: LightTubeBroken + entities: + - uid: 632 + components: + - rot: -1.5707963267948966 rad + pos: 0.16488624,6.033028 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 1.4323175,2.7270408 + parent: 1 + type: Transform +- proto: LockerBooze + entities: + - uid: 586 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - locked: False + type: Lock + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 593 + - 592 + - 591 + - 590 + - 589 + - 588 + - 587 + - 594 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 595 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - locked: False + type: Lock + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 601 + - 600 + - 599 + - 598 + - 597 + - 596 + - 602 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerFreezerBase + entities: + - uid: 512 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + - 519 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MagicalLamp + entities: + - uid: 665 + components: + - pos: -0.67099,6.1137037 + parent: 1 + type: Transform +- proto: PaintingSkeletonCigarette + entities: + - uid: 619 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 738 + components: + - pos: -2.203373,2.5209823 + parent: 1 + type: Transform + - content: >- + [color=#1b67a5]█▄ █ ▀█▀ [head=3]Grifty's Script[/head] + + █ ▀█     █     Grifty's Gas and Grub + + + [bold]ATTENTION STORE ASSOCIATE! FOLLOW THIS SCRIPT[/bold] + + + Greeting our guests: + + "Hi there! Welcome to Grifty's! Can I interest you in our Gas n' Grub deal? Get a free box of donkpockets with every full tank of plasma!" + + + For every transaction, ensure you follow the Grifty Guide! Add a 5% implied Grift Fee. Do not mention the Grift Fee. + + + If the customer complains about the Grift Fee, say: + + "We here at Grifty's are committed to your grift experience. Have a nice day!" + + + Do not respond to additional complaints. If the guest becomes belligerent, say: + + "I'm sorry your experience has been suboptimal. Let me get our customer service resolver to help you with your needs." + + + Retrieve the Customer Service Resolver. Resolve your problem. + type: Paper +- proto: PaperOffice + entities: + - uid: 740 + components: + - pos: -0.63143015,5.3730693 + parent: 1 + type: Transform + - content: >- + Hey boss, + + + The crack in the plasma chamber's gettin' bigger, and I'm worried about the containment unit. What happens if the glass breaks? + type: Paper +- proto: PosterBroken + entities: + - uid: 509 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandBorgFancy + entities: + - uid: 570 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandBreadLies + entities: + - uid: 568 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonk + entities: + - uid: 551 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 583 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: PosterContrabandHaveaPuff + entities: + - uid: 582 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 630 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform +- proto: PosterContrabandPwrGame + entities: + - uid: 584 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 585 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform +- proto: PosterContrabandShamblersJuice + entities: + - uid: 611 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform +- proto: PosterContrabandSmoke + entities: + - uid: 573 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceCola + entities: + - uid: 715 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 615 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 609 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 728 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 578 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 552 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitNoTouching + entities: + - uid: 581 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 577 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform +- proto: PosterLegitSMFires + entities: + - uid: 562 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 732 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 733 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 668 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 580 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightEmpty + entities: + - uid: 633 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: RandomCargoCorpseSpawner + entities: + - uid: 741 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: RandomPosterContrabandDeadDrop + entities: + - uid: 579 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 218 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 217 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 520 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: ReagentContainerMilkOat + entities: + - uid: 517 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ReagentContainerMilkSoy + entities: + - uid: 514 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ReinforcedPlasmaWindow + entities: + - uid: 227 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform +- proto: ShardGlassPlasma + entities: + - uid: 95 + components: + - rot: 1.5707963267948966 rad + pos: 0.5720506,9.027569 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: 0.2400167,7.0461235 + parent: 1 + type: Transform +- proto: SignSmoking + entities: + - uid: 706 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 70 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 71 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 180 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform +- proto: SpaceCash5000 + entities: + - uid: 565 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 566 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 567 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SpawnMobCarp + entities: + - uid: 707 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform +- proto: SpawnMobCarpHolo + entities: + - uid: 729 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform +- proto: SpeedLoaderMagnum + entities: + - uid: 699 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - entities: + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + type: BallisticAmmoProvider + - containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + type: ContainerContainer + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: StationMapBroken + entities: + - uid: 510 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 526 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 212 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 207 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 523 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 535 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 521 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineRestockBooze + entities: + - uid: 624 + components: + - pos: 3.7009673,5.810936 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 3.5447173,5.482584 + parent: 1 + type: Transform +- proto: VendingMachineRestockCircuitVend + entities: + - uid: 626 + components: + - pos: 2.7009673,5.7640285 + parent: 1 + type: Transform +- proto: VendingMachineRestockDiscountDans + entities: + - uid: 627 + components: + - pos: 2.4822173,5.513855 + parent: 1 + type: Transform +- proto: VendingMachineRestockGetmoreChocolateCorp + entities: + - uid: 628 + components: + - pos: 1.6384673,5.7952995 + parent: 1 + type: Transform +- proto: VendingMachineRestockMedical + entities: + - uid: 629 + components: + - pos: 1.3572173,5.5607624 + parent: 1 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 528 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 536 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 3 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 5 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform +- proto: WarningAir + entities: + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform +- proto: WarningPlasma + entities: + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 742 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - location: Grifty's Gas and Grub + type: WarpPoint +- proto: WeaponRevolverInspector + entities: + - uid: 564 + components: + - flags: InContainer + desc: A store associate's best friend. + name: Customer Service Resolver + type: MetaData + - parent: 563 + type: Transform + - currentSlot: 4 + type: RevolverAmmoProvider + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeldingFuelTankFull + entities: + - uid: 722 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 718 + components: + - pos: 5.521888,1.5645251 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/tinnia.yml b/Resources/Maps/tinnia.yml index 4cdb5d5105c..dd680839470 100644 --- a/Resources/Maps/tinnia.yml +++ b/Resources/Maps/tinnia.yml @@ -7133,6 +7133,8 @@ entities: - pos: 5.5,-7.5 parent: 1 type: Transform + - name: Tinnia's Rest + type: FaxMachine - delay: 999999 type: Anchorable - proto: FigureSpawner diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml index 571ee1338b4..6712a846839 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml @@ -14,7 +14,8 @@ sprite: /Textures/Structures/Storage/orebox.rsi state: orebox product: OreBox - cost: 500 + #cost: 500 + cost: 1000 # Frontier category: Cargo group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml b/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml index 58c6f99494f..bcd66538092 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml @@ -1,22 +1,22 @@ -- type: cargoProduct - id: ShuttleThruster - icon: - sprite: Structures/Shuttles/thruster.rsi - state: base - product: Thruster - cost: 1500 - category: Shuttle - group: market +# - type: cargoProduct # Frontier - Moved to crate + # id: ShuttleThruster + # icon: + # sprite: Structures/Shuttles/thruster.rsi + # state: base + # product: Thruster + # cost: 1500 + # category: Shuttle + # group: market -- type: cargoProduct - id: ShuttleGyroscope - icon: - sprite: Structures/Shuttles/gyroscope.rsi - state: base - product: Gyroscope - cost: 4000 - category: Shuttle - group: market +# - type: cargoProduct # Frontier - Moved to crate + # id: ShuttleGyroscope + # icon: + # sprite: Structures/Shuttles/gyroscope.rsi + # state: base + # product: Gyroscope + # cost: 4000 + # category: Shuttle + # group: market # - type: cargoProduct # id: ShuttlePowerKit diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index a487138afda..dae81c8f7f9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -50,6 +50,9 @@ - id: Saw - id: Hemostat - id: ClothingMaskSterile + - id: NitrousOxideTankFilled # Frontier + - id: ClothingMaskBreathMedical # Frontier + - id: SawElectric # Frontier - type: entity id: CrateMedicalScrubs diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index cf0540a29b1..b17a35f4d54 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -15,8 +15,10 @@ amount: 2 - id: TrashBag amount: 2 - - id: Plunger - amount: 2 + - id: Plunger # Frontier 2<1 + amount: 1 + - id: LightReplacer # Frontier + amount: 1 - type: entity id: CrateServiceReplacementLights diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 9568bd88bd8..c4efff8a12e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -125,7 +125,7 @@ - id: IDComputerCircuitboard - id: CommsComputerCircuitboard # Frontier # - id: WeaponDisabler # Frontier - bloat -# - id: ClothingOuterWinterHoP # Frontier - bloat + - id: ClothingOuterWinterHoP # Frontier - bloat # - id: CigarGoldCase # Frontier # prob: 0.25 # Fuck the HoP they don't deserve fucking cigars. diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index 14381dc0f85..e2b52bb693e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -21,13 +21,17 @@ WardenPDA: 3 # Frontier PassengerIDCard: 10 # Frontier 5<10 ClothingHeadsetGrey: 10 # Frontier 5<10 + RubberStampStc: 1 # Frontier RubberStampCaptain: 10 # Frontier RubberStampApproved: 3 # Frontier 1<3 RubberStampDenied: 3 # Frontier 1<3 Pen: 10 # Frontier - Paper: 20 # Frontier 10<20 - PaperOffice: 20 # Frontier - PaperCaptainsThoughts: 20 # Frontier +# Paper: 20 # Frontier 10<20 +# PaperOffice: 20 # Frontier +# PaperCaptainsThoughts: 20 # Frontier + BoxPaper: 4 + BoxPaperOffice: 4 + BoxPaperCaptainsThoughts: 4 BoxFolderClipboard: 3 # Frontier BoxFolderBlue: 3 # Frontier BoxFolderRed: 3 # Frontier diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml index d4ddf07eda7..6f45c8be998 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml @@ -1,28 +1,29 @@ - type: vendingMachineInventory id: PietyVendInventory startingInventory: - ClothingUniformJumpsuitChaplain: 2 - ClothingUniformJumpskirtChaplain: 2 - ClothingUniformJumpsuitMonasticRobeDark: 1 - ClothingUniformJumpsuitMonasticRobeLight: 1 - ClothingOuterHoodieChaplain: 1 - ClothingOuterHoodieBlack: 1 - ClothingHeadHatHoodNunHood: 1 - ClothingOuterNunRobe: 1 - ClothingHeadHatFez: 1 - ClothingHeadHatPlaguedoctor: 1 - ClothingHeadHatWitch: 1 - ClothingHeadHatWitch1: 1 - ClothingOuterPlagueSuit: 1 - ClothingMaskPlague: 1 - ClothingHeadsetService: 2 - RubberStampChaplain: 1 + ClothingUniformJumpsuitChaplain: 3 + ClothingUniformJumpskirtChaplain: 3 + ClothingUniformJumpsuitMonasticRobeDark: 3 + ClothingUniformJumpsuitMonasticRobeLight: 3 + ClothingOuterHoodieChaplain: 3 + ClothingOuterHoodieBlack: 3 + ClothingHeadHatHoodNunHood: 3 + ClothingOuterNunRobe: 3 + ClothingHeadHatFez: 3 + ClothingHeadHatPlaguedoctor: 3 + ClothingHeadHatWitch: 3 + ClothingHeadHatWitch1: 3 + ClothingOuterPlagueSuit: 3 + ClothingMaskPlague: 3 + ClothingHeadsetService: 4 + RubberStampChaplain: 3 + Bible: 3 emaggedInventory: ClothingOuterArmorCult: 1 ClothingHeadHelmetCult: 1 ClothingOuterRobesCult: 3 ClothingHeadHatHoodCulthood: 3 - ClothingShoesCult: 4 + ClothingShoesCult: 6 BedsheetCult: 4 BibleNecronomicon: 1 ClothingNeckScarfStripedBlack: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml index 70924a1e6e7..a7b30ff8ccf 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml @@ -9,10 +9,16 @@ FoodCondimentPacketKetchup: 5 FoodCondimentPacketMustard: 5 FoodCondimentPacketPepper: 5 + FoodShakerPepper: 2 # Frontier FoodCondimentPacketSalt: 5 + FoodShakerSalt: 2 # Frontier FoodCondimentPacketSoy: 5 FoodCondimentPacketSugar: 5 FoodCondimentPacketCornoil: 5 + FoodCondimentBottleBBQ: 2 # Frontier + FoodCondimentBottleColdsauce: 2 # Frontier + FoodCondimentBottleHotsauce: 2 # Frontier + FoodCondimentBottleKetchup: 2 # Frontier ForkPlastic: 10 SpoonPlastic: 10 KnifePlastic: 10 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 6edfe304958..e0b4ad1d772 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -215,7 +215,7 @@ parent: ClothingOuterBaseLarge id: ClothingOuterArmorCaptainCarapace name: "captain's carapace" - description: "An armored chestpiece that provides protection whilst still offering maximum mobility and flexibility. Issued only to the station's finest." + description: "An armored chestpiece that provides protection whilst still offering maximum mobility and flexibility. Issued only to the captain's of luxury vessels." # Frontier components: - type: Sprite sprite: Clothing/OuterClothing/Armor/captain_carapace.rsi @@ -229,6 +229,9 @@ Piercing: 0.70 Heat: 0.80 Caustic: 0.9 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 - type: ExplosionResistance damageCoefficient: 0.90 - type: GroupExamine diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 94feccd0762..eee763a8aa5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -2153,7 +2153,7 @@ - Trash - type: SpaceGarbage - type: StaticPrice - price: 7.5 + price: 21 - type: entity parent: DrinkRamen diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml index b8525c5f77d..d792ff3b387 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml @@ -23,7 +23,7 @@ sprite: Objects/Consumable/Food/Baked/donut.rsi size: 1 - type: StaticPrice - price: 12 + price: 14 # Tastes like donut. # The sprinkles are now an overlay, so you can put them on any donut! If we really diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index 02ba502448f..47f0c8615f3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -399,6 +399,8 @@ - type: PhysicalComposition materialComposition: Glass: 50 + - type: StaticPrice + price: 13.5 - type: entity parent: BaseFoodCondimentBottle @@ -584,6 +586,8 @@ acts: [ "Destruction" ] - type: Sprite state: shaker-empty + - type: StaticPrice + price: 9 - type: entity parent: BaseFoodShaker diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index f5b4a5e87b4..424409b123c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -23,7 +23,7 @@ heldPrefix: packet size: 3 - type: StaticPrice - price: 7.5 + price: 1 # Snacks # "Snacks" means food in a packet. Down the line this stuff can have multiple @@ -114,7 +114,7 @@ sound: path: /Audio/Effects/unwrap.ogg - type: StaticPrice - price: 7.5 + price: 21 - type: entity name: chocolate bar @@ -375,7 +375,7 @@ sound: path: /Audio/Effects/unwrap.ogg - type: StaticPrice - price: 7 + price: 50 - type: entity id: FoodSnackNutribrickOpen @@ -427,7 +427,7 @@ sound: path: /Audio/Effects/unwrap.ogg - type: StaticPrice - price: 7 + price: 21 - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 358e3c6043e..620ba3d32c6 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -617,9 +617,6 @@ Amount: 1 DefaultPrototype: SaxophoneInstrument ExamineName: Woodwind Instrument - - type: StaticPrice - price: 400 - - type: entity id: PortableGeneratorPacmanMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 6c52fc05c8a..d17e85a80c7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -56,8 +56,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: VendPrice - price: 1 - type: StaticPrice price: 0 # Stop fax copy abuse. diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml index adae56a3711..904b6919a6f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -142,6 +142,7 @@ - MailDrobeInventory - RepDrobeInventory - BoxingDrobeInventory + - PietyVendInventory - type: Sprite layers: - state: base diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 8223b4ec58f..42a2bc01862 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -132,9 +132,12 @@ !type:PhysShapeAabb bounds: "-0.3,-0.16,0.3,0.40" mask: - - MachineMask - layer: - - MachineLayer + - Impassable # Frontier +# - MidImpassable # Frontier - Do not add this, it will block shutters from closing on it. + - LowImpassable # Frontier +# - MachineMask # Frontier +# layer: # Frontier +# - MachineLayer # Frontier density: 190 - type: Advertise pack: CondimentVendAds diff --git a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml index f90993bd878..61f62f230b0 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml @@ -1,12 +1,13 @@ - type: entity id: OreBox name: ore box - description: A large storage container for holding unprocessed ores. + # description: A large storage container for holding unprocessed ores. + description: A large storage container for collecting and holding unprocessed ores and fragments. # Frontier parent: BaseStructureDynamic components: - type: StaticPrice # price: 500 - price: 1000 + price: 1000 # Frontier - type: Anchorable - type: InteractionOutline - type: Damageable @@ -71,9 +72,6 @@ ents: [ ] - type: Dumpable # Frontier - type: MagnetPickup # Frontier - isFixture: true - pickupWhenNotAnchored: true - pickupWhenAnchored: false range: 1.5 # Ore bag has a range of 1.0 - type: Fixtures fixtures: @@ -84,6 +82,7 @@ # very not dense to make it easy to pull density: 20 mask: - - MachineMask + #- MachineMask + - SmallMobMask # Frontier layer: - MachineLayer diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml index 3e91daaa390..85ef99565a1 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml @@ -62,7 +62,7 @@ boardName: wires-board-name-airalarm layoutId: AirAlarm - type: AccessReader - access: [["Atmospherics"]] + access: [["Atmospherics"], ["Captain"]] # Frontier: allowed ["Captain"] to access air alarms - type: ContainerFill containers: board: [ AirAlarmElectronics ] diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index f5dd29a12ac..3887a2ce07d 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -56,12 +56,6 @@ - id: SpawnMobKangarooSalvage prob: 0.001 orGroup: rock - - id: SpawnMobSmallPurpleSnake - prob: 0.001 - orGroup: rock - - id: SpawnMobPurpleSnake - prob: 0.001 - orGroup: rock - type: GCAbleObject queue: SpaceDebris - type: IFF @@ -117,8 +111,8 @@ components: - type: MapGrid - type: BlobFloorPlanBuilder - radius: 32 - floorPlacements: 128 + radius: 28 + floorPlacements: 108 - type: entity id: AsteroidSalvageSmall diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml index 5cf4fd9449b..995d86641bc 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml @@ -8,6 +8,7 @@ supervisors: job-supervisors-everyone access: - Maintenance + - External # Frontier - type: startingGear id: PassengerGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index 74384461c62..85b217a84b8 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -13,6 +13,7 @@ - Service - Maintenance - Bar + - External # Frontier extendedAccess: - Kitchen - Hydroponics diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index 08fdeb940de..52753ccaea0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -13,6 +13,7 @@ - Service - Maintenance - Hydroponics + - External # Frontier extendedAccess: - Kitchen - Bar diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index ed659e7efa8..c51905cd91b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -12,6 +12,7 @@ access: - Chapel - Maintenance + - External # Frontier special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index 0a400b19d21..f467c7304b5 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -13,6 +13,7 @@ - Service - Maintenance - Kitchen + - External # Frontier extendedAccess: - Hydroponics - Bar #Nyano - Summary: After this line, Professional Che is a component to be added. Very important. diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml index b8640c8d605..ce727a616f4 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml @@ -12,6 +12,7 @@ access: - Theatre - Maintenance + - External # Frontier special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index 3157605f152..1a784f01cf4 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -12,6 +12,7 @@ access: - Janitor - Maintenance + - External # Frontier special: - !type:GiveItemOnHolidaySpecial holiday: GarbageDay diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index e7f87a64071..42a08414811 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -13,6 +13,7 @@ - Service - Brig - Maintenance + - External # Frontier - type: startingGear id: LawyerGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index dc379216d70..e14a17b965b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: LibrarianGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index d086c59e330..0f20e8558a0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -12,6 +12,7 @@ access: - Theatre - Maintenance + - External # Frontier special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml index 75534b6f3fb..94091b076a6 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml @@ -12,6 +12,7 @@ access: - Maintenance # TODO Remove maint access for all gimmick jobs once access work is completed - Theatre + - External # Frontier special: - !type:GiveItemOnHolidaySpecial holiday: MikuDay diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index 3cff97c163b..3033777ab54 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -15,6 +15,7 @@ - Maintenance - Bar - Kitchen + - External # Frontier extendedAccess: - Hydroponics diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index fb6413abf25..9df7d5c7990 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -31,6 +31,8 @@ canBeAntag: false access: - Captain # Just making sure in the case of any error that this role cannot be used for any bad doing. + - Maintenance # Frontier + - External # Frontier # accessGroups: # - AllAccess # special: diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index ddd15ae274a..32176839a60 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -67,7 +67,7 @@ eyes: ClothingEyesGlassesSunglasses belt: BoxFolderQmClipboard # Frontier neck: ClothingNeckCloakHop # Frontier - outerClothing: ClothingOuterWinterHoP # Frontier + outerClothing: ClothingOuterArmorSRCarapace # Frontier pocket1: WeaponDisabler # Frontier innerClothingSkirt: ClothingUniformJumpskirtHoP satchel: ClothingBackpackSatchelHOPFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index 7302d7b4891..1b8ad313f16 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -13,6 +13,7 @@ - Medical - Chemistry - Maintenance + - External # Frontier - type: startingGear id: ChemistGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 5e605b42aab..98d031aee11 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -20,6 +20,7 @@ - Maintenance - Chemistry - ChiefMedicalOfficer + - External # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index df990775623..62af62184dd 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -12,6 +12,7 @@ access: - Medical - Maintenance + - External # Frontier extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index c6ff734587c..586c437c54e 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -15,6 +15,7 @@ access: - Medical - Maintenance + - External # Frontier - type: startingGear id: MedicalInternGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index e83ed1ebb63..858eb903c21 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -12,7 +12,7 @@ access: - Medical - Maintenance - - External + - External # Frontier extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml index 0a21c15e5cd..910460b53eb 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml @@ -20,6 +20,7 @@ - Medical - Maintenance - Chemistry + - External # Frontier - type: startingGear id: SeniorPhysicianGear diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 996a3051340..b4e93d239e0 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -15,6 +15,7 @@ access: - Research - Maintenance + - External # Frontier - type: startingGear id: ResearchAssistantGear diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 16a26d0bcb6..70e0a22bcfb 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -17,6 +17,7 @@ - Command - Maintenance - ResearchDirector + - External # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml index e205715626a..a596d3a38d3 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml @@ -12,6 +12,7 @@ access: - Research - Maintenance + - External # Frontier - type: startingGear id: ScientistGear diff --git a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml index 6155eb189d3..4f0b988a293 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml @@ -13,6 +13,7 @@ access: - Research - Maintenance + - External # Frontier - type: startingGear id: SeniorResearcherGear diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 8611237de60..ec82cfd8ace 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -16,6 +16,7 @@ - Maintenance - Service - Detective + - External # Frontier - Mercenary # Frontier - Captain # Frontier special: diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 147d296eba7..80bf28f4393 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: BoxerGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index 7b8854b6e84..4f1bfbd71d4 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -12,6 +12,7 @@ access: - Medical - Maintenance + - External # Frontier extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml index 16e2a4359ab..580449359d4 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: ReporterGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 4e3f58a4dc0..d055dc13050 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: ZookeeperGear diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index e2cbfb93dbe..a749c56e042 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -87,6 +87,7 @@ - Detective - Warden - PrisonGuard ##nyano + - Prisoner ##nyano - Brigmedic - type: department diff --git a/Resources/Prototypes/Roles/play_time_trackers.yml b/Resources/Prototypes/Roles/play_time_trackers.yml index 99c029450d1..da9b84214bd 100644 --- a/Resources/Prototypes/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/Roles/play_time_trackers.yml @@ -136,9 +136,6 @@ - type: playTimeTracker id: JobServiceWorker -- type: playTimeTracker - id: JobSTC - - type: playTimeTracker id: JobStationEngineer diff --git a/Resources/Prototypes/World/Biomes/basic.yml b/Resources/Prototypes/World/Biomes/basic.yml index 51bf0831ba7..17b211b73ec 100644 --- a/Resources/Prototypes/World/Biomes/basic.yml +++ b/Resources/Prototypes/World/Biomes/basic.yml @@ -10,11 +10,11 @@ ##- id: AsteroidDebrisSmall - id: AsteroidDebrisMedium - id: AsteroidDebrisLarge - prob: 0.7 + prob: 0.6 - id: AsteroidDebrisLarger - prob: 0.4 + prob: 0.3 - id: AsteroidDebrisHuge - prob: 0.2 + prob: 0.15 - type: NoiseDrivenDebrisSelector noiseChannel: Wreck debrisTable: diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_food.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_food.yml new file mode 100644 index 00000000000..6d7044db60b --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_food.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: FoodCrateFreezer + icon: + sprite: Structures/Storage/Crates/freezer.rsi + state: icon + product: CrateFreezer + cost: 500 + category: Food + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml index 0b68053f7ec..aeb1b44a58f 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml @@ -48,3 +48,12 @@ category: Fun group: market +# - type: cargoProduct + # id: FunDawInstrument + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: daw-base + # product: DawInstrument + # cost: 15000 + # category: Fun + # group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml index 83c226c0b77..313c891bf44 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml @@ -1,9 +1,19 @@ - type: cargoProduct id: MedicalTrackingImplant icon: - sprite: Objects/Specific/Chemistry/syringe.rsi - state: syringe_base0 + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 product: CrateMedicalTrackingImplants cost: 1000 category: Medical group: market + +- type: cargoProduct + id: CrateMedicalSurgery + icon: + sprite: Structures/Storage/Crates/surgery.rsi + state: icon + product: CrateMedicalSurgery + cost: 3000 + category: Medical + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_service.yml new file mode 100644 index 00000000000..bf84e89780d --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_service.yml @@ -0,0 +1,39 @@ +- type: cargoProduct + id: BulkSpaceCleaner + icon: + sprite: Objects/Specific/Chemistry/jug.rsi + state: jug + product: CrateSpaceCleaner + cost: 2000 + category: Service + group: market + +- type: cargoProduct + id: ServiceJanitorial2 + icon: + sprite: Objects/Specific/Janitorial/janitorial.rsi + state: cleaner + product: CrateServiceJanitorialSupplies2 + cost: 800 + category: Service + group: market + +- type: cargoProduct + id: ServiceJanitorialTrolley + icon: + sprite: Objects/Specific/Janitorial/janitorial_cart.rsi + state: cart + product: JanitorialTrolley + cost: 1000 + category: Service + group: market + +- type: cargoProduct + id: ServiceVehicleJanicart + icon: + sprite: Objects/Vehicles/janicart.rsi + state: icon + product: CrateVehicleJanicart + cost: 1500 + category: Service + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_shuttle.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_shuttle.yml new file mode 100644 index 00000000000..874f44491e0 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_shuttle.yml @@ -0,0 +1,30 @@ +- type: cargoProduct + id: ShuttleThruster + icon: + sprite: Structures/Shuttles/thruster.rsi + state: base + product: CrateThruster + cost: 1500 + category: Shuttle + group: market + +- type: cargoProduct + id: ShuttleGyroscope + icon: + sprite: Structures/Shuttles/gyroscope.rsi + state: base + product: CrateGyroscope + cost: 4000 + category: Shuttle + group: market + +# - type: cargoProduct + # id: ShuttlePowerKit + # icon: + # sprite: Structures/Machines/computers.rsi + # state: avionics-systems + # product: CrateEngineeringShuttle + # cost: 3000 + # category: Shuttle + # group: market +# locked: true # only the QM has permission to order by default diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml index c88d16a02c0..bcbe1459891 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -39,3 +39,13 @@ contents: - id: BoxSurvival - id: RubberStampLawyer + +- type: entity + noSpawn: true + parent: ClothingBackpack + id: ClothingBackpackStcFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: RubberStampStc diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 7e0760acad8..515cc436deb 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -39,3 +39,13 @@ contents: - id: BoxSurvival - id: RubberStampLawyer + +- type: entity + noSpawn: true + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelStcFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: RubberStampStc diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 6fe49750a4f..9b24ea1d026 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -39,3 +39,13 @@ contents: - id: BoxSurvival - id: RubberStampLawyer + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelStcFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: RubberStampStc diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml index 3de71493fa0..13ed67b0812 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml @@ -22,3 +22,67 @@ - state: syringe - type: VendPrice price: 200 # Single Implant Box (5 are 1000) + +- type: entity + name: Wet floor sign box + parent: BoxCardboard + id: BoxWetFloorSign + description: A box of wet floor signs. Happy janitor noises. + components: + - type: StorageFill + contents: + - id: WetFloorSign + amount: 6 + - type: Storage + capacity: 90 + whitelist: + tags: + - WetFloorSign + - type: Sprite + layers: + - state: box +# - state: wet_floor_sign + +- type: entity + name: Paper box + parent: BoxCardboard + id: BoxPaper + description: A box full of papers. + components: + - type: StorageFill + contents: + - id: Paper + amount: 10 + - type: Storage + capacity: 30 + whitelist: + tags: + - Document + - type: Sprite + layers: + - state: box +# - state: paper + - type: StaticPrice + price: 10 + +- type: entity + name: Office paper box + parent: BoxPaper + id: BoxPaperOffice + description: A box full of papers. + components: + - type: StorageFill + contents: + - id: PaperOffice + amount: 10 + +- type: entity + name: Captains thoughts paper box + parent: BoxPaper + id: BoxPaperCaptainsThoughts + description: A box full of papers. + components: + - type: StorageFill + contents: + - id: PaperCaptainsThoughts + amount: 10 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml new file mode 100644 index 00000000000..5081dd5c5f3 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml @@ -0,0 +1,8 @@ +- type: entity + id: CrateSpaceCleaner + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: JugSpaceCleaner + amount: 5 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/engines.yml new file mode 100644 index 00000000000..4772b318530 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/engines.yml @@ -0,0 +1,15 @@ +- type: entity + id: CrateGyroscope + parent: CrateEngineering + components: + - type: StorageFill + contents: + - id: GyroscopeUnanchored + +- type: entity + id: CrateThruster + parent: CrateEngineering + components: + - type: StorageFill + contents: + - id: ThrusterUnanchored diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml new file mode 100644 index 00000000000..1c0511c94a4 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml @@ -0,0 +1,20 @@ +- type: entity + id: CrateServiceJanitorialSupplies2 + parent: CratePlastic + components: + - type: StorageFill + contents: + - id: BoxTrashbag + amount: 2 + - id: SprayBottleSpaceCleaner + amount: 2 + - id: BoxWetFloorSign + +- type: entity + id: CrateVehicleJanicart + parent: CrateLivestock + components: + - type: StorageFill + contents: + - id: VehicleJanicart + - id: VehicleKeyJanicart diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml index d92e1391771..ffb6661b9e9 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml @@ -18,5 +18,4 @@ MaterialReclaimerMachineCircuitboard: 4 UniformPrinterMachineCircuitboard: 4 HydroponicsTrayMachineCircuitboard: 16 - DawInstrumentMachineCircuitboard: 4 - TelecomServerCircuitboard: 6 \ No newline at end of file + TelecomServerCircuitboard: 6 diff --git a/Resources/Prototypes/_NF/Datasets/Names/cat_crispy.yml b/Resources/Prototypes/_NF/Datasets/Names/cat_crispy.yml new file mode 100644 index 00000000000..f4c38c14713 --- /dev/null +++ b/Resources/Prototypes/_NF/Datasets/Names/cat_crispy.yml @@ -0,0 +1,4 @@ +- type: dataset + id: names_cat_crispy + values: + - Crispy diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml new file mode 100644 index 00000000000..948c4a32a23 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml @@ -0,0 +1,24 @@ +- type: entity + parent: ClothingOuterBaseLarge + id: ClothingOuterArmorSRCarapace + name: "station rep's carapace" + description: "A premium armored chestpiece that provides above average protection for its size. It offers maximum mobility and flexibility thanks to the premium composite materials. Issued only to the station representative." + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Armor/sr_carapace.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Armor/sr_carapace.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.5 + Heat: 0.6 + Caustic: 0.6 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 + - type: ExplosionResistance + damageCoefficient: 0.60 + - type: GroupExamine diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml index dee581ac992..5e2fa563297 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml @@ -87,6 +87,41 @@ implants: - DeathRattleImplant +- type: entity + name: Crispy + parent: MobCatGhost + id: MobCatCrispy + description: Mistakes were made. + components: + - type: Sprite + drawdepth: Mobs + sprite: _NF/Mobs/Pets/cat.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: crispycat + - type: DamageStateVisuals + states: + Alive: + Base: crispycat + Critical: + Base: crispycat_dead + Dead: + Base: crispycat_dead + - type: GhostRole + name: ghost-role-information-crispy-name + description: ghost-role-information-crispy-description + makeSentient: true + allowSpeech: true + allowMovement: true + - type: Inventory + speciesId: cat + templateId: crispy + - type: Loadout + prototypes: [ MobCrispyGear ] + - type: RandomMetadata + nameSegments: [names_cat_crispy] # Its needed to fix the names since it was using the MobCatGhost list. + - type: FriedTrait + - type: entity name: Mistake parent: MobCatGhost diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml index 991ba893778..6487c16d38e 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml @@ -17,14 +17,19 @@ - type: entity parent: IDCardStandard - id: STCIDCard + id: StcIDCard name: station traffic controller ID card components: + - type: PresetIdCard + job: StationTrafficController - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi layers: - state: silver - - state: idheadofpersonnel + - state: idstationtrafficcontroller + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi - type: Item heldPrefix: silver - - type: PresetIdCard - job: StationTrafficController \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml index a11512778f3..4adb9e3fe40 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml @@ -28,15 +28,15 @@ - type: entity parent: BasePDA - id: STCPDA + id: StcPDA name: station traffic controller PDA description: Declare emergencies in style! components: - type: Pda - id: STCIDCard + id: StcIDCard state: pda - type: PdaBorderColor borderColor: "#717059" accentVColor: "#A32D26" - type: Icon - state: pda \ No newline at end of file + state: pda diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml index 11dc2898435..19cee6a3205 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml @@ -55,3 +55,17 @@ - type: Sprite sprite: Objects/Misc/bureaucracy.rsi # Cannot use _NF or its exploding state: stamp-lawyer + +- type: entity + name: station traffic controller's rubber stamp + parent: RubberStampBase + id: RubberStampStc + suffix: DO NOT MAP + components: + - type: Stamp + stampedName: stamp-component-stamped-name-stc + stampedColor: "#CC6633" + stampState: "paper_stamp-stc" + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi # Cannot use _NF or its exploding + state: stamp-stc diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/chemical-containers.yml new file mode 100644 index 00000000000..d3440a0f32b --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/chemical-containers.yml @@ -0,0 +1,14 @@ +- type: entity + parent: Jug + name: jug (Space Cleaner) + id: JugSpaceCleaner + noSpawn: true + components: + - type: Label + currentLabel: Space Cleaner + - type: SolutionContainerManager + solutions: + beaker: + reagents: + - ReagentId: SpaceCleaner + Quantity: 200 diff --git a/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml b/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml index e766e5a0b99..34bdf9446f8 100644 --- a/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml +++ b/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml @@ -23,3 +23,16 @@ - type: ConditionalSpawner prototypes: - MobCatClarpy + +- type: entity + name: Crispy Spawner + id: SpawnMobCatCrispy + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatCrispy diff --git a/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml index a3fc2e3416d..c91c122c5e6 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml @@ -19,6 +19,26 @@ - type: Wires layoutId: AirlockCommand +- type: entity + parent: AirlockCommand + id: AirlockFrontierCommandLocked + suffix: Frontier Command, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"], ["HeadOfPersonnel"]] + - type: Wires + layoutId: AirlockCommand + +- type: entity + parent: AirlockCommandGlass + id: AirlockFrontierCommandGlassLocked + suffix: Frontier Command, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"], ["HeadOfPersonnel"]] + - type: Wires + layoutId: AirlockCommand + - type: entity parent: AirlockMercenary id: AirlockMercenaryLocked diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml index d3f9ba3d84c..00c75ac18c5 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml @@ -160,6 +160,30 @@ - map: ["computerLayerKeys"] state: blackmarket_key +- type: entity + id: ComputerShipyardScrap + parent: ComputerShipyard + name: scrapyard console + description: Used to purchase and sell "shuttles" + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Scrap + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Scrap + type: ShipyardConsoleBoundUserInterface + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_blackmarket + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + state: blackmarket_key + - type: entity name: cargo sale computer suffix: Normal diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml index 5136448db50..aa1baccb6bf 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml @@ -13,6 +13,17 @@ delay: 999999 - type: Physics bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - MachineMask + layer: + - MobLayer # To allow people to pass through - type: MaterialStorage - type: Appearance - type: Climbable diff --git a/Resources/Prototypes/_NF/InventoryTemplates/crispy_inventory_template.yml b/Resources/Prototypes/_NF/InventoryTemplates/crispy_inventory_template.yml new file mode 100644 index 00000000000..2726318423b --- /dev/null +++ b/Resources/Prototypes/_NF/InventoryTemplates/crispy_inventory_template.yml @@ -0,0 +1,45 @@ +- type: inventoryTemplate + id: crispy + slots: + # - name: ears + # slotTexture: ears + # slotFlags: EARS + # slotGroup: MainHotbar + # stripTime: 3 + # uiWindowPos: 1,2 + # strippingWindowPos: 1,2 + # displayName: Ears + # whitelist: + # tags: + # - PetWearableCat + + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 1,1 + strippingWindowPos: 1,1 + displayName: Mask + whitelist: + tags: + - PetWearable + + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + slotGroup: SecondHotbar + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,5 + displayName: Suit Storage + whitelist: + components: + - GasTank + + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml b/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml index ccdbdc72659..fe90e391947 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml @@ -2,13 +2,13 @@ id: StationTrafficController name: job-name-stc description: job-description-stc - playTimeTracker: JobSTC - startingGear: STCGear + playTimeTracker: JobStc + startingGear: StcGear requirements: - !type:OverallPlaytimeRequirement time: 10800 canBeAntag: false - icon: "JobIconSTC" + icon: "JobIconStc" supervisors: job-supervisors-hop setPreference: true access: @@ -17,14 +17,14 @@ - Frontier - type: startingGear - id: STCGear + id: StcGear equipment: jumpsuit: ClothingUniformJumpsuitDetectiveGrey - back: ClothingBackpackFilled + back: ClothingBackpackStcFilled shoes: ClothingShoesColorBlack - id: STCPDA + id: StcPDA ears: ClothingHeadsetAltCommand belt: BoxFolderClipboard innerClothingSkirt: ClothingUniformJumpskirtDetectiveGrey - satchel: ClothingBackpackSatchelFilled - duffelbag: ClothingBackpackDuffelFilled \ No newline at end of file + satchel: ClothingBackpackSatchelStcFilled + duffelbag: ClothingBackpackDuffelStcFilled diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml index 11f665abe7c..8f5581890f9 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml @@ -15,6 +15,12 @@ # ears: ClothingHeadsetService id: AgentIDCard +- type: startingGear + id: MobCrispyGear + equipment: +# ears: ClothingHeadsetService + id: AgentIDCard + - type: startingGear id: MobMistakeGear equipment: diff --git a/Resources/Prototypes/_NF/Roles/play_time_trackers.yml b/Resources/Prototypes/_NF/Roles/play_time_trackers.yml index dfe6421b847..07543a4e0fe 100644 --- a/Resources/Prototypes/_NF/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/_NF/Roles/play_time_trackers.yml @@ -2,10 +2,4 @@ id: JobMercenary - type: playTimeTracker - id: JobMartialArtist - -- type: playTimeTracker - id: JobPrisonGuard - -- type: playTimeTracker - id: JobGladiator \ No newline at end of file + id: JobStc diff --git a/Resources/Prototypes/_NF/Shipyard/bison.yml b/Resources/Prototypes/_NF/Shipyard/bison.yml index bb1d94377fa..b80f5393828 100644 --- a/Resources/Prototypes/_NF/Shipyard/bison.yml +++ b/Resources/Prototypes/_NF/Shipyard/bison.yml @@ -4,7 +4,7 @@ description: A heavy duty ship breaker with a durable hull and a substantial amount of living space, built for long journeys with self-sufficiency. price: 166138 category: Large - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/bison.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/garden.yml b/Resources/Prototypes/_NF/Shipyard/garden.yml new file mode 100644 index 00000000000..ddf029ded05 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/garden.yml @@ -0,0 +1,27 @@ +- type: vessel + id: Garden + name: HS Garden + description: A small botany vessel dedicated to horiticultural experimentation. + price: 24750 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/garden.yml + +- type: gameMap + id: Garden + mapName: 'HS Garden' + mapPath: /Maps/Shuttles/garden.yml + minPlayers: 0 + stations: + Garden: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Garden {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Botanist: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/mccargo.yml b/Resources/Prototypes/_NF/Shipyard/mccargo.yml new file mode 100644 index 00000000000..b2d11c3bb3e --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/mccargo.yml @@ -0,0 +1,39 @@ +# Maintainer Info +# GitHub: dvir001 +# Discord: dvir01 (84770870936997888) + +# Shuttle Notes: +# + +- type: vessel + id: mccargo + name: DC McCargo + description: "Your very own McCargo :tm: franchisee! comes fully stocked and ready for production of McCargo meals" + price: 77000 + category: Medium + group: Civilian + shuttlePath: /Maps/Shuttles/mccargo.yml + +- type: gameMap + id: mccargo + mapName: 'DC McCargo' + mapPath: /Maps/Shuttles/mccargo.yml + minPlayers: 0 + stations: + mccargo: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'McCargo {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Quartermaster: [ 0, 0 ] + CargoTechnician: [ 0, 0 ] + Chef: [ 0, 0 ] + Botanist: [ 0, 0 ] + Janitor: [ 0, 0 ] + Borg: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/opportunity.yml b/Resources/Prototypes/_NF/Shipyard/opportunity.yml new file mode 100644 index 00000000000..a3c1558fdef --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/opportunity.yml @@ -0,0 +1,29 @@ +- type: vessel + id: Opportunity + name: NSF Opportunity + description: A medium expeditionary prison vessel capable of incarcerating up to 4 criminals. The ship is capable of planetfall and mining operations. Find a reliable crew of prison guards to help you keep your prisoners in line. + price: 70000 + category: Medium + group: Security + shuttlePath: /Maps/Shuttles/opportunity.yml + +- type: gameMap + id: Opportunity + mapName: 'NSF Opportunity' + mapPath: /Maps/Shuttles/opportunity.yml + minPlayers: 0 + stations: + Opportunity: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Opportunity {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + PrisonGuard: [ 0, 0 ] + Warden: [ 0, 0 ] + Prisoner: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/pulse.yml b/Resources/Prototypes/_NF/Shipyard/pulse.yml index 97ec80d5fb0..df482fcb2af 100644 --- a/Resources/Prototypes/_NF/Shipyard/pulse.yml +++ b/Resources/Prototypes/_NF/Shipyard/pulse.yml @@ -2,7 +2,7 @@ id: Pulse name: NM Pulse description: A small rapid response medical ship - price: 17765 + price: 18765 category: Small group: Civilian shuttlePath: /Maps/Shuttles/pulse.yml diff --git a/Resources/Prototypes/_NF/Shipyard/searchlight.yml b/Resources/Prototypes/_NF/Shipyard/searchlight.yml new file mode 100644 index 00000000000..4b1e01ccb0b --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/searchlight.yml @@ -0,0 +1,28 @@ +- type: vessel + id: searchlight + name: NM Searchlight + description: A small vessel outfitted for the search and recovery of wounded NT personnel. Primarily for recovery. Search though? Well. You got that medical tracker implanted, right? + price: 29500 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/searchlight.yml + +- type: gameMap + id: searchlight + mapName: 'NM Searchlight' + mapPath: /Maps/Shuttles/searchlight.yml + minPlayers: 0 + stations: + searchlight: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Searchlight {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Paramedic: [ 0, 0 ] + StationEngineer: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/spectre.yml b/Resources/Prototypes/_NF/Shipyard/spectre.yml new file mode 100644 index 00000000000..30103fecf95 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/spectre.yml @@ -0,0 +1,30 @@ +- type: vessel + id: Spectre + name: Spectre + description: A large research mothership designed to be flown nexto a small fleet of other ships including salvage and food services. + price: 195000 + category: Large + group: Civilian + shuttlePath: /Maps/Shuttles/spectre.yml + +- type: gameMap + id: Spectre + mapName: 'Spectre' + mapPath: /Maps/Shuttles/spectre.yml + minPlayers: 0 + stations: + Spectre: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Spectre {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Scientist: [ 0, 0 ] + Bartender: [ 0, 0 ] + StationEngineer: [ 0, 0 ] + ResearchDirector: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/svnugget.yml b/Resources/Prototypes/_NF/Shipyard/svnugget.yml index d7b35052dbf..745546f3c31 100644 --- a/Resources/Prototypes/_NF/Shipyard/svnugget.yml +++ b/Resources/Prototypes/_NF/Shipyard/svnugget.yml @@ -4,7 +4,7 @@ description: A flying hunk of wood and metal disguised as a kitchen shuttle. Not FDA approved. price: 12250 category: Small - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/svnugget.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/svorange.yml b/Resources/Prototypes/_NF/Shipyard/svorange.yml index 835a4ca0e9d..91246e651f5 100644 --- a/Resources/Prototypes/_NF/Shipyard/svorange.yml +++ b/Resources/Prototypes/_NF/Shipyard/svorange.yml @@ -4,7 +4,7 @@ description: A cargo slash salvage shuttle made from scavenged wrecks, comes with some damage. price: 16000 #Appraisal is 14500 category: Small - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/svorange.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/svtide.yml b/Resources/Prototypes/_NF/Shipyard/svtide.yml index 2d7771d4987..5795fc84319 100644 --- a/Resources/Prototypes/_NF/Shipyard/svtide.yml +++ b/Resources/Prototypes/_NF/Shipyard/svtide.yml @@ -4,7 +4,7 @@ description: A cheaply made mass-produced shuttle made from salvaged wrecks. For the seasoned assistant. price: 9150 category: Small - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/svtide.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/wasp.yml b/Resources/Prototypes/_NF/Shipyard/wasp.yml index 5f9875004a4..3058c20c19d 100644 --- a/Resources/Prototypes/_NF/Shipyard/wasp.yml +++ b/Resources/Prototypes/_NF/Shipyard/wasp.yml @@ -28,3 +28,4 @@ Warden: [ 0, 0 ] PrisonGuard: [ 0, 0 ] Brigmedic: [ 0, 0 ] + Prisoner: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/StatusEffects/job.yml b/Resources/Prototypes/_NF/StatusEffects/job.yml index da51ee1509f..009494cb1bc 100644 --- a/Resources/Prototypes/_NF/StatusEffects/job.yml +++ b/Resources/Prototypes/_NF/StatusEffects/job.yml @@ -14,7 +14,7 @@ - type: statusIcon parent: JobIcon - id: JobIconSTC + id: JobIconStc icon: sprite: Interface/Misc/job_icons.rsi state: ServiceWorker diff --git a/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml b/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml index 12d5ae92ba7..58b3851036e 100644 --- a/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml +++ b/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml @@ -49,6 +49,9 @@ # gained by doing special handling for Stacks, especially since most # of the items that use Stack aren't even remotely edible. - Stack + - SpaceCash # Frontier - Cash + - IdCard # Frontier - ID + - WebCocoon # Frontier whitelist: components: # It's what meat is. diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml index 88ee0f7248b..1ffce0a3a82 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml @@ -13,6 +13,7 @@ - Cargo - Maintenance - Service + - External # Frontier - type: startingGear id: MailCarrierGear diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml index 99ec294e245..94dd5e34169 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml @@ -16,6 +16,7 @@ - Cargo - Maintenance - Janitor + - External # Frontier - type: startingGear id: ValetGear diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml index c5a1c4a7a0f..fe6c23edfbb 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml @@ -13,4 +13,4 @@ access: - Service - Maintenance - + - External # Frontier diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml index 4243dd59663..152111301aa 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: MartialGear diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml index c302e1528e5..bf6bccd67ba 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml @@ -4,13 +4,15 @@ description: job-description-prisoner playTimeTracker: JobPrisoner requirements: - - !type:OverallPlaytimeRequirement - time: 10800 + - !type:WhitelistRequirement startingGear: PrisonerGear canBeAntag: false whitelistRequired: true icon: "JobIconPrisoner" supervisors: job-supervisors-security + special: + - !type:AddImplantSpecial + implants: [ TrackingImplant ] # Frontier - type: startingGear id: PrisonerGear diff --git a/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml b/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml index fc5d9883fbc..fb60e6d4539 100644 --- a/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml @@ -1,6 +1,3 @@ -- type: playTimeTracker - id: JobCyborg - - type: playTimeTracker id: JobMailCarrier @@ -9,3 +6,12 @@ - type: playTimeTracker id: JobValet + +- type: playTimeTracker + id: JobMartialArtist + +- type: playTimeTracker + id: JobPrisonGuard + +- type: playTimeTracker + id: JobGladiator diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index b1f0881ed76..4be319f2694 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -296,11 +296,17 @@ { "name": "paper_stamp-lawyer" }, + { + "name": "paper_stamp-stc" + }, { "name": "stamp-psychologist" }, { "name": "stamp-lawyer" + }, + { + "name": "stamp-stc" } ] } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-stc.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-stc.png new file mode 100644 index 00000000000..369e29c1325 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-stc.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-stc.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-stc.png new file mode 100644 index 00000000000..05e008db985 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-stc.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bf0d6901af7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/icon.png new file mode 100644 index 00000000000..7e8c0639a99 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-left.png new file mode 100644 index 00000000000..304ea119e7a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-right.png new file mode 100644 index 00000000000..b7e86380753 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/meta.json new file mode 100644 index 00000000000..6be98a39f47 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), color tweak by MagnusCrowe (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat.png new file mode 100644 index 00000000000..4fbab4033b3 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_dead.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_dead.png new file mode 100644 index 00000000000..d9874b26ae2 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_dead.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_rest.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_rest.png new file mode 100644 index 00000000000..07bcabb335d Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_rest.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_sit.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_sit.png new file mode 100644 index 00000000000..204367692c7 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_sit.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json index 43710140ab8..7b530deaf85 100644 --- a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json +++ b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json @@ -43,6 +43,24 @@ ] ] }, + { + "name": "crispycat", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, { "name": "mistakecat", "directions": 4, @@ -77,6 +95,14 @@ ] ] }, + { + "name": "crispycat_dead", + "delays": [ + [ + 1 + ] + ] + }, { "name": "mistakecat_dead", "delays": [ @@ -123,6 +149,17 @@ ] ] }, + { + "name": "crispycat_rest", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, { "name": "mistakecat_rest", "delays": [ @@ -166,6 +203,14 @@ ] ] }, + { + "name": "crispycat_sit", + "delays": [ + [ + 1 + ] + ] + }, { "name": "mistakecat_sit", "delays": [ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png new file mode 100644 index 00000000000..be72e37e574 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json index b5e6278f12e..66724e44df2 100644 --- a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json @@ -10,8 +10,14 @@ { "name": "default" }, + { + "name": "silver" + }, { "name": "idmercenary" + }, + { + "name": "idstationtrafficcontroller" } ] } diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver.png new file mode 100644 index 00000000000..b13153a246e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver.png differ