diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 8081b8e45f..d213745c74 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -161,7 +161,7 @@ namespace Content.Server.Mapping _mappingSystem.ToggleAutosave(mapId, toLoad ?? "NEWMAP"); shell.ExecuteCommand($"tp 0 0 {mapId}"); - shell.RemoteExecuteCommand("mappingclientsidesetup"); + //shell.RemoteExecuteCommand("mappingclientsidesetup"); ДА ИДИ ТЫ НАХУЙ DebugTools.Assert(_mapSystem.IsPaused(mapId)); if (args.Length != 2) diff --git a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs index d541fe0a53..7b9e48abec 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs @@ -160,7 +160,7 @@ public sealed partial class DockingSystem /// /// Gets all docking configs between the 2 grids. /// - private List GetDockingConfigs( + public List GetDockingConfigs( // Sunrise-Edit EntityUid shuttleUid, EntityUid targetGrid, List> shuttleDocks, diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index b067a7c292..a9944d8e3c 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -345,6 +345,55 @@ public sealed partial class ShuttleSystem } } + // Sunrise-Start + public void FTLToDockСonfig( + EntityUid shuttleUid, + ShuttleComponent component, + EntityUid target, + DockingConfig config, + float? startupTime = null, + float? hyperspaceTime = null, + string? priorityTag = null, + bool ignored = false, + bool deletedTrash = false) + { + if (!TrySetupFTL(shuttleUid, component, out var hyperspace)) + return; + + startupTime ??= DefaultStartupTime; + hyperspaceTime ??= DefaultTravelTime; + + hyperspace.StartupTime = startupTime.Value; + hyperspace.TravelTime = hyperspaceTime.Value; + hyperspace.StateTime = StartEndTime.FromStartDuration( + _gameTiming.CurTime, + TimeSpan.FromSeconds(hyperspace.StartupTime)); + hyperspace.PriorityTag = priorityTag; + hyperspace.Ignored = ignored; // Sunrise-Edit + hyperspace.DeleteTrash = deletedTrash; // Sunrise-Edit + + _console.RefreshShuttleConsoles(shuttleUid); + + // Valid dock for now time so just use that as the target. + if (config != null) + { + hyperspace.TargetCoordinates = config.Coordinates; + hyperspace.TargetAngle = config.Angle; + } + else if (TryGetFTLProximity(shuttleUid, new EntityCoordinates(target, Vector2.Zero), out var coords, out var targAngle)) + { + hyperspace.TargetCoordinates = coords; + hyperspace.TargetAngle = targAngle; + } + else + { + // FTL back to its own position. + hyperspace.TargetCoordinates = Transform(shuttleUid).Coordinates; + Log.Error($"Unable to FTL grid {ToPrettyString(shuttleUid)} to target properly?"); + } + } + // Sunrise-End + private bool TrySetupFTL(EntityUid uid, ShuttleComponent shuttle, [NotNullWhen(true)] out FTLComponent? component) { component = null; diff --git a/Content.Server/_Sunrise/GridDock/GridDockSystem.cs b/Content.Server/_Sunrise/GridDock/GridDockSystem.cs index db7f2a377a..cdfc8c2254 100644 --- a/Content.Server/_Sunrise/GridDock/GridDockSystem.cs +++ b/Content.Server/_Sunrise/GridDock/GridDockSystem.cs @@ -1,8 +1,8 @@ -using System.Numerics; -using Content.Server._Sunrise.RoundStartFtl; +using System.Linq; +using System.Numerics; +using Content.Server.Shuttles; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Systems; -using Content.Server.Station.Components; using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Station.Components; @@ -15,6 +15,7 @@ public sealed class GridDockSystem : EntitySystem [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly ShuttleSystem _shuttles = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly DockingSystem _dockSystem = default!; public override void Initialize() { @@ -23,19 +24,11 @@ public sealed class GridDockSystem : EntitySystem private void OnStationPostInit(EntityUid uid, SpawnGridAndDockToStationComponent component, StationPostInitEvent args) { - if (component.GridPath is null) + if (component.Grids.Count == 0) return; var ftlMap = _shuttles.EnsureFTLMap(); var xformMap = Transform(ftlMap); - if (!_loader.TryLoadGrid(xformMap.MapID, - component.GridPath.Value, - out var rootUid, - offset: new Vector2(500, 500))) - return; - - if (!TryComp(rootUid.Value.Owner, out var shuttleComp)) - return; if (!TryComp(uid, out var stationData)) return; @@ -48,13 +41,73 @@ public sealed class GridDockSystem : EntitySystem return; } - _shuttles.FTLToDock( - rootUid.Value.Owner, - shuttleComp, - target.Value, - 5f, - 5f, - priorityTag: component.PriorityTag, - ignored: true); + var baseOffset = new Vector2(500, 500); + var offsetStep = new Vector2(100, 100); + var usedGridDocks = new HashSet(); + var currentOffset = baseOffset; + foreach (var entry in component.Grids) + { + if (!_loader.TryLoadGrid(xformMap.MapID, + entry.GridPath, + out var rootUid, + offset: currentOffset)) + { + currentOffset += offsetStep; + continue; + } + + if (!TryComp(rootUid.Value.Owner, out var shuttleComp)) + { + currentOffset += offsetStep; + continue; + } + + var gridDocks = _dockSystem.GetDocks(target.Value); + var shuttleDocks = _dockSystem.GetDocks(rootUid.Value.Owner); + var configs = _dockSystem.GetDockingConfigs(rootUid.Value.Owner, target.Value, shuttleDocks, gridDocks, entry.PriorityTag, ignored: false); + + DockingConfig? chosenConfig = null; + int maxNewDocks = 0; + foreach (var cfg in configs) + { + var newDocks = cfg.Docks.Count(pair => !usedGridDocks.Contains(pair.DockBUid)); + if (newDocks > maxNewDocks) + { + maxNewDocks = newDocks; + chosenConfig = cfg; + } + } + + if (chosenConfig != null && chosenConfig.Docks.All(pair => !usedGridDocks.Contains(pair.DockBUid))) + { + foreach (var pair in chosenConfig.Docks) + { + usedGridDocks.Add(pair.DockBUid); + } + + _shuttles.FTLToDockСonfig( + rootUid.Value.Owner, + shuttleComp, + target.Value, + chosenConfig, + 5f, + 5f, + priorityTag: entry.PriorityTag, + ignored: false); + } + else + { + _shuttles.FTLToDock( + rootUid.Value.Owner, + shuttleComp, + target.Value, + 5f, + 5f, + priorityTag: entry.PriorityTag, + ignored: false); + } + + currentOffset += offsetStep; + } } } diff --git a/Content.Server/_Sunrise/GridDock/SpawnGridAndDockToStationComponent.cs b/Content.Server/_Sunrise/GridDock/SpawnGridAndDockToStationComponent.cs index 608026bf24..e213f5cd8f 100644 --- a/Content.Server/_Sunrise/GridDock/SpawnGridAndDockToStationComponent.cs +++ b/Content.Server/_Sunrise/GridDock/SpawnGridAndDockToStationComponent.cs @@ -1,12 +1,19 @@ using Robust.Shared.Utility; -namespace Content.Server._Sunrise.RoundStartFtl; +namespace Content.Server._Sunrise.GridDock; [RegisterComponent] public sealed partial class SpawnGridAndDockToStationComponent : Component { - [DataField] - public ResPath? GridPath { get; set; } + [DataField(required: true)] + public List Grids { get; set; } = new(); +} + +[DataDefinition] +public sealed partial class GridDockEntry +{ + [DataField(required: true)] + public ResPath GridPath; [DataField(required: true)] public string PriorityTag; diff --git a/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs b/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs index 397b771ca1..f0cb9e6409 100644 --- a/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs +++ b/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs @@ -299,7 +299,7 @@ public sealed partial class SunriseCCVars : CVars public static readonly CVarDef VotePause = CVarDef.Create("vote.pause", true, CVar.SERVERONLY); - public static readonly CVarDef ExcludeMaps = CVarDef.Create("vote.exclude_maps", false, CVar.SERVERONLY); + public static readonly CVarDef ExcludeMaps = CVarDef.Create("vote.exclude_maps", true, CVar.SERVERONLY); public static readonly CVarDef ExcludePresets = CVarDef.Create("vote.exclude_presets", true, CVar.SERVERONLY); diff --git a/Resources/Changelog/ChangelogSunrise.yml b/Resources/Changelog/ChangelogSunrise.yml index d1c64bf92e..af07a605f2 100644 --- a/Resources/Changelog/ChangelogSunrise.yml +++ b/Resources/Changelog/ChangelogSunrise.yml @@ -20834,3 +20834,30 @@ id: 1366 time: '2025-08-17T21:25:32.0000000+00:00' url: https://github.com/space-sunrise/sunrise-station/pull/2809 +- author: VigersRay + changes: + - message: "\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D \u0448\u0430\u0442\ + \u0442\u043B \u0441\u043B\u0443\u0436\u0431\u044B \u0431\u0435\u0437\u043E\u043F\ + \u0430\u0441\u0442\u043D\u043E\u0441\u0442\u0438." + type: Add + - message: "\u041D\u0430 \u0441\u0442\u0430\u043D\u0446\u0438\u0438 \u0434\u043E\ + \u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\u0440\u0441\u043E\u043D\ + \u0430\u043B\u044C\u043D\u044B\u0435 \u0433\u0440\u0430\u0436\u0434\u0430\u043D\ + \u0441\u043A\u0438\u0435 \u0448\u0430\u0442\u0442\u043B\u044B." + type: Add + - message: "\u0428\u0430\u0442\u0442\u043B \u0443\u0442\u0438\u043B\u0438\u0437\u0430\ + \u0442\u043E\u0440\u043E\u0432 \u0431\u044B\u043B \u0443\u043B\u0443\u0447\u0448\ + \u0435\u043D." + type: Tweak + - message: "\u041D\u0430 \u0431\u043E\u043A\u0441\u0435 \u0440\u0430\u0441\u0448\ + \u0438\u0440\u0435\u043D\u043E \u043E\u0442\u0431\u044B\u0442\u0438\u0435 (\u0441\ + \u043E\u0440\u0438, \u044F \u043D\u0435 \u0441\u0442\u0430\u0440\u0430\u043B\ + \u0441\u044F)." + type: Tweak + - message: "\u041F\u0443\u043B\u0435\u043C\u0435\u0442 \u0441\u0432\u0430\u043B\u0438\ + \u043D \u0442\u0435\u043F\u0435\u0440\u044C \u0438\u0441\u043F\u043E\u043B\u044C\ + \u0437\u0443\u0435\u0442 \u044D\u043D\u0435\u0440\u0433\u043E\u044F\u0447\u0435\ + \u0439\u043A\u0438." + type: Tweak + id: 1367 + time: '2025-08-17T22:15:46.920749+00:00' diff --git a/Resources/Maps/_Sunrise/Nonstations/transit_hub.yml b/Resources/Maps/_Sunrise/Nonstations/transit_hub.yml index 504d798508..a81aab4958 100644 --- a/Resources/Maps/_Sunrise/Nonstations/transit_hub.yml +++ b/Resources/Maps/_Sunrise/Nonstations/transit_hub.yml @@ -2,9 +2,9 @@ meta: format: 7 category: Grid engineVersion: 266.0.0 - forkId: sunrise_station - forkVersion: 83b3edfcb7c8626abb4f21a2cbec5109a3bf87ef - time: 08/16/2025 09:06:59 + forkId: "" + forkVersion: "" + time: 08/17/2025 22:05:26 entityCount: 3866 maps: [] grids: @@ -4073,6 +4073,14 @@ entities: - type: Transform pos: 32.5,-12.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 165: + - - DockStatus + - Toggle + 166: + - - DockStatus + - Toggle - uid: 56 components: - type: Transform @@ -20864,7 +20872,7 @@ entities: pos: 18.5,0.5 parent: 1 - type: Door - secondsUntilStateChange: -65560.984 + secondsUntilStateChange: -65590.22 state: Opening - type: DeviceLinkSource lastSignals: diff --git a/Resources/Maps/_Sunrise/Shuttles/arrivals.yml b/Resources/Maps/_Sunrise/Shuttles/arrivals.yml index c63b8a86fc..f34d63acaf 100644 --- a/Resources/Maps/_Sunrise/Shuttles/arrivals.yml +++ b/Resources/Maps/_Sunrise/Shuttles/arrivals.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 262.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 06/13/2025 01:34:18 - entityCount: 2525 + time: 08/17/2025 21:45:49 + entityCount: 2501 maps: [] grids: - 1 @@ -994,6 +994,8 @@ entities: - 2304 - 2303 - 1242 + - type: Fixtures + fixtures: {} - uid: 2348 components: - type: Transform @@ -1013,6 +1015,8 @@ entities: - 2316 - 2317 - 2318 + - type: Fixtures + fixtures: {} - uid: 2349 components: - type: Transform @@ -1032,6 +1036,8 @@ entities: - 2253 - 2266 - 2246 + - type: Fixtures + fixtures: {} - uid: 2350 components: - type: Transform @@ -1048,6 +1054,8 @@ entities: - 2254 - 2255 - 1321 + - type: Fixtures + fixtures: {} - uid: 2351 components: - type: Transform @@ -1061,6 +1069,8 @@ entities: - 2097 - 1236 - 2241 + - type: Fixtures + fixtures: {} - uid: 2352 components: - type: Transform @@ -1079,12 +1089,16 @@ entities: - 1235 - 2228 - 1234 + - type: Fixtures + fixtures: {} - uid: 2353 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2354 components: - type: Transform @@ -1106,6 +1120,8 @@ entities: - 2106 - 2231 - 1355 + - type: Fixtures + fixtures: {} - uid: 2355 components: - type: Transform @@ -1127,6 +1143,8 @@ entities: - 2172 - 1252 - 2193 + - type: Fixtures + fixtures: {} - uid: 2356 components: - type: Transform @@ -1145,6 +1163,8 @@ entities: - 2111 - 2208 - 1232 + - type: Fixtures + fixtures: {} - uid: 2357 components: - type: Transform @@ -1163,6 +1183,8 @@ entities: - 2106 - 1356 - 2213 + - type: Fixtures + fixtures: {} - uid: 2358 components: - type: Transform @@ -1175,6 +1197,8 @@ entities: - 2379 - 1230 - 2343 + - type: Fixtures + fixtures: {} - uid: 2359 components: - type: Transform @@ -1200,6 +1224,8 @@ entities: - 1231 - 2342 - 2341 + - type: Fixtures + fixtures: {} - uid: 2360 components: - type: Transform @@ -1211,6 +1237,8 @@ entities: - 2112 - 1738 - 1223 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1169 @@ -1484,86 +1512,86 @@ entities: - uid: 95 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,17.5 + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 parent: 1 - uid: 96 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 parent: 1 - uid: 97 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 parent: 1 - uid: 98 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,7.5 + pos: -20.5,-26.5 parent: 1 - uid: 107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - - uid: 108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 1 - - uid: 109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - - uid: 110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - uid: 151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 1 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 1 - - uid: 424 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 1 - - uid: 452 + - uid: 108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-14.5 + pos: -20.5,7.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,15.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 parent: 1 - uid: 453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-26.5 + rot: 1.5707963267948966 rad + pos: -0.5,-28.5 parent: 1 - uid: 454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-28.5 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 parent: 1 - uid: 455 components: @@ -1581,49 +1609,49 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-36.5 + pos: -0.5,-14.5 parent: 1 - uid: 458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-34.5 + pos: -0.5,9.5 parent: 1 - uid: 459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-28.5 + pos: -0.5,15.5 parent: 1 - uid: 460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 + rot: -1.5707963267948966 rad + pos: -20.5,17.5 parent: 1 - uid: 461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-14.5 + rot: -1.5707963267948966 rad + pos: -20.5,9.5 parent: 1 - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 parent: 1 - uid: 463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 parent: 1 - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 parent: 1 - proto: AirlockGlass entities: @@ -1812,70 +1840,94 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-31.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1536 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1537 components: - type: Transform pos: -8.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1540 components: - type: Transform pos: -8.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2146 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2427 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2429 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2441 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2444 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2494 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2495 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 174 @@ -1884,30 +1936,40 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-41.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1143 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-41.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1535 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2451 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2452 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: ArrivalsShuttleTimer entities: - uid: 2380 @@ -1916,278 +1978,208 @@ entities: rot: 3.141592653589793 rad pos: -10.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2381 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2382 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2383 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2384 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2385 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2386 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2387 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2388 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2389 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2390 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2391 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2392 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2393 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2394 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-20.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2395 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2396 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2397 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-23.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2398 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-23.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2399 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-28.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2400 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-38.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2401 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-38.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2402 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-29.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2403 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-29.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2404 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-28.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2405 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-31.5 parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 567 - components: - - type: Transform - pos: -20.5,17.5 - parent: 1 - - uid: 568 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1 - - uid: 569 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1 - - uid: 570 - components: - - type: Transform - pos: -20.5,9.5 - parent: 1 - - uid: 571 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 572 - components: - - type: Transform - pos: -20.5,7.5 - parent: 1 - - uid: 573 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - - uid: 574 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 575 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1 - - uid: 576 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1 - - uid: 577 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 1 - - uid: 578 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 1 - - uid: 579 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 1 - - uid: 580 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 1 - - uid: 581 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1 - - uid: 582 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1 - - uid: 583 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 1 - - uid: 584 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 1 - - uid: 585 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 1 - - uid: 586 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 1 - - uid: 587 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1 - - uid: 588 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1 - - uid: 589 - components: - - type: Transform - pos: -20.5,-36.5 - parent: 1 - - uid: 590 - components: - - type: Transform - pos: -20.5,-34.5 - parent: 1 + - type: Fixtures + fixtures: {} - proto: BedsheetMedical entities: - uid: 545 @@ -6453,6 +6445,8 @@ entities: - type: Transform pos: -4.5,-38.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: ClothingHandsGlovesColorYellow entities: - uid: 1627 @@ -7952,7 +7946,7 @@ entities: pos: -12.5,-25.5 parent: 1 - type: Door - secondsUntilStateChange: -2269.716 + secondsUntilStateChange: -2351.2053 state: Opening - type: DeviceLinkSource lastSignals: @@ -11727,6 +11721,8 @@ entities: - type: Transform pos: -10.5,-19.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 244 @@ -13188,11 +13184,15 @@ entities: - type: Transform pos: -13.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2086 components: - type: Transform pos: -7.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 1603 @@ -13200,11 +13200,15 @@ entities: - type: Transform pos: -9.5,-34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1604 components: - type: Transform pos: -11.5,-34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1597 @@ -13212,11 +13216,15 @@ entities: - type: Transform pos: -14.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1617 components: - type: Transform pos: -6.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignSec entities: - uid: 1560 @@ -13224,11 +13232,15 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1595 components: - type: Transform pos: -6.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Sink entities: - uid: 636 diff --git a/Resources/Maps/_Sunrise/Shuttles/emergency.yml b/Resources/Maps/_Sunrise/Shuttles/emergency.yml index 947dee6d33..f8a0da452e 100644 --- a/Resources/Maps/_Sunrise/Shuttles/emergency.yml +++ b/Resources/Maps/_Sunrise/Shuttles/emergency.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 262.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 06/13/2025 01:44:58 - entityCount: 2427 + time: 08/17/2025 21:44:12 + entityCount: 2403 maps: [] grids: - 1 @@ -994,6 +994,8 @@ entities: - 2304 - 2303 - 1242 + - type: Fixtures + fixtures: {} - uid: 2348 components: - type: Transform @@ -1013,6 +1015,8 @@ entities: - 2316 - 2317 - 2318 + - type: Fixtures + fixtures: {} - uid: 2349 components: - type: Transform @@ -1032,6 +1036,8 @@ entities: - 2253 - 2266 - 2246 + - type: Fixtures + fixtures: {} - uid: 2350 components: - type: Transform @@ -1048,6 +1054,8 @@ entities: - 2254 - 2255 - 1321 + - type: Fixtures + fixtures: {} - uid: 2351 components: - type: Transform @@ -1061,6 +1069,8 @@ entities: - 2097 - 1236 - 2241 + - type: Fixtures + fixtures: {} - uid: 2352 components: - type: Transform @@ -1079,12 +1089,16 @@ entities: - 1235 - 2228 - 1234 + - type: Fixtures + fixtures: {} - uid: 2353 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2354 components: - type: Transform @@ -1106,6 +1120,8 @@ entities: - 2106 - 2231 - 1355 + - type: Fixtures + fixtures: {} - uid: 2355 components: - type: Transform @@ -1127,6 +1143,8 @@ entities: - 2172 - 1252 - 2193 + - type: Fixtures + fixtures: {} - uid: 2356 components: - type: Transform @@ -1145,6 +1163,8 @@ entities: - 2111 - 2208 - 1232 + - type: Fixtures + fixtures: {} - uid: 2357 components: - type: Transform @@ -1163,6 +1183,8 @@ entities: - 2106 - 1356 - 2213 + - type: Fixtures + fixtures: {} - uid: 2358 components: - type: Transform @@ -1175,6 +1197,8 @@ entities: - 2379 - 1230 - 2343 + - type: Fixtures + fixtures: {} - uid: 2359 components: - type: Transform @@ -1200,6 +1224,8 @@ entities: - 1231 - 2342 - 2341 + - type: Fixtures + fixtures: {} - uid: 2360 components: - type: Transform @@ -1211,6 +1237,8 @@ entities: - 2112 - 1738 - 1223 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1169 @@ -1484,86 +1512,86 @@ entities: - uid: 95 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,17.5 + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 parent: 1 - uid: 96 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 parent: 1 - uid: 97 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 parent: 1 - uid: 98 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,7.5 + pos: -20.5,-26.5 parent: 1 - uid: 107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - - uid: 108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 1 - - uid: 109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - - uid: 110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - uid: 151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 1 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 1 - - uid: 424 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 1 - - uid: 452 + - uid: 108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-14.5 + pos: -20.5,-4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,17.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 parent: 1 - uid: 453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-26.5 + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 parent: 1 - uid: 454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-28.5 + rot: 1.5707963267948966 rad + pos: -0.5,-28.5 parent: 1 - uid: 455 components: @@ -1581,49 +1609,49 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-36.5 + pos: -0.5,-4.5 parent: 1 - uid: 458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-34.5 + pos: -0.5,9.5 parent: 1 - uid: 459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-28.5 + pos: -0.5,17.5 parent: 1 - uid: 460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 + rot: -1.5707963267948966 rad + pos: -20.5,15.5 parent: 1 - uid: 461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-14.5 + rot: -1.5707963267948966 rad + pos: -20.5,7.5 parent: 1 - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 parent: 1 - uid: 463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 parent: 1 - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 parent: 1 - proto: AirlockGlass entities: @@ -1812,34 +1840,46 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1536 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1537 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1538 components: - type: Transform pos: -7.5,-31.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1540 components: - type: Transform pos: -8.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2146 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 1143 @@ -1848,134 +1888,16 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-41.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1535 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 567 - components: - - type: Transform - pos: -20.5,17.5 - parent: 1 - - uid: 568 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1 - - uid: 569 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1 - - uid: 570 - components: - - type: Transform - pos: -20.5,9.5 - parent: 1 - - uid: 571 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 572 - components: - - type: Transform - pos: -20.5,7.5 - parent: 1 - - uid: 573 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - - uid: 574 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 575 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1 - - uid: 576 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1 - - uid: 577 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 1 - - uid: 578 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 1 - - uid: 579 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 1 - - uid: 580 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 1 - - uid: 581 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1 - - uid: 582 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1 - - uid: 583 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 1 - - uid: 584 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 1 - - uid: 585 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 1 - - uid: 586 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 1 - - uid: 587 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1 - - uid: 588 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1 - - uid: 589 - components: - - type: Transform - pos: -20.5,-36.5 - parent: 1 - - uid: 590 - components: - - type: Transform - pos: -20.5,-34.5 - parent: 1 + - type: Fixtures + fixtures: {} - proto: BedsheetMedical entities: - uid: 545 @@ -5755,6 +5677,8 @@ entities: - type: Transform pos: -4.5,-38.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: ClothingHandsGlovesColorYellow entities: - uid: 1627 @@ -7254,7 +7178,7 @@ entities: pos: -12.5,-25.5 parent: 1 - type: Door - secondsUntilStateChange: -1803.3232 + secondsUntilStateChange: -1900.3647 state: Opening - type: DeviceLinkSource lastSignals: @@ -11011,6 +10935,8 @@ entities: - type: Transform pos: -10.5,-19.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 244 @@ -11982,133 +11908,185 @@ entities: - type: Transform pos: -10.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2380 components: - type: Transform pos: -8.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2381 components: - type: Transform pos: -12.5,14.5 parent: 1 - - uid: 2384 - components: - - type: Transform - pos: -16.5,21.5 - parent: 1 - - uid: 2385 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1 - - uid: 2386 - components: - - type: Transform - pos: -2.5,14.5 - parent: 1 - - uid: 2387 - components: - - type: Transform - pos: -18.5,14.5 - parent: 1 - - uid: 2388 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 1 - - uid: 2389 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 1 - - uid: 2390 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 1 - - uid: 2391 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 1 - - uid: 2392 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1 - - uid: 2393 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1 - - uid: 2394 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 1 - - uid: 2395 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 1 - - uid: 2396 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 1 - - uid: 2397 - components: - - type: Transform - pos: -8.5,-28.5 - parent: 1 - - uid: 2398 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 1 - - uid: 2399 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 1 - - uid: 2400 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 1 - - uid: 2401 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1 - - uid: 2402 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 1 - - uid: 2403 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 1 - - uid: 2405 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 1 + - type: Fixtures + fixtures: {} - uid: 2382 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2383 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2384 + components: + - type: Transform + pos: -16.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2385 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2386 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2387 + components: + - type: Transform + pos: -18.5,14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2388 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2389 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2390 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2391 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2392 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2393 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2394 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2395 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2396 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2397 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2398 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2399 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2400 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2401 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2402 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2403 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2405 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: ShuttleWindow entities: - uid: 7 @@ -12603,11 +12581,15 @@ entities: - type: Transform pos: -13.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2086 components: - type: Transform pos: -7.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 1603 @@ -12615,11 +12597,15 @@ entities: - type: Transform pos: -9.5,-34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1604 components: - type: Transform pos: -11.5,-34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1597 @@ -12627,11 +12613,15 @@ entities: - type: Transform pos: -14.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1617 components: - type: Transform pos: -6.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignSec entities: - uid: 1560 @@ -12639,11 +12629,15 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1595 components: - type: Transform pos: -6.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Sink entities: - uid: 636 diff --git a/Resources/Maps/_Sunrise/Shuttles/mining.yml b/Resources/Maps/_Sunrise/Shuttles/mining.yml index 2cd67e65f2..05c4cf3992 100644 --- a/Resources/Maps/_Sunrise/Shuttles/mining.yml +++ b/Resources/Maps/_Sunrise/Shuttles/mining.yml @@ -1,31 +1,20 @@ meta: - format: 7 - category: Grid - engineVersion: 262.0.0 - forkId: "" - forkVersion: "" - time: 08/02/2025 20:44:44 - entityCount: 166 -maps: [] -grids: -- 181 -orphans: -- 181 -nullspace: [] + format: 6 + postmapinit: false tilemap: 0: Space - 51: FloorGrayConcrete - 89: FloorSteel - 104: FloorTechMaint - 120: Lattice - 121: Plating + 66: FloorMetalDiamond + 108: FloorTechMaint + 122: FloorWood + 125: Lattice + 126: Plating entities: - proto: "" entities: - uid: 181 components: - type: MetaData - name: NT-Reclaimer + name: NTMS-632 "Рудокоп" - type: Transform pos: 2.2710133,-2.4148211 parent: invalid @@ -33,20 +22,20 @@ entities: chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAzAAAAAAAAMwAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAMwAAAAAAADMAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: eQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAA== - version: 7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -56,7 +45,6 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} - - type: SalvageShuttle - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -64,377 +52,90 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 4: -5,-3 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 3: -3,1 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 5: -1,-3 - - node: - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 185: -3,-5 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 183: -5,-5 - 184: -1,-5 - 188: -6,1 - 189: -5,1 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 14: -3,2 - 15: -3,3 - 16: -3,4 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 2: -4,-1 - 186: -6,2 - 187: -5,2 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 49: -3,-6 - 50: -4,-6 - 51: -2,1 - 52: -4,2 - 53: -1,1 - 54: 0,2 - 55: -2,3 + 1: -3,-6 + 2: -4,-6 + 3: -2,1 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 19: -4,-3 - 20: -2,2 - 21: -3,4 - 22: -4,5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 28: -4,1 - 29: -3,2 - 30: -3,3 - 31: -2,4 - 32: -3,5 - 33: -2,-1 - 34: -3,-2 - 35: -2,-3 - 36: -3,-3 - 37: -3,-4 - 38: -2,-5 - 39: -1,-4 - 40: -1,-3 - 41: -3,-5 - 42: -4,-4 - 43: -5,-5 - 44: -5,-4 - 45: -5,-3 - 46: -5,-2 - 47: -4,-2 - 48: -1,-2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 23: -2,-4 - 24: -4,-5 - 25: -2,-2 - 26: -3,-1 - 27: -3,1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 8: -5,-2 - 9: -5,-1 - 18: -3,1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 12: -1,-5 - 13: -1,-4 - 17: -3,5 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 6: -5,-5 - 7: -5,-4 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 10: -1,-1 - 11: -1,-2 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE - decals: - 182: -5,-5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSW - decals: - 181: -1,-5 - - node: - color: '#FFFFFFFF' - id: WarnEndN - decals: - 1: 0,2 - - node: - color: '#FFFFFFFF' - id: WarnEndS - decals: - 0: 0,1 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 178: -2,-5 - 179: -3,-5 - 180: -4,-5 - - node: - angle: -4.71238898038469 rad - color: '#00000034' - id: footprint - decals: - 120: -0.76830435,-4.312702 - 121: -1.1120543,-3.9220772 - 122: -1.2370543,-4.406452 - 123: -1.7526793,-4.109577 - 124: -1.7526793,-4.500202 - 125: -0.75267935,-2.5314522 - 126: -1.3308043,-2.1720772 - 127: -1.3933043,-2.6564522 - - node: - cleanable: True - angle: -3.141592653589793 rad - color: '#00000034' - id: footprint - decals: - 104: -2.8151793,1.7528267 - 105: -3.2995543,2.2528267 - 106: -2.8308043,2.3622017 - 107: -2.2995543,2.7372017 - 108: -2.3933043,1.1278267 - 109: -2.1276793,-1.5909233 - 110: -2.4089293,-1.9971733 - 111: -1.9245543,-2.6690483 - 112: -2.3620543,-3.0909233 - 113: -1.8776793,-3.6846733 - 114: -2.2683043,-4.0284233 - - node: - angle: -1.5707963267948966 rad - color: '#00000034' - id: footprint - decals: - 128: -1.2839293,-3.3127022 - 129: -0.94017935,-3.5627022 - 130: -5.2526793,-2.4064522 - 131: -4.8620543,-2.2814522 - 132: -4.2526793,-2.6720772 - 133: -4.0026793,-2.3595772 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#00000034' - id: footprint - decals: - 115: -5.1901793,-3.6720772 - 116: -4.7683043,-3.3752022 - 117: -4.2683043,-3.7970772 - 118: -4.0026793,-3.5002022 - 119: -3.4089293,-3.8908272 - - node: - angle: -1.5707963267948966 rad - color: '#0000004A' - id: footprint - decals: - 134: -5.1901793,-3.430749 - 135: -4.8464293,-3.602624 - 136: -4.4245543,-3.258874 - 137: -3.9558043,-3.586999 - 138: -3.5808043,-3.180749 - 139: -5.3776793,-4.086999 - 140: -4.5808043,-3.711999 + 0: -2,2 - node: color: '#0000004A' id: footprint decals: - 141: -2.6433043,-2.883874 - 142: -2.3776793,-2.508874 - 143: -2.8933043,-1.8994989 - 144: -2.3933043,-1.5869989 - 145: -2.7683043,-0.89949894 - 146: -2.2370543,-0.71199894 + 16: -2.7683043,-0.89949894 - node: cleanable: True angle: -4.71238898038469 rad color: '#00000050' id: footprint decals: - 71: 0.44651008,1.0549397 - 72: -0.13161492,0.82056475 - 73: -0.49098992,1.0393147 - 74: -1.2097399,0.99243975 - 75: -1.6472399,1.2893147 - 76: -1.8659899,0.96118975 - 77: -2.89724,1.1486897 - 78: -4.1628647,1.2111897 - 79: -6.5534897,1.4611897 - 80: -6.7253647,1.1330647 + 8: -1.6472399,1.2893147 + 9: -1.8659899,0.96118975 - node: cleanable: True angle: -1.5707963267948966 rad color: '#00000050' id: footprint decals: - 64: -1.8659899,1.6955647 - 65: -1.5847399,1.2893147 - 66: -0.9753649,1.5861897 - 67: -0.28786492,1.2893147 - 68: 0.08713508,1.6643147 - 69: 0.5402601,1.4455647 - 70: 0.6652601,1.8518147 + 6: -1.8659899,1.6955647 + 7: 0.6652601,1.8518147 - node: cleanable: True color: '#00000050' id: footprint decals: - 56: -2.61599,-0.929533 - 57: -2.86599,-0.648283 - 58: -3.11599,2.4611897 - 59: -2.787865,3.2268147 - 60: -2.86599,2.8205647 - 61: -3.11599,3.0393147 - 62: -3.08474,3.5393147 - 63: -2.67849,4.1486897 - 98: -3.162865,1.6799397 - 99: -2.39724,2.1643147 - 100: -2.037865,2.3674397 - 101: -2.39724,2.9768147 - 102: -3.17849,3.8205647 - 103: -3.569115,2.5705647 + 4: -2.61599,-0.929533 + 5: -2.86599,-0.648283 - node: cleanable: True angle: 1.5707963267948966 rad color: '#00000050' id: footprint decals: - 92: -1.7566149,0.91431475 - 93: -2.225365,1.7580647 - 94: -1.8503649,2.0861897 - 95: -1.5222399,2.1330647 - 96: -1.0847399,1.3049397 - 97: -2.569115,1.6955647 + 14: -1.7566149,0.91431475 + 15: -1.8503649,2.0861897 - node: cleanable: True angle: 4.71238898038469 rad color: '#00000050' id: footprint decals: - 81: -6.7878647,2.0080647 - 82: -6.5222397,1.8049397 - 83: -4.5691147,2.0080647 - 84: -4.1941147,1.7424397 - 85: -3.86599,1.9455647 - 86: -6.5534897,0.69556475 - 87: -4.4597397,0.89868975 - 88: -4.1941147,1.2268147 - 89: -3.70974,1.0080647 - 90: -3.975365,0.75806475 - 91: -3.694115,1.4143147 - - node: - cleanable: True - color: '#0000001F' - id: splatter - decals: - 147: -3.6745543,-4.4900737 - 148: -3.9714293,-4.5369487 - 149: -3.4714293,-5.0681987 - 150: -4.2370543,-4.9744487 - 151: -1.5495543,-1.4431987 - 152: -1.7058043,-1.2713237 - 153: -1.2058043,-1.3650737 - 154: -1.0339293,-1.9119487 + 10: -6.7878647,2.0080647 + 11: -6.5222397,1.8049397 + 12: -3.70974,1.0080647 + 13: -3.975365,0.75806475 - node: cleanable: True color: '#A461060F' id: splatter decals: - 155: -1.4245543,-4.7713237 - 156: -1.7526793,-4.3650737 - 157: -4.0808043,-1.8806987 - 158: -4.3464293,-1.9119487 - 159: -3.5183043,-2.8338237 - 160: -4.8620543,-4.0994487 - 161: -4.4714293,-4.7869487 - 162: -3.9245543,-5.9275737 - 163: -3.4558043,-6.0838237 - 164: -2.6433043,1.3849263 - 165: -2.1589293,1.6661763 - 166: -2.4558043,1.8224263 - 167: -2.4089293,1.1193013 - - node: - cleanable: True - color: '#D381C909' - id: splatter - decals: - 168: -2.5808043,-4.6931987 - - node: - cleanable: True - color: '#EFB34109' - id: splatter - decals: - 169: -4.6901793,-1.6619487 - 170: -3.7370543,-1.4275737 - 171: -3.2995543,-1.4588237 - 172: -3.5651793,-0.8494487 - 173: -3.5339293,4.1436462 - 174: -3.3464293,3.6905212 - 175: -4.0495543,3.1123965 - 176: -3.9870543,3.6592712 - 177: -2.3151793,4.6123962 + 17: -3.9245543,-5.9275737 + 18: -3.4558043,-6.0838237 - type: GridAtmosphere version: 2 data: tiles: -2,-1: - 0: 52428 - 1: 8192 + 0: 26214 + 1: 34952 -1,-3: 0: 65504 -1,-1: - 0: 65535 + 1: 36863 + 0: 28672 -1,-2: - 0: 65535 + 0: 4095 + 1: 61440 -2,1: - 0: 52428 + 0: 52462 -1,0: 0: 65535 -1,1: @@ -476,13 +177,14 @@ entities: -1,4: 0: 140 -2,0: - 0: 52428 - 1: 8738 + 0: 61166 -2,2: 0: 140 -2,-2: - 0: 32768 - 1: 19656 + 0: 27848 + 1: 33318 + -2,-3: + 1: 59392 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -517,91 +219,235 @@ entities: chunkSize: 4 - type: OccluderTree - type: Shuttle - dampingModifier: 0.25 - type: RadiationGridResistance - type: SpreaderGrid - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: GridPathfinding - - type: ImplicitRoof -- proto: AirlockCargoGlass + - type: SalvageShuttle +- proto: AirCanister entities: - - uid: 29 + - uid: 21 components: - type: Transform - pos: -2.5,0.5 + pos: -1.5,-4.5 parent: 181 - - uid: 127 - components: - - type: Transform - pos: -1.5,0.5 - parent: 181 -- proto: AirlockExternal +- proto: AirlockExternalGlassShuttleLocked entities: - - uid: 49 + - uid: 87 components: - type: Transform - pos: -0.5,2.5 + rot: -1.5707963267948966 rad + pos: -6.5,2.5 parent: 181 - - uid: 54 - components: - - type: Transform - pos: -0.5,1.5 - parent: 181 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 181 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 162: - - - DoorStatus - - DoorBolt - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 181 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 161: - - - DoorStatus - - DoorBolt -- proto: AirlockShuttle - entities: - - uid: 4 + - uid: 118 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 181 - - uid: 13 +- proto: AirlockMiningGlassLocked + entities: + - uid: 4 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: -2.5,-0.5 + parent: 181 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 5 + - type: DeviceLinkSource + linkedPorts: + 5: + - DoorStatus: DoorBolt + - uid: 5 + components: + - type: Transform + pos: -2.5,1.5 + parent: 181 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 4 + - type: DeviceLinkSource + linkedPorts: + 4: + - DoorStatus: DoorBolt +- proto: AirlockMiningLocked + entities: + - uid: 1 + components: + - type: Transform + pos: -2.5,-5.5 parent: 181 - proto: APCBasic entities: - - uid: 7 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 181 + - uid: 77 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 181 - - uid: 68 +- proto: AtmosDeviceFanTiny + entities: + - uid: 13 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,3.5 + pos: 1.5,2.5 + parent: 181 + - uid: 34 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 181 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 181 +- proto: AtmosFixBlockerMarker + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 181 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 181 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 181 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 181 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 181 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 181 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 181 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 181 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 181 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 181 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 181 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 181 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 181 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 181 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 181 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 181 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 181 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 181 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 181 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 181 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 181 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 parent: 181 - proto: BlastDoorExterior1 entities: @@ -610,73 +456,67 @@ entities: - type: Transform pos: -5.5,-2.5 parent: 181 + - type: DeviceLinkSink + links: + - 100 - uid: 47 components: - type: Transform pos: -5.5,-3.5 parent: 181 + - type: DeviceLinkSink + links: + - 100 - uid: 69 components: - type: Transform pos: -5.5,-1.5 parent: 181 + - type: DeviceLinkSink + links: + - 100 +- proto: BlastDoorExterior2 + entities: + - uid: 46 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 181 + - type: DeviceLinkSink + links: + - 105 + - uid: 94 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 181 + - type: DeviceLinkSink + links: + - 105 + - uid: 95 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 181 + - type: DeviceLinkSink + links: + - 105 +- proto: BorgCharger + entities: + - uid: 74 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 181 +- proto: BoxFolderBlue + entities: + - uid: 2 + components: + - type: Transform + pos: -3.6931303,4.944748 + parent: 181 - proto: CableApcExtension entities: - - uid: 1 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 181 - - uid: 3 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 181 - - uid: 15 - components: - - type: Transform - pos: -4.5,3.5 - parent: 181 - - uid: 21 - components: - - type: Transform - pos: -3.5,3.5 - parent: 181 - - uid: 28 - components: - - type: Transform - pos: -2.5,3.5 - parent: 181 - - uid: 32 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 181 - - uid: 38 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 181 - - uid: 41 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 181 - - uid: 42 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 181 - - uid: 43 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 181 - - uid: 44 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 181 - uid: 45 components: - type: Transform @@ -687,108 +527,213 @@ entities: - type: Transform pos: -3.5,-5.5 parent: 181 - - uid: 53 + - uid: 55 components: - type: Transform - pos: -4.5,-2.5 + pos: -3.5,3.5 + parent: 181 + - uid: 56 + components: + - type: Transform + pos: -1.5,3.5 + parent: 181 + - uid: 57 + components: + - type: Transform + pos: -1.5,1.5 parent: 181 - uid: 61 components: - type: Transform pos: -0.5,-5.5 parent: 181 - - uid: 62 + - uid: 67 components: - type: Transform - pos: -2.5,4.5 + pos: 0.5,-8.5 parent: 181 - - uid: 63 + - uid: 68 components: - type: Transform - pos: -2.5,2.5 - parent: 181 - - uid: 64 - components: - - type: Transform - pos: -2.5,1.5 - parent: 181 - - uid: 65 - components: - - type: Transform - pos: -2.5,5.5 - parent: 181 - - uid: 66 - components: - - type: Transform - pos: -1.5,2.5 - parent: 181 - - uid: 82 - components: - - type: Transform - pos: -0.5,2.5 - parent: 181 - - uid: 83 - components: - - type: Transform - pos: -4.5,1.5 - parent: 181 - - uid: 84 - components: - - type: Transform - pos: -3.5,1.5 - parent: 181 - - uid: 132 - components: - - type: Transform - pos: 0.5,2.5 - parent: 181 - - uid: 144 - components: - - type: Transform - pos: -5.5,1.5 - parent: 181 - - uid: 165 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 181 - - uid: 168 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 181 -- proto: CableHV - entities: - - uid: 6 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 181 - - uid: 58 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 181 - - uid: 59 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 181 - - uid: 74 - components: - - type: Transform - pos: -3.5,-5.5 + pos: -0.5,0.5 parent: 181 - uid: 75 components: - type: Transform - pos: -2.5,-6.5 + pos: -5.5,-8.5 parent: 181 - - uid: 76 + - uid: 88 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 181 + - uid: 99 components: - type: Transform pos: -4.5,-5.5 parent: 181 + - uid: 102 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 181 + - uid: 110 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 181 + - uid: 123 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 181 + - uid: 128 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 181 + - uid: 129 + components: + - type: Transform + pos: -4.5,0.5 + parent: 181 + - uid: 133 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 181 + - uid: 136 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 181 + - uid: 148 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 181 + - uid: 150 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 181 + - uid: 160 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 181 + - uid: 161 + components: + - type: Transform + pos: -4.5,3.5 + parent: 181 + - uid: 162 + components: + - type: Transform + pos: -4.5,2.5 + parent: 181 + - uid: 163 + components: + - type: Transform + pos: -4.5,1.5 + parent: 181 + - uid: 164 + components: + - type: Transform + pos: -5.5,1.5 + parent: 181 + - uid: 166 + components: + - type: Transform + pos: -0.5,3.5 + parent: 181 + - uid: 167 + components: + - type: Transform + pos: -0.5,2.5 + parent: 181 + - uid: 169 + components: + - type: Transform + pos: -0.5,1.5 + parent: 181 + - uid: 170 + components: + - type: Transform + pos: 0.5,1.5 + parent: 181 + - uid: 177 + components: + - type: Transform + pos: -2.5,3.5 + parent: 181 + - uid: 178 + components: + - type: Transform + pos: -2.5,2.5 + parent: 181 + - uid: 179 + components: + - type: Transform + pos: -2.5,1.5 + parent: 181 + - uid: 183 + components: + - type: Transform + pos: -2.5,0.5 + parent: 181 + - uid: 188 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 181 + - uid: 195 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 181 + - uid: 199 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 181 + - uid: 200 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 181 + - uid: 225 + components: + - type: Transform + pos: -3.5,1.5 + parent: 181 +- proto: CableHV + entities: + - uid: 40 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 181 + - uid: 63 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 181 + - uid: 97 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 181 + - uid: 115 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 181 + - uid: 144 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 181 - proto: CableMV entities: - uid: 8 @@ -801,16 +746,6 @@ entities: - type: Transform pos: -2.5,-3.5 parent: 181 - - uid: 10 - components: - - type: Transform - pos: -2.5,2.5 - parent: 181 - - uid: 11 - components: - - type: Transform - pos: -2.5,3.5 - parent: 181 - uid: 12 components: - type: Transform @@ -826,20 +761,15 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 181 - - uid: 18 - components: - - type: Transform - pos: -4.5,3.5 - parent: 181 - uid: 19 components: - type: Transform pos: -2.5,0.5 parent: 181 - - uid: 20 + - uid: 29 components: - type: Transform - pos: -3.5,3.5 + pos: -1.5,1.5 parent: 181 - uid: 31 components: @@ -871,220 +801,396 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 181 -- proto: CableTerminal - entities: - - uid: 77 + - uid: 89 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 181 -- proto: Catwalk - entities: - - uid: 48 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 181 -- proto: Chair - entities: - - uid: 55 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 181 -- proto: ComputerBroken - entities: - - uid: 120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 181 -- proto: ComputerShuttle - entities: - - uid: 156 - components: - - type: Transform - pos: -2.5,6.5 - parent: 181 -- proto: FloodlightBroken - entities: - - uid: 67 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 181 -- proto: GasCanisterBrokenBase - entities: - - uid: 106 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 181 -- proto: GasPort - entities: - - uid: 25 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 181 -- proto: GasVentPump - entities: - - uid: 26 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 181 -- proto: GravityGeneratorMini - entities: - - uid: 39 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 181 -- proto: Grille - entities: - - uid: 14 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 181 - - uid: 33 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 181 - - uid: 34 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 181 - - uid: 50 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 181 - - uid: 56 - components: - - type: Transform - pos: -3.5,6.5 - parent: 181 - - uid: 57 - components: - - type: Transform - pos: -0.5,5.5 - parent: 181 - - uid: 136 - components: - - type: Transform - pos: -2.5,7.5 - parent: 181 - - uid: 151 - components: - - type: Transform - pos: -1.5,6.5 - parent: 181 -- proto: GrilleDiagonal - entities: - - uid: 46 - components: - - type: Transform - pos: -4.5,6.5 - parent: 181 - - uid: 101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,6.5 + pos: -2.5,-6.5 parent: 181 - uid: 121 components: - type: Transform - pos: -3.5,7.5 + pos: -3.5,-6.5 parent: 181 -- proto: Gyroscope + - uid: 175 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 181 +- proto: CableTerminal entities: - - uid: 131 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 181 +- proto: Catwalk + entities: + - uid: 10 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 181 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 181 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 181 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 181 + - uid: 127 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 181 + - uid: 174 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 181 + - uid: 196 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 181 +- proto: ChairPilotSeat + entities: + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 181 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 181 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 181 + - uid: 235 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-5.5 + pos: -3.5,3.5 parent: 181 -- proto: InflatableDoor +- proto: ComputerRadar entities: - - uid: 93 + - uid: 223 components: - type: Transform - pos: -4.5,2.5 + pos: -1.5,5.5 parent: 181 -- proto: InflatableWall +- proto: ComputerShuttle entities: - - uid: 130 + - uid: 28 components: - type: Transform - pos: -5.5,3.5 + pos: -2.5,5.5 parent: 181 - - uid: 133 +- proto: DonkpocketBoxSpawner + entities: + - uid: 240 components: - type: Transform - pos: -0.5,-5.5 + pos: -0.5,1.5 parent: 181 - - uid: 134 +- proto: DrinkMugGreen + entities: + - uid: 238 + components: + - type: Transform + pos: -0.31458282,1.4341538 + parent: 181 +- proto: DrinkMugOne + entities: + - uid: 239 + components: + - type: Transform + pos: -0.37708282,1.7781429 + parent: 181 +- proto: FaxMachineBase + entities: + - uid: 197 + components: + - type: Transform + pos: -3.5,5.5 + parent: 181 + - type: FaxMachine + name: NTMS-632 "Рудокоп" +- proto: Floodlight + entities: + - uid: 26 + components: + - type: Transform + pos: 0.35328293,3.672319 + parent: 181 + - uid: 62 + components: + - type: Transform + pos: 0.70018744,3.5922637 + parent: 181 +- proto: GasPipeBend + entities: + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 181 + - uid: 23 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 181 +- proto: GasPipeStraight + entities: + - uid: 20 + components: + - type: Transform + pos: -2.5,0.5 + parent: 181 + - uid: 25 + components: + - type: Transform + pos: -2.5,1.5 + parent: 181 + - uid: 42 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 181 + - uid: 43 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 181 +- proto: GasPort + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 181 +- proto: GasPressurePump + entities: + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 181 +- proto: GasVentPump + entities: + - uid: 33 + components: + - type: Transform + pos: -2.5,2.5 + parent: 181 +- proto: GeneratorBasic15kW + entities: + - uid: 91 components: - type: Transform pos: -0.5,-6.5 parent: 181 - - uid: 135 + - uid: 138 components: - type: Transform - pos: 0.5,-5.5 + pos: -0.5,-7.5 parent: 181 - - uid: 137 +- proto: GravityGeneratorMini + entities: + - uid: 49 components: - type: Transform - pos: -3.5,0.5 + pos: -4.5,-6.5 parent: 181 - - uid: 139 +- proto: Grille + entities: + - uid: 119 components: - type: Transform - pos: 0.5,-2.5 + pos: -2.5,6.5 parent: 181 -- proto: PortableGeneratorPacman + - uid: 120 + components: + - type: Transform + pos: -3.5,6.5 + parent: 181 + - uid: 125 + components: + - type: Transform + pos: -1.5,6.5 + parent: 181 +- proto: Gyroscope + entities: + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 181 +- proto: HandheldGPSBasic + entities: + - uid: 41 + components: + - type: Transform + pos: -0.5540042,3.7110457 + parent: 181 + - uid: 90 + components: + - type: Transform + pos: -0.7141143,3.5776207 + parent: 181 +- proto: HeadBorgMining + entities: + - uid: 243 + components: + - type: Transform + pos: -1.5019208,-7.167929 + parent: 181 +- proto: LeftArmBorgMining + entities: + - uid: 245 + components: + - type: Transform + pos: -1.2517962,-7.6630273 + parent: 181 +- proto: LeftLegBorgMining + entities: + - uid: 244 + components: + - type: Transform + pos: -1.7728889,-7.7776904 + parent: 181 +- proto: MiningWindow + entities: + - uid: 11 + components: + - type: Transform + pos: -3.5,6.5 + parent: 181 + - uid: 27 + components: + - type: Transform + pos: -2.5,6.5 + parent: 181 + - uid: 30 + components: + - type: Transform + pos: -1.5,6.5 + parent: 181 +- proto: OreBag + entities: + - uid: 109 + components: + - type: Transform + pos: -0.40723705,-4.6490054 + parent: 181 + - uid: 132 + components: + - type: Transform + pos: -0.6073743,-4.5155807 + parent: 181 +- proto: OxygenCanister + entities: + - uid: 15 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 181 +- proto: PaperBin10 + entities: + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 181 +- proto: Pen + entities: + - uid: 124 + components: + - type: Transform + pos: -3.2128017,4.9047213 + parent: 181 +- proto: PersonalAI + entities: + - uid: 242 + components: + - type: Transform + pos: -3.4403822,5.071967 + parent: 181 +- proto: Pickaxe + entities: + - uid: 81 + components: + - type: Transform + pos: -4.4633484,-4.5022383 + parent: 181 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5434036,-4.46221 + parent: 181 +- proto: PowerCellRecharger entities: - uid: 108 components: - type: Transform - pos: -1.5,-6.5 + pos: -4.5,3.5 parent: 181 - proto: PoweredSmallLight entities: - - uid: 138 + - uid: 39 components: - type: Transform - pos: -5.5,2.5 + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 parent: 181 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 140 + - uid: 78 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: -2.5,0.5 parent: 181 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 141 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 181 + - uid: 113 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 181 - - type: ApcPowerReceiver - powerLoad: 0 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 181 - uid: 143 components: - type: Transform @@ -1093,130 +1199,67 @@ entities: parent: 181 - type: ApcPowerReceiver powerLoad: 0 -- proto: PoweredSmallLightEmpty - entities: - - uid: 125 + - uid: 158 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 181 + - uid: 186 components: - type: Transform pos: -0.5,-0.5 parent: 181 -- proto: Rack - entities: - - uid: 27 + - uid: 192 components: - type: Transform - pos: -1.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,-4.5 parent: 181 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 181 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 181 +- proto: Rack + entities: - uid: 52 components: - type: Transform pos: -0.5,-4.5 parent: 181 -- proto: RandomPosterAny + - uid: 122 + components: + - type: Transform + pos: 0.5,3.5 + parent: 181 + - uid: 176 + components: + - type: Transform + pos: -5.5,3.5 + parent: 181 + - uid: 189 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 181 +- proto: RadioHandheld entities: - - uid: 22 + - uid: 80 components: - type: Transform - pos: -0.5,3.5 + pos: -0.38055277,3.6710186 parent: 181 - - uid: 23 + - uid: 114 components: - type: Transform - pos: -4.5,-6.5 - parent: 181 -- proto: RandomSpawner100 - entities: - - uid: 142 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 181 - - uid: 146 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 181 - - uid: 148 - components: - - type: Transform - pos: -3.5,2.5 - parent: 181 - - uid: 149 - components: - - type: Transform - pos: -2.5,5.5 - parent: 181 - - uid: 150 - components: - - type: Transform - pos: 0.5,2.5 - parent: 181 - - uid: 152 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 181 - - uid: 153 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 181 - - uid: 155 - components: - - type: Transform - pos: -5.5,1.5 - parent: 181 - - uid: 157 - components: - - type: Transform - pos: -3.5,4.5 - parent: 181 - - uid: 158 - components: - - type: Transform - pos: -1.5,3.5 - parent: 181 - - uid: 159 - components: - - type: Transform - pos: -1.5,1.5 - parent: 181 -- proto: ScrapFaxMachine - entities: - - uid: 115 - components: - - type: Transform - pos: -1.5,5.5 - parent: 181 -- proto: ScrapFirelock1 - entities: - - uid: 129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 181 -- proto: ScrapGeneratorPlasmaLeaking - entities: - - uid: 111 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 181 -- proto: ScrapGlass - entities: - - uid: 97 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 181 -- proto: ScrapPAI - entities: - - uid: 30 - components: - - type: Transform - pos: -1.5,4.5 + pos: -0.2604699,3.5109086 parent: 181 - proto: SignalButtonExt1 entities: @@ -1228,273 +1271,471 @@ entities: - type: DeviceLinkSource linkedPorts: 69: - - - Pressed - - Toggle + - Pressed: Toggle 37: - - - Pressed - - Toggle + - Pressed: Toggle 47: - - - Pressed - - Toggle -- proto: SMESBasic + - Pressed: Toggle +- proto: SignalButtonExt2 entities: - - uid: 24 + - uid: 105 components: - type: Transform - pos: -2.5,-6.5 + pos: 0.5,-0.5 parent: 181 -- proto: SubstationWallBasic + - type: DeviceLinkSource + linkedPorts: + 94: + - Pressed: Toggle + 95: + - Pressed: Toggle + 46: + - Pressed: Toggle +- proto: SMESBasic entities: - - uid: 5 + - uid: 44 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 181 +- proto: SubstationBasic + entities: + - uid: 53 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 181 +- proto: Table + entities: + - uid: 59 + components: + - type: Transform + pos: -3.5,5.5 + parent: 181 + - uid: 149 + components: + - type: Transform + pos: -4.5,3.5 + parent: 181 + - uid: 151 + components: + - type: Transform + pos: -0.5,3.5 + parent: 181 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 181 + - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 181 - - type: CMExplosionEffect -- proto: Table - entities: - - uid: 154 - components: - - type: Transform - pos: -1.5,5.5 + pos: -0.5,1.5 parent: 181 - proto: Thruster entities: + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 181 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 181 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 181 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 181 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 181 + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 181 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 181 + - uid: 226 + components: + - type: Transform + pos: -5.5,5.5 + parent: 181 + - uid: 227 + components: + - type: Transform + pos: 0.5,5.5 + parent: 181 +- proto: TorsoBorgMining + entities: + - uid: 246 + components: + - type: Transform + pos: -1.4602338,-7.5570865 + parent: 181 +- proto: VendingMachineSalvage + entities: + - uid: 7 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 181 +- proto: WallMining + entities: + - uid: 6 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 181 + - uid: 32 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 181 - uid: 35 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 181 + - uid: 36 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 181 + - uid: 50 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 181 + - uid: 66 + components: + - type: Transform + pos: -0.5,4.5 + parent: 181 + - uid: 79 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 181 + - uid: 82 + components: + - type: Transform + pos: 1.5,4.5 + parent: 181 + - uid: 83 + components: + - type: Transform + pos: -3.5,1.5 + parent: 181 + - uid: 84 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 181 + - uid: 85 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 181 + - uid: 86 + components: + - type: Transform + pos: 1.5,1.5 + parent: 181 + - uid: 92 + components: + - type: Transform + pos: 0.5,0.5 + parent: 181 + - uid: 93 + components: + - type: Transform + pos: -1.5,0.5 + parent: 181 + - uid: 96 + components: + - type: Transform + pos: -0.5,0.5 + parent: 181 + - uid: 98 + components: + - type: Transform + pos: -0.5,5.5 + parent: 181 + - uid: 103 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 181 + - uid: 104 + components: + - type: Transform + pos: 1.5,0.5 + parent: 181 + - uid: 112 + components: + - type: Transform + pos: -6.5,3.5 + parent: 181 + - uid: 116 + components: + - type: Transform + pos: -4.5,0.5 + parent: 181 + - uid: 117 + components: + - type: Transform + pos: -6.5,4.5 + parent: 181 + - uid: 130 + components: + - type: Transform + pos: -6.5,1.5 + parent: 181 + - uid: 135 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 181 + - uid: 145 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 181 + - uid: 146 + components: + - type: Transform + pos: -4.5,4.5 + parent: 181 + - uid: 152 components: - type: Transform pos: 0.5,4.5 parent: 181 - - uid: 94 + - uid: 153 + components: + - type: Transform + pos: -4.5,5.5 + parent: 181 + - uid: 154 + components: + - type: Transform + pos: -6.5,0.5 + parent: 181 + - uid: 159 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 181 + - uid: 165 + components: + - type: Transform + pos: -3.5,0.5 + parent: 181 + - uid: 168 + components: + - type: Transform + pos: -1.5,1.5 + parent: 181 + - uid: 173 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 181 + - uid: 187 + components: + - type: Transform + pos: 1.5,3.5 + parent: 181 + - uid: 190 components: - type: Transform pos: -5.5,4.5 parent: 181 - - uid: 119 + - uid: 191 + components: + - type: Transform + pos: -5.5,0.5 + parent: 181 + - uid: 202 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 181 + - uid: 204 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 181 + - uid: 206 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 181 + - uid: 247 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 181 - - uid: 128 + - uid: 248 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 181 + - uid: 249 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 181 + - uid: 250 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 181 + - uid: 251 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 181 + - uid: 252 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 181 + - uid: 253 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-6.5 parent: 181 - - uid: 160 + - uid: 254 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 181 + - uid: 255 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 181 +- proto: WallMiningDiagonal + entities: + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 181 + - uid: 205 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 181 - - uid: 163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 181 -- proto: WallSolid - entities: - - uid: 85 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 181 - - uid: 87 - components: - - type: Transform - pos: -4.5,3.5 - parent: 181 - - uid: 89 - components: - - type: Transform - pos: 0.5,0.5 - parent: 181 - - uid: 90 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 181 - - uid: 91 - components: - - type: Transform - pos: 1.5,3.5 - parent: 181 - - uid: 99 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 181 - - uid: 103 - components: - - type: Transform - pos: -6.5,3.5 - parent: 181 - - uid: 104 - components: - - type: Transform - pos: -0.5,3.5 - parent: 181 - - uid: 107 - components: - - type: Transform - pos: -4.5,4.5 - parent: 181 - - uid: 109 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 181 - - uid: 110 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 181 - - uid: 114 - components: - - type: Transform - pos: -5.5,0.5 - parent: 181 - - uid: 116 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 181 - - uid: 117 - components: - - type: Transform - pos: 0.5,3.5 - parent: 181 - - uid: 118 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 181 - - uid: 122 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 181 - - uid: 123 - components: - - type: Transform - pos: 1.5,0.5 - parent: 181 - - uid: 124 - components: - - type: Transform - pos: -6.5,0.5 - parent: 181 -- proto: WallSolidRust - entities: - - uid: 95 - components: - - type: Transform - pos: -6.5,2.5 - parent: 181 - - uid: 113 - components: - - type: Transform - pos: -0.5,0.5 - parent: 181 - - uid: 126 - components: - - type: Transform - pos: -4.5,0.5 - parent: 181 - - uid: 145 - components: - - type: Transform - pos: -0.5,4.5 - parent: 181 - - uid: 147 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 181 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 40 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 181 -- proto: Window - entities: - - uid: 2 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 181 - - uid: 36 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 181 - - uid: 78 - components: - - type: Transform - pos: -2.5,7.5 - parent: 181 - - uid: 79 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 181 - - uid: 81 - components: - - type: Transform - pos: -3.5,6.5 - parent: 181 - - uid: 86 - components: - - type: Transform - pos: -1.5,6.5 - parent: 181 - - uid: 88 - components: - - type: Transform - pos: -0.5,5.5 - parent: 181 - - uid: 96 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 181 - - uid: 98 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 181 - - uid: 102 - components: - - type: Transform - pos: -4.5,5.5 - parent: 181 -- proto: WindowDiagonal - entities: - - uid: 80 - components: - - type: Transform - pos: -3.5,7.5 - parent: 181 - - uid: 92 + - uid: 207 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 parent: 181 - - uid: 105 + - uid: 213 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 181 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 181 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 181 + - uid: 229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 181 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 181 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 181 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 181 + - uid: 233 components: - type: Transform pos: -4.5,6.5 parent: 181 - - uid: 112 + - uid: 234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 + pos: -6.5,5.5 + parent: 181 +- proto: WarpPoint + entities: + - uid: 203 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 181 + - type: WarpPoint + location: NTMS-632 "Рудокоп" +- proto: WaterCooler + entities: + - uid: 236 + components: + - type: Transform + pos: -4.5,1.5 + parent: 181 +- proto: WeaponProtoKineticAccelerator + entities: + - uid: 137 + components: + - type: Transform + pos: -5.530746,3.725446 + parent: 181 + - uid: 184 + components: + - type: Transform + pos: -5.4240065,3.4719396 parent: 181 ... diff --git a/Resources/Maps/_Sunrise/Shuttles/personal.yml b/Resources/Maps/_Sunrise/Shuttles/personal.yml new file mode 100644 index 0000000000..33d9f10f63 --- /dev/null +++ b/Resources/Maps/_Sunrise/Shuttles/personal.yml @@ -0,0 +1,917 @@ +meta: + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/17/2025 21:08:25 + entityCount: 129 +maps: [] +grids: +- 62 +orphans: +- 62 +nullspace: [] +tilemap: + 0: Space + 55: FloorMono + 59: FloorRGlass + 1: FloorShuttleBlue + 64: FloorShuttleOrange + 66: FloorShuttleRed + 67: FloorShuttleWhite + 95: Lattice + 96: Plating +entities: +- proto: "" + entities: + - uid: 62 + components: + - type: MetaData + name: NT Personal-110 + - type: Transform + pos: 0.07291666,1.7143848 + parent: invalid + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABDAAAAAAAAQwAAAAAAAEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAQwAAAAAAAEMAAAAAAABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAGAAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAAAAABDAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAAAAAAQwAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAAAAAAYAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAGAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAGAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,0: + ind: 0,0 + tiles: AQAAAAAAAGAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 30583 + -1,0: + 0: 239 + 0,0: + 0: 55 + -1,-3: + 0: 65024 + -1,-2: + 0: 65529 + 1: 2 + 2: 4 + 0,-3: + 0: 29440 + 0,-2: + 1: 1 + 0: 30580 + 2: 2 + 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: + - 21.213781 + - 79.80423 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 20.04244 + - 75.39776 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: RadiationGridResistance + - type: GasTileOverlay + - type: SpreaderGrid + - type: ImplicitRoof + - type: GravityShake + shakeTimes: 10 +- proto: AirCanister + entities: + - uid: 12 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 62 +- proto: AirlockCommand + entities: + - uid: 18 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 62 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 56 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 62 + - uid: 73 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 62 +- proto: APCBasic + entities: + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 62 + - type: Fixtures + fixtures: {} +- proto: CableApcExtension + entities: + - uid: 11 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 62 + - uid: 70 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 62 + - uid: 71 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 62 + - uid: 72 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 62 + - uid: 77 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 62 + - uid: 79 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 62 + - uid: 80 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 62 + - uid: 85 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 62 + - uid: 87 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 62 + - uid: 88 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 62 + - uid: 91 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 62 + - uid: 95 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 62 + - uid: 96 + components: + - type: Transform + pos: -0.5,0.5 + parent: 62 + - uid: 97 + components: + - type: Transform + pos: -1.5,0.5 + parent: 62 + - uid: 98 + components: + - type: Transform + pos: 0.5,0.5 + parent: 62 + - uid: 100 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 62 + - uid: 102 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 62 + - uid: 103 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 62 + - uid: 111 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 62 + - uid: 121 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 62 +- proto: CableHV + entities: + - uid: 99 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 62 + - uid: 104 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 62 +- proto: CableMV + entities: + - uid: 106 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 62 + - uid: 107 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 62 +- proto: ChairPilotSeat + entities: + - uid: 7 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 62 + - uid: 10 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 62 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 62 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 62 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 62 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 17 + components: + - type: Transform + pos: -0.23437434,-2.54319 + parent: 62 + - uid: 38 + components: + - type: Transform + pos: -0.7033577,-2.5744615 + parent: 62 + - uid: 47 + components: + - type: Transform + pos: -0.71377945,-2.1719494 + parent: 62 + - uid: 49 + components: + - type: Transform + pos: -0.14057857,-2.0636902 + parent: 62 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 37 + components: + - type: Transform + pos: -0.2864844,-2.5805764 + parent: 62 + - uid: 40 + components: + - type: Transform + pos: -0.27606136,-2.1740441 + parent: 62 + - uid: 41 + components: + - type: Transform + pos: -0.7658888,-2.611848 + parent: 62 + - uid: 48 + components: + - type: Transform + pos: -0.75546646,-2.2053158 + parent: 62 +- proto: ComputerShuttle + entities: + - uid: 66 + components: + - type: Transform + pos: -0.5,0.5 + parent: 62 +- proto: FoodBoxPizzaFilled + entities: + - uid: 118 + components: + - type: Transform + pos: -2.4234464,-2.3027515 + parent: 62 +- proto: GasPipeBend + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeTJunction + entities: + - uid: 115 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPort + entities: + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 62 +- proto: GasPressurePump + entities: + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 62 +- proto: GasVentPump + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 116 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 62 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GeneratorBasic15kW + entities: + - uid: 113 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 62 + - type: CMExplosionEffect +- proto: GravityGeneratorMini + entities: + - uid: 140 + components: + - type: Transform + pos: 0.5,0.5 + parent: 62 +- proto: Grille + entities: + - uid: 31 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 62 + - uid: 32 + components: + - type: Transform + pos: 1.5,0.5 + parent: 62 + - uid: 33 + components: + - type: Transform + pos: 0.5,1.5 + parent: 62 + - uid: 34 + components: + - type: Transform + pos: -0.5,1.5 + parent: 62 + - uid: 35 + components: + - type: Transform + pos: -1.5,1.5 + parent: 62 + - uid: 43 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 62 + - uid: 44 + components: + - type: Transform + pos: -2.5,0.5 + parent: 62 + - uid: 53 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 62 + - uid: 54 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 62 + - uid: 57 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 62 + - uid: 60 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 62 + - uid: 75 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 62 + - uid: 92 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 62 + - uid: 108 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 62 + - uid: 109 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 62 +- proto: Gyroscope + entities: + - uid: 67 + components: + - type: Transform + pos: -1.5,0.5 + parent: 62 +- proto: JetpackBlackFilled + entities: + - uid: 175 + components: + - type: Transform + pos: 1.2604167,-2.566079 + parent: 62 + - type: CMExplosionEffect + - uid: 176 + components: + - type: Transform + pos: 1.6458334,-2.3159053 + parent: 62 + - type: CMExplosionEffect + - uid: 177 + components: + - type: Transform + pos: 1.6770834,-2.6181984 + parent: 62 + - type: CMExplosionEffect + - uid: 178 + components: + - type: Transform + pos: 1.2708334,-2.2637858 + parent: 62 + - type: CMExplosionEffect +- proto: KnifePlastic + entities: + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.38178,-2.156817 + parent: 62 +- proto: Poweredlight + entities: + - uid: 64 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 62 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 62 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 62 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 69 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 62 + - uid: 187 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 62 +- proto: ShuttleWindow + entities: + - uid: 4 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 62 + - uid: 5 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 62 + - uid: 8 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 62 + - uid: 9 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 62 + - uid: 24 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 62 + - uid: 25 + components: + - type: Transform + pos: 1.5,0.5 + parent: 62 + - uid: 26 + components: + - type: Transform + pos: 0.5,1.5 + parent: 62 + - uid: 27 + components: + - type: Transform + pos: -0.5,1.5 + parent: 62 + - uid: 28 + components: + - type: Transform + pos: -1.5,1.5 + parent: 62 + - uid: 29 + components: + - type: Transform + pos: -2.5,0.5 + parent: 62 + - uid: 30 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 62 + - uid: 59 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 62 + - uid: 63 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 62 + - uid: 90 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 62 + - uid: 110 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 62 +- proto: SodaDispenser + entities: + - uid: 135 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 62 +- proto: SubstationWallBasic + entities: + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 62 + - type: CMExplosionEffect +- proto: TableReinforced + entities: + - uid: 1 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 62 + - uid: 2 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 62 + - uid: 188 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 62 + - uid: 189 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 62 +- proto: Thruster + entities: + - uid: 13 + components: + - type: Transform + pos: 2.5,0.5 + parent: 62 + - uid: 14 + components: + - type: Transform + pos: -3.5,0.5 + parent: 62 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 62 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 62 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 62 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 62 +- proto: WallShuttle + entities: + - uid: 19 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 62 + - uid: 20 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 62 + - uid: 39 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 62 + - uid: 42 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 62 + - uid: 45 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 62 + - uid: 51 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 62 + - uid: 58 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 62 +- proto: WallShuttleDiagonal + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 62 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 62 + - uid: 23 + components: + - type: Transform + pos: -2.5,1.5 + parent: 62 + - uid: 46 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 62 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 62 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 62 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 62 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 62 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 62 + - uid: 94 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 62 +- proto: WarpPoint + entities: + - uid: 3 + components: + - type: MetaData + name: NT Personal-110 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 62 +... diff --git a/Resources/Maps/_Sunrise/Station/box.yml b/Resources/Maps/_Sunrise/Station/box.yml index e8a5647a0b..7988d085b8 100644 --- a/Resources/Maps/_Sunrise/Station/box.yml +++ b/Resources/Maps/_Sunrise/Station/box.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 262.0.0 - forkId: sunrise_station - forkVersion: 4cafd52ff65607192f92311b98b8662c9527f24f - time: 07/25/2025 08:36:13 - entityCount: 32997 + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/17/2025 21:03:25 + entityCount: 33532 maps: - 1 grids: @@ -115,13 +115,13 @@ entities: - type: MetaData name: Box Station - type: Transform - pos: 0.50032806,0.50115013 + pos: 0.70223236,0.20741177 parent: 1 - type: MapGrid chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAQBoAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAACAB0AAAAAAgB2AAAAAAIAdgAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAEAaAAAAAAAAHkAAAAAAAAdAAAAAAAALQAAAAACAB0AAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAgAdAAAAAAAAdgAAAAADAHYAAAAAAQBZAAAAAAMAeQAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAHQAAAAABAC0AAAAAAAAdAAAAAAIAeQAAAAAAAGgAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAAAWQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAtAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAWQAAAAADAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAGgAAAAAAAAdAAAAAAIAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgBZAAAAAAMAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgAtAAAAAAMAWQAAAAACAC0AAAAAAQAtAAAAAAMALQAAAAAAAC0AAAAAAQAtAAAAAAMALQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAC0AAAAAAgAtAAAAAAMALQAAAAAAAC0AAAAAAgAtAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAMALQAAAAADAA== + tiles: WQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAQBoAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAACAB0AAAAAAgB2AAAAAAIAdgAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAEAaAAAAAAAAHkAAAAAAAAdAAAAAAAALQAAAAACAB0AAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAgAdAAAAAAAAdgAAAAADAHYAAAAAAQBZAAAAAAMAeQAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAHQAAAAABAC0AAAAAAAAdAAAAAAIAeQAAAAAAAGgAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAAAWQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAtAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAWQAAAAADAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAGgAAAAAAAAdAAAAAAIAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgBZAAAAAAMAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAQB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgAtAAAAAAMAWQAAAAACAC0AAAAAAQAtAAAAAAMALQAAAAAAAC0AAAAAAQAtAAAAAAMALQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAC0AAAAAAgAtAAAAAAMALQAAAAAAAC0AAAAAAgAtAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAMALQAAAAADAA== version: 7 0,0: ind: 0,0 @@ -129,7 +129,7 @@ entities: version: 7 0,-1: ind: 0,-1 - tiles: dgAAAAADAB0AAAAAAQB2AAAAAAEAdgAAAAACAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAMAaAAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAAAAHYAAAAAAgAdAAAAAAMAdgAAAAABAHYAAAAAAgB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAACAC0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwBoAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAEAeQAAAAAAAFkAAAAAAwAtAAAAAAEAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAAAaAAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAIALQAAAAADAGgAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAC0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAEAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAFkAAAAAAgAtAAAAAAEAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIALQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwAtAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAAAAC0AAAAAAwAtAAAAAAIALQAAAAAAAC0AAAAAAgAtAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAQAtAAAAAAEAWQAAAAACAC0AAAAAAAAtAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAADAA== + tiles: dgAAAAADAB0AAAAAAQB2AAAAAAEAdgAAAAACAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAMAaAAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAAAAHYAAAAAAgAdAAAAAAMAdgAAAAABAHYAAAAAAgB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAACAC0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwBoAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAEAeQAAAAAAAFkAAAAAAwAtAAAAAAEAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAAAaAAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAIALQAAAAADAGgAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAC0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAEAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAFkAAAAAAgAtAAAAAAEAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIALQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAFkAAAAAAwAtAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAAAAC0AAAAAAwAtAAAAAAIALQAAAAAAAC0AAAAAAgAtAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAQAtAAAAAAEAWQAAAAACAC0AAAAAAAAtAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAADAA== version: 7 -1,0: ind: -1,0 @@ -153,11 +153,11 @@ entities: version: 7 0,-2: ind: 0,-2 - tiles: WQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAC0AAAAAAABZAAAAAAAALQAAAAADAC0AAAAAAAAtAAAAAAMALQAAAAADAC0AAAAAAgAtAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEALQAAAAADAC0AAAAAAQAtAAAAAAIALQAAAAABAC0AAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQAtAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMALQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAADEAAAAAAQAxAAAAAAIAMQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAAAAC0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAAAAFkAAAAAAQBZAAAAAAMALQAAAAADABEAAAAAAAAdAAAAAAIAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAABAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwARAAAAAAAAHQAAAAACAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAAAEQAAAAAAAB0AAAAAAQB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAeQAAAAAAACwAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAABAB0AAAAAAAAdAAAAAAMAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAHkAAAAAAAAsAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAACAC0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgAsAAAAAAAALAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAFkAAAAAAgAtAAAAAAEAHQAAAAAAAB0AAAAAAAAPAAAAAAAADwAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAAALQAAAAAAAHYAAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAwB2AAAAAAIAHQAAAAABAHYAAAAAAwB2AAAAAAIAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAEAeQAAAAAAAFkAAAAAAgAtAAAAAAEAdgAAAAABAB0AAAAAAwB2AAAAAAIAdgAAAAADAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAMAaAAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAABAHkAAAAAAABZAAAAAAAALQAAAAADAA== + tiles: WQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAC0AAAAAAABZAAAAAAAALQAAAAADAC0AAAAAAAAtAAAAAAMALQAAAAADAC0AAAAAAgAtAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEALQAAAAADAC0AAAAAAQAtAAAAAAIALQAAAAABAC0AAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQAtAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMALQAAAAABAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAADEAAAAAAQAxAAAAAAIAMQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAAAAC0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAAAAFkAAAAAAQBZAAAAAAMALQAAAAADABEAAAAAAAAdAAAAAAIAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAABAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwARAAAAAAAAHQAAAAACAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAAAEQAAAAAAAB0AAAAAAQB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAeQAAAAAAACwAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAABAB0AAAAAAAAdAAAAAAMAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAHkAAAAAAAAsAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAACAC0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgAsAAAAAAAALAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAFkAAAAAAgAtAAAAAAEAHQAAAAAAAB0AAAAAAAAPAAAAAAAADwAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAAALQAAAAAAAHYAAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAwB2AAAAAAIAHQAAAAABAHYAAAAAAwB2AAAAAAIAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAEAeQAAAAAAAFkAAAAAAgAtAAAAAAEAdgAAAAABAB0AAAAAAwB2AAAAAAIAdgAAAAADAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAdAAAAAAMAaAAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAABAHkAAAAAAABZAAAAAAAALQAAAAADAA== version: 7 -1,-2: ind: -1,-2 - tiles: WQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEALQAAAAABAC0AAAAAAgAtAAAAAAMALQAAAAAAAC0AAAAAAgAtAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIALQAAAAACAC0AAAAAAQAtAAAAAAEALQAAAAABAC0AAAAAAwBZAAAAAAEALQAAAAABAC0AAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAABoAAAAAAAAHQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAIAaQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAABAGkAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAGgAAAAAAAAdAAAAAAIAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAFkAAAAAAwBpAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAMAEQAAAAAAABEAAAAAAABZAAAAAAMAaQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAAAdgAAAAACAB0AAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADABEAAAAAAAARAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAgAdAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAMAHQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAHkAAAAAAAAPAAAAAAAADwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAALQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAdgAAAAACAHYAAAAAAABZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAHQAAAAADAC0AAAAAAgAdAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAIAHQAAAAABAHYAAAAAAwB2AAAAAAIAWQAAAAACAHkAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAQAtAAAAAAEAHQAAAAABAHkAAAAAAAB2AAAAAAIAdgAAAAADAB0AAAAAAwB2AAAAAAMAdgAAAAACAA== + tiles: WQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEALQAAAAABAC0AAAAAAgAtAAAAAAMALQAAAAAAAC0AAAAAAgAtAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIALQAAAAACAC0AAAAAAQAtAAAAAAEALQAAAAABAC0AAAAAAwBZAAAAAAEALQAAAAABAC0AAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAABoAAAAAAAAHQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAIAaQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAABAGkAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAGgAAAAAAAAdAAAAAAIAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAFkAAAAAAwBpAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAdAAAAAAMAEQAAAAAAABEAAAAAAABZAAAAAAMAaQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAAAdgAAAAACAB0AAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAHQAAAAADABEAAAAAAAARAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAgAdAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAB0AAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAMAHQAAAAABAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAHkAAAAAAAAPAAAAAAAADwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAALQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAdgAAAAACAHYAAAAAAABZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAHQAAAAADAC0AAAAAAgAdAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAIAHQAAAAABAHYAAAAAAwB2AAAAAAIAWQAAAAACAHkAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAABoAAAAAAAAeQAAAAAAAB0AAAAAAQAtAAAAAAEAHQAAAAABAHkAAAAAAAB2AAAAAAIAdgAAAAADAB0AAAAAAwB2AAAAAAMAdgAAAAACAA== version: 7 -2,0: ind: -2,0 @@ -165,11 +165,11 @@ entities: version: 7 -2,-3: ind: -2,-3 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABqAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBqAAAAAAIAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAagAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGoAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAGoAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABqAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBqAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAagAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABqAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBqAAAAAAIAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAagAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGoAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAGoAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABqAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBqAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAagAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAMALQAAAAABAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAC0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAEAeAAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAABoAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAACAHkAAAAAAABZAAAAAAIALQAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAgBoAAAAAAAAHQAAAAABAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAC0AAAAAAwB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAGgAAAAAAAAdAAAAAAIAaAAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAAAtAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAC0AAAAAAgAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAEAAAAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAMALQAAAAADAAAAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgBpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAFkAAAAAAQBpAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAMAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAALQAAAAACAAAAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAQAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAFkAAAAAAwBpAAAAAAAAWQAAAAADAHkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAMALQAAAAABAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAC0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAEADwAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAABoAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAACAHkAAAAAAABZAAAAAAIALQAAAAAAAA8AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAgBoAAAAAAAAHQAAAAABAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAC0AAAAAAwAPAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAGgAAAAAAAAdAAAAAAIAaAAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAAAtAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAC0AAAAAAgAPAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAEADwAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAMALQAAAAADAA8AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgBpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAC0AAAAAAAAPAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAFkAAAAAAQBpAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAMADwAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAALQAAAAACAA8AAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAQAPAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAFkAAAAAAwBpAAAAAAAAWQAAAAADAHkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAA== version: 7 0,-3: ind: 0,-3 @@ -281,11 +281,11 @@ entities: version: 7 4,0: ind: 4,0 - tiles: dgAAAAACAHYAAAAAAAB2AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAGgAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAADAD4AAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAwBoAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAQA+AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAaAAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAMAPgAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAGgAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADwAAAAAAABIAAAAAAgASAAAAAAIADwAAAAADAA8AAAAAAQAWAAAAAAAAEgAAAAAAAA8AAAAAAAAMAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABIAAAAAAQAWAAAAAAIAFgAAAAABABIAAAAAAAAPAAAAAAAAEgAAAAAAABYAAAAAAAASAAAAAAAADwAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAMAFgAAAAACABIAAAAAAQAWAAAAAAMAEgAAAAABABYAAAAAAwAWAAAAAAAAFgAAAAAAAAwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADAAAAAAAAA8AAAAAAQASAAAAAAEADwAAAAAAAA8AAAAAAQAPAAAAAAAAEgAAAAAAAA8AAAAAAgAMAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: dgAAAAACAHYAAAAAAAB2AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAGgAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAADAD4AAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAwBoAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAQA+AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAaAAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAMAPgAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAGgAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADwAAAAAAABIAAAAAAgASAAAAAAIADwAAAAADAA8AAAAAAQAWAAAAAAAAEgAAAAAAAA8AAAAAAAAMAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABIAAAAAAQAWAAAAAAIAFgAAAAABABIAAAAAAAAPAAAAAAAAEgAAAAAAABYAAAAAAAASAAAAAAAADwAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAMAFgAAAAACABIAAAAAAQAWAAAAAAMAEgAAAAABABYAAAAAAwAWAAAAAAAAFgAAAAAAAAwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADAAAAAAAAA8AAAAAAQASAAAAAAEADwAAAAAAAA8AAAAAAQAPAAAAAAAAEgAAAAAAAA8AAAAAAgAMAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 5,0: ind: 5,0 - tiles: HQAAAAADAGgAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAQBoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQBoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAADAGgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQBoAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,-1: ind: 3,-1 @@ -293,19 +293,19 @@ entities: version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAtAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAAALQAAAAAAAA== + tiles: AAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAtAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAWQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAAALQAAAAAAAA== version: 7 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAABMAAAAABgATAAAAAAQAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAATAAAAAAEAdgAAAAADABMAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: WQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAABMAAAAABgATAAAAAAQAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAATAAAAAAEAdgAAAAADABMAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -3,-2: ind: -3,-2 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAdgAAAAACAHYAAAAAAQB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHYAAAAAAwB2AAAAAAIAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB2AAAAAAIAdgAAAAADAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAagAAAAABAGoAAAAAAQBqAAAAAAMAagAAAAABAFkAAAAAAQB5AAAAAAAAdgAAAAABAHYAAAAAAgB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAGoAAAAAAQBqAAAAAAAAagAAAAACAGoAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBqAAAAAAIAagAAAAACAGoAAAAAAQBqAAAAAAMAWQAAAAAAAGoAAAAAAwBqAAAAAAIAagAAAAACAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAagAAAAACAGoAAAAAAQBqAAAAAAAAagAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGoAAAAAAABqAAAAAAIAagAAAAAAAGoAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAdgAAAAACAHYAAAAAAQB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHYAAAAAAwB2AAAAAAIAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB2AAAAAAIAdgAAAAADAHkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAagAAAAABAGoAAAAAAQBqAAAAAAMAagAAAAABAFkAAAAAAQB5AAAAAAAAdgAAAAABAHYAAAAAAgB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAGoAAAAAAQBqAAAAAAAAagAAAAACAGoAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBqAAAAAAIAagAAAAACAGoAAAAAAQBqAAAAAAMAWQAAAAAAAGoAAAAAAwBqAAAAAAIAagAAAAACAHkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAagAAAAACAGoAAAAAAQBqAAAAAAAAagAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGoAAAAAAABqAAAAAAIAagAAAAAAAGoAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABcAAAAAAgAXAAAAAAAAFwAAAAADABcAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAAdAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABcAAAAAAgAXAAAAAAAAFwAAAAADABcAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAAdAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -2,-4: ind: -2,-4 @@ -341,7 +341,7 @@ entities: version: 7 5,-2: ind: 5,-2 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAB2AAAAAAMAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAB2AAAAAAMAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-3: ind: 4,-3 @@ -353,7 +353,7 @@ entities: version: 7 4,-4: ind: 4,-4 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAA8AAAAAAAAYAAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAACAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADwAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAMAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAACAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAaQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAaAAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAEAeQAAAAAAAGkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAGgAAAAAAAAdAAAAAAAAHQAAAAADAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAgBoAAAAAAAAHQAAAAACAB0AAAAAAQBoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAA8AAAAAAAAYAAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAACAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADwAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAMAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAACAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAaQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAaAAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAEAeQAAAAAAAGkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAGgAAAAAAAAdAAAAAAAAHQAAAAADAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAHQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAgBoAAAAAAAAHQAAAAACAB0AAAAAAQBoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 5,-3: ind: 5,-3 @@ -365,15 +365,15 @@ entities: version: 7 3,-4: ind: 3,-4 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAAEAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAAEAA== version: 7 4,-1: ind: 4,-1 - tiles: WQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAgAtAAAAAAMALQAAAAABAFkAAAAAAAAtAAAAAAMALQAAAAACAC0AAAAAAwAtAAAAAAEALQAAAAADAC0AAAAAAgAtAAAAAAIALQAAAAADAC0AAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAaQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAGkAAAAAAAB5AAAAAAAAdgAAAAAAAB0AAAAAAAAdAAAAAAMAdgAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAAAeQAAAAAAAFkAAAAAAABpAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAABZAAAAAAIAaQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAEAWQAAAAAAAGkAAAAAAAB5AAAAAAAAdgAAAAAAAB0AAAAAAgAdAAAAAAEAdgAAAAACAHkAAAAAAAAvAAAAAAMAdgAAAAADAHYAAAAAAAAdAAAAAAIAdgAAAAABAHYAAAAAAwAvAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHYAAAAAAAAdAAAAAAIAHQAAAAACAHYAAAAAAwB5AAAAAAAALwAAAAACAHYAAAAAAwB2AAAAAAEAHQAAAAABAHYAAAAAAQB2AAAAAAEALwAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAAAAB0AAAAAAgB2AAAAAAEAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB2AAAAAAEAeQAAAAAAAHYAAAAAAgA+AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAdgAAAAAAAHkAAAAAAAB2AAAAAAEAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAwB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB5AAAAAAAAdgAAAAADAD4AAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== + tiles: WQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAgAtAAAAAAMALQAAAAABAFkAAAAAAAAtAAAAAAMALQAAAAACAC0AAAAAAwAtAAAAAAEALQAAAAADAC0AAAAAAgAtAAAAAAIALQAAAAADAC0AAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAAAAB0AAAAAAAAdAAAAAAMAdgAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAABZAAAAAAIAWQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAAAAB0AAAAAAgAdAAAAAAEAdgAAAAACAHkAAAAAAAAvAAAAAAMAdgAAAAADAHYAAAAAAAAdAAAAAAIAdgAAAAABAHYAAAAAAwAvAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHYAAAAAAAAdAAAAAAIAHQAAAAACAHYAAAAAAwB5AAAAAAAALwAAAAACAHYAAAAAAwB2AAAAAAEAHQAAAAABAHYAAAAAAQB2AAAAAAEALwAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAAAAB0AAAAAAgB2AAAAAAEAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB2AAAAAAEAeQAAAAAAAHYAAAAAAgA+AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAdgAAAAAAAHkAAAAAAAB2AAAAAAEAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAwB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB5AAAAAAAAdgAAAAADAD4AAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== version: 7 5,-1: ind: 5,-1 - tiles: eQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAAAABpAAAAAAAAaQAAAAAAAC8AAAAAAwBpAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAAAAAMAaQAAAAAAAGkAAAAAAAAvAAAAAAIAaQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAGkAAAAAAABpAAAAAAAALwAAAAACAGkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBpAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAaQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAMAHQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAGgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBpAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAaQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAMAHQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAGgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-5: ind: 4,-5 @@ -385,7 +385,7 @@ entities: version: 7 3,-5: ind: 3,-5 - tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAACIAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAGAAAAAAMAeQAAAAAAAAYAAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAACAAAAAAEAeQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAADAA4AAAAAAQB5AAAAAAAAeQAAAAAAAAIAAAAAAAAOAAAAAAEAAgAAAAABAHkAAAAAAAB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAADAA4AAAAAAgB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAQACAAAAAAEADgAAAAADAHkAAAAAAAAOAAAAAAMADgAAAAADAHkAAAAAAAACAAAAAAEAeQAAAAAAAHkAAAAAAAAOAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAADgAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAACAAIAAAAAAAB5AAAAAAAAAgAAAAACAHkAAAAAAAACAAAAAAIAAgAAAAABAHkAAAAAAAB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAAB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAACAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAA== + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAACIAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAGAAAAAAMAeQAAAAAAAAYAAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAACAAAAAAEAeQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAADAA4AAAAAAQB5AAAAAAAAeQAAAAAAAAIAAAAAAAAOAAAAAAEAAgAAAAABAHkAAAAAAAB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAADAA4AAAAAAgB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAQACAAAAAAEADgAAAAADAHkAAAAAAAAOAAAAAAMADgAAAAADAHkAAAAAAAACAAAAAAEAeQAAAAAAAHkAAAAAAAAOAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAADgAAAAAAAHkAAAAAAAB5AAAAAAAADgAAAAACAAIAAAAAAAB5AAAAAAAAAgAAAAACAHkAAAAAAAACAAAAAAIAAgAAAAABAHkAAAAAAAB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAAB5AAAAAAAAAgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAACAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== version: 7 2,-5: ind: 2,-5 @@ -441,7 +441,7 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -449,7 +449,7 @@ entities: version: 7 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAA== + tiles: WQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAA== version: 7 -4,2: ind: -4,2 @@ -465,7 +465,7 @@ entities: version: 7 1,3: ind: 1,3 - tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,2: ind: 2,2 @@ -501,7 +501,7 @@ entities: version: 7 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAA== version: 7 1,-7: ind: 1,-7 @@ -517,11 +517,19 @@ entities: version: 7 5,1: ind: 5,1 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,2: ind: 4,2 - tiles: eAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 5,2: + ind: 5,2 + tiles: AAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAADwAAAAAAAA8AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAA8AAAAAAAAPAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAPAAAAAAAADwAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -5,-4: + ind: -5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAC0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAALQAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -888,7 +896,6 @@ entities: id: BrickTileSteelCornerNe decals: 7970: -54,1 - 10872: 85,-7 14587: 14,-3 14657: -18,-3 14659: -2,-32 @@ -1005,18 +1012,17 @@ entities: 18764: -76,8 18826: -76,-14 18912: -76,-36 - 18931: -64,-28 19327: -7,46 19463: -18,46 19464: -19,44 20109: -66,-8 + 20269: -64,-62 - node: zIndex: 5 color: '#D4D4D4FF' id: BrickTileSteelCornerSe decals: 7971: -54,-6 - 10871: 85,-15 13913: 37,8 14584: -2,-1 14658: 14,-30 @@ -1062,6 +1068,7 @@ entities: 19461: -20,44 19475: -11,35 19559: -12,39 + 20270: -66,-62 - node: zIndex: 2 color: '#D4D4D4FF' @@ -1237,6 +1244,10 @@ entities: 20133: -65,-23 20134: -77,-27 20135: -77,-32 + 20229: -65,-55 + 20230: -65,-47 + 20231: -65,-39 + 20232: -65,-31 - node: zIndex: 1 color: '#D4D4D4FF' @@ -1262,12 +1273,6 @@ entities: decals: 8766: 12,-1 8814: 9,17 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelInnerNe - decals: - 12139: 85,-10 - node: zIndex: 5 color: '#D4D4D4FF' @@ -1277,8 +1282,6 @@ entities: 7993: -72,8 8019: 24,-13 8020: 22,-13 - 10928: 78,-14 - 10930: 85,-13 13897: 37,10 13902: 18,13 13910: 11,8 @@ -1393,12 +1396,6 @@ entities: decals: 9436: -63,1 9442: -60,3 - - node: - zIndex: 5 - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - decals: - 10996: 80,-5 - node: zIndex: 6 color: '#DE3A3AFF' @@ -1426,7 +1423,6 @@ entities: 9574: -21,-13 9875: -21,-4 11535: 14,-30 - 11539: 78,-13 15148: 26,20 16119: -42,-4 16120: -30,-4 @@ -1473,6 +1469,10 @@ entities: 20121: -65,9 20122: -77,12 20123: -77,17 + 20225: -65,-31 + 20226: -65,-39 + 20227: -65,-47 + 20228: -65,-55 - node: zIndex: 1 color: '#D4D4D4FF' @@ -1511,8 +1511,6 @@ entities: 8002: -64,10 8017: 22,-13 8018: 24,-13 - 10929: 85,-14 - 10935: 78,-9 13885: 13,8 13887: 29,10 13888: 26,10 @@ -1597,8 +1595,6 @@ entities: 10835: 64,-27 10836: 62,-27 10837: 62,-27 - 11028: 83,-2 - 11029: 83,-4 11340: 18,31 12598: 3,39 12599: 0,39 @@ -1646,7 +1642,6 @@ entities: id: BrickTileSteelInnerNw decals: 10326: -24,-32 - 10991: 80,-5 10995: 81,-3 - node: color: '#FFFFFFFF' @@ -1717,6 +1712,10 @@ entities: 20145: -65,5 20146: -77,9 20147: -77,14 + 20221: -65,-59 + 20222: -65,-51 + 20223: -65,-43 + 20224: -65,-35 - node: zIndex: 1 color: '#D4D4D4FF' @@ -1732,12 +1731,6 @@ entities: 11303: 76,-15 11309: -54,-3 14955: -1,-57 - - node: - zIndex: 4 - color: '#D4D4D4FF' - id: BrickTileSteelInnerSe - decals: - 12135: 85,-10 - node: zIndex: 5 color: '#D4D4D4FF' @@ -1746,9 +1739,6 @@ entities: 7973: -56,-4 7974: -51,-3 7976: -34,-3 - 10924: 78,-8 - 10925: 79,-6 - 10933: 85,-13 13894: 37,10 13895: 18,15 13896: 18,8 @@ -1964,6 +1954,11 @@ entities: 20158: -65,-27 20159: -77,-30 20160: -77,-35 + 20217: -65,-35 + 20218: -65,-43 + 20219: -65,-51 + 20220: -65,-59 + 20304: -66,-28 - node: zIndex: 1 color: '#D4D4D4FF' @@ -1995,9 +1990,6 @@ entities: 8007: -51,-3 8009: -34,-3 8014: 12,-32 - 10926: 81,-6 - 10927: 85,-8 - 10938: 78,-10 13891: 10,11 13892: 20,11 13893: 29,9 @@ -2084,8 +2076,6 @@ entities: 10604: 12,27 10822: 63,-22 10859: 62,-20 - 11030: 83,-2 - 11031: 83,0 11337: 18,34 11342: 18,31 12604: 4,39 @@ -2382,6 +2372,60 @@ entities: 20088: -78,15 20089: -78,16 20090: -78,17 + 20169: -66,-35 + 20170: -66,-34 + 20171: -66,-33 + 20172: -66,-32 + 20173: -66,-31 + 20174: -66,-39 + 20175: -66,-40 + 20176: -66,-41 + 20177: -66,-42 + 20178: -66,-43 + 20179: -66,-47 + 20180: -66,-48 + 20181: -66,-49 + 20182: -66,-50 + 20183: -66,-51 + 20184: -66,-59 + 20185: -66,-58 + 20186: -66,-57 + 20187: -66,-56 + 20188: -66,-55 + 20234: -64,-28 + 20235: -64,-29 + 20236: -64,-30 + 20237: -64,-31 + 20238: -64,-32 + 20239: -64,-33 + 20240: -64,-34 + 20241: -64,-35 + 20242: -64,-36 + 20243: -64,-37 + 20244: -64,-38 + 20245: -64,-39 + 20246: -64,-40 + 20247: -64,-41 + 20248: -64,-42 + 20249: -64,-43 + 20250: -64,-44 + 20251: -64,-45 + 20252: -64,-46 + 20253: -64,-47 + 20254: -64,-48 + 20255: -64,-49 + 20256: -64,-50 + 20257: -64,-51 + 20258: -64,-52 + 20259: -64,-53 + 20260: -64,-54 + 20261: -64,-55 + 20262: -64,-56 + 20263: -64,-57 + 20264: -64,-59 + 20265: -64,-58 + 20266: -64,-60 + 20267: -64,-61 - node: zIndex: 1 color: '#D4D4D4FF' @@ -2464,7 +2508,6 @@ entities: 7668: 0,-55 7669: -1,-60 7670: -1,-59 - 12138: 85,-9 - node: zIndex: 5 color: '#D4D4D4FF' @@ -2490,17 +2533,6 @@ entities: 7832: -64,-9 7833: -64,-8 7959: -71,8 - 10889: 85,-14 - 10890: 85,-12 - 10891: 85,-11 - 10893: 85,-8 - 10894: 78,-13 - 10895: 78,-12 - 10896: 78,-11 - 10897: 78,-10 - 10898: 78,-9 - 10916: 80,-6 - 10917: 80,-5 13864: 26,12 13865: 26,13 13866: 26,14 @@ -2952,10 +2984,14 @@ entities: 20102: -77,-14 20103: -77,-9 20104: -65,-20 - 20105: -65,-28 20106: -77,-31 20107: -77,-36 20161: -46,-1 + 20210: -65,-36 + 20211: -65,-44 + 20212: -65,-52 + 20213: -65,-60 + 20233: -65,-28 - node: zIndex: 1 color: '#D4D4D4FF' @@ -3092,18 +3128,6 @@ entities: 10882: 75,-13 10883: 77,-13 10884: 76,-13 - 10885: 79,-7 - 10886: 81,-7 - 10887: 82,-7 - 10905: 79,-14 - 10906: 79,-14 - 10907: 80,-14 - 10908: 80,-14 - 10909: 81,-14 - 10910: 82,-14 - 10911: 83,-14 - 10912: 84,-14 - 10913: 84,-14 13804: 10,10 13805: 11,10 13808: 12,10 @@ -3514,8 +3538,6 @@ entities: 18926: -69,-28 18927: -68,-28 18928: -67,-28 - 18929: -66,-28 - 18930: -65,-28 19224: -8,39 19305: -10,46 19306: -8,46 @@ -3552,6 +3574,11 @@ entities: 20037: -77,-26 20038: -77,-31 20162: -46,-1 + 20209: -65,-30 + 20214: -65,-54 + 20215: -65,-46 + 20216: -65,-38 + 20268: -65,-62 - node: zIndex: 1 color: '#D4D4D4FF' @@ -3671,15 +3698,6 @@ entities: 10865: 79,-15 10866: 80,-15 10867: 81,-15 - 10868: 82,-15 - 10869: 83,-15 - 10870: 84,-15 - 10899: 79,-8 - 10900: 80,-8 - 10901: 81,-8 - 10902: 82,-8 - 10903: 83,-8 - 10904: 84,-8 13821: 15,14 13822: 16,14 13823: 17,14 @@ -4237,6 +4255,59 @@ entities: 20020: -76,16 20021: -76,17 20108: -67,-9 + 20189: -64,-59 + 20190: -64,-58 + 20191: -64,-57 + 20192: -64,-56 + 20193: -64,-55 + 20194: -64,-51 + 20195: -64,-50 + 20196: -64,-49 + 20197: -64,-48 + 20198: -64,-47 + 20199: -64,-43 + 20200: -64,-42 + 20201: -64,-41 + 20202: -64,-40 + 20203: -64,-39 + 20204: -64,-35 + 20205: -64,-34 + 20206: -64,-33 + 20207: -64,-32 + 20208: -64,-31 + 20271: -66,-61 + 20272: -66,-60 + 20273: -66,-59 + 20274: -66,-58 + 20275: -66,-56 + 20276: -66,-57 + 20277: -66,-55 + 20278: -66,-53 + 20279: -66,-54 + 20280: -66,-52 + 20281: -66,-50 + 20282: -66,-51 + 20283: -66,-49 + 20284: -66,-48 + 20285: -66,-46 + 20286: -66,-47 + 20287: -66,-45 + 20288: -66,-44 + 20289: -66,-42 + 20290: -66,-43 + 20291: -66,-41 + 20292: -66,-40 + 20293: -66,-38 + 20294: -66,-39 + 20295: -66,-36 + 20296: -66,-37 + 20297: -66,-35 + 20298: -66,-34 + 20299: -66,-32 + 20300: -66,-33 + 20301: -66,-31 + 20302: -66,-30 + 20303: -66,-29 - node: zIndex: 1 color: '#D4D4D4FF' @@ -4318,8 +4389,6 @@ entities: 7653: -2,-50 7654: -2,-51 7671: -3,-59 - 12136: 85,-10 - 12137: 85,-9 - node: zIndex: 5 color: '#D4D4D4FF' @@ -4330,16 +4399,6 @@ entities: 7901: -55,-2 7902: -55,-1 7956: -71,8 - 10874: 78,-8 - 10875: 78,-11 - 10876: 78,-12 - 10877: 78,-12 - 10914: 80,-6 - 10915: 80,-5 - 10918: 85,-13 - 10919: 85,-13 - 10920: 85,-12 - 10921: 85,-11 13832: 29,11 13833: 26,11 13834: 26,12 @@ -4542,8 +4601,6 @@ entities: 10593: 12,26 10825: 62,-25 10826: 62,-26 - 11026: 83,-3 - 11027: 83,-1 12559: 0,34 12560: 0,35 12562: 0,37 @@ -4668,11 +4725,6 @@ entities: id: BrickTileWhiteCornerNe decals: 2268: -6,-51 - - node: - color: '#334E6DFC' - id: BrickTileWhiteCornerNe - decals: - 11023: 84,1 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNe @@ -4791,11 +4843,6 @@ entities: decals: 2267: -8,-51 17692: 5,-13 - - node: - color: '#334E6DFC' - id: BrickTileWhiteCornerNw - decals: - 11020: 83,1 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNw @@ -5037,11 +5084,6 @@ entities: id: BrickTileWhiteCornerSw decals: 2249: -16,-58 - - node: - color: '#334E6DFC' - id: BrickTileWhiteCornerSw - decals: - 11019: 83,-5 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw @@ -5276,8 +5318,6 @@ entities: decals: 7512: 13,-10 7516: -16,-11 - 10947: 82,-7 - 10948: 84,-7 14665: -22,1 - node: zIndex: 7 @@ -5574,7 +5614,6 @@ entities: 8460: 9,-30 8461: 13,-30 8481: 5,-30 - 12134: 85,-3 - node: zIndex: 5 color: '#334E6DFF' @@ -5582,8 +5621,6 @@ entities: decals: 7507: 14,-11 7513: -15,-10 - 10950: 84,-7 - 10951: 85,-5 14669: -18,3 - node: zIndex: 7 @@ -6122,12 +6159,6 @@ entities: 4427: 19,-17 4428: 19,-19 6982: 20,-15 - - node: - color: '#334E6DFC' - id: BrickTileWhiteInnerSw - decals: - 11017: 85,-3 - 11024: 84,-5 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSw @@ -6168,7 +6199,6 @@ entities: 8438: 2,-3 8439: 5,-3 8457: 14,-24 - 12133: 85,-1 - node: zIndex: 5 color: '#334E6DFF' @@ -6415,12 +6445,6 @@ entities: id: BrickTileWhiteLineE decals: 2270: -6,-52 - - node: - color: '#334E6DFC' - id: BrickTileWhiteLineE - decals: - 11011: 84,-5 - 11012: 84,-3 - node: color: '#334E6DFF' id: BrickTileWhiteLineE @@ -6506,8 +6530,6 @@ entities: 8475: -16,-25 8476: -16,-24 8477: -16,-23 - 12130: 84,0 - 12131: 84,-1 - node: zIndex: 5 color: '#334E6DFF' @@ -6515,7 +6537,6 @@ entities: decals: 7486: -16,-10 7487: -16,-8 - 10957: 84,-6 14667: -18,3 14668: -18,4 - node: @@ -7153,8 +7174,6 @@ entities: 8478: 2,-30 8479: 3,-30 8480: 4,-30 - 12142: 85,-2 - 12143: 85,-4 - node: zIndex: 5 color: '#334E6DFF' @@ -7170,8 +7189,6 @@ entities: 7503: 11,-9 7505: 12,-9 7506: 13,-9 - 10945: 83,-7 - 10946: 85,-7 - node: color: '#3EB388FF' id: BrickTileWhiteLineN @@ -7754,8 +7771,6 @@ entities: 8429: -13,-3 8430: -14,-3 8431: -15,-3 - 12144: 85,-4 - 12145: 85,-2 - node: zIndex: 5 color: '#334E6DFF' @@ -8325,12 +8340,6 @@ entities: id: BrickTileWhiteLineW decals: 2271: -8,-52 - - node: - color: '#334E6DFC' - id: BrickTileWhiteLineW - decals: - 11021: 83,-4 - 11022: 83,0 - node: color: '#334E6DFF' id: BrickTileWhiteLineW @@ -8414,7 +8423,6 @@ entities: decals: 7483: 14,-10 7485: 14,-8 - 10956: 84,-6 14666: -18,4 - node: zIndex: 7 @@ -10387,25 +10395,12 @@ entities: decals: 10560: 8.002884,-28.026983 18177: 46.07619,6.0527043 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: FlowersBRTwo - decals: - 10436: 80,-12 - 10437: 83,-10 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 4457: 32,-23 16128: -4,-20 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 10438: 83,-11 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -10459,14 +10454,6 @@ entities: 17740: 6,44 18113: 44.3302,-0.06158471 18176: 49.060566,6.0683293 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 10441: 80,-11 - 10442: 83,-12 - 10443: 80,-10 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -10498,13 +10485,6 @@ entities: 16132: -4,-20 16133: 2,-20 17739: 6,44 - - node: - zIndex: 3 - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 10439: 83,-11 - 10440: 80,-10 - node: color: '#52B4E9FF' id: FullTileOverlayGreyscale @@ -10830,8 +10810,6 @@ entities: 13767: 65,-9 13768: 70,-10 13769: 70,-9 - 13770: 78,-10 - 13771: 78,-9 - node: zIndex: 5 angle: 3.141592653589793 rad @@ -10925,14 +10903,6 @@ entities: decals: 17366: 80,17 17367: 79,19 - - node: - zIndex: 3 - color: '#D4D4D4FF' - id: SidingLineW - decals: - 10433: 80,-12 - 10434: 80,-11 - 10435: 80,-10 - node: color: '#FED83DFF' id: WarnBox @@ -13085,7 +13055,7 @@ entities: -5,-3: 0: 52975 -4,-2: - 0: 4383 + 0: 56607 -5,-2: 0: 52701 -4,-1: @@ -13098,19 +13068,18 @@ entities: 0: 64443 -3,-3: 0: 64011 + -3,-2: + 0: 65290 -3,-1: 0: 65520 -3,-5: 0: 48011 - -3,-2: - 0: 10 -2,-4: 0: 15291 -2,-3: 0: 65435 -2,-2: - 0: 207 - 1: 8192 + 0: 61903 -2,-1: 0: 65520 -2,-5: @@ -13120,8 +13089,7 @@ entities: -1,-3: 0: 65535 -1,-2: - 0: 255 - 1: 61440 + 0: 61695 -1,-1: 0: 65520 -2,0: @@ -13135,8 +13103,7 @@ entities: 0,-3: 0: 65535 0,-2: - 0: 255 - 1: 28672 + 0: 61695 0,-1: 0: 65520 0,0: @@ -13200,8 +13167,7 @@ entities: 1,-3: 0: 65358 1,-2: - 0: 31 - 1: 8192 + 0: 64543 1,-4: 0: 61166 1,-5: @@ -13210,16 +13176,16 @@ entities: 0: 65535 2,-3: 0: 64015 + 2,-2: + 0: 65290 2,-5: 0: 65520 - 2,-2: - 0: 10 3,-4: 0: 56797 3,-3: 0: 65485 3,-2: - 0: 52431 + 0: 56783 3,-5: 0: 56797 4,-4: @@ -13312,7 +13278,7 @@ entities: 0: 65527 8,-1: 0: 13105 - 2: 34944 + 4: 34944 -8,-4: 0: 30583 -8,-5: @@ -13370,7 +13336,7 @@ entities: -9,-5: 0: 45311 -8,-9: - 0: 34956 + 0: 35740 -7,-8: 0: 48059 -7,-7: @@ -13450,24 +13416,19 @@ entities: -1,-8: 0: 4095 0,-7: - 1: 14 - 0: 13056 + 0: 48014 -1,-7: - 0: 60936 - 1: 3 + 0: 60939 0,-6: - 0: 819 - 1: 2048 + 0: 3003 -1,-6: 0: 3822 1,-8: 0: 4095 1,-7: - 1: 4369 - 0: 52236 + 0: 56605 1,-6: - 1: 273 - 0: 52428 + 0: 52701 2,-8: 0: 4095 2,-7: @@ -13477,7 +13438,7 @@ entities: 3,-9: 0: 53695 -4,-9: - 0: 49356 + 0: 49629 -3,-8: 0: 4095 -3,-7: @@ -13489,11 +13450,9 @@ entities: -2,-8: 0: 8191 -2,-7: - 0: 4369 - 1: 17484 + 0: 56797 -2,-6: - 0: 4369 - 1: 3140 + 0: 7645 -2,-9: 0: 24575 -1,-9: @@ -13550,6 +13509,8 @@ entities: 0: 57296 -9,-10: 0: 65520 + -9,-9: + 0: 7377 -7,-12: 0: 65455 -7,-11: @@ -13558,7 +13519,7 @@ entities: -7,-10: 0: 65520 -6,-12: - 0: 4367 + 0: 7439 -6,-11: 0: 49351 -6,-10: @@ -13566,7 +13527,7 @@ entities: -6,-9: 0: 3869 -5,-12: - 0: 17487 + 0: 21839 -5,-11: 0: 25716 -5,-10: @@ -13574,13 +13535,11 @@ entities: -5,-13: 0: 25190 -4,-12: - 0: 49407 - 1: 4096 + 0: 53503 -4,-11: - 1: 17 - 0: 204 + 0: 61661 -4,-10: - 0: 52416 + 0: 56785 -3,-12: 0: 61007 -3,-10: @@ -13666,8 +13625,8 @@ entities: 6,-9: 0: 3067 6,-12: - 3: 224 - 4: 57344 + 2: 224 + 3: 57344 6,-13: 0: 57344 1: 248 @@ -13716,7 +13675,7 @@ entities: 0: 61030 8,0: 0: 64304 - 2: 8 + 4: 8 8,1: 0: 29363 8,2: @@ -13939,7 +13898,7 @@ entities: 0: 36078 5,12: 1: 1 - 0: 34956 + 0: 52428 6,9: 0: 2491 6,10: @@ -14019,24 +13978,24 @@ entities: 1: 35064 0: 771 9,0: - 2: 15 + 4: 15 0: 65296 9,1: 0: 35769 9,2: 0: 48955 9,-1: - 2: 65520 + 4: 65520 0: 1 10,0: - 2: 1 + 4: 1 0: 64780 10,1: 0: 53725 10,2: 0: 64989 10,-1: - 2: 4368 + 4: 4368 0: 60620 11,0: 0: 64911 @@ -14557,17 +14516,18 @@ entities: 19,6: 1: 224 19,8: - 1: 8738 + 1: 43690 20,4: - 0: 4372 - 1: 72 + 0: 56796 20,5: - 0: 17 - 1: 7168 + 0: 35037 + 1: 4096 20,6: - 1: 4593 + 1: 4401 + 0: 34952 20,7: 1: 1 + 0: 34952 16,-1: 0: 62685 17,0: @@ -14591,36 +14551,47 @@ entities: 19,0: 0: 47931 19,1: - 0: 30507 + 0: 47915 19,3: - 0: 802 - 1: 128 + 0: 2986 19,-1: 0: 47778 19,2: - 0: 8742 + 0: 44714 20,0: - 0: 13211 + 0: 48027 20,1: - 0: 3 + 0: 56715 20,2: - 1: 49168 + 0: 56797 20,3: - 1: 880 - 0: 57344 + 0: 52701 20,-1: 0: 49081 21,0: - 0: 51 + 0: 65535 + 21,1: + 0: 65535 + 21,2: + 0: 65535 21,3: - 0: 4096 - 1: 57344 + 0: 65535 21,-1: - 0: 16191 + 0: 65535 21,4: - 1: 1 + 0: 65535 + 22,1: + 0: 3846 + 22,2: + 0: 26127 22,3: - 1: 4096 + 0: 3846 + 22,0: + 0: 26214 + 22,4: + 0: 26127 + 22,-1: + 0: 26214 12,-5: 0: 44706 13,-4: @@ -14689,37 +14660,34 @@ entities: 0: 17486 -14,-8: 0: 61440 + -14,-7: + 0: 65504 -14,-6: - 1: 3584 + 0: 61183 -13,-8: 0: 64648 1: 2 + -13,-7: + 0: 56796 -13,-6: - 1: 4864 - 0: 34952 + 0: 48057 -13,-9: 1: 8736 0: 34944 - -13,-7: - 0: 52428 -12,-8: 0: 56829 -12,-7: - 0: 4369 - 1: 35008 + 0: 56785 -12,-6: - 0: 4369 - 1: 51336 + 0: 56797 -12,-9: 0: 53744 -11,-8: 0: 65535 -11,-7: - 1: 16 - 0: 52424 + 0: 56792 -11,-6: - 1: 4096 - 0: 52428 + 0: 56797 -11,-9: 0: 61680 -10,-8: @@ -14729,11 +14697,7 @@ entities: -10,-6: 0: 65535 -10,-9: - 0: 4348 - 1: 49152 - -9,-9: - 1: 6272 - 0: 17 + 0: 53500 -12,-11: 1: 30591 0: 34944 @@ -15063,7 +15027,7 @@ entities: 20,-9: 0: 61222 20,-4: - 0: 28668 + 0: 65532 21,-8: 0: 63271 21,-7: @@ -15071,17 +15035,19 @@ entities: 21,-6: 0: 1919 21,-5: - 1: 18227 + 1: 1843 21,-9: 0: 29007 21,-4: - 0: 13105 + 0: 65535 22,-8: 0: 32631 22,-7: 0: 30711 22,-6: 0: 15 + 22,-4: + 0: 3855 23,-8: 0: 784 23,-7: @@ -15158,6 +15124,8 @@ entities: 0: 4080 16,-15: 0: 58922 + 15,-15: + 0: 4095 16,-14: 0: 60999 15,-14: @@ -15175,7 +15143,7 @@ entities: 17,-17: 0: 65535 18,-16: - 0: 61440 + 0: 61536 18,-15: 0: 30470 18,-14: @@ -15261,27 +15229,29 @@ entities: 23,-14: 0: 4369 12,-17: - 0: 13090 + 0: 48034 12,-15: - 0: 8738 + 0: 10922 12,-14: 0: 61166 13,-16: 0: 4080 + 13,-15: + 0: 4095 13,-14: 0: 65279 13,-17: - 1: 17472 - 13,-15: - 1: 1092 + 0: 65520 14,-16: 0: 4080 + 14,-15: + 0: 4095 14,-14: 0: 61695 + 14,-17: + 0: 65520 15,-17: - 1: 21840 - 15,-15: - 1: 1365 + 0: 65520 17,-4: 0: 65520 17,-3: @@ -15297,20 +15267,17 @@ entities: 19,-2: 0: 63709 20,-3: - 0: 28671 + 0: 65535 20,-2: - 0: 46079 + 0: 48127 21,-3: - 0: 16191 + 0: 65535 21,-2: - 0: 12595 - 1: 128 - 22,-3: - 0: 1799 + 0: 65535 22,-2: - 1: 1140 - 22,-1: - 0: 1799 + 0: 3855 + 22,-3: + 0: 1638 16,-20: 0: 61166 15,-20: @@ -15935,11 +15902,40 @@ entities: -19,-10: 0: 4096 21,5: - 1: 3840 + 0: 65535 21,6: - 1: 16 + 0: 65535 + 21,7: + 0: 65535 + 20,8: + 0: 34952 + 1: 768 + 21,8: + 0: 65535 + 22,7: + 0: 3855 + 22,5: + 0: 26214 + 22,6: + 0: 1638 + 22,8: + 0: 1638 19,9: - 1: 2 + 1: 34954 + 19,10: + 1: 8 + 20,10: + 1: 57895 + 20,9: + 0: 2184 + 21,9: + 0: 4095 + 21,10: + 1: 61986 + 22,9: + 0: 3855 + 22,10: + 1: 29218 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -15971,6 +15967,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -15986,36 +16012,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -16899,6 +16895,8 @@ entities: devices: - 17546 - 17750 + - type: Fixtures + fixtures: {} - uid: 15 components: - type: Transform @@ -16925,6 +16923,8 @@ entities: - 31468 - 31467 - 20901 + - type: Fixtures + fixtures: {} - uid: 16 components: - type: Transform @@ -16936,6 +16936,8 @@ entities: - 17596 - 17795 - 640 + - type: Fixtures + fixtures: {} - uid: 17 components: - type: Transform @@ -16953,6 +16955,8 @@ entities: - 651 - 17787 - 17588 + - type: Fixtures + fixtures: {} - uid: 18 components: - type: Transform @@ -16975,6 +16979,8 @@ entities: - 13710 - 13712 - 13711 + - type: Fixtures + fixtures: {} - uid: 19 components: - type: Transform @@ -16984,6 +16990,8 @@ entities: devices: - 17582 - 17781 + - type: Fixtures + fixtures: {} - uid: 20 components: - type: Transform @@ -17000,6 +17008,8 @@ entities: - 648 - 17779 - 17580 + - type: Fixtures + fixtures: {} - uid: 22 components: - type: Transform @@ -17015,6 +17025,8 @@ entities: - 17762 - 17561 - 16535 + - type: Fixtures + fixtures: {} - uid: 23 components: - type: Transform @@ -17026,6 +17038,8 @@ entities: - 17549 - 17753 - 628 + - type: Fixtures + fixtures: {} - uid: 24 components: - type: Transform @@ -17042,6 +17056,8 @@ entities: - 623 - 17562 - 17763 + - type: Fixtures + fixtures: {} - uid: 26 components: - type: Transform @@ -17052,6 +17068,8 @@ entities: - 17757 - 17557 - 632 + - type: Fixtures + fixtures: {} - uid: 27 components: - type: Transform @@ -17075,6 +17093,8 @@ entities: - 13307 - 13597 - 13241 + - type: Fixtures + fixtures: {} - uid: 28 components: - type: Transform @@ -17086,6 +17106,8 @@ entities: - 13779 - 17749 - 17545 + - type: Fixtures + fixtures: {} - uid: 29 components: - type: Transform @@ -17098,6 +17120,8 @@ entities: - 17032 - 17034 - 30002 + - type: Fixtures + fixtures: {} - uid: 31 components: - type: Transform @@ -17114,6 +17138,8 @@ entities: - 13307 - 13597 - 13241 + - type: Fixtures + fixtures: {} - uid: 32 components: - type: Transform @@ -17138,6 +17164,8 @@ entities: - 17585 - 17583 - 17782 + - type: Fixtures + fixtures: {} - uid: 33 components: - type: Transform @@ -17148,6 +17176,8 @@ entities: devices: - 639 - 13672 + - type: Fixtures + fixtures: {} - uid: 35 components: - type: Transform @@ -17160,6 +17190,8 @@ entities: - 17794 - 643 - 17703 + - type: Fixtures + fixtures: {} - uid: 36 components: - type: Transform @@ -17171,6 +17203,8 @@ entities: - 17793 - 17595 - 644 + - type: Fixtures + fixtures: {} - uid: 37 components: - type: Transform @@ -17198,6 +17232,8 @@ entities: - 17796 - 17785 - 17586 + - type: Fixtures + fixtures: {} - uid: 39 components: - type: Transform @@ -17221,6 +17257,8 @@ entities: - 7769 - 7767 - 13298 + - type: Fixtures + fixtures: {} - uid: 40 components: - type: Transform @@ -17241,6 +17279,8 @@ entities: - 13746 - 17789 - 17589 + - type: Fixtures + fixtures: {} - uid: 41 components: - type: Transform @@ -17251,6 +17291,8 @@ entities: devices: - 17702 - 17900 + - type: Fixtures + fixtures: {} - uid: 42 components: - type: Transform @@ -17265,6 +17307,8 @@ entities: - 17638 - 17838 - 21953 + - type: Fixtures + fixtures: {} - uid: 43 components: - type: Transform @@ -17286,6 +17330,8 @@ entities: - 13747 - 17814 - 17615 + - type: Fixtures + fixtures: {} - uid: 44 components: - type: Transform @@ -17301,6 +17347,8 @@ entities: - 13793 - 17617 - 17816 + - type: Fixtures + fixtures: {} - uid: 45 components: - type: Transform @@ -17318,6 +17366,8 @@ entities: - 17812 - 17613 - 17813 + - type: Fixtures + fixtures: {} - uid: 46 components: - type: Transform @@ -17334,6 +17384,8 @@ entities: - 658 - 17815 - 17616 + - type: Fixtures + fixtures: {} - uid: 47 components: - type: Transform @@ -17349,6 +17401,8 @@ entities: - 659 - 17823 - 17622 + - type: Fixtures + fixtures: {} - uid: 48 components: - type: Transform @@ -17359,6 +17413,8 @@ entities: - 660 - 17824 - 17626 + - type: Fixtures + fixtures: {} - uid: 49 components: - type: Transform @@ -17376,6 +17432,8 @@ entities: - 13705 - 17825 - 17625 + - type: Fixtures + fixtures: {} - uid: 50 components: - type: Transform @@ -17398,6 +17456,8 @@ entities: - 17827 - 17628 - 17826 + - type: Fixtures + fixtures: {} - uid: 51 components: - type: Transform @@ -17416,6 +17476,8 @@ entities: - 17637 - 17831 - 17632 + - type: Fixtures + fixtures: {} - uid: 52 components: - type: Transform @@ -17434,6 +17496,8 @@ entities: - 17839 - 17640 - 17840 + - type: Fixtures + fixtures: {} - uid: 53 components: - type: Transform @@ -17451,6 +17515,8 @@ entities: - 725 - 17715 - 17909 + - type: Fixtures + fixtures: {} - uid: 54 components: - type: Transform @@ -17470,6 +17536,8 @@ entities: - 13646 - 13660 - 13659 + - type: Fixtures + fixtures: {} - uid: 59 components: - type: Transform @@ -17483,6 +17551,8 @@ entities: - 17653 - 677 - 676 + - type: Fixtures + fixtures: {} - uid: 60 components: - type: Transform @@ -17496,6 +17566,8 @@ entities: - 17644 - 17842 - 17843 + - type: Fixtures + fixtures: {} - uid: 61 components: - type: Transform @@ -17510,6 +17582,8 @@ entities: - 627 - 17747 - 17543 + - type: Fixtures + fixtures: {} - uid: 62 components: - type: Transform @@ -17523,6 +17597,8 @@ entities: - 617 - 17651 - 17849 + - type: Fixtures + fixtures: {} - uid: 64 components: - type: Transform @@ -17535,6 +17611,8 @@ entities: - 17541 - 17744 - 13716 + - type: Fixtures + fixtures: {} - uid: 65 components: - type: Transform @@ -17545,6 +17623,8 @@ entities: - 17578 - 17579 - 17776 + - type: Fixtures + fixtures: {} - uid: 67 components: - type: Transform @@ -17561,6 +17641,8 @@ entities: - 682 - 17868 - 17671 + - type: Fixtures + fixtures: {} - uid: 69 components: - type: Transform @@ -17577,6 +17659,8 @@ entities: - 13695 - 17866 - 17669 + - type: Fixtures + fixtures: {} - uid: 73 components: - type: Transform @@ -17588,6 +17672,8 @@ entities: - 13736 - 17878 - 17680 + - type: Fixtures + fixtures: {} - uid: 74 components: - type: Transform @@ -17599,6 +17685,8 @@ entities: - 17535 - 17877 - 692 + - type: Fixtures + fixtures: {} - uid: 77 components: - type: Transform @@ -17613,6 +17701,8 @@ entities: - 26094 - 26140 - 26429 + - type: Fixtures + fixtures: {} - uid: 80 components: - type: Transform @@ -17634,6 +17724,8 @@ entities: - 17858 - 17660 - 13739 + - type: Fixtures + fixtures: {} - uid: 83 components: - type: Transform @@ -17645,6 +17737,8 @@ entities: - 703 - 17663 - 17860 + - type: Fixtures + fixtures: {} - uid: 85 components: - type: Transform @@ -17654,6 +17748,8 @@ entities: - type: DeviceList devices: - 710 + - type: Fixtures + fixtures: {} - uid: 87 components: - type: Transform @@ -17666,6 +17762,8 @@ entities: - 10577 - 14458 - 14788 + - type: Fixtures + fixtures: {} - uid: 89 components: - type: Transform @@ -17677,6 +17775,8 @@ entities: - 13662 - 17566 - 17767 + - type: Fixtures + fixtures: {} - uid: 90 components: - type: Transform @@ -17694,6 +17794,8 @@ entities: - 13826 - 13863 - 13862 + - type: Fixtures + fixtures: {} - uid: 91 components: - type: Transform @@ -17716,6 +17818,8 @@ entities: - 13633 - 13630 - 13631 + - type: Fixtures + fixtures: {} - uid: 92 components: - type: Transform @@ -17731,6 +17835,8 @@ entities: - 17908 - 13641 - 13642 + - type: Fixtures + fixtures: {} - uid: 93 components: - type: Transform @@ -17750,11 +17856,15 @@ entities: - 669 - 13641 - 13642 + - type: Fixtures + fixtures: {} - uid: 94 components: - type: Transform pos: 78.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 95 components: - type: Transform @@ -17768,10 +17878,11 @@ entities: - 13634 - 13635 - 13865 - - 13866 - 17914 - 17720 - 722 + - type: Fixtures + fixtures: {} - uid: 96 components: - type: Transform @@ -17786,6 +17897,8 @@ entities: - 17916 - 17723 - 13865 + - type: Fixtures + fixtures: {} - uid: 97 components: - type: Transform @@ -17803,6 +17916,8 @@ entities: - 13795 - 13794 - 13730 + - type: Fixtures + fixtures: {} - uid: 98 components: - type: Transform @@ -17814,6 +17929,8 @@ entities: - 714 - 17738 - 17555 + - type: Fixtures + fixtures: {} - uid: 99 components: - type: Transform @@ -17829,6 +17946,8 @@ entities: - 24597 - 24497 - 14484 + - type: Fixtures + fixtures: {} - uid: 100 components: - type: Transform @@ -17840,6 +17959,8 @@ entities: - 621 - 17527 - 17736 + - type: Fixtures + fixtures: {} - uid: 101 components: - type: Transform @@ -17851,6 +17972,8 @@ entities: - 17899 - 616 - 17704 + - type: Fixtures + fixtures: {} - uid: 102 components: - type: Transform @@ -17861,6 +17984,8 @@ entities: devices: - 17740 - 17551 + - type: Fixtures + fixtures: {} - uid: 103 components: - type: Transform @@ -17875,6 +18000,8 @@ entities: - 30128 - 30129 - 717 + - type: Fixtures + fixtures: {} - uid: 104 components: - type: Transform @@ -17892,6 +18019,8 @@ entities: - 17710 - 17906 - 718 + - type: Fixtures + fixtures: {} - uid: 105 components: - type: Transform @@ -17900,16 +18029,18 @@ entities: parent: 2 - type: DeviceList devices: - - 13866 - 23554 - 721 - - 17722 + - type: Fixtures + fixtures: {} - uid: 106 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1107 components: - type: Transform @@ -17923,6 +18054,8 @@ entities: - 11094 - 11226 - 11096 + - type: Fixtures + fixtures: {} - uid: 1324 components: - type: Transform @@ -17936,6 +18069,8 @@ entities: - 11269 - 11093 - 11151 + - type: Fixtures + fixtures: {} - uid: 3504 components: - type: Transform @@ -17951,12 +18086,16 @@ entities: - 26799 - 31467 - 31468 + - type: Fixtures + fixtures: {} - uid: 4407 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4495 components: - type: Transform @@ -17968,11 +18107,15 @@ entities: - 24497 - 23623 - 23624 + - type: Fixtures + fixtures: {} - uid: 8697 components: - type: Transform pos: -16.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10831 components: - type: Transform @@ -17983,6 +18126,8 @@ entities: - 22309 - 13592 - 22429 + - type: Fixtures + fixtures: {} - uid: 14983 components: - type: Transform @@ -17995,6 +18140,8 @@ entities: - 649 - 21474 - 21473 + - type: Fixtures + fixtures: {} - uid: 14987 components: - type: Transform @@ -18006,6 +18153,8 @@ entities: - 14988 - 4122 - 14043 + - type: Fixtures + fixtures: {} - uid: 15115 components: - type: Transform @@ -18017,6 +18166,8 @@ entities: - 17033 - 14984 - 14146 + - type: Fixtures + fixtures: {} - uid: 17417 components: - type: Transform @@ -18028,6 +18179,8 @@ entities: - 277 - 29988 - 18132 + - type: Fixtures + fixtures: {} - uid: 17452 components: - type: Transform @@ -18050,6 +18203,8 @@ entities: - 17870 - 689 - 17674 + - type: Fixtures + fixtures: {} - uid: 17459 components: - type: Transform @@ -18063,6 +18218,8 @@ entities: - 14382 - 5377 - 12864 + - type: Fixtures + fixtures: {} - uid: 17511 components: - type: Transform @@ -18085,6 +18242,8 @@ entities: - 9373 - 22294 - 27041 + - type: Fixtures + fixtures: {} - uid: 19153 components: - type: Transform @@ -18098,12 +18257,16 @@ entities: - 17252 - 15148 - 17310 + - type: Fixtures + fixtures: {} - uid: 20129 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20365 components: - type: Transform @@ -18129,6 +18292,8 @@ entities: - 20024 - 20309 - 20119 + - type: Fixtures + fixtures: {} - uid: 20388 components: - type: Transform @@ -18149,6 +18314,8 @@ entities: - 20512 - 20513 - 20884 + - type: Fixtures + fixtures: {} - uid: 21141 components: - type: Transform @@ -18164,6 +18331,8 @@ entities: - 17791 - 22239 - 22380 + - type: Fixtures + fixtures: {} - uid: 21786 components: - type: Transform @@ -18177,6 +18346,8 @@ entities: - 32936 - 32952 - 32937 + - type: Fixtures + fixtures: {} - uid: 22027 components: - type: Transform @@ -18195,6 +18366,8 @@ entities: - 21865 - 21864 - 21849 + - type: Fixtures + fixtures: {} - uid: 22509 components: - type: Transform @@ -18204,6 +18377,8 @@ entities: devices: - 11519 - 20084 + - type: Fixtures + fixtures: {} - uid: 22633 components: - type: Transform @@ -18216,6 +18391,8 @@ entities: - 17567 - 17768 - 9789 + - type: Fixtures + fixtures: {} - uid: 24961 components: - type: Transform @@ -18227,6 +18404,8 @@ entities: - 24819 - 24906 - 24828 + - type: Fixtures + fixtures: {} - uid: 25371 components: - type: Transform @@ -18245,6 +18424,8 @@ entities: - 13732 - 13816 - 13815 + - type: Fixtures + fixtures: {} - uid: 25483 components: - type: Transform @@ -18256,6 +18437,8 @@ entities: - 25723 - 25712 - 25042 + - type: Fixtures + fixtures: {} - uid: 25632 components: - type: Transform @@ -18267,6 +18450,8 @@ entities: - 17518 - 694 - 17891 + - type: Fixtures + fixtures: {} - uid: 25633 components: - type: Transform @@ -18277,6 +18462,8 @@ entities: devices: - 25608 - 25626 + - type: Fixtures + fixtures: {} - uid: 25745 components: - type: Transform @@ -18288,6 +18475,8 @@ entities: - 25744 - 25076 - 25735 + - type: Fixtures + fixtures: {} - uid: 25747 components: - type: Transform @@ -18308,6 +18497,8 @@ entities: - 2801 - 25692 - 25675 + - type: Fixtures + fixtures: {} - uid: 25752 components: - type: Transform @@ -18318,6 +18509,8 @@ entities: - 25503 - 25038 - 25500 + - type: Fixtures + fixtures: {} - uid: 26722 components: - type: Transform @@ -18329,6 +18522,8 @@ entities: - 707 - 26721 - 26720 + - type: Fixtures + fixtures: {} - uid: 27035 components: - type: Transform @@ -18340,6 +18535,8 @@ entities: - 27029 - 27021 - 27037 + - type: Fixtures + fixtures: {} - uid: 27036 components: - type: Transform @@ -18355,6 +18552,8 @@ entities: - 27028 - 27017 - 27037 + - type: Fixtures + fixtures: {} - uid: 27039 components: - type: Transform @@ -18371,6 +18570,8 @@ entities: - 27038 - 27041 - 27040 + - type: Fixtures + fixtures: {} - uid: 27405 components: - type: Transform @@ -18383,6 +18584,8 @@ entities: - 31694 - 1023 - 27550 + - type: Fixtures + fixtures: {} - uid: 29429 components: - type: Transform @@ -18399,6 +18602,8 @@ entities: - 29433 - 13728 - 13724 + - type: Fixtures + fixtures: {} - uid: 29439 components: - type: Transform @@ -18426,6 +18631,8 @@ entities: - 13677 - 13676 - 13678 + - type: Fixtures + fixtures: {} - uid: 29440 components: - type: Transform @@ -18438,6 +18645,8 @@ entities: - 29407 - 13823 - 13822 + - type: Fixtures + fixtures: {} - uid: 29441 components: - type: Transform @@ -18450,6 +18659,8 @@ entities: - 17641 - 17756 - 13728 + - type: Fixtures + fixtures: {} - uid: 29542 components: - type: Transform @@ -18476,6 +18687,8 @@ entities: - 29270 - 29248 - 29351 + - type: Fixtures + fixtures: {} - uid: 29740 components: - type: Transform @@ -18492,6 +18705,8 @@ entities: - 29630 - 29627 - 29631 + - type: Fixtures + fixtures: {} - uid: 29741 components: - type: Transform @@ -18509,6 +18724,8 @@ entities: - 29618 - 29636 - 29622 + - type: Fixtures + fixtures: {} - uid: 29852 components: - type: Transform @@ -18525,6 +18742,8 @@ entities: - 20188 - 20170 - 20126 + - type: Fixtures + fixtures: {} - uid: 29869 components: - type: Transform @@ -18543,6 +18762,8 @@ entities: - 12893 - 24807 - 23585 + - type: Fixtures + fixtures: {} - uid: 29882 components: - type: Transform @@ -18559,6 +18780,8 @@ entities: - 29255 - 24807 - 23585 + - type: Fixtures + fixtures: {} - uid: 29883 components: - type: Transform @@ -18575,6 +18798,8 @@ entities: - 29269 - 17384 - 18018 + - type: Fixtures + fixtures: {} - uid: 29906 components: - type: Transform @@ -18590,6 +18815,8 @@ entities: - 29273 - 17384 - 18018 + - type: Fixtures + fixtures: {} - uid: 29991 components: - type: Transform @@ -18601,6 +18828,8 @@ entities: - 607 - 29990 - 606 + - type: Fixtures + fixtures: {} - uid: 30133 components: - type: Transform @@ -18616,6 +18845,8 @@ entities: - 30024 - 30134 - 30023 + - type: Fixtures + fixtures: {} - uid: 30595 components: - type: Transform @@ -18629,6 +18860,8 @@ entities: - 30592 - 30590 - 30594 + - type: Fixtures + fixtures: {} - uid: 31424 components: - type: Transform @@ -18640,6 +18873,8 @@ entities: - 31363 - 31362 - 31428 + - type: Fixtures + fixtures: {} - uid: 31425 components: - type: Transform @@ -18652,6 +18887,8 @@ entities: - 31387 - 31399 - 19602 + - type: Fixtures + fixtures: {} - uid: 31896 components: - type: Transform @@ -18667,6 +18904,8 @@ entities: - 30784 - 22848 - 31897 + - type: Fixtures + fixtures: {} - uid: 32282 components: - type: Transform @@ -18678,6 +18917,8 @@ entities: - 32950 - 32395 - 32399 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 107 @@ -18772,6 +19013,11 @@ entities: parent: 2 - type: Physics bodyType: Static + - uid: 4363 + components: + - type: Transform + pos: 91.39436,-57.78026 + parent: 2 - uid: 8618 components: - type: Transform @@ -18815,6 +19061,11 @@ entities: - type: Transform pos: 27.5,32.5 parent: 2 + - uid: 31912 + components: + - type: Transform + pos: 90.39436,-57.78026 + parent: 2 - uid: 32192 components: - type: Transform @@ -18828,7 +19079,7 @@ entities: pos: 14.5,2.5 parent: 2 - type: Door - secondsUntilStateChange: -202586.95 + secondsUntilStateChange: -204692.48 state: Opening - type: DeviceLinkSource lastSignals: @@ -18896,7 +19147,7 @@ entities: pos: 13.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -206075.3 + secondsUntilStateChange: -208180.83 state: Opening - type: DeviceLinkSource lastSignals: @@ -19373,12 +19624,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,3.5 parent: 2 - - uid: 219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-5.5 - parent: 2 - uid: 220 components: - type: Transform @@ -19421,7 +19666,7 @@ entities: pos: 8.5,-58.5 parent: 2 - type: Door - secondsUntilStateChange: -139562.98 + secondsUntilStateChange: -141668.52 state: Opening - type: DeviceLinkSource lastSignals: @@ -19648,12 +19893,6 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-3.5 - parent: 2 - uid: 270 components: - type: Transform @@ -19672,12 +19911,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,49.5 parent: 2 - - uid: 287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-11.5 - parent: 2 - uid: 301 components: - type: Transform @@ -19696,17 +19929,11 @@ entities: rot: 3.141592653589793 rad pos: -70.5,7.5 parent: 2 - - uid: 6544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-9.5 - parent: 2 - uid: 6601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-1.5 + rot: -1.5707963267948966 rad + pos: 89.5,-13.5 parent: 2 - uid: 6699 components: @@ -19714,18 +19941,54 @@ entities: rot: 3.141592653589793 rad pos: 30.5,29.5 parent: 2 + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,28.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,16.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,6.5 + parent: 2 - uid: 11306 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,27.5 parent: 2 + - uid: 11517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,8.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,30.5 + parent: 2 - uid: 17142 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-3.5 parent: 2 + - uid: 17314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-7.5 + parent: 2 - uid: 17533 components: - type: Transform @@ -19744,6 +20007,18 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,-13.5 parent: 2 + - uid: 20411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-15.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,36.5 + parent: 2 - uid: 21026 components: - type: Transform @@ -19768,12 +20043,30 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,16.5 parent: 2 + - uid: 23465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,38.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-5.5 + parent: 2 - uid: 23526 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-40.5 parent: 2 + - uid: 23580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,14.5 + parent: 2 - uid: 23855 components: - type: Transform @@ -19804,6 +20097,11 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,-35.5 parent: 2 + - uid: 27321 + components: + - type: Transform + pos: 22.5,49.5 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 1143 @@ -19948,6 +20246,82 @@ entities: rot: 3.141592653589793 rad pos: -24.5,15.5 parent: 2 +- proto: AirlockExternalGlassMiningShuttle + entities: + - uid: 5881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-36.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-37.5 + parent: 2 +- proto: AirlockExternalGlassPersonalShuttle + entities: + - uid: 33360 + components: + - type: Transform + pos: -63.5,-62.5 + parent: 2 + - uid: 33362 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 2 + - uid: 33365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-60.5 + parent: 2 + - uid: 33367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-58.5 + parent: 2 + - uid: 33373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-52.5 + parent: 2 + - uid: 33375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-50.5 + parent: 2 + - uid: 33379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-44.5 + parent: 2 + - uid: 33381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-42.5 + parent: 2 +- proto: AirlockExternalGlassSecurityShuttle + entities: + - uid: 18234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,51.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,51.5 + parent: 2 - proto: AirlockExternalGlassShuttleArrivalsLocked entities: - uid: 2831 @@ -20022,6 +20396,80 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-35.5 parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 21221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-7.5 + parent: 2 + - uid: 21222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-15.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-13.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,8.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,6.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-5.5 + parent: 2 + - uid: 29980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,38.5 + parent: 2 + - uid: 29985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,28.5 + parent: 2 + - uid: 30645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,16.5 + parent: 2 + - uid: 30646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,30.5 + parent: 2 + - uid: 31735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,14.5 + parent: 2 + - uid: 31751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,36.5 + parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 14943 @@ -20046,32 +20494,6 @@ entities: - type: Transform pos: -70.5,6.5 parent: 2 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-3.5 - parent: 2 - - uid: 6599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-1.5 - parent: 2 - - uid: 22488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-11.5 - parent: 2 - - uid: 22531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-9.5 - parent: 2 - proto: AirlockExternalLocked entities: - uid: 317 @@ -20269,7 +20691,7 @@ entities: pos: 19.5,12.5 parent: 2 - type: Door - secondsUntilStateChange: -192464 + secondsUntilStateChange: -194569.53 state: Opening - type: DeviceLinkSource lastSignals: @@ -20311,12 +20733,6 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,51.5 - parent: 2 - uid: 365 components: - type: Transform @@ -21482,7 +21898,7 @@ entities: pos: 42.5,-28.5 parent: 2 - type: Door - secondsUntilStateChange: -28579.295 + secondsUntilStateChange: -30684.826 state: Opening - type: DeviceLinkSource lastSignals: @@ -21790,7 +22206,7 @@ entities: pos: 60.5,-22.5 parent: 2 - type: Door - secondsUntilStateChange: -77002.625 + secondsUntilStateChange: -79108.16 state: Opening - type: DeviceLinkSource lastSignals: @@ -22058,20 +22474,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,16.5 parent: 2 -- proto: AirlockShuttle - entities: - - uid: 22390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-36.5 - parent: 2 - - uid: 24676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-37.5 - parent: 2 - proto: AirlockTheatreLocked entities: - uid: 608 @@ -23148,6 +23550,14 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-62.5 parent: 2 +- proto: AmeController + entities: + - uid: 4364 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 + - type: CMExplosionEffect - proto: AmeJar entities: - uid: 4417 @@ -23170,36 +23580,80 @@ entities: - type: Transform pos: -5.671658,-61.590103 parent: 2 -- proto: AmePartFlatpack +- proto: AmeShielding entities: - uid: 636 components: - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -1.5707963267948966 rad + pos: -11.5,-64.5 + parent: 2 - uid: 683 components: - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 782 + rot: -1.5707963267948966 rad + pos: -11.5,-63.5 + parent: 2 + - uid: 5271 components: - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4364 + rot: -1.5707963267948966 rad + pos: -11.5,-65.5 + parent: 2 + - uid: 17966 components: - type: Transform - parent: 4363 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -1.5707963267948966 rad + pos: -14.5,-65.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-65.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-63.5 + parent: 2 + - uid: 23388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-64.5 + parent: 2 + - uid: 23389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 23390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-64.5 + parent: 2 + - uid: 23391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-63.5 + parent: 2 + - uid: 31841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-64.5 + parent: 2 + - uid: 31842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-63.5 + parent: 2 - proto: AnomalyScanner entities: - uid: 732 @@ -23241,6 +23695,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 85 supplyRampPosition: 53.91901 + - type: Fixtures + fixtures: {} - uid: 743 components: - type: MetaData @@ -23248,6 +23704,8 @@ entities: - type: Transform pos: 46.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 748 components: - type: MetaData @@ -23256,6 +23714,8 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 750 components: - type: MetaData @@ -23264,6 +23724,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 752 components: - type: MetaData @@ -23272,6 +23734,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 753 components: - type: MetaData @@ -23280,16 +23744,22 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 755 components: - type: Transform pos: 11.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 758 components: - type: Transform pos: 34.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 759 components: - type: MetaData @@ -23300,6 +23770,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 55 supplyRampPosition: 2.6408517 + - type: Fixtures + fixtures: {} - uid: 760 components: - type: MetaData @@ -23307,18 +23779,24 @@ entities: - type: Transform pos: 37.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 764 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 766 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 769 components: - type: MetaData @@ -23328,24 +23806,32 @@ entities: parent: 2 - type: Battery startingCharge: 12000 + - type: Fixtures + fixtures: {} - uid: 772 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 778 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 780 components: - type: MetaData @@ -23354,6 +23840,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 784 components: - type: MetaData @@ -23364,6 +23852,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 25 supplyRampPosition: 9.296312 + - type: Fixtures + fixtures: {} - uid: 786 components: - type: MetaData @@ -23372,6 +23862,8 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 789 components: - type: MetaData @@ -23379,6 +23871,8 @@ entities: - type: Transform pos: -19.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 790 components: - type: MetaData @@ -23387,6 +23881,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 791 components: - type: MetaData @@ -23395,6 +23891,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 792 components: - type: MetaData @@ -23405,6 +23903,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 + - type: Fixtures + fixtures: {} - uid: 793 components: - type: MetaData @@ -23415,6 +23915,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 65 supplyRampPosition: 2.4463015 + - type: Fixtures + fixtures: {} - uid: 794 components: - type: MetaData @@ -23425,12 +23927,16 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 25 supplyRampPosition: 9.488577 + - type: Fixtures + fixtures: {} - uid: 795 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 798 components: - type: MetaData @@ -23441,6 +23947,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 1.347667 + - type: Fixtures + fixtures: {} - uid: 803 components: - type: MetaData @@ -23449,6 +23957,8 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 804 components: - type: MetaData @@ -23462,6 +23972,8 @@ entities: loadingNetworkDemand: 55 currentReceiving: 55.01975 currentSupply: 55 + - type: Fixtures + fixtures: {} - uid: 805 components: - type: MetaData @@ -23470,6 +23982,8 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 806 components: - type: MetaData @@ -23484,11 +23998,15 @@ entities: currentReceiving: 19.980549 currentSupply: 20 supplyRampPosition: 0.019451141 + - type: Fixtures + fixtures: {} - uid: 807 components: - type: Transform pos: 46.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 811 components: - type: MetaData @@ -23497,6 +24015,8 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 812 components: - type: MetaData @@ -23505,12 +24025,16 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 814 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 815 components: - type: MetaData @@ -23519,12 +24043,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 818 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 819 components: - type: MetaData @@ -23532,18 +24060,24 @@ entities: - type: Transform pos: 8.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 820 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 821 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 823 components: - type: MetaData @@ -23552,386 +24086,522 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 825 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 827 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 828 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 830 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 831 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 832 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 833 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 835 components: - type: Transform pos: 82.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 836 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-0.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1822 components: - type: Transform pos: 20.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1928 components: - type: Transform pos: 12.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1980 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2022 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2474 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2778 components: - type: Transform pos: -14.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2858 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2984 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4264 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4327 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6723 components: - type: Transform pos: 13.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7150 components: - type: Transform pos: -12.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8155 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8270 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8998 components: - type: Transform pos: 61.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9418 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10861 components: - type: Transform pos: 0.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11495 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11906 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12204 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12722 components: - type: Transform pos: 34.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12805 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14436 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14525 components: - type: Transform pos: -10.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15138 components: - type: Transform pos: -23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18369 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19791 components: - type: Transform pos: 19.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20152 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20228 components: - type: Transform pos: 0.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21722 components: - type: Transform pos: -10.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22028 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22829 components: - type: Transform pos: -16.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22911 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24460 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24470 components: - type: Transform pos: 55.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24817 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25934 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26616 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 27083 components: - type: Transform pos: 13.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 27170 components: - type: Transform pos: 30.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 27176 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28792 components: - type: Transform pos: -23.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28948 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29637 components: - type: Transform pos: -6.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29638 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29639 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29930 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29931 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 31422 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 31423 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 31807 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 31878 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32033 components: - type: Transform pos: -6.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32291 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 33218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 839 @@ -23946,6 +24616,8 @@ entities: - type: Transform pos: 14.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 840 components: - type: MetaData @@ -23954,6 +24626,8 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 845 components: - type: MetaData @@ -23962,12 +24636,16 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 846 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 847 components: - type: MetaData @@ -23976,6 +24654,8 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 848 components: - type: MetaData @@ -23984,6 +24664,8 @@ entities: rot: 3.141592653589793 rad pos: 84.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 850 components: - type: MetaData @@ -23992,6 +24674,8 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 851 components: - type: MetaData @@ -24000,45 +24684,61 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12624 components: - type: Transform pos: 36.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14025 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16101 components: - type: Transform pos: 45.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16114 components: - type: Transform pos: 48.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29435 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29853 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 33074 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 852 @@ -24049,6 +24749,8 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 8207 @@ -24169,43 +24871,19 @@ entities: rot: -1.5707963267948966 rad pos: 75.5,-27.5 parent: 2 -- proto: AtmosDeviceFanDirectional +- proto: AtmosDeviceFanDirectionalDev entities: - uid: 81 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-11.5 - parent: 2 - uid: 305 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-57.5 parent: 2 - - uid: 312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-9.5 - parent: 2 - - uid: 888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,51.5 - parent: 2 - - uid: 891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-3.5 - parent: 2 - uid: 896 components: - type: Transform @@ -24286,36 +24964,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-75.5 parent: 2 - - uid: 9268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-3.5 - parent: 2 - - uid: 9304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-13.5 - parent: 2 - - uid: 9322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-11.5 - parent: 2 - - uid: 10912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-1.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-27.5 - parent: 2 - uid: 11567 components: - type: Transform @@ -24328,12 +24976,6 @@ entities: rot: 1.5707963267948966 rad pos: 93.5,-26.5 parent: 2 - - uid: 12325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-33.5 - parent: 2 - uid: 13886 components: - type: Transform @@ -24364,24 +25006,12 @@ entities: rot: 3.141592653589793 rad pos: -72.5,20.5 parent: 2 - - uid: 16099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-5.5 - parent: 2 - uid: 16411 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,20.5 parent: 2 - - uid: 19219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-25.5 - parent: 2 - uid: 20367 components: - type: Transform @@ -24411,24 +25041,12 @@ entities: rot: 3.141592653589793 rad pos: -70.5,20.5 parent: 2 - - uid: 22085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-35.5 - parent: 2 - uid: 22515 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,29.5 parent: 2 - - uid: 24664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-36.5 - parent: 2 - uid: 24698 components: - type: Transform @@ -24466,43 +25084,13 @@ entities: - type: Transform pos: -45.5,-39.5 parent: 2 - - uid: 29898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-37.5 - parent: 2 - - uid: 30640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,10.5 - parent: 2 - - uid: 30644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,16.5 - parent: 2 - - uid: 30645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,18.5 - parent: 2 - - uid: 30646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,8.5 - parent: 2 - uid: 32387 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-57.5 parent: 2 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanTinyDev entities: - uid: 898 components: @@ -27109,6 +27697,8 @@ entities: - type: Transform pos: 85.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignMaidCafe entities: - uid: 1064 @@ -27116,6 +27706,8 @@ entities: - type: Transform pos: 26.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignOfficerBeersky entities: - uid: 1065 @@ -27123,6 +27715,8 @@ entities: - type: Transform pos: -34.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignTheDrunkCarp entities: - uid: 1066 @@ -27130,6 +27724,8 @@ entities: - type: Transform pos: 23.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseComputer entities: - uid: 1071 @@ -27638,18 +28234,6 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-18.5 parent: 2 - - uid: 31735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-28.5 - parent: 2 - - uid: 31751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-28.5 - parent: 2 - proto: Bible entities: - uid: 18430 @@ -29083,6 +29667,8 @@ entities: - type: Transform pos: 0.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BrokenBottle entities: - uid: 30011 @@ -29257,6 +29843,11 @@ entities: - type: Transform pos: 12.5,-59.5 parent: 2 + - uid: 364 + components: + - type: Transform + pos: 22.5,50.5 + parent: 2 - uid: 408 components: - type: Transform @@ -44592,11 +45183,6 @@ entities: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 5881 - components: - - type: Transform - pos: 23.5,51.5 - parent: 2 - uid: 5882 components: - type: Transform @@ -45642,36 +46228,6 @@ entities: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 6124 - components: - - type: Transform - pos: 85.5,-3.5 - parent: 2 - - uid: 6125 - components: - - type: Transform - pos: 86.5,-3.5 - parent: 2 - - uid: 6126 - components: - - type: Transform - pos: 88.5,-3.5 - parent: 2 - - uid: 6127 - components: - - type: Transform - pos: 89.5,-3.5 - parent: 2 - - uid: 6128 - components: - - type: Transform - pos: 90.5,-3.5 - parent: 2 - - uid: 6129 - components: - - type: Transform - pos: 87.5,-3.5 - parent: 2 - uid: 6130 components: - type: Transform @@ -46217,11 +46773,6 @@ entities: - type: Transform pos: -17.5,37.5 parent: 2 - - uid: 9341 - components: - - type: Transform - pos: 89.5,-2.5 - parent: 2 - uid: 9348 components: - type: Transform @@ -46697,6 +47248,11 @@ entities: - type: Transform pos: -2.5,2.5 parent: 2 + - uid: 12325 + components: + - type: Transform + pos: 82.5,4.5 + parent: 2 - uid: 12392 components: - type: Transform @@ -46977,6 +47533,11 @@ entities: - type: Transform pos: 71.5,-43.5 parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 83.5,4.5 + parent: 2 - uid: 13899 components: - type: Transform @@ -48822,6 +49383,16 @@ entities: - type: Transform pos: -48.5,-25.5 parent: 2 + - uid: 22129 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: 83.5,10.5 + parent: 2 - uid: 22202 components: - type: Transform @@ -48842,6 +49413,11 @@ entities: - type: Transform pos: -46.5,-23.5 parent: 2 + - uid: 22304 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 - uid: 22382 components: - type: Transform @@ -48852,6 +49428,11 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 2 + - uid: 22390 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 - uid: 22395 components: - type: Transform @@ -48867,11 +49448,6 @@ entities: - type: Transform pos: -40.5,-62.5 parent: 2 - - uid: 22507 - components: - - type: Transform - pos: 86.5,-1.5 - parent: 2 - uid: 22510 components: - type: Transform @@ -49047,6 +49623,61 @@ entities: - type: Transform pos: -5.5,-68.5 parent: 2 + - uid: 23360 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 23361 + components: + - type: Transform + pos: 83.5,8.5 + parent: 2 + - uid: 23362 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 23363 + components: + - type: Transform + pos: 83.5,24.5 + parent: 2 + - uid: 23364 + components: + - type: Transform + pos: 83.5,9.5 + parent: 2 + - uid: 23365 + components: + - type: Transform + pos: 83.5,7.5 + parent: 2 + - uid: 23366 + components: + - type: Transform + pos: 83.5,5.5 + parent: 2 + - uid: 23367 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 23369 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 23381 + components: + - type: Transform + pos: 83.5,25.5 + parent: 2 + - uid: 23383 + components: + - type: Transform + pos: 83.5,6.5 + parent: 2 - uid: 23422 components: - type: Transform @@ -49092,11 +49723,6 @@ entities: - type: Transform pos: -39.5,-38.5 parent: 2 - - uid: 23522 - components: - - type: Transform - pos: 88.5,-11.5 - parent: 2 - uid: 23523 components: - type: Transform @@ -49127,26 +49753,6 @@ entities: - type: Transform pos: -7.5,-64.5 parent: 2 - - uid: 23580 - components: - - type: Transform - pos: 89.5,-1.5 - parent: 2 - - uid: 23583 - components: - - type: Transform - pos: 89.5,-9.5 - parent: 2 - - uid: 23591 - components: - - type: Transform - pos: 90.5,-11.5 - parent: 2 - - uid: 23630 - components: - - type: Transform - pos: 90.5,-9.5 - parent: 2 - uid: 23633 components: - type: Transform @@ -49272,11 +49878,6 @@ entities: - type: Transform pos: -49.5,-33.5 parent: 2 - - uid: 23824 - components: - - type: Transform - pos: 86.5,-9.5 - parent: 2 - uid: 23827 components: - type: Transform @@ -49332,11 +49933,6 @@ entities: - type: Transform pos: 30.5,-15.5 parent: 2 - - uid: 23911 - components: - - type: Transform - pos: 87.5,-9.5 - parent: 2 - uid: 23923 components: - type: Transform @@ -49397,46 +49993,11 @@ entities: - type: Transform pos: -35.5,-69.5 parent: 2 - - uid: 23998 - components: - - type: Transform - pos: 88.5,-9.5 - parent: 2 - uid: 23999 components: - type: Transform pos: 20.5,19.5 parent: 2 - - uid: 24048 - components: - - type: Transform - pos: 89.5,-11.5 - parent: 2 - - uid: 24055 - components: - - type: Transform - pos: 87.5,-11.5 - parent: 2 - - uid: 24056 - components: - - type: Transform - pos: 87.5,-1.5 - parent: 2 - - uid: 24057 - components: - - type: Transform - pos: 88.5,-1.5 - parent: 2 - - uid: 24058 - components: - - type: Transform - pos: 86.5,-11.5 - parent: 2 - - uid: 24064 - components: - - type: Transform - pos: 90.5,-1.5 - parent: 2 - uid: 24093 components: - type: Transform @@ -49507,6 +50068,11 @@ entities: - type: Transform pos: 12.5,-66.5 parent: 2 + - uid: 24396 + components: + - type: Transform + pos: 84.5,38.5 + parent: 2 - uid: 24431 components: - type: Transform @@ -49572,6 +50138,11 @@ entities: - type: Transform pos: -6.5,1.5 parent: 2 + - uid: 24664 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 - uid: 24667 components: - type: Transform @@ -49587,6 +50158,16 @@ entities: - type: Transform pos: -5.5,1.5 parent: 2 + - uid: 24676 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + pos: 83.5,19.5 + parent: 2 - uid: 24834 components: - type: Transform @@ -49720,13 +50301,73 @@ entities: - uid: 25123 components: - type: Transform - pos: 89.5,-10.5 + pos: 83.5,12.5 + parent: 2 + - uid: 25145 + components: + - type: Transform + pos: 83.5,16.5 + parent: 2 + - uid: 25151 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 25152 + components: + - type: Transform + pos: 83.5,26.5 + parent: 2 + - uid: 25256 + components: + - type: Transform + pos: 83.5,20.5 + parent: 2 + - uid: 25287 + components: + - type: Transform + pos: 83.5,15.5 parent: 2 - uid: 25293 components: - type: Transform pos: 34.5,19.5 parent: 2 + - uid: 25298 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 + - uid: 25300 + components: + - type: Transform + pos: 85.5,38.5 + parent: 2 + - uid: 25305 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 + - uid: 25306 + components: + - type: Transform + pos: 83.5,22.5 + parent: 2 + - uid: 25307 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 25308 + components: + - type: Transform + pos: 83.5,13.5 + parent: 2 + - uid: 25309 + components: + - type: Transform + pos: 83.5,28.5 + parent: 2 - uid: 25373 components: - type: Transform @@ -50120,28 +50761,13 @@ entities: - uid: 26170 components: - type: Transform - pos: 89.5,-4.5 - parent: 2 - - uid: 26171 - components: - - type: Transform - pos: 89.5,-0.5 - parent: 2 - - uid: 26176 - components: - - type: Transform - pos: 89.5,-8.5 + pos: 83.5,21.5 parent: 2 - uid: 26186 components: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 26193 - components: - - type: Transform - pos: 89.5,-12.5 - parent: 2 - uid: 26223 components: - type: Transform @@ -53767,6 +54393,11 @@ entities: - type: Transform pos: 0.5,26.5 parent: 2 + - uid: 31761 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 - uid: 31772 components: - type: Transform @@ -53832,6 +54463,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 2 + - uid: 31793 + components: + - type: Transform + pos: 83.5,18.5 + parent: 2 - uid: 31808 components: - type: Transform @@ -53972,6 +54608,11 @@ entities: - type: Transform pos: -37.5,-7.5 parent: 2 + - uid: 31837 + components: + - type: Transform + pos: 83.5,11.5 + parent: 2 - uid: 31854 components: - type: Transform @@ -55042,6 +55683,761 @@ entities: - type: Transform pos: -42.5,14.5 parent: 2 + - uid: 33226 + components: + - type: Transform + pos: 84.5,4.5 + parent: 2 + - uid: 33227 + components: + - type: Transform + pos: 85.5,4.5 + parent: 2 + - uid: 33228 + components: + - type: Transform + pos: 86.5,4.5 + parent: 2 + - uid: 33229 + components: + - type: Transform + pos: 87.5,4.5 + parent: 2 + - uid: 33230 + components: + - type: Transform + pos: 86.5,5.5 + parent: 2 + - uid: 33231 + components: + - type: Transform + pos: 86.5,6.5 + parent: 2 + - uid: 33232 + components: + - type: Transform + pos: 86.5,7.5 + parent: 2 + - uid: 33233 + components: + - type: Transform + pos: 86.5,8.5 + parent: 2 + - uid: 33234 + components: + - type: Transform + pos: 86.5,9.5 + parent: 2 + - uid: 33235 + components: + - type: Transform + pos: 86.5,10.5 + parent: 2 + - uid: 33236 + components: + - type: Transform + pos: 86.5,11.5 + parent: 2 + - uid: 33237 + components: + - type: Transform + pos: 86.5,12.5 + parent: 2 + - uid: 33238 + components: + - type: Transform + pos: 86.5,13.5 + parent: 2 + - uid: 33239 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 33240 + components: + - type: Transform + pos: 86.5,15.5 + parent: 2 + - uid: 33241 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 + - uid: 33242 + components: + - type: Transform + pos: 86.5,17.5 + parent: 2 + - uid: 33243 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 33244 + components: + - type: Transform + pos: 86.5,19.5 + parent: 2 + - uid: 33245 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 33246 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 33247 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 33248 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 33249 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 33250 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 33251 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 33252 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 33253 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 33254 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 33255 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 + - uid: 33256 + components: + - type: Transform + pos: 86.5,31.5 + parent: 2 + - uid: 33257 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 33258 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 33259 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - uid: 33260 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 33261 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 33262 + components: + - type: Transform + pos: 86.5,37.5 + parent: 2 + - uid: 33263 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 + - uid: 33264 + components: + - type: Transform + pos: 87.5,38.5 + parent: 2 + - uid: 33265 + components: + - type: Transform + pos: 88.5,38.5 + parent: 2 + - uid: 33266 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 33267 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 33268 + components: + - type: Transform + pos: 87.5,36.5 + parent: 2 + - uid: 33269 + components: + - type: Transform + pos: 88.5,36.5 + parent: 2 + - uid: 33270 + components: + - type: Transform + pos: 89.5,36.5 + parent: 2 + - uid: 33271 + components: + - type: Transform + pos: 90.5,36.5 + parent: 2 + - uid: 33272 + components: + - type: Transform + pos: 87.5,30.5 + parent: 2 + - uid: 33273 + components: + - type: Transform + pos: 88.5,30.5 + parent: 2 + - uid: 33274 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - uid: 33275 + components: + - type: Transform + pos: 90.5,30.5 + parent: 2 + - uid: 33276 + components: + - type: Transform + pos: 87.5,28.5 + parent: 2 + - uid: 33277 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 33278 + components: + - type: Transform + pos: 89.5,28.5 + parent: 2 + - uid: 33279 + components: + - type: Transform + pos: 90.5,28.5 + parent: 2 + - uid: 33280 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 + - uid: 33281 + components: + - type: Transform + pos: 88.5,16.5 + parent: 2 + - uid: 33282 + components: + - type: Transform + pos: 89.5,16.5 + parent: 2 + - uid: 33283 + components: + - type: Transform + pos: 90.5,16.5 + parent: 2 + - uid: 33284 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 33285 + components: + - type: Transform + pos: 88.5,14.5 + parent: 2 + - uid: 33286 + components: + - type: Transform + pos: 89.5,14.5 + parent: 2 + - uid: 33287 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 33288 + components: + - type: Transform + pos: 87.5,8.5 + parent: 2 + - uid: 33289 + components: + - type: Transform + pos: 88.5,8.5 + parent: 2 + - uid: 33290 + components: + - type: Transform + pos: 89.5,8.5 + parent: 2 + - uid: 33291 + components: + - type: Transform + pos: 90.5,8.5 + parent: 2 + - uid: 33292 + components: + - type: Transform + pos: 90.5,6.5 + parent: 2 + - uid: 33293 + components: + - type: Transform + pos: 89.5,6.5 + parent: 2 + - uid: 33294 + components: + - type: Transform + pos: 88.5,6.5 + parent: 2 + - uid: 33295 + components: + - type: Transform + pos: 87.5,6.5 + parent: 2 + - uid: 33296 + components: + - type: Transform + pos: 86.5,3.5 + parent: 2 + - uid: 33297 + components: + - type: Transform + pos: 86.5,2.5 + parent: 2 + - uid: 33298 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 + - uid: 33299 + components: + - type: Transform + pos: 86.5,0.5 + parent: 2 + - uid: 33300 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 33301 + components: + - type: Transform + pos: 85.5,-15.5 + parent: 2 + - uid: 33302 + components: + - type: Transform + pos: 86.5,-15.5 + parent: 2 + - uid: 33303 + components: + - type: Transform + pos: 87.5,-15.5 + parent: 2 + - uid: 33304 + components: + - type: Transform + pos: 88.5,-15.5 + parent: 2 + - uid: 33305 + components: + - type: Transform + pos: 89.5,-15.5 + parent: 2 + - uid: 33306 + components: + - type: Transform + pos: 90.5,-15.5 + parent: 2 + - uid: 33307 + components: + - type: Transform + pos: 90.5,-13.5 + parent: 2 + - uid: 33308 + components: + - type: Transform + pos: 89.5,-13.5 + parent: 2 + - uid: 33309 + components: + - type: Transform + pos: 88.5,-13.5 + parent: 2 + - uid: 33310 + components: + - type: Transform + pos: 87.5,-13.5 + parent: 2 + - uid: 33311 + components: + - type: Transform + pos: 86.5,-13.5 + parent: 2 + - uid: 33312 + components: + - type: Transform + pos: 86.5,-7.5 + parent: 2 + - uid: 33313 + components: + - type: Transform + pos: 87.5,-7.5 + parent: 2 + - uid: 33314 + components: + - type: Transform + pos: 88.5,-7.5 + parent: 2 + - uid: 33315 + components: + - type: Transform + pos: 89.5,-7.5 + parent: 2 + - uid: 33316 + components: + - type: Transform + pos: 90.5,-7.5 + parent: 2 + - uid: 33317 + components: + - type: Transform + pos: 90.5,-5.5 + parent: 2 + - uid: 33318 + components: + - type: Transform + pos: 89.5,-5.5 + parent: 2 + - uid: 33319 + components: + - type: Transform + pos: 88.5,-5.5 + parent: 2 + - uid: 33320 + components: + - type: Transform + pos: 87.5,-5.5 + parent: 2 + - uid: 33321 + components: + - type: Transform + pos: 86.5,-5.5 + parent: 2 + - uid: 33323 + components: + - type: Transform + pos: 85.5,-5.5 + parent: 2 + - uid: 33324 + components: + - type: Transform + pos: 86.5,-1.5 + parent: 2 + - uid: 33325 + components: + - type: Transform + pos: 86.5,-2.5 + parent: 2 + - uid: 33326 + components: + - type: Transform + pos: 86.5,-4.5 + parent: 2 + - uid: 33327 + components: + - type: Transform + pos: 86.5,-3.5 + parent: 2 + - uid: 33402 + components: + - type: Transform + pos: -64.5,-28.5 + parent: 2 + - uid: 33403 + components: + - type: Transform + pos: -64.5,-29.5 + parent: 2 + - uid: 33404 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 33405 + components: + - type: Transform + pos: -64.5,-31.5 + parent: 2 + - uid: 33406 + components: + - type: Transform + pos: -64.5,-32.5 + parent: 2 + - uid: 33407 + components: + - type: Transform + pos: -64.5,-33.5 + parent: 2 + - uid: 33408 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - uid: 33409 + components: + - type: Transform + pos: -64.5,-35.5 + parent: 2 + - uid: 33410 + components: + - type: Transform + pos: -64.5,-36.5 + parent: 2 + - uid: 33411 + components: + - type: Transform + pos: -64.5,-37.5 + parent: 2 + - uid: 33412 + components: + - type: Transform + pos: -64.5,-38.5 + parent: 2 + - uid: 33413 + components: + - type: Transform + pos: -64.5,-39.5 + parent: 2 + - uid: 33414 + components: + - type: Transform + pos: -64.5,-40.5 + parent: 2 + - uid: 33415 + components: + - type: Transform + pos: -64.5,-41.5 + parent: 2 + - uid: 33416 + components: + - type: Transform + pos: -64.5,-42.5 + parent: 2 + - uid: 33417 + components: + - type: Transform + pos: -64.5,-43.5 + parent: 2 + - uid: 33418 + components: + - type: Transform + pos: -64.5,-44.5 + parent: 2 + - uid: 33419 + components: + - type: Transform + pos: -64.5,-45.5 + parent: 2 + - uid: 33420 + components: + - type: Transform + pos: -64.5,-46.5 + parent: 2 + - uid: 33421 + components: + - type: Transform + pos: -64.5,-47.5 + parent: 2 + - uid: 33422 + components: + - type: Transform + pos: -64.5,-48.5 + parent: 2 + - uid: 33423 + components: + - type: Transform + pos: -64.5,-49.5 + parent: 2 + - uid: 33424 + components: + - type: Transform + pos: -64.5,-50.5 + parent: 2 + - uid: 33425 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 33426 + components: + - type: Transform + pos: -64.5,-54.5 + parent: 2 + - uid: 33427 + components: + - type: Transform + pos: -64.5,-53.5 + parent: 2 + - uid: 33428 + components: + - type: Transform + pos: -64.5,-55.5 + parent: 2 + - uid: 33429 + components: + - type: Transform + pos: -64.5,-56.5 + parent: 2 + - uid: 33430 + components: + - type: Transform + pos: -64.5,-57.5 + parent: 2 + - uid: 33431 + components: + - type: Transform + pos: -64.5,-58.5 + parent: 2 + - uid: 33432 + components: + - type: Transform + pos: -64.5,-59.5 + parent: 2 + - uid: 33433 + components: + - type: Transform + pos: -64.5,-60.5 + parent: 2 + - uid: 33434 + components: + - type: Transform + pos: -64.5,-52.5 + parent: 2 + - uid: 33435 + components: + - type: Transform + pos: -63.5,-61.5 + parent: 2 + - uid: 33436 + components: + - type: Transform + pos: -64.5,-61.5 + parent: 2 + - uid: 33437 + components: + - type: Transform + pos: -65.5,-61.5 + parent: 2 + - uid: 33438 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 2 + - uid: 33439 + components: + - type: Transform + pos: -63.5,-62.5 + parent: 2 + - uid: 33440 + components: + - type: Transform + pos: -66.5,-60.5 + parent: 2 + - uid: 33441 + components: + - type: Transform + pos: -65.5,-60.5 + parent: 2 + - uid: 33442 + components: + - type: Transform + pos: -66.5,-58.5 + parent: 2 + - uid: 33443 + components: + - type: Transform + pos: -65.5,-58.5 + parent: 2 + - uid: 33444 + components: + - type: Transform + pos: -65.5,-52.5 + parent: 2 + - uid: 33445 + components: + - type: Transform + pos: -66.5,-52.5 + parent: 2 + - uid: 33446 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 33447 + components: + - type: Transform + pos: -65.5,-50.5 + parent: 2 + - uid: 33448 + components: + - type: Transform + pos: -65.5,-44.5 + parent: 2 + - uid: 33449 + components: + - type: Transform + pos: -66.5,-44.5 + parent: 2 + - uid: 33450 + components: + - type: Transform + pos: -66.5,-42.5 + parent: 2 + - uid: 33451 + components: + - type: Transform + pos: -65.5,-42.5 + parent: 2 - proto: CableApcStack entities: - uid: 3761 @@ -55448,6 +56844,16 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -49.5,-61.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 2 - uid: 3058 components: - type: Transform @@ -55548,6 +56954,11 @@ entities: - type: Transform pos: -3.5,-82.5 parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 2 - uid: 4425 components: - type: Transform @@ -55573,6 +56984,11 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 + - uid: 5095 + components: + - type: Transform + pos: -50.5,-61.5 + parent: 2 - uid: 5229 components: - type: Transform @@ -55608,6 +57024,11 @@ entities: - type: Transform pos: 41.5,-13.5 parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 2 - uid: 5253 components: - type: Transform @@ -55878,6 +57299,26 @@ entities: - type: Transform pos: -2.5,-70.5 parent: 2 + - uid: 6125 + components: + - type: Transform + pos: -47.5,-61.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -45.5,-61.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 2 - uid: 6163 components: - type: Transform @@ -61858,6 +63299,11 @@ entities: - type: Transform pos: 20.5,22.5 parent: 2 + - uid: 11897 + components: + - type: Transform + pos: -43.5,-61.5 + parent: 2 - uid: 11979 components: - type: Transform @@ -63613,6 +65059,11 @@ entities: - type: Transform pos: -0.5,-79.5 parent: 2 + - uid: 31840 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 2 - uid: 31844 components: - type: Transform @@ -63766,11 +65217,6 @@ entities: - type: Transform pos: -38.6046,6.6380844 parent: 2 - - uid: 22459 - components: - - type: Transform - pos: -47.56485,-61.466362 - parent: 2 - uid: 29414 components: - type: Transform @@ -71411,16 +72857,6 @@ entities: - type: Transform pos: 84.5,-3.5 parent: 2 - - uid: 9685 - components: - - type: Transform - pos: 85.5,-0.5 - parent: 2 - - uid: 9686 - components: - - type: Transform - pos: 86.5,-0.5 - parent: 2 - uid: 9687 components: - type: Transform @@ -73986,6 +75422,41 @@ entities: - type: Transform pos: -42.5,14.5 parent: 2 + - uid: 33219 + components: + - type: Transform + pos: 84.5,0.5 + parent: 2 + - uid: 33220 + components: + - type: Transform + pos: 84.5,1.5 + parent: 2 + - uid: 33221 + components: + - type: Transform + pos: 84.5,2.5 + parent: 2 + - uid: 33222 + components: + - type: Transform + pos: 84.5,3.5 + parent: 2 + - uid: 33223 + components: + - type: Transform + pos: 84.5,4.5 + parent: 2 + - uid: 33224 + components: + - type: Transform + pos: 83.5,4.5 + parent: 2 + - uid: 33225 + components: + - type: Transform + pos: 82.5,4.5 + parent: 2 - proto: CableMVStack entities: - uid: 9708 @@ -74919,11 +76390,17 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-75.5 parent: 2 - - uid: 311 + - uid: 312 components: - type: Transform rot: 1.5707963267948966 rad - pos: 89.5,-11.5 + pos: 90.5,14.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,8.5 parent: 2 - uid: 314 components: @@ -74943,6 +76420,18 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-42.5 parent: 2 + - uid: 837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-15.5 + parent: 2 + - uid: 888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-13.5 + parent: 2 - uid: 917 components: - type: Transform @@ -75695,6 +77184,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,36.5 parent: 2 + - uid: 6374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,50.5 + parent: 2 - uid: 6530 components: - type: Transform @@ -76172,11 +77667,6 @@ entities: - type: Transform pos: 49.5,-22.5 parent: 2 - - uid: 9909 - components: - - type: Transform - pos: 89.5,-3.5 - parent: 2 - uid: 9912 components: - type: Transform @@ -76415,11 +77905,6 @@ entities: - type: Transform pos: 69.5,-71.5 parent: 2 - - uid: 9975 - components: - - type: Transform - pos: 88.5,-3.5 - parent: 2 - uid: 9977 components: - type: Transform @@ -79450,7 +80935,14 @@ entities: - uid: 19340 components: - type: Transform - pos: 89.5,-1.5 + rot: 1.5707963267948966 rad + pos: 77.5,6.5 + parent: 2 + - uid: 19343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,8.5 parent: 2 - uid: 19388 components: @@ -79727,23 +81219,11 @@ entities: - type: Transform pos: -57.5,-23.5 parent: 2 - - uid: 22464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-9.5 - parent: 2 - uid: 22469 components: - type: Transform pos: -31.5,-68.5 parent: 2 - - uid: 22494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-9.5 - parent: 2 - uid: 22753 components: - type: Transform @@ -79786,6 +81266,12 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-6.5 parent: 2 + - uid: 23326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,7.5 + parent: 2 - uid: 23429 components: - type: Transform @@ -79816,12 +81302,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-40.5 parent: 2 - - uid: 23464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-1.5 - parent: 2 - uid: 23529 components: - type: Transform @@ -79832,12 +81312,6 @@ entities: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 23701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-11.5 - parent: 2 - uid: 23702 components: - type: Transform @@ -79987,16 +81461,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-36.5 parent: 2 - - uid: 24705 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 2 - - uid: 24706 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - uid: 24712 components: - type: Transform @@ -80139,6 +81603,18 @@ entities: - type: Transform pos: 24.5,-68.5 parent: 2 + - uid: 26181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,9.5 + parent: 2 + - uid: 26559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-7.5 + parent: 2 - uid: 26590 components: - type: Transform @@ -80151,6 +81627,18 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-44.5 parent: 2 + - uid: 26871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-5.5 + parent: 2 + - uid: 26941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,6.5 + parent: 2 - uid: 26946 components: - type: Transform @@ -80224,21 +81712,11 @@ entities: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 28728 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 2 - uid: 28814 components: - type: Transform pos: 14.5,-82.5 parent: 2 - - uid: 28825 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - uid: 28853 components: - type: Transform @@ -80336,6 +81814,12 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,5.5 parent: 2 + - uid: 29384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,14.5 + parent: 2 - uid: 29512 components: - type: Transform @@ -80875,6 +82359,36 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-55.5 parent: 2 + - uid: 32973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,16.5 + parent: 2 + - uid: 32974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,28.5 + parent: 2 + - uid: 32976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,30.5 + parent: 2 + - uid: 32977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,36.5 + parent: 2 + - uid: 32979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,38.5 + parent: 2 - proto: Cautery entities: - uid: 10690 @@ -82393,18 +83907,6 @@ entities: - type: Transform pos: 21.494093,-10.413399 parent: 2 -- proto: CigaretteLicoxide - entities: - - uid: 32632 - components: - - type: Transform - pos: 95.491,-44.356026 - parent: 2 - - uid: 32634 - components: - - type: Transform - pos: 95.491,-44.4654 - parent: 2 - proto: CigarGold entities: - uid: 10965 @@ -82424,11 +83926,6 @@ entities: parent: 2 - proto: CigarGoldCase entities: - - uid: 17366 - components: - - type: Transform - pos: 85.50819,-4.4058647 - parent: 2 - uid: 29333 components: - type: Transform @@ -82502,13 +83999,6 @@ entities: - type: Transform pos: 19.299414,-9.418207 parent: 2 -- proto: CigCartonMixed - entities: - - uid: 32624 - components: - - type: Transform - pos: 95.60037,-44.168526 - parent: 2 - proto: CigPackBlack entities: - uid: 9738 @@ -82560,6 +84050,8 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 10983 @@ -82596,6 +84088,11 @@ entities: parent: 2 - proto: ClosetEmergencyFilledRandom entities: + - uid: 261 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 - uid: 1003 components: - type: Transform @@ -83172,11 +84669,6 @@ entities: - type: Transform pos: -33.5,11.5 parent: 2 - - uid: 19397 - components: - - type: Transform - pos: 78.5,6.5 - parent: 2 - uid: 21477 components: - type: Transform @@ -83187,6 +84679,11 @@ entities: - type: Transform pos: -13.5,-32.5 parent: 2 + - uid: 22459 + components: + - type: Transform + pos: 87.5,-6.5 + parent: 2 - uid: 22574 components: - type: Transform @@ -83202,11 +84699,36 @@ entities: - type: Transform pos: 33.5,-76.5 parent: 2 + - uid: 26483 + components: + - type: Transform + pos: 87.5,7.5 + parent: 2 + - uid: 26919 + components: + - type: Transform + pos: 87.5,-14.5 + parent: 2 - uid: 29132 components: - type: Transform pos: 3.5,1.5 parent: 2 + - uid: 29186 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 + - uid: 29381 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 29382 + components: + - type: Transform + pos: 80.5,6.5 + parent: 2 - uid: 29425 components: - type: Transform @@ -83232,6 +84754,21 @@ entities: - type: Transform pos: 36.5,-49.5 parent: 2 + - uid: 31977 + components: + - type: Transform + pos: 88.39436,-53.78026 + parent: 2 + - uid: 31979 + components: + - type: Transform + pos: 90.39436,-53.78026 + parent: 2 + - uid: 31980 + components: + - type: Transform + pos: 97.39436,-40.78026 + parent: 2 - uid: 32356 components: - type: Transform @@ -83284,11 +84821,6 @@ entities: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 19398 - components: - - type: Transform - pos: 78.5,8.5 - parent: 2 - uid: 20352 components: - type: Transform @@ -83299,6 +84831,11 @@ entities: - type: Transform pos: 26.5,24.5 parent: 2 + - uid: 21491 + components: + - type: Transform + pos: 80.5,8.5 + parent: 2 - uid: 29427 components: - type: Transform @@ -83526,6 +85063,16 @@ entities: - type: Transform pos: 67.5,-23.5 parent: 2 + - uid: 32061 + components: + - type: Transform + pos: 91.39436,-23.78026 + parent: 2 + - uid: 32062 + components: + - type: Transform + pos: 89.39436,-53.78026 + parent: 2 - uid: 32354 components: - type: Transform @@ -84561,6 +86108,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 32063 + components: + - type: Transform + pos: 89.39436,-57.78026 + parent: 2 - proto: ClosetWall entities: - uid: 23445 @@ -84618,6 +86170,8 @@ entities: - 11621 - 11622 - 11628 + - type: Fixtures + fixtures: {} - proto: ClothingBackpack entities: - uid: 7251 @@ -84870,6 +86424,13 @@ entities: pos: 87.476265,-51.107292 parent: 2 - type: Insulated +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 32064 + components: + - type: Transform + pos: 96.44535,-45.66825 + parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - uid: 11169 @@ -85538,6 +87099,23 @@ entities: - type: Transform pos: 33.373695,-18.482307 parent: 2 +- proto: ClothingMultipleHeadphones + entities: + - uid: 18881 + components: + - type: Transform + pos: 12.443378,25.48122 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: 12.614675,25.578442 + parent: 2 + - uid: 29012 + components: + - type: Transform + pos: 12.526711,25.698812 + parent: 2 - proto: ClothingNeckBronzeheart entities: - uid: 12587 @@ -85586,23 +87164,6 @@ entities: - type: Transform pos: -2.5308573,-23.507792 parent: 2 -- proto: ClothingNeckHeadphones - entities: - - uid: 18881 - components: - - type: Transform - pos: 12.443378,25.48122 - parent: 2 - - uid: 23729 - components: - - type: Transform - pos: 12.614675,25.578442 - parent: 2 - - uid: 29012 - components: - - type: Transform - pos: 12.526711,25.698812 - parent: 2 - proto: ClothingNeckMantleRD entities: - uid: 9884 @@ -87927,6 +89488,341 @@ entities: - type: Transform pos: 90.5,-27.5 parent: 2 +- proto: CopyMachineFilled + entities: + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,15.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 3348 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-32.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 17367 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 17969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 19075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 20221 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21024 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21025 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-16.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21028 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21032 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 21034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-23.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 24293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 2 + - type: ContainerContainer + containers: + paper_copy: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - proto: CorporateCircuitBoard entities: - uid: 15913 @@ -88311,52 +90207,18 @@ entities: - type: Transform pos: 90.5,-46.5 parent: 2 -- proto: CrateEngineeringAMEControl +- proto: CrateEngineeringAMEJar entities: - - uid: 8699 + - uid: 782 components: - type: Transform pos: -6.5,-61.5 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 4363 + - uid: 19397 components: - type: Transform pos: -4.5,-61.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 782 - - 683 - - 636 - - 4364 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateEngineeringCableBulk entities: - uid: 11602 @@ -89325,6 +91187,11 @@ entities: - type: Transform pos: 22.39215,-26.988102 parent: 2 + - uid: 32065 + components: + - type: Transform + pos: 90.50785,-45.800957 + parent: 2 - proto: CrowbarYellow entities: - uid: 16438 @@ -89526,7 +91393,7 @@ entities: pos: 30.5,17.5 parent: 2 - type: Door - secondsUntilStateChange: -305291.4 + secondsUntilStateChange: -307396.94 state: Opening - uid: 11706 components: @@ -89535,7 +91402,7 @@ entities: pos: 33.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -444930.6 + secondsUntilStateChange: -447036.12 state: Opening - uid: 11707 components: @@ -89550,7 +91417,7 @@ entities: pos: 29.5,17.5 parent: 2 - type: Door - secondsUntilStateChange: -191782.4 + secondsUntilStateChange: -193887.94 state: Opening - uid: 11709 components: @@ -89988,39 +91855,53 @@ entities: - type: Transform pos: 29.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11784 components: - type: Transform pos: 27.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11785 components: - type: Transform pos: 32.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13248 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22681 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24403 components: - type: Transform pos: -10.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30271 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 2408 @@ -100667,33 +102548,45 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6732 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9785 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13452 components: - type: Transform pos: 10.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13453 components: - type: Transform pos: 64.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13454 components: - type: Transform pos: 69.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13458 components: - type: Transform @@ -100709,157 +102602,219 @@ entities: showEnts: False occludes: True ent: null + - type: Fixtures + fixtures: {} - uid: 13459 components: - type: Transform pos: 13.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13461 components: - type: Transform pos: 17.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13464 components: - type: Transform pos: -2.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13465 components: - type: Transform pos: 4.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13466 components: - type: Transform pos: 38.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13467 components: - type: Transform pos: 48.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13468 components: - type: Transform pos: -14.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13470 components: - type: Transform pos: 10.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13471 components: - type: Transform pos: 1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13472 components: - type: Transform pos: -6.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13473 components: - type: Transform pos: 4.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13475 components: - type: Transform pos: -47.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13477 components: - type: Transform pos: -35.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13478 components: - type: Transform pos: -55.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13481 components: - type: Transform pos: -52.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13482 components: - type: Transform pos: -28.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13483 components: - type: Transform pos: -51.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13484 components: - type: Transform pos: 1.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13487 components: - type: Transform pos: 5.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13491 components: - type: Transform pos: 59.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13492 components: - type: Transform pos: 35.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13493 components: - type: Transform pos: 2.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13494 components: - type: Transform pos: 55.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13497 components: - type: Transform pos: 8.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14934 components: - type: Transform pos: 11.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19477 components: - type: Transform pos: -16.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21482 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21494 components: - type: Transform pos: -28.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29825 components: - type: Transform pos: -46.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 31996 components: - type: Transform pos: 36.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FatExtractor entities: - uid: 27891 @@ -101216,6 +103171,8 @@ entities: - 13776 - 13777 - 13819 + - type: Fixtures + fixtures: {} - uid: 13538 components: - type: Transform @@ -101229,6 +103186,8 @@ entities: - 13603 - 13602 - 648 + - type: Fixtures + fixtures: {} - uid: 13539 components: - type: Transform @@ -101240,6 +103199,8 @@ entities: - 13666 - 13667 - 617 + - type: Fixtures + fixtures: {} - uid: 13541 components: - type: Transform @@ -101253,6 +103214,8 @@ entities: - 13757 - 656 - 13793 + - type: Fixtures + fixtures: {} - uid: 13542 components: - type: Transform @@ -101268,6 +103231,8 @@ entities: - 13707 - 13708 - 651 + - type: Fixtures + fixtures: {} - uid: 13544 components: - type: Transform @@ -101282,6 +103247,8 @@ entities: - 13619 - 13605 - 623 + - type: Fixtures + fixtures: {} - uid: 13545 components: - type: Transform @@ -101298,6 +103265,8 @@ entities: - 13616 - 13779 - 633 + - type: Fixtures + fixtures: {} - uid: 13546 components: - type: Transform @@ -101309,6 +103278,8 @@ entities: - 13777 - 13820 - 627 + - type: Fixtures + fixtures: {} - uid: 13547 components: - type: Transform @@ -101324,11 +103295,15 @@ entities: - 13707 - 13708 - 651 + - type: Fixtures + fixtures: {} - uid: 13548 components: - type: Transform pos: 67.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13549 components: - type: Transform @@ -101345,12 +103320,16 @@ entities: - 13616 - 13779 - 633 + - type: Fixtures + fixtures: {} - uid: 13550 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13552 components: - type: Transform @@ -101369,6 +103348,8 @@ entities: - 13691 - 13764 - 13758 + - type: Fixtures + fixtures: {} - uid: 13553 components: - type: Transform @@ -101379,6 +103360,8 @@ entities: devices: - 639 - 13672 + - type: Fixtures + fixtures: {} - uid: 13556 components: - type: Transform @@ -101401,6 +103384,8 @@ entities: - 13722 - 13690 - 13691 + - type: Fixtures + fixtures: {} - uid: 13559 components: - type: Transform @@ -101417,6 +103402,8 @@ entities: - 13685 - 13684 - 13687 + - type: Fixtures + fixtures: {} - uid: 13560 components: - type: Transform @@ -101435,6 +103422,8 @@ entities: - 13744 - 13745 - 13746 + - type: Fixtures + fixtures: {} - uid: 13561 components: - type: Transform @@ -101450,6 +103439,8 @@ entities: - 13795 - 13794 - 13730 + - type: Fixtures + fixtures: {} - uid: 13563 components: - type: Transform @@ -101469,6 +103460,8 @@ entities: - 13749 - 13748 - 13747 + - type: Fixtures + fixtures: {} - uid: 13564 components: - type: Transform @@ -101482,6 +103475,8 @@ entities: - 13752 - 13761 - 657 + - type: Fixtures + fixtures: {} - uid: 13565 components: - type: Transform @@ -101496,6 +103491,8 @@ entities: - 13780 - 13781 - 658 + - type: Fixtures + fixtures: {} - uid: 13566 components: - type: Transform @@ -101509,6 +103506,8 @@ entities: - 13674 - 13673 - 659 + - type: Fixtures + fixtures: {} - uid: 13567 components: - type: Transform @@ -101524,6 +103523,8 @@ entities: - 13704 - 13668 - 13705 + - type: Fixtures + fixtures: {} - uid: 13568 components: - type: Transform @@ -101536,6 +103537,8 @@ entities: - 13668 - 13705 - 664 + - type: Fixtures + fixtures: {} - uid: 13569 components: - type: Transform @@ -101558,6 +103561,8 @@ entities: - 13711 - 13620 - 13621 + - type: Fixtures + fixtures: {} - uid: 13570 components: - type: Transform @@ -101572,6 +103577,8 @@ entities: - 13725 - 13726 - 667 + - type: Fixtures + fixtures: {} - uid: 13571 components: - type: Transform @@ -101581,6 +103588,8 @@ entities: - type: DeviceList devices: - 670 + - type: Fixtures + fixtures: {} - uid: 13573 components: - type: Transform @@ -101596,6 +103605,8 @@ entities: - 13665 - 13666 - 13667 + - type: Fixtures + fixtures: {} - uid: 13574 components: - type: Transform @@ -101608,6 +103619,8 @@ entities: - 13677 - 13678 - 676 + - type: Fixtures + fixtures: {} - uid: 13575 components: - type: Transform @@ -101619,6 +103632,8 @@ entities: - 13716 - 17744 - 17541 + - type: Fixtures + fixtures: {} - uid: 13580 components: - type: Transform @@ -101628,6 +103643,8 @@ entities: devices: - 13731 - 13736 + - type: Fixtures + fixtures: {} - uid: 13581 components: - type: Transform @@ -101636,6 +103653,8 @@ entities: - type: DeviceList devices: - 694 + - type: Fixtures + fixtures: {} - uid: 13582 components: - type: Transform @@ -101653,11 +103672,15 @@ entities: - 699 - 698 - 13739 + - type: Fixtures + fixtures: {} - uid: 13583 components: - type: Transform pos: -64.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13590 components: - type: Transform @@ -101667,11 +103690,15 @@ entities: devices: - 13820 - 711 + - type: Fixtures + fixtures: {} - uid: 13591 components: - type: Transform pos: 34.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 1664 @@ -101680,11 +103707,15 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14410 components: - type: Transform pos: 7.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 13594 @@ -103234,16 +105265,6 @@ entities: deviceLists: - 96 - 95 - - uid: 13866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 95 - uid: 14484 components: - type: Transform @@ -104642,6 +106663,8 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: GasFilter entities: - uid: 9245 @@ -106887,6 +108910,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 33159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-2.5 + parent: 2 - proto: GasPipeBendAlt1 entities: - uid: 1220 @@ -107588,6 +109617,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 219 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 - uid: 256 components: - type: Transform @@ -107682,6 +109716,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 797 + components: + - type: Transform + pos: 86.5,10.5 + parent: 2 - uid: 817 components: - type: Transform @@ -108696,6 +110735,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 6376 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 - uid: 6778 components: - type: Transform @@ -109423,6 +111477,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 9909 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 - uid: 9989 components: - type: Transform @@ -123977,13 +126036,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16950 - components: - - type: Transform - pos: 83.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 16951 components: - type: Transform @@ -124012,13 +126064,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16955 - components: - - type: Transform - pos: 85.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 16956 components: - type: Transform @@ -125410,6 +127455,11 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#17E8E2FF' + - uid: 19219 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 - uid: 19229 components: - type: Transform @@ -125499,6 +127549,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19398 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,0.5 + parent: 2 + - uid: 19405 + components: + - type: Transform + pos: 86.5,-1.5 + parent: 2 - uid: 19415 components: - type: Transform @@ -125755,6 +127821,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 20183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,-0.5 + parent: 2 - uid: 20202 components: - type: Transform @@ -125786,6 +127858,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 20282 + components: + - type: Transform + pos: 86.5,0.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + pos: 86.5,6.5 + parent: 2 - uid: 20442 components: - type: Transform @@ -125941,6 +128023,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 21202 + components: + - type: Transform + pos: 86.5,2.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 - uid: 21241 components: - type: Transform @@ -126303,6 +128395,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 22866 + components: + - type: Transform + pos: 86.5,17.5 + parent: 2 - uid: 22878 components: - type: Transform @@ -126397,6 +128494,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 23522 + components: + - type: Transform + pos: 86.5,5.5 + parent: 2 - uid: 23566 components: - type: Transform @@ -126413,6 +128515,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 23583 + components: + - type: Transform + pos: 86.5,3.5 + parent: 2 + - uid: 23591 + components: + - type: Transform + pos: 86.5,4.5 + parent: 2 - uid: 23811 components: - type: Transform @@ -126461,6 +128573,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 24055 + components: + - type: Transform + pos: 86.5,-0.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 - uid: 24084 components: - type: Transform @@ -126491,6 +128618,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 24335 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 - uid: 24455 components: - type: Transform @@ -127072,6 +129204,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 26171 + components: + - type: Transform + pos: 86.5,15.5 + parent: 2 + - uid: 26176 + components: + - type: Transform + pos: 86.5,13.5 + parent: 2 - uid: 26234 components: - type: Transform @@ -127150,6 +129292,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 26416 + components: + - type: Transform + pos: 86.5,8.5 + parent: 2 - uid: 26422 components: - type: Transform @@ -127174,6 +129321,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 26433 + components: + - type: Transform + pos: 86.5,31.5 + parent: 2 + - uid: 26436 + components: + - type: Transform + pos: 86.5,12.5 + parent: 2 - uid: 26439 components: - type: Transform @@ -127198,6 +129355,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 26451 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 + - uid: 26472 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 - uid: 26642 components: - type: Transform @@ -127590,6 +129757,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 27323 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 - uid: 27363 components: - type: Transform @@ -127840,6 +130012,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 27799 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 27800 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 27801 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 27802 + components: + - type: Transform + pos: 86.5,7.5 + parent: 2 - uid: 27818 components: - type: Transform @@ -128600,6 +130792,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 28728 + components: + - type: Transform + pos: 86.5,30.5 + parent: 2 - uid: 28739 components: - type: Transform @@ -128742,6 +130939,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 28825 + components: + - type: Transform + pos: 86.5,9.5 + parent: 2 - uid: 28836 components: - type: Transform @@ -128982,6 +131184,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 29031 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 - uid: 29050 components: - type: Transform @@ -129180,6 +131387,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 29380 + components: + - type: Transform + pos: 86.5,19.5 + parent: 2 - uid: 29430 components: - type: Transform @@ -130362,6 +132574,215 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 33161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,1.5 + parent: 2 + - uid: 33162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,2.5 + parent: 2 + - uid: 33163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,3.5 + parent: 2 + - uid: 33164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,4.5 + parent: 2 + - uid: 33165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,5.5 + parent: 2 + - uid: 33166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,6.5 + parent: 2 + - uid: 33167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,7.5 + parent: 2 + - uid: 33168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,8.5 + parent: 2 + - uid: 33169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,9.5 + parent: 2 + - uid: 33170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,10.5 + parent: 2 + - uid: 33172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,12.5 + parent: 2 + - uid: 33173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,13.5 + parent: 2 + - uid: 33174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,14.5 + parent: 2 + - uid: 33175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,15.5 + parent: 2 + - uid: 33176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,16.5 + parent: 2 + - uid: 33177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,17.5 + parent: 2 + - uid: 33178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,18.5 + parent: 2 + - uid: 33179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,19.5 + parent: 2 + - uid: 33180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,20.5 + parent: 2 + - uid: 33181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,21.5 + parent: 2 + - uid: 33182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,22.5 + parent: 2 + - uid: 33183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,23.5 + parent: 2 + - uid: 33184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,25.5 + parent: 2 + - uid: 33185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,26.5 + parent: 2 + - uid: 33186 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 33187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,27.5 + parent: 2 + - uid: 33188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,28.5 + parent: 2 + - uid: 33189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,30.5 + parent: 2 + - uid: 33190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,29.5 + parent: 2 + - uid: 33191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,32.5 + parent: 2 + - uid: 33192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,33.5 + parent: 2 + - uid: 33193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,31.5 + parent: 2 + - uid: 33194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,35.5 + parent: 2 + - uid: 33195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,36.5 + parent: 2 + - uid: 33196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,34.5 + parent: 2 - proto: GasPipeStraightAlt1 entities: - uid: 2127 @@ -134953,6 +137374,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 33171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-2.5 + parent: 2 + - uid: 33201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-2.5 + parent: 2 + - uid: 33202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,11.5 + parent: 2 + - uid: 33203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,11.5 + parent: 2 + - uid: 33204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,24.5 + parent: 2 + - uid: 33205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,24.5 + parent: 2 - proto: GasPipeTJunctionAlt1 entities: - uid: 9337 @@ -137066,16 +139523,6 @@ entities: - 96 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17722 - components: - - type: Transform - pos: 83.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 17723 components: - type: Transform @@ -137959,6 +140406,29 @@ entities: - type: DeviceNetwork deviceLists: - 21786 + - uid: 33160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-2.5 + parent: 2 + - uid: 33197 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 33198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,11.5 + parent: 2 + - uid: 33199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,24.5 + parent: 2 - proto: GasVentScrubber entities: - uid: 607 @@ -139629,6 +142099,11 @@ entities: - type: DeviceNetwork deviceLists: - 4495 + - uid: 24196 + components: + - type: Transform + pos: 86.5,37.5 + parent: 2 - uid: 24819 components: - type: Transform @@ -139756,6 +142231,12 @@ entities: - 15 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 26193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,24.5 + parent: 2 - uid: 26202 components: - type: Transform @@ -140264,6 +142745,12 @@ entities: - type: DeviceNetwork deviceLists: - 21786 + - uid: 33200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,11.5 + parent: 2 - proto: GasVolumePump entities: - uid: 1222 @@ -140607,10 +143094,17 @@ entities: - type: Transform pos: 24.5,-48.5 parent: 2 - - uid: 313 + - uid: 304 components: - type: Transform - pos: 89.5,-0.5 + rot: 3.141592653589793 rad + pos: 90.5,29.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,7.5 parent: 2 - uid: 346 components: @@ -140978,6 +143472,11 @@ entities: - type: Transform pos: -8.5,-63.5 parent: 2 + - uid: 6375 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 - uid: 6529 components: - type: Transform @@ -141098,6 +143597,11 @@ entities: - type: Transform pos: -66.5,4.5 parent: 2 + - uid: 9304 + components: + - type: Transform + pos: 81.5,43.5 + parent: 2 - uid: 9334 components: - type: Transform @@ -141203,6 +143707,11 @@ entities: - type: Transform pos: -39.5,-38.5 parent: 2 + - uid: 10912 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 - uid: 11001 components: - type: Transform @@ -141258,11 +143767,6 @@ entities: - type: Transform pos: 72.5,-42.5 parent: 2 - - uid: 11517 - components: - - type: Transform - pos: 79.5,6.5 - parent: 2 - uid: 11765 components: - type: Transform @@ -142332,16 +144836,6 @@ entities: - type: Transform pos: 19.5,43.5 parent: 2 - - uid: 18225 - components: - - type: Transform - pos: 83.5,2.5 - parent: 2 - - uid: 18226 - components: - - type: Transform - pos: 84.5,2.5 - parent: 2 - uid: 18227 components: - type: Transform @@ -142372,11 +144866,6 @@ entities: - type: Transform pos: 59.5,-11.5 parent: 2 - - uid: 18234 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - uid: 18235 components: - type: Transform @@ -144044,11 +146533,6 @@ entities: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 18748 - components: - - type: Transform - pos: 89.5,-4.5 - parent: 2 - uid: 18752 components: - type: Transform @@ -144783,11 +147267,6 @@ entities: - type: Transform pos: -58.5,-22.5 parent: 2 - - uid: 19096 - components: - - type: Transform - pos: -65.5,-29.5 - parent: 2 - uid: 19099 components: - type: Transform @@ -145673,11 +148152,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,36.5 parent: 2 - - uid: 20183 - components: - - type: Transform - pos: 89.5,-10.5 - parent: 2 - uid: 20184 components: - type: Transform @@ -145774,11 +148248,6 @@ entities: - type: Transform pos: -23.5,-22.5 parent: 2 - - uid: 21080 - components: - - type: Transform - pos: 82.5,3.5 - parent: 2 - uid: 21101 components: - type: Transform @@ -146084,11 +148553,6 @@ entities: - type: Transform pos: -2.5,15.5 parent: 2 - - uid: 22866 - components: - - type: Transform - pos: 89.5,-12.5 - parent: 2 - uid: 23171 components: - type: Transform @@ -146144,6 +148608,12 @@ entities: - type: Transform pos: 24.5,-44.5 parent: 2 + - uid: 23392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,50.5 + parent: 2 - uid: 23450 components: - type: Transform @@ -146154,11 +148624,6 @@ entities: - type: Transform pos: -66.5,-11.5 parent: 2 - - uid: 23487 - components: - - type: Transform - pos: 89.5,-8.5 - parent: 2 - uid: 23488 components: - type: Transform @@ -146174,6 +148639,12 @@ entities: - type: Transform pos: -68.5,-10.5 parent: 2 + - uid: 23630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,15.5 + parent: 2 - uid: 23653 components: - type: Transform @@ -146249,6 +148720,12 @@ entities: - type: Transform pos: -3.5,0.5 parent: 2 + - uid: 23824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-6.5 + parent: 2 - uid: 23829 components: - type: Transform @@ -146294,11 +148771,6 @@ entities: - type: Transform pos: -14.5,-37.5 parent: 2 - - uid: 24335 - components: - - type: Transform - pos: -64.5,-29.5 - parent: 2 - uid: 24353 components: - type: Transform @@ -146324,11 +148796,6 @@ entities: - type: Transform pos: -74.5,-35.5 parent: 2 - - uid: 24396 - components: - - type: Transform - pos: -63.5,-29.5 - parent: 2 - uid: 24400 components: - type: Transform @@ -146359,6 +148826,11 @@ entities: - type: Transform pos: -8.5,19.5 parent: 2 + - uid: 24705 + components: + - type: Transform + pos: 79.5,38.5 + parent: 2 - uid: 24746 components: - type: Transform @@ -146394,10 +148866,10 @@ entities: - type: Transform pos: -13.5,-39.5 parent: 2 - - uid: 25256 + - uid: 25304 components: - type: Transform - pos: 89.5,-2.5 + pos: 79.5,37.5 parent: 2 - uid: 25320 components: @@ -146556,6 +149028,12 @@ entities: - type: Transform pos: -2.5,50.5 parent: 2 + - uid: 29018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,37.5 + parent: 2 - uid: 29146 components: - type: Transform @@ -146596,26 +149074,6 @@ entities: - type: Transform pos: 66.5,-15.5 parent: 2 - - uid: 29380 - components: - - type: Transform - pos: 82.5,5.5 - parent: 2 - - uid: 29381 - components: - - type: Transform - pos: 82.5,4.5 - parent: 2 - - uid: 29382 - components: - - type: Transform - pos: 81.5,5.5 - parent: 2 - - uid: 29383 - components: - - type: Transform - pos: 80.5,5.5 - parent: 2 - uid: 29506 components: - type: Transform @@ -146651,16 +149109,6 @@ entities: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 29979 - components: - - type: Transform - pos: 79.5,8.5 - parent: 2 - - uid: 29980 - components: - - type: Transform - pos: 79.5,7.5 - parent: 2 - uid: 30004 components: - type: Transform @@ -146798,6 +149246,11 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-9.5 parent: 2 + - uid: 31838 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 - uid: 32017 components: - type: Transform @@ -147044,71 +149497,11 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,25.5 parent: 2 - - uid: 33020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,25.5 - parent: 2 - - uid: 33021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,22.5 - parent: 2 - - uid: 33022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,22.5 - parent: 2 - - uid: 33023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,22.5 - parent: 2 - - uid: 33024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,15.5 - parent: 2 - uid: 33025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,15.5 - parent: 2 - - uid: 33026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,15.5 - parent: 2 - - uid: 33027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,15.5 - parent: 2 - - uid: 33028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,13.5 - parent: 2 - - uid: 33029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,13.5 - parent: 2 - - uid: 33030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,11.5 + rot: 3.141592653589793 rad + pos: 90.5,-14.5 parent: 2 - uid: 33031 components: @@ -147146,6 +149539,264 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,30.5 parent: 2 + - uid: 33322 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 33328 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 33329 + components: + - type: Transform + pos: 90.5,43.5 + parent: 2 + - uid: 33330 + components: + - type: Transform + pos: 89.5,43.5 + parent: 2 + - uid: 33331 + components: + - type: Transform + pos: 88.5,43.5 + parent: 2 + - uid: 33332 + components: + - type: Transform + pos: 87.5,43.5 + parent: 2 + - uid: 33494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-40.5 + parent: 2 + - uid: 33495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-39.5 + parent: 2 + - uid: 33496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-38.5 + parent: 2 + - uid: 33497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-37.5 + parent: 2 + - uid: 33498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-35.5 + parent: 2 + - uid: 33499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-34.5 + parent: 2 + - uid: 33500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-33.5 + parent: 2 + - uid: 33501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-31.5 + parent: 2 + - uid: 33502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-30.5 + parent: 2 + - uid: 33503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-29.5 + parent: 2 + - uid: 33504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-29.5 + parent: 2 + - uid: 33505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-30.5 + parent: 2 + - uid: 33506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-31.5 + parent: 2 + - uid: 33507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-33.5 + parent: 2 + - uid: 33508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-34.5 + parent: 2 + - uid: 33509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-35.5 + parent: 2 + - uid: 33510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-37.5 + parent: 2 + - uid: 33511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-38.5 + parent: 2 + - uid: 33512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-39.5 + parent: 2 + - uid: 33513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-40.5 + parent: 2 + - uid: 33514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-42.5 + parent: 2 + - uid: 33515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-43.5 + parent: 2 + - uid: 33516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-44.5 + parent: 2 + - uid: 33517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-46.5 + parent: 2 + - uid: 33518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-47.5 + parent: 2 + - uid: 33519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-48.5 + parent: 2 + - uid: 33520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-50.5 + parent: 2 + - uid: 33521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-51.5 + parent: 2 + - uid: 33522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-52.5 + parent: 2 + - uid: 33523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-54.5 + parent: 2 + - uid: 33524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-55.5 + parent: 2 + - uid: 33525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-56.5 + parent: 2 + - uid: 33526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-58.5 + parent: 2 + - uid: 33527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-59.5 + parent: 2 + - uid: 33528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-60.5 + parent: 2 + - uid: 33529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-56.5 + parent: 2 + - uid: 33530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-55.5 + parent: 2 + - uid: 33531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-54.5 + parent: 2 - proto: GrilleBroken entities: - uid: 1520 @@ -147508,13 +150159,6 @@ entities: showEnts: False occludes: True ent: null -- proto: GunSafeCombineSmallArms - entities: - - uid: 14471 - components: - - type: Transform - pos: -1.5,40.5 - parent: 2 - proto: GunSafeIonRifle entities: - uid: 30298 @@ -148814,6 +151458,8 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 19582 @@ -148822,17 +151468,23 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20052 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32028 components: - type: Transform pos: 0.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 19583 @@ -148840,12 +151492,16 @@ entities: - type: Transform pos: 56.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19584 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 18009 @@ -148854,12 +151510,16 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19586 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 19588 @@ -148867,32 +151527,44 @@ entities: - type: Transform pos: 33.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19589 components: - type: Transform pos: 27.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19590 components: - type: Transform pos: 22.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19591 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19592 components: - type: Transform pos: 38.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19594 components: - type: Transform pos: 21.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 5419 @@ -148901,11 +151573,15 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19595 components: - type: Transform pos: 58.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 19597 @@ -148913,11 +151589,15 @@ entities: - type: Transform pos: 16.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19598 components: - type: Transform pos: 4.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 19599 @@ -148925,18 +151605,24 @@ entities: - type: Transform pos: -20.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19600 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19601 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 31682 @@ -149460,6 +152146,8 @@ entities: 11127: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11049 components: - type: Transform @@ -149471,6 +152159,8 @@ entities: 4131: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12356 components: - type: Transform @@ -149500,6 +152190,8 @@ entities: 12355: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonAtmospherics entities: - uid: 5550 @@ -149518,6 +152210,8 @@ entities: 23486: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11279 components: - type: Transform @@ -149535,6 +152229,8 @@ entities: 23486: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18820 components: - type: Transform @@ -149558,6 +152254,8 @@ entities: 17884: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 10842 @@ -149566,12 +152264,16 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20148 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 8693 @@ -149591,6 +152293,8 @@ entities: 23544: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfPersonnel entities: - uid: 19675 @@ -149607,6 +152311,8 @@ entities: 22562: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHydroponics entities: - uid: 16401 @@ -149644,6 +152350,8 @@ entities: 1005: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21153 components: - type: Transform @@ -149661,6 +152369,8 @@ entities: 1101: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonJanitor entities: - uid: 31722 @@ -149669,6 +152379,8 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockableButtonLawyer entities: - uid: 19965 @@ -149690,6 +152402,8 @@ entities: 32860: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 25384 components: - type: Transform @@ -149716,6 +152430,8 @@ entities: 23713: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 32101 components: - type: Transform @@ -149730,6 +152446,8 @@ entities: 2655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonResearchDirector entities: - uid: 10889 @@ -149758,6 +152476,8 @@ entities: 10910: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 14001 @@ -150052,6 +152772,11 @@ entities: - type: Transform pos: -12.5,33.5 parent: 2 + - uid: 32066 + components: + - type: Transform + pos: 97.39436,-39.78026 + parent: 2 - proto: LockerFreezer entities: - uid: 4341 @@ -151839,16 +154564,22 @@ entities: - type: Transform pos: 11.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19869 components: - type: Transform pos: -51.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19872 components: - type: Transform pos: -36.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MirrorModern entities: - uid: 10798 @@ -151856,36 +154587,48 @@ entities: - type: Transform pos: 23.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10846 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16519 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16522 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22536 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MoonBattlemap entities: - uid: 5632 @@ -152394,11 +155137,6 @@ entities: - type: Transform pos: 80.51648,-16.483398 parent: 2 - - uid: 30211 - components: - - type: Transform - pos: 90.5187,-6.4502935 - parent: 2 - proto: NitrogenCanister entities: - uid: 3693 @@ -152531,6 +155269,8 @@ entities: - type: Transform pos: 37.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 15952 @@ -152836,6 +155576,8 @@ entities: - type: Transform pos: 53.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingCafeTerraceAtNight entities: - uid: 19988 @@ -152843,6 +155585,8 @@ entities: - type: Transform pos: -9.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingNightHawks entities: - uid: 19989 @@ -152850,6 +155594,8 @@ entities: - type: Transform pos: 8.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 19990 @@ -152857,6 +155603,8 @@ entities: - type: Transform pos: 19.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSaturn entities: - uid: 2378 @@ -152864,6 +155612,8 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16246 components: - type: MetaData @@ -152872,6 +155622,8 @@ entities: - type: Transform pos: -5.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 19991 @@ -152879,6 +155631,8 @@ entities: - type: Transform pos: 10.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 19992 @@ -152886,6 +155640,8 @@ entities: - type: Transform pos: 60.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheSonOfMan entities: - uid: 19993 @@ -152893,6 +155649,8 @@ entities: - type: Transform pos: 58.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintVend entities: - uid: 19281 @@ -156197,6 +158955,11 @@ entities: - type: Transform pos: 1.5,-48.5 parent: 2 + - uid: 32067 + components: + - type: Transform + pos: 88.39436,-55.78026 + parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 20242 @@ -156204,6 +158967,8 @@ entities: - type: Transform pos: 8.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 20246 @@ -156211,6 +158976,8 @@ entities: - type: Transform pos: 35.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 20247 @@ -156218,6 +158985,8 @@ entities: - type: Transform pos: -34.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 20248 @@ -156225,6 +158994,8 @@ entities: - type: Transform pos: -48.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeTonto entities: - uid: 25933 @@ -156233,6 +159004,8 @@ entities: rot: -1.5707963267948966 rad pos: 79.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 20251 @@ -156240,11 +159013,15 @@ entities: - type: Transform pos: 41.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32954 components: - type: Transform pos: -11.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHighEffectEngineering entities: - uid: 20253 @@ -156252,6 +159029,8 @@ entities: - type: Transform pos: 10.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRealExomorph entities: - uid: 20255 @@ -156259,6 +159038,8 @@ entities: - type: Transform pos: 3.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRevolt entities: - uid: 32427 @@ -156266,26 +159047,36 @@ entities: - type: Transform pos: 92.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32453 components: - type: Transform pos: 88.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32528 components: - type: Transform pos: 85.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32587 components: - type: Transform pos: 91.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32604 components: - type: Transform pos: 96.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRouny entities: - uid: 20245 @@ -156293,6 +159084,8 @@ entities: - type: Transform pos: 6.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAIOverseer entities: - uid: 28906 @@ -156300,6 +159093,8 @@ entities: - type: Transform pos: 15.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 20263 @@ -156307,11 +159102,15 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20264 components: - type: Transform pos: 28.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 20265 @@ -156319,6 +159118,8 @@ entities: - type: Transform pos: 2.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 20266 @@ -156327,6 +159128,8 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDejaVu entities: - uid: 25932 @@ -156335,6 +159138,8 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 20268 @@ -156342,6 +159147,8 @@ entities: - type: Transform pos: 43.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIonRifle entities: - uid: 30383 @@ -156349,6 +159156,8 @@ entities: - type: Transform pos: -3.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 20273 @@ -156356,6 +159165,8 @@ entities: - type: Transform pos: -10.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 8133 @@ -156363,41 +159174,57 @@ entities: - type: Transform pos: -6.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18811 components: - type: Transform pos: -6.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20274 components: - type: Transform pos: 13.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20275 components: - type: Transform pos: -14.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20276 components: - type: Transform pos: 5.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20277 components: - type: Transform pos: -6.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20279 components: - type: Transform pos: 5.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20280 components: - type: Transform pos: 9.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 20283 @@ -156405,11 +159232,15 @@ entities: - type: Transform pos: -12.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20284 components: - type: Transform pos: -6.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 20285 @@ -156417,6 +159248,8 @@ entities: - type: Transform pos: 17.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 20287 @@ -156424,6 +159257,8 @@ entities: - type: Transform pos: 37.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 1989 @@ -156431,11 +159266,15 @@ entities: - type: Transform pos: -13.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20289 components: - type: Transform pos: 17.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 20290 @@ -156443,6 +159282,8 @@ entities: - type: Transform pos: 10.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 20291 @@ -156450,6 +159291,8 @@ entities: - type: Transform pos: 17.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 20292 @@ -156457,6 +159300,8 @@ entities: - type: Transform pos: 2.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitScience entities: - uid: 20295 @@ -156464,6 +159309,8 @@ entities: - type: Transform pos: 81.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 29986 @@ -156471,6 +159318,8 @@ entities: - type: Transform pos: 14.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitShoukou entities: - uid: 25901 @@ -156478,6 +159327,8 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitVacation entities: - uid: 20299 @@ -156485,6 +159336,8 @@ entities: - type: Transform pos: 5.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 20300 @@ -156492,6 +159345,8 @@ entities: - type: Transform pos: 54.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant0 entities: - uid: 19484 @@ -157259,6 +160114,18 @@ entities: rot: 1.5707963267948966 rad pos: 65.5,-34.5 parent: 2 + - uid: 6129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-32.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-37.5 + parent: 2 - uid: 7503 components: - type: Transform @@ -157768,6 +160635,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 + - uid: 20391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,33.5 + parent: 2 - uid: 20399 components: - type: Transform @@ -157802,17 +160675,6 @@ entities: rot: 3.141592653589793 rad pos: 73.5,-10.5 parent: 2 - - uid: 20410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-7.5 - parent: 2 - - uid: 20411 - components: - - type: Transform - pos: 83.5,-13.5 - parent: 2 - uid: 20413 components: - type: Transform @@ -157830,23 +160692,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-5.5 parent: 2 - - uid: 20416 - components: - - type: Transform - pos: 80.5,-13.5 - parent: 2 - uid: 20417 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-11.5 parent: 2 - - uid: 20418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-7.5 - parent: 2 - uid: 20419 components: - type: Transform @@ -157882,12 +160733,6 @@ entities: - type: Transform pos: 80.5,4.5 parent: 2 - - uid: 20426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-10.5 - parent: 2 - uid: 20429 components: - type: Transform @@ -159435,6 +162280,11 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-76.5 parent: 2 + - uid: 23382 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 - uid: 23547 components: - type: Transform @@ -159475,6 +162325,12 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 2 + - uid: 23701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,17.5 + parent: 2 - uid: 23872 components: - type: Transform @@ -159498,6 +162354,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-44.5 parent: 2 + - uid: 24056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,24.5 + parent: 2 - uid: 24139 components: - type: Transform @@ -159810,6 +162672,12 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-33.5 parent: 2 + - uid: 31976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-14.5 + parent: 2 - uid: 31982 components: - type: Transform @@ -159893,6 +162761,78 @@ entities: - type: Transform pos: 10.5,42.5 parent: 2 + - uid: 33149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-6.5 + parent: 2 + - uid: 33150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,7.5 + parent: 2 + - uid: 33151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,15.5 + parent: 2 + - uid: 33152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,29.5 + parent: 2 + - uid: 33153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,37.5 + parent: 2 + - uid: 33216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,8.5 + parent: 2 + - uid: 33396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-42.5 + parent: 2 + - uid: 33397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-46.5 + parent: 2 + - uid: 33398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-51.5 + parent: 2 + - uid: 33399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-55.5 + parent: 2 + - uid: 33400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-58.5 + parent: 2 + - uid: 33401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-61.5 + parent: 2 - proto: PoweredlightCyan entities: - uid: 18083 @@ -160074,6 +163014,31 @@ entities: - type: Transform pos: -48.5,-43.5 parent: 2 + - uid: 33154 + components: + - type: Transform + pos: 90.5,22.5 + parent: 2 + - uid: 33155 + components: + - type: Transform + pos: 90.5,33.5 + parent: 2 + - uid: 33156 + components: + - type: Transform + pos: 90.5,11.5 + parent: 2 + - uid: 33157 + components: + - type: Transform + pos: 90.5,0.5 + parent: 2 + - uid: 33158 + components: + - type: Transform + pos: 90.5,-10.5 + parent: 2 - proto: PoweredlightRed entities: - uid: 18433 @@ -160120,6 +163085,16 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 2886 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: 90.5,16.5 + parent: 2 - uid: 5048 components: - type: Transform @@ -160148,6 +163123,17 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-27.5 parent: 2 + - uid: 6539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,28.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: 90.5,8.5 + parent: 2 - uid: 7946 components: - type: Transform @@ -160176,6 +163162,12 @@ entities: - type: Transform pos: -45.5,-36.5 parent: 2 + - uid: 11233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,6.5 + parent: 2 - uid: 11280 components: - type: Transform @@ -160211,6 +163203,11 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,24.5 parent: 2 + - uid: 17163 + components: + - type: Transform + pos: 90.5,-5.5 + parent: 2 - uid: 19248 components: - type: Transform @@ -160250,6 +163247,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-21.5 parent: 2 + - uid: 20258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-7.5 + parent: 2 - uid: 20267 components: - type: Transform @@ -160322,11 +163325,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 20845 - components: - - type: Transform - pos: 88.5,-3.5 - parent: 2 - uid: 20846 components: - type: Transform @@ -160942,12 +163940,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-0.5 parent: 2 - - uid: 21009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,50.5 - parent: 2 - uid: 21014 components: - type: Transform @@ -160977,6 +163969,11 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-24.5 parent: 2 + - uid: 21080 + components: + - type: Transform + pos: 90.5,-13.5 + parent: 2 - uid: 21523 components: - type: Transform @@ -161011,6 +164008,18 @@ entities: - type: Transform pos: 26.5,-38.5 parent: 2 + - uid: 23464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-15.5 + parent: 2 + - uid: 23466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,14.5 + parent: 2 - uid: 23514 components: - type: Transform @@ -161045,23 +164054,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-69.5 parent: 2 - - uid: 25145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-9.5 - parent: 2 - - uid: 25151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-1.5 - parent: 2 - - uid: 25152 - components: - - type: Transform - pos: 88.5,-11.5 - parent: 2 - uid: 25880 components: - type: Transform @@ -161073,6 +164065,11 @@ entities: - type: Transform pos: 32.5,36.5 parent: 2 + - uid: 26920 + components: + - type: Transform + pos: 90.5,30.5 + parent: 2 - uid: 27139 components: - type: Transform @@ -161090,6 +164087,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-87.5 parent: 2 + - uid: 28876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,36.5 + parent: 2 - uid: 30638 components: - type: Transform @@ -161135,6 +164138,12 @@ entities: - type: Transform pos: -41.5,-10.5 parent: 2 + - uid: 31839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,50.5 + parent: 2 - uid: 32357 components: - type: Transform @@ -161227,341 +164236,6 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#17E8E2FF' -- proto: PrinterDoc - entities: - - uid: 243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 3348 - components: - - type: Transform - pos: 35.5,-41.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 10241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-32.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 17367 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 17969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 19075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-19.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 20221 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21024 - components: - - type: Transform - pos: 60.5,-4.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21025 - components: - - type: Transform - pos: 8.5,-51.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-16.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21028 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21032 - components: - - type: Transform - pos: 59.5,-10.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-20.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 21034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-23.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 24293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-24.5 - parent: 2 - - type: ContainerContainer - containers: - paper_copy: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: Protolathe entities: - uid: 21037 @@ -161798,11 +164472,6 @@ entities: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 17314 - components: - - type: Transform - pos: 85.5,-4.5 - parent: 2 - uid: 17962 components: - type: Transform @@ -161820,11 +164489,6 @@ entities: - type: Transform pos: 67.5,8.5 parent: 2 - - uid: 19405 - components: - - type: Transform - pos: 78.5,7.5 - parent: 2 - uid: 20231 components: - type: Transform @@ -162178,6 +164842,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,46.5 parent: 2 + - uid: 29383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,7.5 + parent: 2 - uid: 29805 components: - type: Transform @@ -162643,12 +165313,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-22.5 parent: 2 - - uid: 21185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-9.5 - parent: 2 - uid: 21188 components: - type: Transform @@ -162667,12 +165331,6 @@ entities: rot: -1.5707963267948966 rad pos: 76.5,-6.5 parent: 2 - - uid: 21191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-11.5 - parent: 2 - uid: 21194 components: - type: Transform @@ -162697,30 +165355,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,13.5 parent: 2 - - uid: 21199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-11.5 - parent: 2 - - uid: 21201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-9.5 - parent: 2 - - uid: 21202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-11.5 - parent: 2 - - uid: 21204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-10.5 - parent: 2 - uid: 21205 components: - type: Transform @@ -162749,12 +165383,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-23.5 parent: 2 - - uid: 21214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-9.5 - parent: 2 - uid: 21215 components: - type: Transform @@ -162772,36 +165400,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-51.5 parent: 2 - - uid: 21218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-11.5 - parent: 2 - - uid: 21219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-10.5 - parent: 2 - - uid: 21220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-10.5 - parent: 2 - - uid: 21221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-10.5 - parent: 2 - - uid: 21222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-9.5 - parent: 2 - uid: 21223 components: - type: Transform @@ -162847,30 +165445,6 @@ entities: - type: Transform pos: -19.5,49.5 parent: 2 - - uid: 28864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 2 - - uid: 28876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - uid: 28977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - uid: 29031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 2 - uid: 29751 components: - type: Transform @@ -164421,6 +166995,12 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,47.5 parent: 2 + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,50.5 + parent: 2 - uid: 1562 components: - type: Transform @@ -164607,11 +167187,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,41.5 parent: 2 - - uid: 17966 - components: - - type: Transform - pos: 24.5,50.5 - parent: 2 - uid: 18001 components: - type: Transform @@ -164868,6 +167443,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-89.5 parent: 2 + - uid: 28977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,50.5 + parent: 2 - uid: 29505 components: - type: Transform @@ -165199,24 +167780,6 @@ entities: rot: 3.141592653589793 rad pos: -78.5,-31.5 parent: 2 - - uid: 2886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-29.5 - parent: 2 - - uid: 2887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-29.5 - parent: 2 - - uid: 2888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-29.5 - parent: 2 - uid: 2889 components: - type: Transform @@ -165368,11 +167931,6 @@ entities: - type: Transform pos: 50.5,-65.5 parent: 2 - - uid: 5244 - components: - - type: Transform - pos: 89.5,-2.5 - parent: 2 - uid: 5378 components: - type: Transform @@ -165417,17 +167975,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-69.5 parent: 2 - - uid: 6395 - components: - - type: Transform - pos: 89.5,-12.5 - parent: 2 - - uid: 6550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-0.5 - parent: 2 - uid: 6568 components: - type: Transform @@ -165657,11 +168204,6 @@ entities: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 11119 - components: - - type: Transform - pos: 89.5,-8.5 - parent: 2 - uid: 11145 components: - type: Transform @@ -166228,26 +168770,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,39.5 parent: 2 - - uid: 20258 - components: - - type: Transform - pos: 79.5,6.5 - parent: 2 - - uid: 20282 - components: - - type: Transform - pos: 89.5,-10.5 - parent: 2 - - uid: 20333 - components: - - type: Transform - pos: 79.5,8.5 - parent: 2 - - uid: 20345 - components: - - type: Transform - pos: 79.5,7.5 - parent: 2 - uid: 20382 components: - type: Transform @@ -166729,16 +169251,6 @@ entities: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 21715 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - - uid: 21716 - components: - - type: Transform - pos: 83.5,2.5 - parent: 2 - uid: 21718 components: - type: Transform @@ -167473,6 +169985,12 @@ entities: - type: Transform pos: -42.5,-25.5 parent: 2 + - uid: 22085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-14.5 + parent: 2 - uid: 22086 components: - type: Transform @@ -167544,11 +170062,6 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 2 - - uid: 22129 - components: - - type: Transform - pos: 89.5,-4.5 - parent: 2 - uid: 22131 components: - type: Transform @@ -168541,11 +171054,6 @@ entities: - type: Transform pos: -50.5,-24.5 parent: 2 - - uid: 26181 - components: - - type: Transform - pos: 82.5,4.5 - parent: 2 - uid: 26204 components: - type: Transform @@ -168573,15 +171081,11 @@ entities: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 26901 + - uid: 26923 components: - type: Transform - pos: 82.5,3.5 - parent: 2 - - uid: 26919 - components: - - type: Transform - pos: 82.5,5.5 + rot: 1.5707963267948966 rad + pos: 88.5,33.5 parent: 2 - uid: 26934 components: @@ -168595,11 +171099,6 @@ entities: rot: 3.141592653589793 rad pos: 57.5,-53.5 parent: 2 - - uid: 26980 - components: - - type: Transform - pos: 80.5,5.5 - parent: 2 - uid: 27145 components: - type: Transform @@ -168616,11 +171115,6 @@ entities: - type: Transform pos: -34.5,47.5 parent: 2 - - uid: 29384 - components: - - type: Transform - pos: 84.5,2.5 - parent: 2 - uid: 29881 components: - type: Transform @@ -168632,16 +171126,17 @@ entities: - type: Transform pos: -51.5,-29.5 parent: 2 + - uid: 29979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,32.5 + parent: 2 - uid: 29982 components: - type: Transform pos: 87.5,-38.5 parent: 2 - - uid: 29985 - components: - - type: Transform - pos: 81.5,5.5 - parent: 2 - uid: 29989 components: - type: Transform @@ -168719,6 +171214,60 @@ entities: - type: Transform pos: 81.5,20.5 parent: 2 + - uid: 32156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,26.5 + parent: 2 + - uid: 32157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,24.5 + parent: 2 + - uid: 32158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,18.5 + parent: 2 + - uid: 32159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,22.5 + parent: 2 + - uid: 32160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,20.5 + parent: 2 + - uid: 32178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,10.5 + parent: 2 + - uid: 32179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,33.5 + parent: 2 + - uid: 32180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,12.5 + parent: 2 + - uid: 32181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,11.5 + parent: 2 - uid: 32202 components: - type: Transform @@ -168837,6 +171386,546 @@ entities: - type: Transform pos: 81.5,18.5 parent: 2 + - uid: 33026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-6.5 + parent: 2 + - uid: 33027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,34.5 + parent: 2 + - uid: 33028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,7.5 + parent: 2 + - uid: 33029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,15.5 + parent: 2 + - uid: 33030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,29.5 + parent: 2 + - uid: 33038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,37.5 + parent: 2 + - uid: 33039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,26.5 + parent: 2 + - uid: 33040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,25.5 + parent: 2 + - uid: 33109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,24.5 + parent: 2 + - uid: 33110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,23.5 + parent: 2 + - uid: 33111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,22.5 + parent: 2 + - uid: 33112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,21.5 + parent: 2 + - uid: 33113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,20.5 + parent: 2 + - uid: 33114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,19.5 + parent: 2 + - uid: 33115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,18.5 + parent: 2 + - uid: 33116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,25.5 + parent: 2 + - uid: 33117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,23.5 + parent: 2 + - uid: 33118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,32.5 + parent: 2 + - uid: 33119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,21.5 + parent: 2 + - uid: 33120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,19.5 + parent: 2 + - uid: 33121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,10.5 + parent: 2 + - uid: 33122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,34.5 + parent: 2 + - uid: 33123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,11.5 + parent: 2 + - uid: 33124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,12.5 + parent: 2 + - uid: 33125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,4.5 + parent: 2 + - uid: 33126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,3.5 + parent: 2 + - uid: 33127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,2.5 + parent: 2 + - uid: 33128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,1.5 + parent: 2 + - uid: 33129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,0.5 + parent: 2 + - uid: 33130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-0.5 + parent: 2 + - uid: 33131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-1.5 + parent: 2 + - uid: 33132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-2.5 + parent: 2 + - uid: 33133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-3.5 + parent: 2 + - uid: 33134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-3.5 + parent: 2 + - uid: 33135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-2.5 + parent: 2 + - uid: 33136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-1.5 + parent: 2 + - uid: 33137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-0.5 + parent: 2 + - uid: 33138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,0.5 + parent: 2 + - uid: 33139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,1.5 + parent: 2 + - uid: 33140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,2.5 + parent: 2 + - uid: 33141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,3.5 + parent: 2 + - uid: 33142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,4.5 + parent: 2 + - uid: 33143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-9.5 + parent: 2 + - uid: 33144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-10.5 + parent: 2 + - uid: 33145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-11.5 + parent: 2 + - uid: 33146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-11.5 + parent: 2 + - uid: 33147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-10.5 + parent: 2 + - uid: 33148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-9.5 + parent: 2 + - uid: 33452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-29.5 + parent: 2 + - uid: 33453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-30.5 + parent: 2 + - uid: 33454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-31.5 + parent: 2 + - uid: 33455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-33.5 + parent: 2 + - uid: 33456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-34.5 + parent: 2 + - uid: 33457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-35.5 + parent: 2 + - uid: 33458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-37.5 + parent: 2 + - uid: 33459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-38.5 + parent: 2 + - uid: 33460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-39.5 + parent: 2 + - uid: 33461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-40.5 + parent: 2 + - uid: 33462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-29.5 + parent: 2 + - uid: 33463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-30.5 + parent: 2 + - uid: 33464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-31.5 + parent: 2 + - uid: 33465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-33.5 + parent: 2 + - uid: 33466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-34.5 + parent: 2 + - uid: 33467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-35.5 + parent: 2 + - uid: 33468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-37.5 + parent: 2 + - uid: 33469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-38.5 + parent: 2 + - uid: 33470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-39.5 + parent: 2 + - uid: 33471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-40.5 + parent: 2 + - uid: 33472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-42.5 + parent: 2 + - uid: 33473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-43.5 + parent: 2 + - uid: 33474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-44.5 + parent: 2 + - uid: 33475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-46.5 + parent: 2 + - uid: 33476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-47.5 + parent: 2 + - uid: 33477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-48.5 + parent: 2 + - uid: 33478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-50.5 + parent: 2 + - uid: 33479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-51.5 + parent: 2 + - uid: 33480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-52.5 + parent: 2 + - uid: 33481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-54.5 + parent: 2 + - uid: 33482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-55.5 + parent: 2 + - uid: 33483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-56.5 + parent: 2 + - uid: 33484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-58.5 + parent: 2 + - uid: 33485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-59.5 + parent: 2 + - uid: 33486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-60.5 + parent: 2 + - uid: 33487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-56.5 + parent: 2 + - uid: 33488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-55.5 + parent: 2 + - uid: 33489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-54.5 + parent: 2 + - uid: 33490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-48.5 + parent: 2 + - uid: 33491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-47.5 + parent: 2 + - uid: 33492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-46.5 + parent: 2 + - uid: 33493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-45.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 22383 @@ -168876,6 +171965,13 @@ entities: rot: 3.141592653589793 rad pos: 68.396095,-77.26991 parent: 2 +- proto: RevolverCapGun + entities: + - uid: 32068 + components: + - type: Transform + pos: 95.45564,-39.625313 + parent: 2 - proto: RipleyRArm entities: - uid: 420 @@ -169316,102 +172412,142 @@ entities: - type: Transform pos: 62.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22403 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22404 components: - type: Transform pos: 73.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22405 components: - type: Transform pos: -7.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22406 components: - type: Transform pos: 11.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22407 components: - type: Transform pos: 18.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22408 components: - type: Transform pos: 73.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22409 components: - type: Transform pos: 13.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22410 components: - type: Transform pos: -36.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22411 components: - type: Transform pos: -52.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22413 components: - type: Transform pos: -69.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22414 components: - type: Transform pos: -2.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22415 components: - type: Transform pos: 5.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22416 components: - type: Transform pos: 8.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22417 components: - type: Transform pos: -4.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22418 components: - type: Transform pos: -2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22419 components: - type: Transform pos: -16.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22420 components: - type: Transform pos: -14.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22421 components: - type: Transform pos: -19.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22422 components: - type: Transform pos: -23.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 8401 @@ -169440,6 +172576,11 @@ entities: - type: Transform pos: 22.495987,42.313133 parent: 2 + - uid: 32069 + components: + - type: Transform + pos: 93.59118,-30.781168 + parent: 2 - proto: SecBreachingHammer entities: - uid: 11851 @@ -169967,6 +173108,8 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 19394 @@ -170888,6 +174031,8 @@ entities: - type: Transform pos: -38.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 10752 @@ -170895,6 +174040,8 @@ entities: - type: Transform pos: -32.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 1012 @@ -170920,6 +174067,8 @@ entities: 32152: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7547 components: - type: Transform @@ -170934,6 +174083,8 @@ entities: 15133: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8627 components: - type: Transform @@ -170960,6 +174111,8 @@ entities: 8628: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10820 components: - type: Transform @@ -170971,12 +174124,16 @@ entities: 1150: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 22015 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22016 components: - type: Transform @@ -170991,6 +174148,8 @@ entities: 10728: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22635 components: - type: Transform @@ -171004,6 +174163,8 @@ entities: 2209: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22642 components: - type: Transform @@ -171014,11 +174175,15 @@ entities: 22558: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22645 components: - type: Transform pos: 35.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22646 components: - type: Transform @@ -171050,6 +174215,8 @@ entities: 22607: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22647 components: - type: Transform @@ -171064,6 +174231,8 @@ entities: 22530: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22653 components: - type: Transform @@ -171089,6 +174258,8 @@ entities: 22529: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22655 components: - type: Transform @@ -171127,6 +174298,8 @@ entities: 22573: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22657 components: - type: Transform @@ -171140,6 +174313,8 @@ entities: 22550: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22662 components: - type: Transform @@ -171151,6 +174326,8 @@ entities: 148: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 22663 components: - type: Transform @@ -171162,6 +174339,8 @@ entities: 138: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 22674 components: - type: Transform @@ -171176,6 +174355,8 @@ entities: 22606: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22675 components: - type: Transform @@ -171193,6 +174374,8 @@ entities: 22547: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22676 components: - type: Transform @@ -171225,6 +174408,8 @@ entities: 1210: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22678 components: - type: Transform @@ -171241,6 +174426,8 @@ entities: 22609: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23930 components: - type: Transform @@ -171252,6 +174439,8 @@ entities: 754: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 24651 components: - type: Transform @@ -171269,6 +174458,8 @@ entities: 19082: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26255 components: - type: Transform @@ -171282,6 +174473,8 @@ entities: 11529: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 29088 components: - type: Transform @@ -171293,6 +174486,8 @@ entities: 23413: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 30114 components: - type: Transform @@ -171310,6 +174505,8 @@ entities: 4114: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30115 components: - type: Transform @@ -171339,6 +174536,8 @@ entities: 30032: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30116 components: - type: Transform @@ -171356,6 +174555,8 @@ entities: 20239: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30336 components: - type: Transform @@ -171373,6 +174574,8 @@ entities: 15875: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 31922 components: - type: Transform @@ -171395,6 +174598,8 @@ entities: 31921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 32091 components: - type: Transform @@ -171427,6 +174632,8 @@ entities: 32088: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 229 @@ -171464,6 +174671,8 @@ entities: 11499: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1355 components: - type: Transform @@ -171475,6 +174684,8 @@ entities: 23779: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9074 components: - type: Transform @@ -171492,6 +174703,8 @@ entities: 12024: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16391 components: - type: Transform @@ -171509,6 +174722,8 @@ entities: 12186: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21589 components: - type: Transform @@ -171526,6 +174741,8 @@ entities: 7463: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22517 components: - type: Transform @@ -171542,6 +174759,8 @@ entities: 22519: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22518 components: - type: Transform @@ -171558,6 +174777,8 @@ entities: 22511: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24574 components: - type: Transform @@ -171593,6 +174814,8 @@ entities: 22585: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24708 components: - type: Transform @@ -171604,6 +174827,8 @@ entities: 24750: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 22682 @@ -171611,6 +174836,8 @@ entities: - type: Transform pos: 75.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 22683 @@ -171618,6 +174845,8 @@ entities: - type: Transform pos: 68.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 22687 @@ -171625,6 +174854,8 @@ entities: - type: Transform pos: 21.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBarbershop entities: - uid: 30777 @@ -171633,6 +174864,8 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 16549 @@ -171641,6 +174874,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 22689 @@ -171648,11 +174883,15 @@ entities: - type: Transform pos: 41.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22690 components: - type: Transform pos: 39.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 22691 @@ -171660,11 +174899,15 @@ entities: - type: Transform pos: -12.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22692 components: - type: Transform pos: 11.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCanisters entities: - uid: 22693 @@ -171673,6 +174916,8 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 22694 @@ -171680,6 +174925,8 @@ entities: - type: Transform pos: -18.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 4936 @@ -171687,11 +174934,15 @@ entities: - type: Transform pos: 96.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22695 components: - type: Transform pos: -29.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 22696 @@ -171699,11 +174950,15 @@ entities: - type: Transform pos: 18.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22697 components: - type: Transform pos: 23.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 22700 @@ -171711,6 +174966,8 @@ entities: - type: Transform pos: 38.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 22704 @@ -171719,11 +174976,15 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22705 components: - type: Transform pos: -17.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 22706 @@ -171731,6 +174992,8 @@ entities: - type: Transform pos: 37.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 22707 @@ -171739,6 +175002,8 @@ entities: rot: 1.5707963267948966 rad pos: -62.499004,2.2885544 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 22708 @@ -171747,27 +175012,37 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22709 components: - type: Transform pos: -19.49536,-3.7142625 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22710 components: - type: Transform pos: -2.495048,-32.707497 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22711 components: - type: Transform pos: 17.493805,-15.696056 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22712 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.50528,-6.7218995 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 22713 @@ -171776,18 +175051,24 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22714 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22716 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 22717 @@ -171796,6 +175077,8 @@ entities: rot: 1.5707963267948966 rad pos: -12.48893,-28.299696 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 22718 @@ -171804,22 +175087,30 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22719 components: - type: Transform pos: -18.489511,-4.1296644 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22720 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22721 components: - type: Transform pos: -14.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 22722 @@ -171828,6 +175119,8 @@ entities: rot: 1.5707963267948966 rad pos: -18.499992,-3.7091393 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 22724 @@ -171836,18 +175129,24 @@ entities: rot: 1.5707963267948966 rad pos: -18.499992,-3.2872643 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22725 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.495048,-32.301247 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22726 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.493805,-15.305431 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 22728 @@ -171856,12 +175155,16 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22729 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 22730 @@ -171870,30 +175173,40 @@ entities: rot: 3.141592653589793 rad pos: 10.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22731 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.49536,-3.2767625 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22732 components: - type: Transform rot: 3.141592653589793 rad pos: 17.499279,-11.288156 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22734 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.499004,2.7260544 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22735 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.505136,0.7252439 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 22736 @@ -171902,41 +175215,55 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22737 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22738 components: - type: Transform pos: 83.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22739 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22740 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22742 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 22744 @@ -171945,28 +175272,38 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22745 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.494359,-28.72186 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22746 components: - type: Transform pos: -18.494526,-3.909933 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22747 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.50528,-6.2843995 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22748 components: - type: Transform pos: -17.505136,0.28774393 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 22749 @@ -171975,6 +175312,8 @@ entities: rot: 3.141592653589793 rad pos: 17.490667,-11.707433 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 22750 @@ -171983,27 +175322,37 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22755 components: - type: Transform pos: -19.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22757 components: - type: Transform pos: -30.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32290 components: - type: Transform pos: -2.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 33081 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 765 @@ -172011,6 +175360,15 @@ entities: - type: Transform pos: 0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 32070 + components: + - type: Transform + pos: 93.39436,-50.78026 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 9371 @@ -172018,16 +175376,22 @@ entities: - type: Transform pos: 5.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22764 components: - type: Transform pos: -13.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22765 components: - type: Transform pos: -19.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 22766 @@ -172035,11 +175399,15 @@ entities: - type: Transform pos: 34.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22767 components: - type: Transform pos: 28.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 22770 @@ -172047,6 +175415,8 @@ entities: - type: Transform pos: 68.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 22774 @@ -172054,6 +175424,8 @@ entities: - type: Transform pos: -8.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 20310 @@ -172062,11 +175434,15 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22775 components: - type: Transform pos: 41.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 20485 @@ -172075,12 +175451,16 @@ entities: rot: 3.141592653589793 rad pos: -18.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24257 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 4184 @@ -172088,6 +175468,8 @@ entities: - type: Transform pos: -36.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 22778 @@ -172098,16 +175480,22 @@ entities: - type: Transform pos: 56.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22779 components: - type: Transform pos: 4.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22781 components: - type: Transform pos: -22.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 22782 @@ -172115,6 +175503,8 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 22783 @@ -172122,6 +175512,8 @@ entities: - type: Transform pos: -29.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 21455 @@ -172130,6 +175522,8 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 22785 @@ -172137,6 +175531,8 @@ entities: - type: Transform pos: -51.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 22786 @@ -172144,21 +175540,29 @@ entities: - type: Transform pos: 36.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22787 components: - type: Transform pos: 24.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22788 components: - type: Transform pos: 37.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22789 components: - type: Transform pos: 63.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 22790 @@ -172166,11 +175570,15 @@ entities: - type: Transform pos: 45.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22791 components: - type: Transform pos: 42.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen1 entities: - uid: 27892 @@ -172178,6 +175586,8 @@ entities: - type: Transform pos: -2.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen2 entities: - uid: 27894 @@ -172185,6 +175595,8 @@ entities: - type: Transform pos: -1.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen3 entities: - uid: 27898 @@ -172192,6 +175604,8 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen4 entities: - uid: 28305 @@ -172199,6 +175613,8 @@ entities: - type: Transform pos: 0.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen5 entities: - uid: 4130 @@ -172206,6 +175622,8 @@ entities: - type: Transform pos: 1.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 20789 @@ -172214,6 +175632,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 22794 @@ -172221,21 +175641,29 @@ entities: - type: Transform pos: 11.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22795 components: - type: Transform pos: -11.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22796 components: - type: Transform pos: -24.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22797 components: - type: Transform pos: -10.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 22799 @@ -172243,6 +175671,8 @@ entities: - type: Transform pos: 9.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 22802 @@ -172250,26 +175680,36 @@ entities: - type: Transform pos: 6.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22803 components: - type: Transform pos: -19.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22804 components: - type: Transform pos: -30.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22808 components: - type: Transform pos: -3.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22809 components: - type: Transform pos: 2.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedFive entities: - uid: 7438 @@ -172278,6 +175718,8 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedFour entities: - uid: 7595 @@ -172286,6 +175728,8 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 7655 @@ -172294,6 +175738,8 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedSix entities: - uid: 7441 @@ -172302,6 +175748,8 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 2631 @@ -172310,6 +175758,8 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 176 @@ -172318,6 +175768,8 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 22810 @@ -172325,6 +175777,8 @@ entities: - type: Transform pos: 64.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 22811 @@ -172332,6 +175786,17 @@ entities: - type: Transform pos: 72.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignSec + entities: + - uid: 32071 + components: + - type: Transform + pos: 90.39436,-38.78026 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 22813 @@ -172339,11 +175804,15 @@ entities: - type: Transform pos: 11.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22814 components: - type: Transform pos: 7.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 22816 @@ -172351,34 +175820,46 @@ entities: - type: Transform pos: 7.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22817 components: - type: Transform pos: 8.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22818 components: - type: Transform pos: -9.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22823 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 33003 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 33008 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 22832 @@ -172386,11 +175867,15 @@ entities: - type: Transform pos: 1.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22833 components: - type: Transform pos: -2.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 22835 @@ -172398,11 +175883,15 @@ entities: - type: Transform pos: 43.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22837 components: - type: Transform pos: 28.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSomethingOld entities: - uid: 22839 @@ -172410,11 +175899,15 @@ entities: - type: Transform pos: -6.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25929 components: - type: Transform pos: 29.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 9263 @@ -172422,61 +175915,85 @@ entities: - type: Transform pos: -38.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22844 components: - type: Transform pos: 48.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22845 components: - type: Transform pos: 91.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22846 components: - type: Transform pos: 87.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22847 components: - type: Transform pos: 80.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22850 components: - type: Transform pos: -33.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22851 components: - type: Transform pos: -39.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22852 components: - type: Transform pos: -38.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22853 components: - type: Transform pos: -30.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22854 components: - type: Transform pos: -62.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22859 components: - type: Transform pos: -62.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22860 components: - type: Transform pos: -48.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 17964 @@ -172484,6 +176001,8 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 22863 @@ -172491,6 +176010,8 @@ entities: - type: Transform pos: -4.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 22864 @@ -172498,6 +176019,8 @@ entities: - type: Transform pos: 31.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 32953 @@ -172505,11 +176028,15 @@ entities: - type: Transform pos: -9.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32956 components: - type: Transform pos: -2.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 22868 @@ -172517,6 +176044,8 @@ entities: - type: Transform pos: 39.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SilverOre1 entities: - uid: 24670 @@ -174149,7 +177678,7 @@ entities: pos: -32.5,-68.5 parent: 2 - type: Door - secondsUntilStateChange: -151505.94 + secondsUntilStateChange: -153611.47 state: Opening - uid: 12418 components: @@ -174163,7 +177692,7 @@ entities: pos: 74.5,23.5 parent: 2 - type: Door - secondsUntilStateChange: -145074.05 + secondsUntilStateChange: -147179.58 state: Opening - uid: 21149 components: @@ -174172,7 +177701,7 @@ entities: pos: -42.5,8.5 parent: 2 - type: Door - secondsUntilStateChange: -119267.04 + secondsUntilStateChange: -121372.57 state: Opening - proto: SpaceCash entities: @@ -174238,6 +177767,13 @@ entities: parent: 2 - type: SpamEmitSound enabled: False +- proto: SpawnerSafeSmallArms + entities: + - uid: 14471 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 - proto: SpawnMechPaddyFilled entities: - uid: 2038 @@ -178661,29 +182197,77 @@ entities: parent: 2 - proto: StairDark entities: - - uid: 6381 + - uid: 298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-9.5 + rot: 1.5707963267948966 rad + pos: 88.5,8.5 parent: 2 - - uid: 6539 + - uid: 6550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-11.5 + rot: 1.5707963267948966 rad + pos: 88.5,-15.5 parent: 2 - - uid: 20391 + - uid: 9322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-1.5 + rot: 1.5707963267948966 rad + pos: 88.5,-13.5 parent: 2 - - uid: 23326 + - uid: 9341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-3.5 + rot: 1.5707963267948966 rad + pos: 88.5,6.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-5.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-7.5 + parent: 2 + - uid: 26827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,36.5 + parent: 2 + - uid: 26872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - uid: 26901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,38.5 + parent: 2 + - uid: 26980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,14.5 + parent: 2 + - uid: 27322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,16.5 + parent: 2 + - uid: 30644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,28.5 parent: 2 - proto: StairStageDark entities: @@ -178932,26 +182516,36 @@ entities: - type: Transform pos: 31.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23351 components: - type: Transform pos: 69.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23352 components: - type: Transform pos: -51.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform pos: 15.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23357 components: - type: Transform pos: 13.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StationMapAssembly entities: - uid: 30349 @@ -178959,6 +182553,8 @@ entities: - type: Transform pos: -33.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StatueBananiumClown entities: - uid: 12267 @@ -179084,66 +182680,12 @@ entities: rot: 3.141592653589793 rad pos: 36.5,9.5 parent: 2 - - uid: 23360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-9.5 - parent: 2 - - uid: 23361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-12.5 - parent: 2 - - uid: 23362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-8.5 - parent: 2 - - uid: 23363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-12.5 - parent: 2 - - uid: 23364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-8.5 - parent: 2 - - uid: 23365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 23366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-8.5 - parent: 2 - - uid: 23367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-12.5 - parent: 2 - uid: 23368 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,3.5 parent: 2 - - uid: 23369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-11.5 - parent: 2 - uid: 23370 components: - type: Transform @@ -179210,24 +182752,6 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,2.5 parent: 2 - - uid: 23381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-9.5 - parent: 2 - - uid: 23382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-9.5 - parent: 2 - - uid: 23383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-10.5 - parent: 2 - uid: 23384 components: - type: Transform @@ -179252,42 +182776,6 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,4.5 parent: 2 - - uid: 23388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-10.5 - parent: 2 - - uid: 23389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-11.5 - parent: 2 - - uid: 23390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-8.5 - parent: 2 - - uid: 23391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-11.5 - parent: 2 - - uid: 23392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-10.5 - parent: 2 - - uid: 23393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-11.5 - parent: 2 - uid: 23394 components: - type: Transform @@ -179330,18 +182818,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,9.5 parent: 2 - - uid: 23401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-9.5 - parent: 2 - - uid: 23402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-10.5 - parent: 2 - uid: 23403 components: - type: Transform @@ -184153,11 +187629,6 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 2 - - uid: 17311 - components: - - type: Transform - pos: 85.5,-2.5 - parent: 2 - uid: 17972 components: - type: Transform @@ -184278,12 +187749,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 - - uid: 24196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-0.5 - parent: 2 - uid: 24197 components: - type: Transform @@ -186359,11 +189824,6 @@ entities: - type: Transform pos: 76.53685,4.519326 parent: 2 - - uid: 19400 - components: - - type: Transform - pos: 78.50427,7.5412827 - parent: 2 - uid: 24465 components: - type: Transform @@ -186424,6 +189884,12 @@ entities: - type: Transform pos: -16.505388,4.550806 parent: 2 + - uid: 29898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.51018,7.4932404 + parent: 2 - uid: 30163 components: - type: Transform @@ -186434,6 +189900,11 @@ entities: - type: Transform pos: -36.507095,9.604889 parent: 2 + - uid: 32074 + components: + - type: Transform + pos: 92.42926,-57.601326 + parent: 2 - proto: TowelColorGold entities: - uid: 24349 @@ -187080,11 +190551,6 @@ entities: parent: 2 - proto: VendingMachineBooze entities: - - uid: 22304 - components: - - type: Transform - pos: 85.5,0.5 - parent: 2 - uid: 24588 components: - type: Transform @@ -187178,11 +190644,6 @@ entities: - type: Transform pos: 5.5,45.5 parent: 2 - - uid: 17163 - components: - - type: Transform - pos: 85.5,1.5 - parent: 2 - uid: 23627 components: - type: Transform @@ -187784,12 +191245,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,8.5 parent: 2 - - uid: 29186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-7.5 - parent: 2 - uid: 29232 components: - type: Transform @@ -187809,6 +191264,8 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 11 @@ -187915,16 +191372,22 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-49.5 parent: 2 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-8.5 + parent: 2 - uid: 290 components: - type: Transform pos: -8.5,-73.5 parent: 2 - - uid: 298 + - uid: 302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,0.5 + rot: 1.5707963267948966 rad + pos: 88.5,27.5 parent: 2 - uid: 307 components: @@ -189275,16 +192738,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,7.5 parent: 2 - - uid: 4324 - components: - - type: Transform - pos: 86.5,-8.5 - parent: 2 - - uid: 4325 - components: - - type: Transform - pos: 86.5,-7.5 - parent: 2 - uid: 4342 components: - type: Transform @@ -189393,16 +192846,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,29.5 parent: 2 - - uid: 5095 - components: - - type: Transform - pos: 88.5,-0.5 - parent: 2 - - uid: 5271 - components: - - type: Transform - pos: 88.5,-12.5 - parent: 2 - uid: 5392 components: - type: Transform @@ -189585,50 +193028,38 @@ entities: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6251 - components: - - type: Transform - pos: 90.5,-12.5 - parent: 2 - uid: 6340 components: - type: Transform pos: -21.5,21.5 parent: 2 - - uid: 6374 - components: - - type: Transform - pos: 87.5,-8.5 - parent: 2 - - uid: 6375 - components: - - type: Transform - pos: 86.5,-12.5 - parent: 2 - - uid: 6376 - components: - - type: Transform - pos: 90.5,-8.5 - parent: 2 - uid: 6377 components: - type: Transform pos: -12.5,-76.5 parent: 2 + - uid: 6381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,35.5 + parent: 2 - uid: 6390 components: - type: Transform pos: -8.5,-62.5 parent: 2 + - uid: 6395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-4.5 + parent: 2 - uid: 6545 components: - type: Transform - pos: 86.5,-13.5 - parent: 2 - - uid: 6548 - components: - - type: Transform - pos: 87.5,-12.5 + rot: -1.5707963267948966 rad + pos: 91.5,-6.5 parent: 2 - uid: 6569 components: @@ -190047,6 +193478,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,27.5 parent: 2 + - uid: 9268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-14.5 + parent: 2 - uid: 9280 components: - type: Transform @@ -190206,6 +193643,12 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-38.5 parent: 2 + - uid: 9686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-12.5 + parent: 2 - uid: 9707 components: - type: Transform @@ -190258,6 +193701,12 @@ entities: - type: Transform pos: 1.5,39.5 parent: 2 + - uid: 9975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,13.5 + parent: 2 - uid: 10063 components: - type: Transform @@ -190403,15 +193852,22 @@ entities: - type: Transform pos: 24.5,-69.5 parent: 2 + - uid: 11000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-4.5 + parent: 2 - uid: 11025 components: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 11101 + - uid: 11119 components: - type: Transform - pos: 86.5,-10.5 + rot: -1.5707963267948966 rad + pos: 89.5,-8.5 parent: 2 - uid: 11129 components: @@ -190446,12 +193902,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,38.5 parent: 2 - - uid: 11233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-0.5 - parent: 2 - uid: 11281 components: - type: Transform @@ -190487,6 +193937,12 @@ entities: - type: Transform pos: -25.5,2.5 parent: 2 + - uid: 11392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-12.5 + parent: 2 - uid: 11396 components: - type: Transform @@ -190559,11 +194015,6 @@ entities: - type: Transform pos: 22.5,-93.5 parent: 2 - - uid: 11897 - components: - - type: Transform - pos: 88.5,-10.5 - parent: 2 - uid: 11982 components: - type: Transform @@ -191600,6 +195051,18 @@ entities: - type: Transform pos: -46.5,-35.5 parent: 2 + - uid: 16950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-6.5 + parent: 2 + - uid: 16955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 - uid: 17064 components: - type: Transform @@ -191628,6 +195091,12 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,13.5 parent: 2 + - uid: 17311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,5.5 + parent: 2 - uid: 17320 components: - type: Transform @@ -191639,6 +195108,12 @@ entities: - type: Transform pos: 25.5,-47.5 parent: 2 + - uid: 17366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 - uid: 17387 components: - type: Transform @@ -191728,6 +195203,12 @@ entities: - type: Transform pos: 15.5,-47.5 parent: 2 + - uid: 17722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-6.5 + parent: 2 - uid: 17739 components: - type: Transform @@ -191917,6 +195398,11 @@ entities: rot: 3.141592653589793 rad pos: 5.5,43.5 parent: 2 + - uid: 18748 + components: + - type: Transform + pos: -62.5,-35.5 + parent: 2 - uid: 18756 components: - type: Transform @@ -192001,6 +195487,12 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,-34.5 parent: 2 + - uid: 19096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-16.5 + parent: 2 - uid: 19176 components: - type: Transform @@ -192084,18 +195576,14 @@ entities: - uid: 19339 components: - type: Transform - pos: 88.5,-8.5 + rot: 1.5707963267948966 rad + pos: 91.5,-16.5 parent: 2 - uid: 19342 components: - type: Transform pos: 72.5,28.5 parent: 2 - - uid: 19343 - components: - - type: Transform - pos: 88.5,-4.5 - parent: 2 - uid: 19346 components: - type: Transform @@ -192511,6 +195999,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-19.5 parent: 2 + - uid: 20345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,8.5 + parent: 2 - uid: 20360 components: - type: Transform @@ -192554,6 +196048,24 @@ entities: - type: Transform pos: 29.5,39.5 parent: 2 + - uid: 20410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-8.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,5.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-12.5 + parent: 2 - uid: 20435 components: - type: Transform @@ -192695,6 +196207,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-12.5 parent: 2 + - uid: 20845 + components: + - type: Transform + pos: -62.5,-31.5 + parent: 2 - uid: 20877 components: - type: Transform @@ -192718,6 +196235,11 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-81.5 parent: 2 + - uid: 21009 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 - uid: 21012 components: - type: Transform @@ -192750,12 +196272,36 @@ entities: - type: Transform pos: 76.5,27.5 parent: 2 + - uid: 21185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,3.5 + parent: 2 - uid: 21187 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-76.5 parent: 2 + - uid: 21191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,4.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,9.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,7.5 + parent: 2 - uid: 21209 components: - type: Transform @@ -192767,6 +196313,30 @@ entities: - type: Transform pos: -46.5,3.5 parent: 2 + - uid: 21214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-16.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-16.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-16.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-16.5 + parent: 2 - uid: 21231 components: - type: Transform @@ -193076,12 +196646,6 @@ entities: - type: Transform pos: -8.5,-67.5 parent: 2 - - uid: 22189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-0.5 - parent: 2 - uid: 22281 components: - type: Transform @@ -193153,6 +196717,12 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,36.5 parent: 2 + - uid: 22464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,37.5 + parent: 2 - uid: 22466 components: - type: Transform @@ -193165,6 +196735,12 @@ entities: rot: 3.141592653589793 rad pos: -29.5,38.5 parent: 2 + - uid: 22507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,17.5 + parent: 2 - uid: 22539 components: - type: Transform @@ -193266,6 +196842,21 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,29.5 parent: 2 + - uid: 23393 + components: + - type: Transform + pos: -62.5,-32.5 + parent: 2 + - uid: 23401 + components: + - type: Transform + pos: -62.5,-34.5 + parent: 2 + - uid: 23402 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 - uid: 23416 components: - type: Transform @@ -193293,16 +196884,6 @@ entities: - type: Transform pos: 11.5,-22.5 parent: 2 - - uid: 23465 - components: - - type: Transform - pos: 90.5,-10.5 - parent: 2 - - uid: 23466 - components: - - type: Transform - pos: 87.5,-10.5 - parent: 2 - uid: 23479 components: - type: Transform @@ -193396,12 +196977,24 @@ entities: - type: Transform pos: 21.5,27.5 parent: 2 + - uid: 23911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,5.5 + parent: 2 - uid: 23980 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-70.5 parent: 2 + - uid: 23998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,5.5 + parent: 2 - uid: 24018 components: - type: Transform @@ -193432,12 +197025,24 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-77.5 parent: 2 + - uid: 24048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,11.5 + parent: 2 - uid: 24049 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-68.5 parent: 2 + - uid: 24057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,12.5 + parent: 2 - uid: 24060 components: - type: Transform @@ -195114,11 +198719,6 @@ entities: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 25287 - components: - - type: Transform - pos: 22.5,49.5 - parent: 2 - uid: 25288 components: - type: Transform @@ -195150,24 +198750,12 @@ entities: - type: Transform pos: 25.5,48.5 parent: 2 - - uid: 25298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-15.5 - parent: 2 - uid: 25299 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,2.5 parent: 2 - - uid: 25300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-6.5 - parent: 2 - uid: 25302 components: - type: Transform @@ -195180,42 +198768,6 @@ entities: rot: 3.141592653589793 rad pos: 83.5,-16.5 parent: 2 - - uid: 25304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-0.5 - parent: 2 - - uid: 25305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-4.5 - parent: 2 - - uid: 25306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-2.5 - parent: 2 - - uid: 25307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,2.5 - parent: 2 - - uid: 25308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-5.5 - parent: 2 - - uid: 25309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,1.5 - parent: 2 - uid: 25310 components: - type: Transform @@ -198271,11 +201823,6 @@ entities: - type: Transform pos: -12.5,-6.5 parent: 2 - - uid: 26416 - components: - - type: Transform - pos: 22.5,50.5 - parent: 2 - uid: 26423 components: - type: Transform @@ -198303,12 +201850,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,45.5 parent: 2 - - uid: 26433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-2.5 - parent: 2 - uid: 26434 components: - type: Transform @@ -198320,11 +201861,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,39.5 parent: 2 - - uid: 26436 - components: - - type: Transform - pos: 22.5,51.5 - parent: 2 - uid: 26437 components: - type: Transform @@ -198340,12 +201876,6 @@ entities: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 26451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-4.5 - parent: 2 - uid: 26452 components: - type: Transform @@ -198366,18 +201896,6 @@ entities: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 26472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-5.5 - parent: 2 - - uid: 26483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-2.5 - parent: 2 - uid: 26484 components: - type: Transform @@ -198451,8 +201969,8 @@ entities: - uid: 26504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-5.5 + rot: 1.5707963267948966 rad + pos: 88.5,-14.5 parent: 2 - uid: 26509 components: @@ -198601,12 +202119,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-3.5 parent: 2 - - uid: 26559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-2.5 - parent: 2 - uid: 26566 components: - type: Transform @@ -199170,14 +202682,8 @@ entities: - uid: 26826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,14.5 - parent: 2 - - uid: 26827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,13.5 + rot: 1.5707963267948966 rad + pos: 88.5,7.5 parent: 2 - uid: 26828 components: @@ -199301,18 +202807,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,46.5 parent: 2 - - uid: 26871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,10.5 - parent: 2 - - uid: 26872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,12.5 - parent: 2 - uid: 26874 components: - type: Transform @@ -199438,33 +202932,23 @@ entities: - type: Transform pos: 35.5,-37.5 parent: 2 - - uid: 26920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-4.5 - parent: 2 - uid: 26921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-15.5 + rot: 1.5707963267948966 rad + pos: 88.5,-4.5 parent: 2 - uid: 26922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,11.5 - parent: 2 - - uid: 26923 - components: - - type: Transform - pos: 78.5,9.5 + rot: 1.5707963267948966 rad + pos: 88.5,9.5 parent: 2 - uid: 26924 components: - type: Transform - pos: 79.5,9.5 + rot: 1.5707963267948966 rad + pos: 88.5,15.5 parent: 2 - uid: 26925 components: @@ -199496,12 +202980,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-32.5 parent: 2 - - uid: 26941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-14.5 - parent: 2 - uid: 26942 components: - type: Transform @@ -200083,6 +203561,12 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,3.5 parent: 2 + - uid: 28864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,51.5 + parent: 2 - uid: 28884 components: - type: Transform @@ -200487,6 +203971,12 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 + - uid: 30211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 2 - uid: 30232 components: - type: Transform @@ -200618,6 +204108,12 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,7.5 parent: 2 + - uid: 30640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,13.5 + parent: 2 - uid: 30761 components: - type: Transform @@ -200725,6 +204221,156 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,20.5 parent: 2 + - uid: 32075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-14.5 + parent: 2 + - uid: 32076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-12.5 + parent: 2 + - uid: 32077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-11.5 + parent: 2 + - uid: 32078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-10.5 + parent: 2 + - uid: 32079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-9.5 + parent: 2 + - uid: 32080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-8.5 + parent: 2 + - uid: 32081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-4.5 + parent: 2 + - uid: 32082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-3.5 + parent: 2 + - uid: 32092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-2.5 + parent: 2 + - uid: 32093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-1.5 + parent: 2 + - uid: 32094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-0.5 + parent: 2 + - uid: 32095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,0.5 + parent: 2 + - uid: 32096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,1.5 + parent: 2 + - uid: 32097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,2.5 + parent: 2 + - uid: 32098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,3.5 + parent: 2 + - uid: 32099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,4.5 + parent: 2 + - uid: 32100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,5.5 + parent: 2 + - uid: 32102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,7.5 + parent: 2 + - uid: 32103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,9.5 + parent: 2 + - uid: 32108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,10.5 + parent: 2 + - uid: 32132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,11.5 + parent: 2 + - uid: 32133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,12.5 + parent: 2 + - uid: 32146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,13.5 + parent: 2 + - uid: 32147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,15.5 + parent: 2 + - uid: 32153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,17.5 + parent: 2 - uid: 32163 components: - type: Transform @@ -200767,6 +204413,48 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-69.5 parent: 2 + - uid: 32182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,27.5 + parent: 2 + - uid: 32183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,29.5 + parent: 2 + - uid: 32184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,31.5 + parent: 2 + - uid: 32185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,32.5 + parent: 2 + - uid: 32186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,33.5 + parent: 2 + - uid: 32187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,34.5 + parent: 2 + - uid: 32188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,35.5 + parent: 2 - uid: 32195 components: - type: Transform @@ -200795,6 +204483,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-75.5 parent: 2 + - uid: 32221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,37.5 + parent: 2 - uid: 32227 components: - type: Transform @@ -200845,6 +204539,12 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-71.5 parent: 2 + - uid: 32267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,39.5 + parent: 2 - uid: 32268 components: - type: Transform @@ -200887,11 +204587,35 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-66.5 parent: 2 + - uid: 32327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,39.5 + parent: 2 - uid: 32376 components: - type: Transform pos: 31.5,-68.5 parent: 2 + - uid: 32383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,39.5 + parent: 2 + - uid: 32384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,39.5 + parent: 2 + - uid: 32385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,39.5 + parent: 2 - uid: 32388 components: - type: Transform @@ -200946,6 +204670,12 @@ entities: rot: 1.5707963267948966 rad pos: 96.5,-41.5 parent: 2 + - uid: 32441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,39.5 + parent: 2 - uid: 32442 components: - type: Transform @@ -200964,6 +204694,12 @@ entities: rot: 3.141592653589793 rad pos: 91.5,-49.5 parent: 2 + - uid: 32449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,39.5 + parent: 2 - uid: 32455 components: - type: Transform @@ -201006,6 +204742,12 @@ entities: rot: 1.5707963267948966 rad pos: 93.5,-54.5 parent: 2 + - uid: 32463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,39.5 + parent: 2 - uid: 32465 components: - type: Transform @@ -201018,6 +204760,12 @@ entities: rot: 3.141592653589793 rad pos: 88.5,-49.5 parent: 2 + - uid: 32481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,39.5 + parent: 2 - uid: 32534 components: - type: Transform @@ -201029,6 +204777,48 @@ entities: - type: Transform pos: 86.5,-45.5 parent: 2 + - uid: 32594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,39.5 + parent: 2 + - uid: 32624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,38.5 + parent: 2 + - uid: 32632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,37.5 + parent: 2 + - uid: 32634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,36.5 + parent: 2 + - uid: 32671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,35.5 + parent: 2 + - uid: 32674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,34.5 + parent: 2 + - uid: 32684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,33.5 + parent: 2 - uid: 32759 components: - type: Transform @@ -201112,6 +204902,12 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,15.5 parent: 2 + - uid: 32841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,32.5 + parent: 2 - uid: 32845 components: - type: Transform @@ -201189,6 +204985,126 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,24.5 parent: 2 + - uid: 32924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,31.5 + parent: 2 + - uid: 32926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 + - uid: 32927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,27.5 + parent: 2 + - uid: 32964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,28.5 + parent: 2 + - uid: 32967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,26.5 + parent: 2 + - uid: 32968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,25.5 + parent: 2 + - uid: 32969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,24.5 + parent: 2 + - uid: 32970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,23.5 + parent: 2 + - uid: 32971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,22.5 + parent: 2 + - uid: 32972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,29.5 + parent: 2 + - uid: 32975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,31.5 + parent: 2 + - uid: 32980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,31.5 + parent: 2 + - uid: 32981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,27.5 + parent: 2 + - uid: 32982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,27.5 + parent: 2 + - uid: 32983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,35.5 + parent: 2 + - uid: 32984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,35.5 + parent: 2 + - uid: 32985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,29.5 + parent: 2 + - uid: 32986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,37.5 + parent: 2 + - uid: 32987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,17.5 + parent: 2 + - uid: 32988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,17.5 + parent: 2 - uid: 32992 components: - type: Transform @@ -201210,6 +205126,54 @@ entities: - type: Transform pos: 76.5,24.5 parent: 2 + - uid: 32998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,13.5 + parent: 2 + - uid: 32999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,13.5 + parent: 2 + - uid: 33015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,15.5 + parent: 2 + - uid: 33020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,9.5 + parent: 2 + - uid: 33021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,9.5 + parent: 2 + - uid: 33022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,5.5 + parent: 2 + - uid: 33023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,5.5 + parent: 2 + - uid: 33024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,7.5 + parent: 2 - uid: 33041 components: - type: Transform @@ -201243,6 +205207,348 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,13.5 parent: 2 + - uid: 33206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,6.5 + parent: 2 + - uid: 33207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,7.5 + parent: 2 + - uid: 33208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,8.5 + parent: 2 + - uid: 33209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,9.5 + parent: 2 + - uid: 33210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,10.5 + parent: 2 + - uid: 33211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,11.5 + parent: 2 + - uid: 33212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,12.5 + parent: 2 + - uid: 33213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,13.5 + parent: 2 + - uid: 33214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,14.5 + parent: 2 + - uid: 33215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,15.5 + parent: 2 + - uid: 33217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,6.5 + parent: 2 + - uid: 33333 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 33334 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 33335 + components: + - type: Transform + pos: -62.5,-38.5 + parent: 2 + - uid: 33336 + components: + - type: Transform + pos: -62.5,-39.5 + parent: 2 + - uid: 33337 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 33338 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 2 + - uid: 33339 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 33340 + components: + - type: Transform + pos: -62.5,-43.5 + parent: 2 + - uid: 33341 + components: + - type: Transform + pos: -62.5,-44.5 + parent: 2 + - uid: 33342 + components: + - type: Transform + pos: -62.5,-45.5 + parent: 2 + - uid: 33343 + components: + - type: Transform + pos: -62.5,-46.5 + parent: 2 + - uid: 33344 + components: + - type: Transform + pos: -62.5,-47.5 + parent: 2 + - uid: 33345 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 33346 + components: + - type: Transform + pos: -62.5,-49.5 + parent: 2 + - uid: 33347 + components: + - type: Transform + pos: -62.5,-50.5 + parent: 2 + - uid: 33348 + components: + - type: Transform + pos: -62.5,-51.5 + parent: 2 + - uid: 33349 + components: + - type: Transform + pos: -62.5,-52.5 + parent: 2 + - uid: 33350 + components: + - type: Transform + pos: -62.5,-53.5 + parent: 2 + - uid: 33351 + components: + - type: Transform + pos: -62.5,-54.5 + parent: 2 + - uid: 33352 + components: + - type: Transform + pos: -62.5,-55.5 + parent: 2 + - uid: 33353 + components: + - type: Transform + pos: -62.5,-57.5 + parent: 2 + - uid: 33354 + components: + - type: Transform + pos: -62.5,-58.5 + parent: 2 + - uid: 33355 + components: + - type: Transform + pos: -62.5,-59.5 + parent: 2 + - uid: 33356 + components: + - type: Transform + pos: -62.5,-60.5 + parent: 2 + - uid: 33357 + components: + - type: Transform + pos: -62.5,-61.5 + parent: 2 + - uid: 33358 + components: + - type: Transform + pos: -62.5,-62.5 + parent: 2 + - uid: 33359 + components: + - type: Transform + pos: -62.5,-56.5 + parent: 2 + - uid: 33361 + components: + - type: Transform + pos: -64.5,-62.5 + parent: 2 + - uid: 33363 + components: + - type: Transform + pos: -66.5,-62.5 + parent: 2 + - uid: 33364 + components: + - type: Transform + pos: -66.5,-61.5 + parent: 2 + - uid: 33366 + components: + - type: Transform + pos: -66.5,-59.5 + parent: 2 + - uid: 33368 + components: + - type: Transform + pos: -66.5,-57.5 + parent: 2 + - uid: 33369 + components: + - type: Transform + pos: -66.5,-56.5 + parent: 2 + - uid: 33370 + components: + - type: Transform + pos: -66.5,-55.5 + parent: 2 + - uid: 33371 + components: + - type: Transform + pos: -66.5,-54.5 + parent: 2 + - uid: 33372 + components: + - type: Transform + pos: -66.5,-53.5 + parent: 2 + - uid: 33374 + components: + - type: Transform + pos: -66.5,-51.5 + parent: 2 + - uid: 33376 + components: + - type: Transform + pos: -66.5,-49.5 + parent: 2 + - uid: 33377 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 + - uid: 33378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-45.5 + parent: 2 + - uid: 33380 + components: + - type: Transform + pos: -66.5,-43.5 + parent: 2 + - uid: 33382 + components: + - type: Transform + pos: -66.5,-41.5 + parent: 2 + - uid: 33383 + components: + - type: Transform + pos: -66.5,-40.5 + parent: 2 + - uid: 33384 + components: + - type: Transform + pos: -66.5,-39.5 + parent: 2 + - uid: 33385 + components: + - type: Transform + pos: -66.5,-38.5 + parent: 2 + - uid: 33386 + components: + - type: Transform + pos: -66.5,-37.5 + parent: 2 + - uid: 33387 + components: + - type: Transform + pos: -66.5,-36.5 + parent: 2 + - uid: 33388 + components: + - type: Transform + pos: -66.5,-35.5 + parent: 2 + - uid: 33389 + components: + - type: Transform + pos: -66.5,-34.5 + parent: 2 + - uid: 33390 + components: + - type: Transform + pos: -66.5,-33.5 + parent: 2 + - uid: 33391 + components: + - type: Transform + pos: -66.5,-32.5 + parent: 2 + - uid: 33392 + components: + - type: Transform + pos: -66.5,-31.5 + parent: 2 + - uid: 33393 + components: + - type: Transform + pos: -66.5,-30.5 + parent: 2 + - uid: 33394 + components: + - type: Transform + pos: -66.5,-46.5 + parent: 2 + - uid: 33395 + components: + - type: Transform + pos: -66.5,-47.5 + parent: 2 - proto: WallShuttle entities: - uid: 3508 @@ -201395,12 +205701,6 @@ entities: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,13.5 - parent: 2 - uid: 879 components: - type: Transform @@ -204612,21 +208912,6 @@ entities: - type: Transform pos: 65.5,8.5 parent: 2 - - uid: 27321 - components: - - type: Transform - pos: 79.5,11.5 - parent: 2 - - uid: 27322 - components: - - type: Transform - pos: 80.5,11.5 - parent: 2 - - uid: 27323 - components: - - type: Transform - pos: 81.5,11.5 - parent: 2 - uid: 27324 components: - type: Transform @@ -206384,30 +210669,6 @@ entities: - type: Transform pos: 73.5,-11.5 parent: 2 - - uid: 27799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-8.5 - parent: 2 - - uid: 27800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-8.5 - parent: 2 - - uid: 27801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-12.5 - parent: 2 - - uid: 27802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-12.5 - parent: 2 - uid: 27803 components: - type: Transform @@ -211198,29 +215459,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponEnergyGunMini - entities: - - uid: 16867 - components: - - type: Transform - pos: 10.497869,38.547455 - parent: 2 - - uid: 25786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.44616,28.93035 - parent: 2 - - uid: 26404 - components: - - type: Transform - pos: -1.4828072,-6.3837767 - parent: 2 - - uid: 28869 - components: - - type: Transform - pos: 4.4614744,33.066376 - parent: 2 - proto: WeaponEnergyGunTactical entities: - uid: 28938 @@ -211424,6 +215662,29 @@ entities: - type: Transform pos: 14.467563,28.798439 parent: 2 +- proto: WeaponMiniEnergyGun + entities: + - uid: 16867 + components: + - type: Transform + pos: 10.497869,38.547455 + parent: 2 + - uid: 25786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.44616,28.93035 + parent: 2 + - uid: 26404 + components: + - type: Transform + pos: -1.4828072,-6.3837767 + parent: 2 + - uid: 28869 + components: + - type: Transform + pos: 4.4614744,33.066376 + parent: 2 - proto: WeaponShotgunDoubleBarreledRubber entities: - uid: 23593 @@ -212165,7 +216426,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -71723.49 + secondsUntilStateChange: -73829.02 state: Opening - type: Airlock autoClose: False @@ -212313,12 +216574,6 @@ entities: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 29018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,48.5 - parent: 2 - uid: 30332 components: - type: Transform diff --git a/Resources/Maps/_Sunrise/Station/delta.yml b/Resources/Maps/_Sunrise/Station/delta.yml index 655c0b314c..133f3390d7 100644 --- a/Resources/Maps/_Sunrise/Station/delta.yml +++ b/Resources/Maps/_Sunrise/Station/delta.yml @@ -2,10 +2,10 @@ meta: format: 7 category: Map engineVersion: 266.0.0 - forkId: sunrise_station - forkVersion: 82bf841cdadf60c2d187b380a8d4baf0938dc96c - time: 08/16/2025 10:04:08 - entityCount: 43419 + forkId: "" + forkVersion: "" + time: 08/17/2025 20:24:39 + entityCount: 43454 maps: - 1 grids: @@ -436,7 +436,7 @@ entities: version: 7 -2,-5: ind: -2,-5 - tiles: gQAAAAAAAIEAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAQgAAAAAAAEIAAAAAAABCAAAAAAAAYAAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwBxAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEIAAAAAAABCAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAQAgAAAAAAAAgQAAAAAAAHEAAAAAAABgAAAAAAMAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAQgAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBxAAAAAAAAYAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAACBAAAAAAAAYAAAAAADACAAAAAAAgB9AAAAAAMAfQAAAAABAH0AAAAAAgBxAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAgQAAAAAAACAAAAAAAQAgAAAAAAMAfQAAAAAAAH0AAAAAAgB9AAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABxAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAABAIEAAAAAAAAgAAAAAAMAIAAAAAADAH0AAAAAAgB9AAAAAAEAfQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAcQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAADAEIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAgAwAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAEAMAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAMAAAAAAAADAAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAACBAAAAAAAAcQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAgAwAAAAAAAAgQAAAAAAAH8AAAAAAAB/AAAAAAAAgQAAAAAAAHEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACAIEAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAQgAAAAAAAIEAAAAAAAB/AAAAAAAAfwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAgBCAAAAAAAAQgAAAAAAAEIAAAAAAABCAAAAAAAAQgAAAAAAAEIAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAQgAAAAAAAEIAAAAAAABCAAAAAAAAQgAAAAAAAEIAAAAAAABCAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwBgAAAAAAAAIAAAAAACAA== + tiles: gQAAAAAAAIEAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAQgAAAAAAAEIAAAAAAABCAAAAAAAAYAAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwBxAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEIAAAAAAABCAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAQAgAAAAAAAAgQAAAAAAAHEAAAAAAABgAAAAAAMAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAQgAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBxAAAAAAAAYAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAACBAAAAAAAAYAAAAAADACAAAAAAAgB9AAAAAAMAfQAAAAABAH0AAAAAAgBxAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAgQAAAAAAACAAAAAAAQAgAAAAAAMAfQAAAAAAAH0AAAAAAgB9AAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABxAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAABAIEAAAAAAAAgAAAAAAMAIAAAAAADAH0AAAAAAgB9AAAAAAEAfQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAcQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAADAEIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAgAwAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAEAMAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAMAAAAAAAADAAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAACBAAAAAAAAcQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAgAwAAAAAAAAgQAAAAAAAH8AAAAAAAB/AAAAAAAAgQAAAAAAAHEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACAIEAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAQgAAAAAAAIEAAAAAAAB/AAAAAAAAfwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAgBCAAAAAAAAQgAAAAAAAEIAAAAAAABCAAAAAAAAQgAAAAAAAEIAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAQgAAAAAAAEIAAAAAAABCAAAAAAAAQgAAAAAAAEIAAAAAAABCAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwBgAAAAAAAAIAAAAAACAA== version: 7 -2,-6: ind: -2,-6 @@ -516,7 +516,7 @@ entities: version: 7 5,0: ind: 5,0 - tiles: fgAAAAAAAH4AAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAgB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAAAAAJQAAAAAAAIEAAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAIEAAAAAAAAlAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAgB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAAAAAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 @@ -552,7 +552,7 @@ entities: version: 7 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwCBAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAgQAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAIEAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAACBAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAIEAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwCBAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAgQAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAIEAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAACBAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgAAAAAAAAA== version: 7 3,-5: ind: 3,-5 @@ -660,7 +660,7 @@ entities: version: 7 5,1: ind: 5,1 - tiles: KQAAAAAAACUAAAAAAACBAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAApAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAAAAAKQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAACkAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAApAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAAAAAKQAAAAAAACUAAAAAAAApAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAACkAAAAAAACBAAAAAAAAJQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAApAAAAAAAAJQAAAAAAACkAAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAAAAAACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAApAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAAAAAKQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAACkAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAApAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAAAAAKQAAAAAAACUAAAAAAAApAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAACkAAAAAAACBAAAAAAAAJQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAApAAAAAAAAJQAAAAAAACkAAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -6,3: ind: -6,3 @@ -1883,6 +1883,7 @@ entities: 38495: -18,-51 38510: -1,42 38511: -1,37 + 39207: 83,15 - node: zIndex: 1 angle: 3.141592653589793 rad @@ -7910,7 +7911,6 @@ entities: id: BrickTileSteelLineS decals: 29634: 77,22 - 29635: 75,22 - node: color: '#D381C9FF' id: BrickTileSteelLineS @@ -16625,10 +16625,10 @@ entities: 38154: -50,42 38176: 13,-13 38308: 13,-13 - 38552: 83,14 - 38553: 83,16 38554: 84,21 38555: 84,23 + 39205: 84,16 + 39206: 84,14 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -22422,11 +22422,6 @@ entities: decals: 27343: 67,11 27344: 65,11 - - node: - color: '#9FED58FF' - id: WarnLineGreyscaleS - decals: - 29633: 76,22 - node: color: '#CA7EF2FF' id: WarnLineGreyscaleS @@ -27196,9 +27191,11 @@ entities: -21,10: 2: 240 -20,11: - 2: 3935 + 2: 3167 + 0: 768 -21,11: - 2: 24351 + 2: 16415 + 0: 7936 -20,9: 2: 19532 -20,12: @@ -27273,21 +27270,24 @@ entities: -12,11: 0: 65535 -21,12: - 2: 57309 + 2: 52940 + 0: 256 -20,13: 2: 4369 0: 52428 -21,13: - 2: 57309 + 2: 52940 + 0: 1 -20,14: - 2: 4353 - 0: 3276 + 2: 4097 + 0: 3532 -21,14: - 2: 8029 + 2: 76 + 0: 3600 -20,15: 2: 60303 -21,15: - 2: 3855 + 2: 3916 -20,16: 2: 40772 -19,13: @@ -28648,18 +28648,24 @@ entities: 19,1: 2: 20014 20,3: - 2: 135 - 0: 24320 + 2: 7 + 0: 57088 19,3: 2: 12 0: 65281 20,4: 0: 13119 - 2: 34944 + 2: 34816 21,1: 2: 1993 + 21,3: + 2: 16 + 0: 256 21,0: 2: 12834 + 21,4: + 0: 1 + 2: 16 21,-1: 2: 8747 22,1: @@ -28852,11 +28858,9 @@ entities: 0: 21845 2: 43690 16,-15: - 2: 17484 - 17,-15: - 2: 34959 - 17,-14: - 2: 17487 + 2: 17476 + 18,-14: + 0: 29952 -16,-20: 2: 19708 0: 40960 @@ -29472,7 +29476,7 @@ entities: -22,11: 2: 17484 -22,12: - 2: 17476 + 2: 17604 21,-12: 2: 3855 0: 61680 @@ -29493,11 +29497,11 @@ entities: 21,6: 2: 1 -22,13: - 2: 17476 + 2: 50244 -22,14: 2: 17476 -22,15: - 2: 3140 + 2: 3148 -16,24: 0: 3276 2: 4352 @@ -32331,7 +32335,7 @@ entities: pos: -58.5,91.5 parent: 2 - type: Door - secondsUntilStateChange: -3104.4028 + secondsUntilStateChange: -3754.7715 state: Opening - type: DeviceLinkSource lastSignals: @@ -32588,7 +32592,7 @@ entities: pos: 8.5,4.5 parent: 2 - type: Door - secondsUntilStateChange: -489886.8 + secondsUntilStateChange: -490537.2 state: Opening - type: DeviceLinkSource lastSignals: @@ -33022,7 +33026,7 @@ entities: pos: -35.5,7.5 parent: 2 - type: Door - secondsUntilStateChange: -229090.28 + secondsUntilStateChange: -229740.66 state: Opening - type: DeviceLinkSource lastSignals: @@ -33626,6 +33630,104 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,56.5 parent: 2 +- proto: AirlockExternalGlassPersonalShuttle + entities: + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,102.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,102.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,102.5 + parent: 2 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,102.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,102.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,102.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,102.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,102.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,102.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,102.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,102.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,102.5 + parent: 2 + - uid: 32596 + components: + - type: Transform + pos: 72.5,-53.5 + parent: 2 + - uid: 32709 + components: + - type: Transform + pos: 74.5,-53.5 + parent: 2 +- proto: AirlockExternalGlassSecurityShuttle + entities: + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,14.5 + parent: 2 + - uid: 33518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,16.5 + parent: 2 - proto: AirlockExternalGlassShuttleArrivalsLockedCentComm entities: - uid: 423 @@ -33824,18 +33926,6 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,16.5 - parent: 2 - - uid: 460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,14.5 - parent: 2 - uid: 461 components: - type: Transform @@ -33949,80 +34039,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,59.5 parent: 2 -- proto: AirlockExternalShuttleLocked - entities: - - uid: 480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,102.5 - parent: 2 - - uid: 481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,102.5 - parent: 2 - - uid: 482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,102.5 - parent: 2 - - uid: 483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,102.5 - parent: 2 - - uid: 484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,102.5 - parent: 2 - - uid: 485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,102.5 - parent: 2 - - uid: 486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,102.5 - parent: 2 - - uid: 487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,102.5 - parent: 2 - - uid: 488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,102.5 - parent: 2 - - uid: 489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,102.5 - parent: 2 - - uid: 490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,102.5 - parent: 2 - - uid: 491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,102.5 - parent: 2 - proto: AirlockFreezer entities: - uid: 492 @@ -34290,7 +34306,7 @@ entities: pos: -26.5,47.5 parent: 2 - type: Door - secondsUntilStateChange: -16717.727 + secondsUntilStateChange: -17368.096 state: Opening - type: DeviceLinkSource lastSignals: @@ -34351,11 +34367,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,73.5 parent: 2 - - uid: 546 - components: - - type: Transform - pos: -25.5,-82.5 - parent: 2 - proto: AirlockMaintAtmoLocked entities: - uid: 547 @@ -34424,6 +34435,12 @@ entities: parent: 2 - proto: AirlockMaintChapelLocked entities: + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-82.5 + parent: 2 - uid: 557 components: - type: MetaData @@ -35834,7 +35851,7 @@ entities: pos: 81.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -334763.22 + secondsUntilStateChange: -335413.6 state: Opening - type: DeviceLinkSource lastSignals: @@ -37279,6 +37296,14 @@ entities: rot: 3.141592653589793 rad pos: -6.5,30.5 parent: 2 +- proto: AmeController + entities: + - uid: 18630 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - type: CMExplosionEffect - proto: AmeJar entities: - uid: 955 @@ -37304,6 +37329,174 @@ entities: - type: Transform pos: -62.5,-24.5 parent: 2 + - uid: 10450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,1.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,1.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,0.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-0.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-1.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,0.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-0.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,1.5 + parent: 2 + - uid: 18629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,0.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,0.5 + parent: 2 + - uid: 26616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,1.5 + parent: 2 + - uid: 26617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-0.5 + parent: 2 + - uid: 26619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-1.5 + parent: 2 + - uid: 29003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-0.5 + parent: 2 + - uid: 32497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-1.5 + parent: 2 + - uid: 43441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-1.5 + parent: 2 + - uid: 43442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,1.5 + parent: 2 + - uid: 43443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,0.5 + parent: 2 + - uid: 43444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-0.5 + parent: 2 + - uid: 43445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-1.5 + parent: 2 + - uid: 43446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,1.5 + parent: 2 + - uid: 43447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,0.5 + parent: 2 + - uid: 43448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-0.5 + parent: 2 + - uid: 43449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-1.5 + parent: 2 + - uid: 43450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,1.5 + parent: 2 + - uid: 43451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,0.5 + parent: 2 + - uid: 43452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-1.5 + parent: 2 + - uid: 43453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-0.5 + parent: 2 - proto: AnalysisComputerCircuitboard entities: - uid: 959 @@ -86219,31 +86412,11 @@ entities: - type: Transform pos: 73.5,-50.5 parent: 2 - - uid: 10449 - components: - - type: Transform - pos: 73.5,-51.5 - parent: 2 - - uid: 10450 - components: - - type: Transform - pos: 73.5,-52.5 - parent: 2 - uid: 10451 components: - type: Transform pos: 73.5,-47.5 parent: 2 - - uid: 10452 - components: - - type: Transform - pos: 72.5,-52.5 - parent: 2 - - uid: 10453 - components: - - type: Transform - pos: 74.5,-52.5 - parent: 2 - uid: 10454 components: - type: Transform @@ -108715,6 +108888,11 @@ entities: parent: 2 - proto: Catwalk entities: + - uid: 10452 + components: + - type: Transform + pos: 66.5,-57.5 + parent: 2 - uid: 14881 components: - type: Transform @@ -109766,48 +109944,12 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-51.5 parent: 2 - - uid: 15069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-52.5 - parent: 2 - - uid: 15070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-53.5 - parent: 2 - - uid: 15071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-54.5 - parent: 2 - - uid: 15072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-55.5 - parent: 2 - - uid: 15073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-55.5 - parent: 2 - uid: 15074 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-55.5 parent: 2 - - uid: 15075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-55.5 - parent: 2 - uid: 15076 components: - type: Transform @@ -111688,12 +111830,6 @@ entities: - type: Transform pos: -86.5,-10.5 parent: 2 - - uid: 15401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-71.5 - parent: 2 - uid: 15402 components: - type: Transform @@ -112565,12 +112701,6 @@ entities: - type: Transform pos: -86.5,-9.5 parent: 2 - - uid: 15560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-73.5 - parent: 2 - uid: 15561 components: - type: Transform @@ -113579,12 +113709,6 @@ entities: - type: Transform pos: -89.5,-8.5 parent: 2 - - uid: 15744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-72.5 - parent: 2 - uid: 15745 components: - type: Transform @@ -117626,6 +117750,41 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,27.5 parent: 2 + - uid: 18282 + components: + - type: Transform + pos: 66.5,-56.5 + parent: 2 + - uid: 26620 + components: + - type: Transform + pos: 66.5,-58.5 + parent: 2 + - uid: 26624 + components: + - type: Transform + pos: 67.5,-53.5 + parent: 2 + - uid: 26763 + components: + - type: Transform + pos: 67.5,-54.5 + parent: 2 + - uid: 30273 + components: + - type: Transform + pos: 67.5,-52.5 + parent: 2 + - uid: 43421 + components: + - type: Transform + pos: 83.5,16.5 + parent: 2 + - uid: 43422 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 - proto: Chair entities: - uid: 16471 @@ -128707,31 +128866,27 @@ entities: - type: Transform pos: 35.5,79.5 parent: 2 -- proto: CrateEngineeringAMEControl +- proto: CrateEngineeringAMEJar entities: + - uid: 15744 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 - uid: 17951 components: - type: Transform - pos: -73.5,-3.5 + pos: -65.5,-3.5 parent: 2 -- proto: CrateEngineeringAMEJar - entities: - uid: 17952 components: - type: Transform pos: -73.5,-2.5 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - uid: 17953 components: - type: Transform - pos: -65.5,-3.5 - parent: 2 - - uid: 17954 - components: - - type: Transform - pos: -65.5,-2.5 + pos: -73.5,-3.5 parent: 2 - proto: CrateFilledSpawner entities: @@ -129875,30 +130030,18 @@ entities: - type: InsideEntityStorage - proto: Crematorium entities: - - uid: 18046 + - uid: 35190 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-71.5 + pos: -24.5,-72.5 + parent: 2 + - uid: 37220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-71.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.4954846 - - 9.387775 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringServer entities: - uid: 18048 @@ -130317,7 +130460,7 @@ entities: pos: 38.5,12.5 parent: 2 - type: Door - secondsUntilStateChange: -234355.53 + secondsUntilStateChange: -235005.9 state: Closing - uid: 18119 components: @@ -131448,12 +131591,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 2 - - uid: 18260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-55.5 - parent: 2 - uid: 18261 components: - type: Transform @@ -131575,12 +131712,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 2 - - uid: 18282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-51.5 - parent: 2 - uid: 18283 components: - type: Transform @@ -133597,16 +133728,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,24.5 parent: 2 - - uid: 18629 - components: - - type: Transform - pos: 70.5,-53.5 - parent: 2 - - uid: 18630 - components: - - type: Transform - pos: 70.5,-52.5 - parent: 2 - uid: 18631 components: - type: Transform @@ -134262,11 +134383,6 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,-51.5 parent: 2 - - uid: 18742 - components: - - type: Transform - pos: 70.5,-54.5 - parent: 2 - uid: 18743 components: - type: Transform @@ -138984,8 +139100,116 @@ entities: - type: Transform pos: -18.5,55.5 parent: 2 + - uid: 40453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-51.5 + parent: 2 + - uid: 43425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-51.5 + parent: 2 + - uid: 43426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-51.5 + parent: 2 + - uid: 43427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-51.5 + parent: 2 + - uid: 43428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-51.5 + parent: 2 + - uid: 43429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-51.5 + parent: 2 + - uid: 43430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-51.5 + parent: 2 + - uid: 43431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-51.5 + parent: 2 + - uid: 43432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-51.5 + parent: 2 + - uid: 43433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-51.5 + parent: 2 + - uid: 43434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-51.5 + parent: 2 + - uid: 43435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-51.5 + parent: 2 + - uid: 43436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-51.5 + parent: 2 + - uid: 43437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-51.5 + parent: 2 + - uid: 43438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-51.5 + parent: 2 + - uid: 43439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-51.5 + parent: 2 + - uid: 43440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-51.5 + parent: 2 - proto: DisposalTrunk entities: + - uid: 18046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-51.5 + parent: 2 - uid: 19565 components: - type: Transform @@ -140668,7 +140892,7 @@ entities: pos: 39.5,20.5 parent: 2 - type: Door - secondsUntilStateChange: -228975.47 + secondsUntilStateChange: -229625.84 state: Opening - type: DeviceLinkSource lastSignals: @@ -146549,7 +146773,7 @@ entities: pos: 15.5,-9.5 parent: 2 - type: Door - secondsUntilStateChange: -48804.81 + secondsUntilStateChange: -49455.176 state: Closing - type: DeviceNetwork deviceLists: @@ -146761,7 +146985,7 @@ entities: pos: -39.5,-73.5 parent: 2 - type: Door - secondsUntilStateChange: -356571.22 + secondsUntilStateChange: -357221.6 state: Closing - uid: 20628 components: @@ -193534,36 +193758,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-60.5 parent: 2 - - uid: 26616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-59.5 - parent: 2 - - uid: 26617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-59.5 - parent: 2 - - uid: 26618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-59.5 - parent: 2 - - uid: 26619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-59.5 - parent: 2 - - uid: 26620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-59.5 - parent: 2 - uid: 26621 components: - type: Transform @@ -193582,12 +193776,6 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-60.5 parent: 2 - - uid: 26624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-58.5 - parent: 2 - uid: 26625 components: - type: Transform @@ -194327,11 +194515,6 @@ entities: - type: Transform pos: -75.5,39.5 parent: 2 - - uid: 26763 - components: - - type: Transform - pos: 74.5,-52.5 - parent: 2 - uid: 26764 components: - type: Transform @@ -194352,11 +194535,6 @@ entities: - type: Transform pos: 50.5,-62.5 parent: 2 - - uid: 26768 - components: - - type: Transform - pos: 73.5,-52.5 - parent: 2 - uid: 26769 components: - type: Transform @@ -197199,11 +197377,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-84.5 parent: 2 - - uid: 27322 - components: - - type: Transform - pos: 72.5,-52.5 - parent: 2 - uid: 27323 components: - type: Transform @@ -206742,6 +206915,12 @@ entities: parent: 2 - proto: KitchenMicrowave entities: + - uid: 26768 + components: + - type: Transform + pos: 74.5,-50.5 + parent: 2 + - type: CMExplosionEffect - uid: 28998 components: - type: Transform @@ -206772,12 +206951,6 @@ entities: pos: 30.5,72.5 parent: 2 - type: CMExplosionEffect - - uid: 29003 - components: - - type: Transform - pos: 73.5,-51.5 - parent: 2 - - type: CMExplosionEffect - uid: 29004 components: - type: Transform @@ -217043,12 +217216,6 @@ entities: rot: 1.5707963267948966 rad pos: 80.5,22.5 parent: 2 - - uid: 30273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,15.5 - parent: 2 - uid: 30274 components: - type: Transform @@ -220989,6 +221156,12 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-48.5 parent: 2 + - uid: 40454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,15.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 30879 @@ -221369,6 +221542,12 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 26618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-52.5 + parent: 2 - uid: 30941 components: - type: Transform @@ -224470,6 +224649,11 @@ entities: parent: 2 - proto: Railing entities: + - uid: 27322 + components: + - type: Transform + pos: 83.5,15.5 + parent: 2 - uid: 31437 components: - type: Transform @@ -225748,6 +225932,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-87.5 parent: 2 + - uid: 43420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,15.5 + parent: 2 - proto: RailingCorner entities: - uid: 31655 @@ -230423,11 +230613,6 @@ entities: - type: Transform pos: -73.5,17.5 parent: 2 - - uid: 32497 - components: - - type: Transform - pos: 73.5,-52.5 - parent: 2 - uid: 32498 components: - type: Transform @@ -230924,11 +231109,6 @@ entities: - type: Transform pos: -37.5,-49.5 parent: 2 - - uid: 32596 - components: - - type: Transform - pos: 74.5,-52.5 - parent: 2 - uid: 32597 components: - type: Transform @@ -231498,11 +231678,6 @@ entities: - type: Transform pos: 12.5,39.5 parent: 2 - - uid: 32709 - components: - - type: Transform - pos: 72.5,-52.5 - parent: 2 - uid: 32710 components: - type: Transform @@ -236005,21 +236180,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-44.5 parent: 2 - - uid: 33516 - components: - - type: Transform - pos: 73.5,-52.5 - parent: 2 - - uid: 33517 - components: - - type: Transform - pos: 74.5,-52.5 - parent: 2 - - uid: 33518 - components: - - type: Transform - pos: 72.5,-52.5 - parent: 2 - uid: 33519 components: - type: Transform @@ -237227,17 +237387,6 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 33518: - - - Pressed - - Toggle - 33516: - - - Pressed - - Toggle - 33517: - - - Pressed - - Toggle - type: Fixtures fixtures: {} - uid: 33711 @@ -247702,6 +247851,12 @@ entities: parent: 2 - proto: Table entities: + - uid: 15072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-50.5 + parent: 2 - uid: 35142 components: - type: Transform @@ -247971,12 +248126,6 @@ entities: - type: Transform pos: 43.5,9.5 parent: 2 - - uid: 35190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-51.5 - parent: 2 - uid: 35191 components: - type: Transform @@ -256269,6 +256418,34 @@ entities: fixtures: {} - proto: WallReinforced entities: + - uid: 460 + components: + - type: Transform + pos: 83.5,13.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 71.5,-53.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-71.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-73.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-72.5 + parent: 2 - uid: 26045 components: - type: Transform @@ -256314,6 +256491,16 @@ entities: - type: Transform pos: -82.5,60.5 parent: 2 + - uid: 33516 + components: + - type: Transform + pos: 75.5,-53.5 + parent: 2 + - uid: 33517 + components: + - type: Transform + pos: 73.5,-53.5 + parent: 2 - uid: 36607 components: - type: Transform @@ -259692,12 +259879,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,18.5 parent: 2 - - uid: 37220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,15.5 - parent: 2 - uid: 37221 components: - type: Transform @@ -270696,7 +270877,7 @@ entities: - uid: 39283 components: - type: Transform - pos: -24.5,-72.5 + pos: 83.5,17.5 parent: 2 - uid: 39284 components: @@ -271581,7 +271762,8 @@ entities: - uid: 39455 components: - type: Transform - pos: -24.5,-71.5 + rot: 1.5707963267948966 rad + pos: 84.5,15.5 parent: 2 - uid: 39456 components: @@ -276654,6 +276836,12 @@ entities: - type: Transform pos: -83.5,51.5 parent: 2 + - uid: 43454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-73.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 40420 @@ -276843,18 +277031,6 @@ entities: - type: Transform pos: 25.5,73.5 parent: 2 - - uid: 40453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,13.5 - parent: 2 - - uid: 40454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,17.5 - parent: 2 - uid: 40455 components: - type: Transform @@ -277006,6 +277182,18 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,54.5 parent: 2 + - uid: 43423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,17.5 + parent: 2 + - uid: 43424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,13.5 + parent: 2 - proto: WallSolid entities: - uid: 40482 diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 1b350223d7..1c9e3f3257 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -51,8 +51,17 @@ abstract: true components: - type: SpawnGridAndDockToStation - gridPath: /Maps/_Sunrise/Shuttles/mining.yml - priorityTag: DockMining + grids: + - gridPath: /Maps/_Sunrise/Shuttles/mining.yml + priorityTag: DockMining + - gridPath: /Maps/_Sunrise/Shuttles/security.yml + priorityTag: DockSecurity + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal # - type: StationCargoShuttle # path: /Maps/Shuttles/cargo.yml - type: GridSpawn diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml index aa55e65b57..6b1c024bd9 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml @@ -90,8 +90,7 @@ ejectSound: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg whitelist: tags: - - PowerCell - - PowerCellSmall + - PowerCage # Sunrise-edit - type: HitscanBatteryAmmoProvider proto: RedShuttleMediumLaser #RedLightLaser fireCost: 30 # Sunrise-edit #changed from 50 to 30 diff --git a/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml b/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml index 764a455742..239bc33425 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml @@ -3,8 +3,9 @@ abstract: true components: - type: SpawnGridAndDockToStation - gridPath: /Maps/_Sunrise/Shuttles/centcom_shuttle.yml - priorityTag: DockCentComm + grids: + - gridPath: /Maps/_Sunrise/Shuttles/centcom_shuttle.yml + priorityTag: DockCentComm - type: entity id: BaseStationCentComm diff --git a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml index 7fc7405e1a..8b9431d333 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml @@ -132,6 +132,22 @@ - type: PriorityDock tag: DockMining +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassSecurityShuttle + suffix: External, Security, Glass, Docking, AutoDock + components: + - type: PriorityDock + tag: DockSecurity + +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassPersonalShuttle + suffix: External, Personal, Glass, Docking, AutoDock + components: + - type: PriorityDock + tag: DockPersonal + - type: entity parent: AirlockExternalGlassShuttleArrivals id: AirlockExternalGlassShuttleArrivalsLockedCentComm diff --git a/Resources/Prototypes/_Sunrise/Maps/box.yml b/Resources/Prototypes/_Sunrise/Maps/box.yml index d5df08dce6..9348316f05 100644 --- a/Resources/Prototypes/_Sunrise/Maps/box.yml +++ b/Resources/Prototypes/_Sunrise/Maps/box.yml @@ -14,6 +14,22 @@ nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'TG' + - type: SpawnGridAndDockToStation + grids: + - gridPath: /Maps/_Sunrise/Shuttles/mining.yml + priorityTag: DockMining + - gridPath: /Maps/_Sunrise/Shuttles/security.yml + priorityTag: DockSecurity + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/_Sunrise/Shuttles/emergency.yml - type: StationJobs diff --git a/Resources/Prototypes/_Sunrise/Maps/delta.yml b/Resources/Prototypes/_Sunrise/Maps/delta.yml index e94fa1e827..43289916c8 100644 --- a/Resources/Prototypes/_Sunrise/Maps/delta.yml +++ b/Resources/Prototypes/_Sunrise/Maps/delta.yml @@ -14,6 +14,26 @@ nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'TG' + - type: SpawnGridAndDockToStation + grids: + - gridPath: /Maps/_Sunrise/Shuttles/mining.yml + priorityTag: DockMining + - gridPath: /Maps/_Sunrise/Shuttles/security.yml + priorityTag: DockSecurity + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal + - gridPath: /Maps/_Sunrise/Shuttles/personal.yml + priorityTag: DockPersonal - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/_Sunrise/Shuttles/emergency.yml - type: StationJobs diff --git a/Resources/Prototypes/_Sunrise/tags.yml b/Resources/Prototypes/_Sunrise/tags.yml index 33915a519b..29cc80a98e 100644 --- a/Resources/Prototypes/_Sunrise/tags.yml +++ b/Resources/Prototypes/_Sunrise/tags.yml @@ -417,6 +417,12 @@ - type: Tag id: DockMining +- type: Tag + id: DockSecurity + +- type: Tag + id: DockPersonal + - type: Tag id: Felinid diff --git a/Resources/migration.yml b/Resources/migration.yml index 1a90b99c56..a68796aebc 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -722,6 +722,18 @@ PoweredLightPostSmallRed: PoweredlightRed PoweredSmallLightMaintenanceRed: PoweredDimSmallLight FoodCondimentBottleSmallVinegar: FoodCondimentBottleVinegar PoweredLightColoredRed: PoweredlightRed +PoweredLightColoredBlack: PoweredlightBlack +PoweredLightColoredFrostyBlue: PoweredlightBlue +RandomBook: null +SpawnPointShipwreckHecate: null +SpawnPointShipwreckTraveller: null +SpawnMobGolemCult: null +SpawnMobRobotMedical: null +WindoorCommandLocked: null +WindoorSecurityLocked: null +SpawnMobRobotStandard: null +OilJar`Ghee: null +Painting`MothBigCatch: null AtmTerminal: ATM Shinai: ToySword PosterLegitSMMeth: RandomPosterLegit @@ -762,7 +774,6 @@ ScienceTechFab: null ReverseEngineeringMachine: null ScienceTechFabCircuitboard: null EngineeringTechFabCircuitboard: null -WeaponPistolDeagle: null #Пока не обновят кабинеты ГСБ на картах. MagazineDeagle: null MagazineMagnum: null SpawnPointBlueShield: SpawnPointBlueShieldOfficer @@ -811,7 +822,6 @@ GrenadeEMP: GrenadeEMPTimer GrenadeFlash: GrenadeFlashTimer GrenadeFrag: GrenadeFragTimer WeaponEnergyGunMini: WeaponMiniEnergyGun -# Safes GunSafeCombineSmallArms: SpawnerSafeSmallArms # SL HITSCAN START BoxMagazineRifle: BoxMagazineRifleSP @@ -824,6 +834,6 @@ MagazineRifle: MagazineRifleSP MagazineBoxMagnum: MagazineBoxMagnumSP SpeedLoaderMagnum: SpeedLoaderMagnumSP MagazineBoxRifle: MagazineBoxRifleSP -# Sunrise-End PrinterDoc: CopyMachineFilled PrinterDocFlatpack: CopyMachineFlatpack +# Sunrise-End