diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs index bfb3d3f11f2..6a672c8d898 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs @@ -7,6 +7,6 @@ public sealed partial class UnionfallAnnouncerComponent : Component /// Time before capturing is allowed. This is from roundstart, so you want to add the ship grace period ON TOP of the value you want. /// [DataField] - public float GracePeriod = 1200f; //20 minutes for unionfall + public float GracePeriod = 900f; //20 minutes for unionfall } diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs index 4fe5d56f985..1f1bf82622d 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs @@ -46,19 +46,28 @@ private void OnComponentInit(EntityUid uid, UnionfallAnnouncerComponent componen Timer.Spawn(graceTime * 0.50, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.50)); Timer.Spawn(graceTime * 0.75, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.75)); Timer.Spawn(graceTime - TimeSpan.FromMinutes(1), AnnouncementWarAlmost); - Timer.Spawn(graceTime, AnnouncementWarGraceOver); // TODO: turn this into a cool 10 second countdown - } + Timer.Spawn(graceTime - TimeSpan.FromSeconds(10), AnnouncementWarGraceOver); + Timer.Spawn(graceTime, () => + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var barrierUid, out var _)) + { + EntityManager.DeleteEntity(barrierUid); + } + }); + } private void AnnouncementWarStart(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallBegin"), Filter.Broadcast(), - "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); + "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time.ToString(@"hh\:mm\:ss") + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); } + private void AnnouncementWarPeriodic(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPeriodic"), Filter.Broadcast(), - "<" + time + "> until the Hadal storm disperses."); + "<" + time.ToString(@"hh\:mm\:ss") + "> until the Hadal storm disperses."); } private void AnnouncementWarAlmost() @@ -66,9 +75,23 @@ private void AnnouncementWarAlmost() _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallAlmost"), Filter.Broadcast(), "<00:01:00> LEFT UNTIL FULL HADAL STORM DISPERSION."); } + private void AnnouncementWarGraceOver() { - _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), + for (int i = 10; i > 0; i--) + { + int countdown = i; + Timer.Spawn(TimeSpan.FromSeconds(10 - countdown), () => + { + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallCountdown"), Filter.Broadcast(), + "HADAL STORM DISPERSING IN <00:00:" + countdown.ToString("D2") + ">..."); + }); + } + + Timer.Spawn(TimeSpan.FromSeconds(10), () => + { + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), "HADAL STORM HAS DISPERSED. Emergency dispersion field has been disabled. Long-Range radar readings confirm presence of hostile fleet."); + }); } -} +} \ No newline at end of file diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs index eef29a26f68..88e6435d071 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs @@ -34,7 +34,7 @@ public sealed partial class UnionfallCapturePointComponent : Component /// Time before capturing is allowed. This is from roundstart, so you want to add the ship grace period ON TOP of the value you want. /// [DataField] - public float GracePeriod = 1200f; //20 minutes. 10 ship + 10 point + public float GracePeriod = 900f; //20 minutes. 10 ship + 10 point /// /// This decides wether the point announces UNIONFALL specific announcements regarding the grace period. diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs index 9c77d0fc19b..b7dc00c402d 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs @@ -41,16 +41,11 @@ public override void Initialize() _sawmill = IoCManager.Resolve().GetSawmill("audio.ambience"); } - private void OnComponentInit(EntityUid uid, UnionfallCapturePointComponent component, ComponentInit args) - { - TimeSpan graceTime = TimeSpan.FromSeconds(component.GracePeriod); - Timer.Spawn(TimeSpan.FromMinutes(1), () => AnnouncementWarStart(graceTime)); - Timer.Spawn(graceTime * 0.25, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.25)); - Timer.Spawn(graceTime * 0.50, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.50)); - Timer.Spawn(graceTime * 0.75, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.75)); - Timer.Spawn(graceTime - TimeSpan.FromMinutes(1), AnnouncementWarAlmost); - Timer.Spawn(graceTime, AnnouncementWarGraceOver); // TODO: turn this into a cool 10 second countdown - } +private void OnComponentInit(EntityUid uid, UnionfallCapturePointComponent component, ComponentInit args) +{ + // Announcement timer'ları buradan kaldırıldı. + // Tüm announcement'lar UnionfallAnnouncerSystem üzerinden yönetiliyor. +} public override void Update(float frameTime) { diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs new file mode 100644 index 00000000000..ab067158bfa --- /dev/null +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs @@ -0,0 +1,6 @@ +namespace Content.Server._Crescent.UnionfallCapturePoint; + +[RegisterComponent] +public sealed partial class UnionfallGraceBarrierComponent : Component +{ +} \ No newline at end of file diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs index d908139d3cc..2f2e0026d26 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs @@ -30,5 +30,5 @@ public sealed partial class UnionfallShipNodeComponent : Component /// Time before capturing is allowed. This is from roundstart, so you want to add the ship grace period ON TOP of the value you want. /// [DataField] - public float GracePeriod = 1200f; //20 minutes for unionfall -} + public float GracePeriod = 900f; //15 minutes for unionfall +} \ No newline at end of file diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml index b03c5771166..260280a57f6 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 21:18:49 + entityCount: 346 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 34: FloorDarkDiagonal @@ -27,20 +38,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAwAAAAAAggAAAAAAAwAAAAAAAwAAAAAABAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAAwAAAAAAAwAAAAAABQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAAAjAAAAAAAAAwAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAAA9AAAAAAAAPQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAADAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACIAAAAAAAAiAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAAwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAiAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAAwAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAAwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAiAAAAAAAAIgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAggAAAAAAggAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAPQAAAAAAAD0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -66,359 +77,448 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 93: -4,6 - 94: 5,6 + 83: -4,6 + 84: 5,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNe decals: - 390: 2,0 - 392: -1,0 + 378: 2,0 + 380: -1,0 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 91: -5,6 - 92: 4,6 + 81: -5,6 + 82: 4,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 391: 1,0 - 393: -2,0 + 379: 1,0 + 381: -2,0 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 88: 2,-1 - 97: 5,5 - 98: -4,5 + 80: 2,-1 + 87: 5,5 + 88: -4,5 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 87: -2,-1 - 95: -5,5 - 96: 4,5 + 79: -2,-1 + 85: -5,5 + 86: 4,5 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 121: -1,-1 + 109: -1,-1 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 120: 1,-1 + 108: 1,-1 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 122: 0,-1 + 110: 0,-1 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 111: -1,-1 - 112: 0,-1 - 113: 1,-1 + 101: -1,-1 + 102: 0,-1 + 103: 1,-1 - node: zIndex: 1 id: LatticeCornerNE decals: - 137: 2,4 - 166: -2,4 - 180: -6,-2 - 183: -2,-3 - 208: 3,7 - 226: 2,4 - 237: 3,7 - 277: -2,4 - 291: -6,-2 - 294: -2,-3 - 315: 2,4 - 326: 3,7 - 366: -2,4 - 380: -6,-2 - 383: -2,-3 + 125: 2,4 + 154: -2,4 + 168: -6,-2 + 171: -2,-3 + 196: 3,7 + 214: 2,4 + 225: 3,7 + 265: -2,4 + 279: -6,-2 + 282: -2,-3 + 303: 2,4 + 314: 3,7 + 354: -2,4 + 368: -6,-2 + 371: -2,-3 + 400: 2,4 + 411: 3,7 + 451: -2,4 + 465: -6,-2 + 468: -2,-3 - node: zIndex: 1 id: LatticeCornerNW decals: - 140: 2,4 - 169: -2,4 - 186: 2,-3 - 189: 6,-2 - 197: -3,7 - 229: 2,4 - 269: -3,7 - 280: -2,4 - 297: 2,-3 - 300: 6,-2 - 318: 2,4 - 358: -3,7 - 369: -2,4 - 386: 2,-3 - 389: 6,-2 + 128: 2,4 + 157: -2,4 + 174: 2,-3 + 177: 6,-2 + 185: -3,7 + 217: 2,4 + 257: -3,7 + 268: -2,4 + 285: 2,-3 + 288: 6,-2 + 306: 2,4 + 346: -3,7 + 357: -2,4 + 374: 2,-3 + 377: 6,-2 + 403: 2,4 + 443: -3,7 + 454: -2,4 + 471: 2,-3 + 474: 6,-2 - node: zIndex: 1 id: LatticeCornerSE decals: - 125: 0,4 - 130: 1,4 - 135: 2,4 - 143: 2,5 - 155: -11,0 - 158: -9,1 - 161: -8,4 - 164: -2,4 - 175: -1,4 - 203: 4,9 - 206: 3,7 - 211: 3,8 - 214: 0,4 - 219: 1,4 - 224: 2,4 - 232: 2,5 - 235: 3,7 - 240: 3,8 - 243: 4,9 - 255: -11,0 - 258: -9,1 - 261: -8,4 - 275: -2,4 - 286: -1,4 - 303: 0,4 - 308: 1,4 - 313: 2,4 - 321: 2,5 - 324: 3,7 - 329: 3,8 - 332: 4,9 - 344: -11,0 - 347: -9,1 - 350: -8,4 - 364: -2,4 - 375: -1,4 + 113: 0,4 + 118: 1,4 + 123: 2,4 + 131: 2,5 + 143: -11,0 + 146: -9,1 + 149: -8,4 + 152: -2,4 + 163: -1,4 + 191: 4,9 + 194: 3,7 + 199: 3,8 + 202: 0,4 + 207: 1,4 + 212: 2,4 + 220: 2,5 + 223: 3,7 + 228: 3,8 + 231: 4,9 + 243: -11,0 + 246: -9,1 + 249: -8,4 + 263: -2,4 + 274: -1,4 + 291: 0,4 + 296: 1,4 + 301: 2,4 + 309: 2,5 + 312: 3,7 + 317: 3,8 + 320: 4,9 + 332: -11,0 + 335: -9,1 + 338: -8,4 + 352: -2,4 + 363: -1,4 + 388: 0,4 + 393: 1,4 + 398: 2,4 + 406: 2,5 + 409: 3,7 + 414: 3,8 + 417: 4,9 + 429: -11,0 + 432: -9,1 + 435: -8,4 + 449: -2,4 + 460: -1,4 - node: zIndex: 1 id: LatticeCornerSW decals: - 127: 0,4 - 132: 1,4 - 139: 2,4 - 146: 8,4 - 149: 9,1 - 152: 11,0 - 168: -2,4 - 172: -2,5 - 177: -1,4 - 192: -4,9 - 196: -3,7 - 200: -3,8 - 216: 0,4 - 221: 1,4 - 228: 2,4 - 246: 8,4 - 249: 9,1 - 252: 11,0 - 264: -4,9 - 268: -3,7 - 272: -3,8 - 279: -2,4 - 283: -2,5 - 288: -1,4 - 305: 0,4 - 310: 1,4 - 317: 2,4 - 335: 8,4 - 338: 9,1 - 341: 11,0 - 353: -4,9 - 357: -3,7 - 361: -3,8 - 368: -2,4 - 372: -2,5 - 377: -1,4 + 115: 0,4 + 120: 1,4 + 127: 2,4 + 134: 8,4 + 137: 9,1 + 140: 11,0 + 156: -2,4 + 160: -2,5 + 165: -1,4 + 180: -4,9 + 184: -3,7 + 188: -3,8 + 204: 0,4 + 209: 1,4 + 216: 2,4 + 234: 8,4 + 237: 9,1 + 240: 11,0 + 252: -4,9 + 256: -3,7 + 260: -3,8 + 267: -2,4 + 271: -2,5 + 276: -1,4 + 293: 0,4 + 298: 1,4 + 305: 2,4 + 323: 8,4 + 326: 9,1 + 329: 11,0 + 341: -4,9 + 345: -3,7 + 349: -3,8 + 356: -2,4 + 360: -2,5 + 365: -1,4 + 390: 0,4 + 395: 1,4 + 402: 2,4 + 420: 8,4 + 423: 9,1 + 426: 11,0 + 438: -4,9 + 442: -3,7 + 446: -3,8 + 453: -2,4 + 457: -2,5 + 462: -1,4 - node: id: LatticeEdgeE decals: - 124: 0,4 - 129: 1,4 - 134: 2,4 - 142: 2,5 - 154: -11,0 - 157: -9,1 - 160: -8,4 - 163: -2,4 - 174: -1,4 - 178: -6,-2 - 181: -2,-3 - 202: 4,9 - 205: 3,7 - 210: 3,8 - 213: 0,4 - 218: 1,4 - 223: 2,4 - 231: 2,5 - 234: 3,7 - 239: 3,8 - 242: 4,9 - 254: -11,0 - 257: -9,1 - 260: -8,4 - 274: -2,4 - 285: -1,4 - 289: -6,-2 - 292: -2,-3 - 302: 0,4 - 307: 1,4 - 312: 2,4 - 320: 2,5 - 323: 3,7 - 328: 3,8 - 331: 4,9 - 343: -11,0 - 346: -9,1 - 349: -8,4 - 363: -2,4 - 374: -1,4 - 378: -6,-2 - 381: -2,-3 + 112: 0,4 + 117: 1,4 + 122: 2,4 + 130: 2,5 + 142: -11,0 + 145: -9,1 + 148: -8,4 + 151: -2,4 + 162: -1,4 + 166: -6,-2 + 169: -2,-3 + 190: 4,9 + 193: 3,7 + 198: 3,8 + 201: 0,4 + 206: 1,4 + 211: 2,4 + 219: 2,5 + 222: 3,7 + 227: 3,8 + 230: 4,9 + 242: -11,0 + 245: -9,1 + 248: -8,4 + 262: -2,4 + 273: -1,4 + 277: -6,-2 + 280: -2,-3 + 290: 0,4 + 295: 1,4 + 300: 2,4 + 308: 2,5 + 311: 3,7 + 316: 3,8 + 319: 4,9 + 331: -11,0 + 334: -9,1 + 337: -8,4 + 351: -2,4 + 362: -1,4 + 366: -6,-2 + 369: -2,-3 + 387: 0,4 + 392: 1,4 + 397: 2,4 + 405: 2,5 + 408: 3,7 + 413: 3,8 + 416: 4,9 + 428: -11,0 + 431: -9,1 + 434: -8,4 + 448: -2,4 + 459: -1,4 + 463: -6,-2 + 466: -2,-3 - node: id: LatticeEdgeN decals: - 136: 2,4 - 165: -2,4 - 179: -6,-2 - 182: -2,-3 - 184: 2,-3 - 187: 6,-2 - 194: -3,7 - 207: 3,7 - 225: 2,4 - 236: 3,7 - 266: -3,7 - 276: -2,4 - 290: -6,-2 - 293: -2,-3 - 295: 2,-3 - 298: 6,-2 - 314: 2,4 - 325: 3,7 - 355: -3,7 - 365: -2,4 - 379: -6,-2 - 382: -2,-3 - 384: 2,-3 - 387: 6,-2 + 124: 2,4 + 153: -2,4 + 167: -6,-2 + 170: -2,-3 + 172: 2,-3 + 175: 6,-2 + 182: -3,7 + 195: 3,7 + 213: 2,4 + 224: 3,7 + 254: -3,7 + 264: -2,4 + 278: -6,-2 + 281: -2,-3 + 283: 2,-3 + 286: 6,-2 + 302: 2,4 + 313: 3,7 + 343: -3,7 + 353: -2,4 + 367: -6,-2 + 370: -2,-3 + 372: 2,-3 + 375: 6,-2 + 399: 2,4 + 410: 3,7 + 440: -3,7 + 450: -2,4 + 464: -6,-2 + 467: -2,-3 + 469: 2,-3 + 472: 6,-2 - node: id: LatticeEdgeS decals: - 123: 0,4 - 128: 1,4 - 133: 2,4 - 141: 2,5 - 144: 8,4 - 147: 9,1 - 150: 11,0 - 153: -11,0 - 156: -9,1 - 159: -8,4 - 162: -2,4 - 170: -2,5 - 173: -1,4 - 190: -4,9 - 193: -3,7 - 198: -3,8 - 201: 4,9 - 204: 3,7 - 209: 3,8 - 212: 0,4 - 217: 1,4 - 222: 2,4 - 230: 2,5 - 233: 3,7 - 238: 3,8 - 241: 4,9 - 244: 8,4 - 247: 9,1 - 250: 11,0 - 253: -11,0 - 256: -9,1 - 259: -8,4 - 262: -4,9 - 265: -3,7 - 270: -3,8 - 273: -2,4 - 281: -2,5 - 284: -1,4 - 301: 0,4 - 306: 1,4 - 311: 2,4 - 319: 2,5 - 322: 3,7 - 327: 3,8 - 330: 4,9 - 333: 8,4 - 336: 9,1 - 339: 11,0 - 342: -11,0 - 345: -9,1 - 348: -8,4 - 351: -4,9 - 354: -3,7 - 359: -3,8 - 362: -2,4 - 370: -2,5 - 373: -1,4 + 111: 0,4 + 116: 1,4 + 121: 2,4 + 129: 2,5 + 132: 8,4 + 135: 9,1 + 138: 11,0 + 141: -11,0 + 144: -9,1 + 147: -8,4 + 150: -2,4 + 158: -2,5 + 161: -1,4 + 178: -4,9 + 181: -3,7 + 186: -3,8 + 189: 4,9 + 192: 3,7 + 197: 3,8 + 200: 0,4 + 205: 1,4 + 210: 2,4 + 218: 2,5 + 221: 3,7 + 226: 3,8 + 229: 4,9 + 232: 8,4 + 235: 9,1 + 238: 11,0 + 241: -11,0 + 244: -9,1 + 247: -8,4 + 250: -4,9 + 253: -3,7 + 258: -3,8 + 261: -2,4 + 269: -2,5 + 272: -1,4 + 289: 0,4 + 294: 1,4 + 299: 2,4 + 307: 2,5 + 310: 3,7 + 315: 3,8 + 318: 4,9 + 321: 8,4 + 324: 9,1 + 327: 11,0 + 330: -11,0 + 333: -9,1 + 336: -8,4 + 339: -4,9 + 342: -3,7 + 347: -3,8 + 350: -2,4 + 358: -2,5 + 361: -1,4 + 386: 0,4 + 391: 1,4 + 396: 2,4 + 404: 2,5 + 407: 3,7 + 412: 3,8 + 415: 4,9 + 418: 8,4 + 421: 9,1 + 424: 11,0 + 427: -11,0 + 430: -9,1 + 433: -8,4 + 436: -4,9 + 439: -3,7 + 444: -3,8 + 447: -2,4 + 455: -2,5 + 458: -1,4 - node: id: LatticeEdgeW decals: - 126: 0,4 - 131: 1,4 - 138: 2,4 - 145: 8,4 - 148: 9,1 - 151: 11,0 - 167: -2,4 - 171: -2,5 - 176: -1,4 - 185: 2,-3 - 188: 6,-2 - 191: -4,9 - 195: -3,7 - 199: -3,8 - 215: 0,4 - 220: 1,4 - 227: 2,4 - 245: 8,4 - 248: 9,1 - 251: 11,0 - 263: -4,9 - 267: -3,7 - 271: -3,8 - 278: -2,4 - 282: -2,5 - 287: -1,4 - 296: 2,-3 - 299: 6,-2 - 304: 0,4 - 309: 1,4 - 316: 2,4 - 334: 8,4 - 337: 9,1 - 340: 11,0 - 352: -4,9 - 356: -3,7 - 360: -3,8 - 367: -2,4 - 371: -2,5 - 376: -1,4 - 385: 2,-3 - 388: 6,-2 + 114: 0,4 + 119: 1,4 + 126: 2,4 + 133: 8,4 + 136: 9,1 + 139: 11,0 + 155: -2,4 + 159: -2,5 + 164: -1,4 + 173: 2,-3 + 176: 6,-2 + 179: -4,9 + 183: -3,7 + 187: -3,8 + 203: 0,4 + 208: 1,4 + 215: 2,4 + 233: 8,4 + 236: 9,1 + 239: 11,0 + 251: -4,9 + 255: -3,7 + 259: -3,8 + 266: -2,4 + 270: -2,5 + 275: -1,4 + 284: 2,-3 + 287: 6,-2 + 292: 0,4 + 297: 1,4 + 304: 2,4 + 322: 8,4 + 325: 9,1 + 328: 11,0 + 340: -4,9 + 344: -3,7 + 348: -3,8 + 355: -2,4 + 359: -2,5 + 364: -1,4 + 373: 2,-3 + 376: 6,-2 + 389: 0,4 + 394: 1,4 + 401: 2,4 + 419: 8,4 + 422: 9,1 + 425: 11,0 + 437: -4,9 + 441: -3,7 + 445: -3,8 + 452: -2,4 + 456: -2,5 + 461: -1,4 + 470: 2,-3 + 473: 6,-2 - node: color: '#FFFFFFFF' id: TechE @@ -428,32 +528,32 @@ entities: 72: 5,3 73: 5,2 77: 7,0 - 114: -4,3 - 115: -4,2 + 104: -4,3 + 105: -4,2 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechNE decals: - 408: 2,1 + 384: 2,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 407: 2,2 + 383: 2,2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechNW decals: - 409: -2,1 + 385: -2,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNW decals: - 405: -2,2 + 382: -2,2 - node: color: '#FFFFFFFF' id: TechS @@ -468,8 +568,8 @@ entities: 74: -5,3 75: -5,2 76: -7,0 - 116: 4,3 - 117: 4,2 + 106: 4,3 + 107: 4,2 - node: color: '#D381C996' id: WarnCornerNE @@ -526,12 +626,12 @@ entities: 59: 5,-2 70: 4,4 71: 4,4 - 105: -1,-2 - 106: -1,-2 - 107: 0,-2 - 108: 0,-2 - 109: 1,-2 - 110: 1,-2 + 95: -1,-2 + 96: -1,-2 + 97: 0,-2 + 98: 0,-2 + 99: 1,-2 + 100: 1,-2 - node: color: '#D381C996' id: WarnLineS @@ -568,12 +668,12 @@ entities: 45: -1,-3 46: 1,-3 47: 1,-3 - 99: -1,-2 - 100: -1,-2 - 101: 0,-2 - 102: 0,-2 - 103: 1,-2 - 104: 1,-2 + 89: -1,-2 + 90: -1,-2 + 91: 0,-2 + 92: 0,-2 + 93: 1,-2 + 94: 1,-2 - type: GridAtmosphere version: 2 data: @@ -669,6 +769,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle ALP-421 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - uid: 2 @@ -679,7 +780,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - type: Physics canCollide: False - uid: 3 @@ -690,10 +791,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - type: Physics canCollide: False - - uid: 225 + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad @@ -701,28 +802,28 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - type: Physics canCollide: False - proto: AirAlarm entities: - - uid: 4 + - uid: 5 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 5 + - uid: 6 components: - type: Transform pos: -0.5,1.5 parent: 1 - type: DeviceList devices: - - 188 - - 187 + - 191 + - 190 - proto: AirCanister entities: - - uid: 6 + - uid: 7 components: - type: Transform anchored: True @@ -732,25 +833,25 @@ entities: bodyType: Static - proto: AirlockCommand entities: - - uid: 7 + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - - uid: 8 + - uid: 9 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 9 + - uid: 10 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 10 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad @@ -758,13 +859,13 @@ entities: parent: 1 - proto: AirlockCommandHorizontal entities: - - uid: 11 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 1 - - uid: 12 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad @@ -772,34 +873,34 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 13 + - uid: 14 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 14 + - uid: 15 components: - type: Transform pos: -4.5,0.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 15 + - uid: 16 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 16 + - uid: 17 components: - type: Transform pos: 1.5,-2.5 parent: 1 - proto: AirTankFilled entities: - - uid: 18 + - uid: 19 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -807,64 +908,64 @@ entities: - type: InsideEntityStorage - proto: APCBasic entities: - - uid: 25 + - uid: 26 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 26 + - uid: 27 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 27 + - uid: 28 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 28 + - uid: 29 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 29 + - uid: 30 components: - type: Transform pos: 2.5,3.5 parent: 1 - proto: BlastDoor entities: - - uid: 30 + - uid: 31 components: - type: Transform pos: -1.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 222 - - uid: 31 + - 232 + - uid: 32 components: - type: Transform pos: 2.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 223 + - 233 - proto: BlastDoorOpen entities: - - uid: 339 + - uid: 33 components: - type: Transform pos: 0.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 32 + - uid: 34 components: - type: Transform pos: -5.5,3.5 @@ -909,7 +1010,7 @@ entities: - Explosive - proto: ButtonFrameCaution entities: - - uid: 33 + - uid: 35 components: - type: Transform rot: 3.141592653589793 rad @@ -917,13 +1018,13 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 34 + - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,2.5 parent: 1 - - uid: 35 + - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad @@ -931,625 +1032,625 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 36 + - uid: 38 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 37 + - uid: 39 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 38 + - uid: 40 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 39 + - uid: 41 components: - type: Transform pos: -7.5,0.5 parent: 1 - - uid: 40 + - uid: 42 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 41 + - uid: 43 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 42 + - uid: 44 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 43 + - uid: 45 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 44 + - uid: 46 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 45 + - uid: 47 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 46 + - uid: 48 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 47 + - uid: 49 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 48 + - uid: 50 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 49 + - uid: 51 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 50 + - uid: 52 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 51 + - uid: 53 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 52 + - uid: 54 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 53 + - uid: 55 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 54 + - uid: 56 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 55 + - uid: 57 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 56 + - uid: 58 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 57 + - uid: 59 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 58 + - uid: 60 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 59 + - uid: 61 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 60 + - uid: 62 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 61 + - uid: 63 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 62 + - uid: 64 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 63 + - uid: 65 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 64 + - uid: 66 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 65 + - uid: 67 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 66 + - uid: 68 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 67 + - uid: 69 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 68 + - uid: 70 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 69 + - uid: 71 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 70 + - uid: 72 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 71 + - uid: 73 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 72 + - uid: 74 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 73 + - uid: 75 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 74 + - uid: 76 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 75 + - uid: 77 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 76 + - uid: 78 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 77 + - uid: 79 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 78 + - uid: 80 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 79 + - uid: 81 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 80 + - uid: 82 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 81 + - uid: 83 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 82 + - uid: 84 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 83 + - uid: 85 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 84 + - uid: 86 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 85 + - uid: 87 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 86 + - uid: 88 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 87 + - uid: 89 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 88 + - uid: 90 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 89 + - uid: 91 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 90 + - uid: 92 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 91 + - uid: 93 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 92 + - uid: 94 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 93 + - uid: 95 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 94 + - uid: 96 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 95 + - uid: 97 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 96 + - uid: 98 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 97 + - uid: 99 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 98 + - uid: 100 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 99 + - uid: 101 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 100 + - uid: 102 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 101 + - uid: 103 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 102 + - uid: 104 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 103 + - uid: 105 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 104 + - uid: 106 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 105 + - uid: 107 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 106 + - uid: 108 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 107 + - uid: 109 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 108 + - uid: 110 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 109 + - uid: 111 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 110 + - uid: 112 components: - type: Transform pos: -3.5,4.5 parent: 1 - proto: CableHV entities: - - uid: 111 + - uid: 113 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 112 + - uid: 114 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 114 + - uid: 115 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 115 + - uid: 116 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 116 + - uid: 117 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 117 + - uid: 118 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 118 + - uid: 119 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 119 + - uid: 120 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 120 + - uid: 121 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 121 + - uid: 122 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 122 + - uid: 123 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 123 + - uid: 124 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 124 + - uid: 125 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 125 + - uid: 126 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 126 + - uid: 127 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 127 + - uid: 128 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 128 + - uid: 129 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 129 + - uid: 130 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 130 + - uid: 131 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 131 + - uid: 132 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 340 + - uid: 133 components: - type: Transform pos: -1.5,-0.5 parent: 1 - proto: CableMV entities: - - uid: 132 + - uid: 134 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 133 + - uid: 135 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 134 + - uid: 136 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 135 + - uid: 137 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 136 + - uid: 138 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 137 + - uid: 139 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 138 + - uid: 140 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 139 + - uid: 141 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 140 + - uid: 142 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 141 + - uid: 143 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 142 + - uid: 144 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 143 + - uid: 145 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 144 + - uid: 146 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 145 + - uid: 147 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 146 + - uid: 148 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 147 + - uid: 149 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 148 + - uid: 150 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 149 + - uid: 151 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 150 + - uid: 152 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: Catwalk entities: - - uid: 151 + - uid: 153 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 152 + - uid: 154 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 153 + - uid: 155 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 154 + - uid: 156 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 155 + - uid: 157 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 156 + - uid: 158 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 157 + - uid: 159 components: - type: Transform pos: -1.5,5.5 parent: 1 - proto: ChairOfficeDark entities: - - uid: 158 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -1557,7 +1658,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 159 + - uid: 161 components: - type: Transform rot: 3.141592653589793 rad @@ -1565,7 +1666,7 @@ entities: parent: 1 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 160 + - uid: 162 components: - type: Transform rot: -1.5707963267948966 rad @@ -1573,17 +1674,17 @@ entities: parent: 1 - proto: ClothingBeltUtility entities: - - uid: 161 + - uid: 163 components: - type: Transform pos: 5.4772058,6.4890842 parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 19 + - uid: 20 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1591,10 +1692,10 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskImperialCombatGasmask entities: - - uid: 20 + - uid: 21 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1602,10 +1703,10 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 21 + - uid: 22 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1613,10 +1714,10 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - - uid: 22 + - uid: 23 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1624,7 +1725,7 @@ entities: - type: InsideEntityStorage - proto: ComputerShuttle entities: - - uid: 162 + - uid: 164 components: - type: Transform pos: 0.5,2.5 @@ -1646,111 +1747,99 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - Group1: Toggle - 225: - - Group1: Toggle + - - Group1 + - Toggle + 4: + - - Group1 + - Toggle 3: - - Group2: SpaceArtilleryFire - 339: - - Group3: Toggle - 220: - - Group4: Toggle - 219: - - Group4: Toggle - 221: - - Group4: Toggle + - - Group2 + - SpaceArtilleryFire + 33: + - - Group3 + - Toggle + 228: + - - Group4 + - Toggle + 227: + - - Group4 + - Toggle + 229: + - - Group4 + - Toggle - type: NamedModules buttonNames: - - Toggle Plasmacasters + - Toggle Slugthrowers - Fire Idna - Close Front Blast Door - - Close Shutters + - Close Shutters""" - Module E - proto: ComputerTabletopCommsShip entities: - - uid: 163 + - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,5.5 parent: 1 -- proto: DrinkMugOne - entities: - - uid: 164 - components: - - type: Transform - pos: -3.846043,6.786028 - parent: 1 - proto: EmergencyLight entities: - - uid: 165 + - uid: 167 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 166 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 167 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 168 + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 1 -- proto: FaxMachineShip - entities: - - uid: 169 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1 - - uid: 342 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 - proto: Firelock entities: - - uid: 170 + - uid: 173 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 1 - - uid: 171 + - uid: 174 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 1 - - uid: 172 + - uid: 175 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - - uid: 173 + - uid: 176 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 174 + - uid: 177 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 175 + - uid: 178 components: - type: Transform rot: 3.141592653589793 rad @@ -1758,61 +1847,61 @@ entities: parent: 1 - proto: GasPassiveVent entities: - - uid: 176 + - uid: 179 components: - type: Transform pos: -0.5,4.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 177 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 1 - - uid: 178 + - uid: 181 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 179 + - uid: 182 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 180 + - uid: 183 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 181 + - uid: 184 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - - uid: 182 + - uid: 185 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 183 + - uid: 186 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 184 + - uid: 187 components: - type: Transform pos: -0.5,2.5 parent: 1 - proto: GasPort entities: - - uid: 185 + - uid: 188 components: - type: Transform rot: -1.5707963267948966 rad @@ -1820,7 +1909,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 186 + - uid: 189 components: - type: Transform rot: -1.5707963267948966 rad @@ -1828,7 +1917,7 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 187 + - uid: 190 components: - type: Transform rot: 1.5707963267948966 rad @@ -1838,10 +1927,10 @@ entities: configurators: - invalid deviceLists: - - 5 + - 6 - proto: GasVentScrubber entities: - - uid: 188 + - uid: 191 components: - type: Transform rot: 3.141592653589793 rad @@ -1851,47 +1940,47 @@ entities: configurators: - invalid deviceLists: - - 5 + - 6 - proto: GravityGeneratorMini entities: - - uid: 189 + - uid: 192 components: - type: Transform pos: 6.5,2.5 parent: 1 - proto: Grille entities: - - uid: 190 + - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 191 + - uid: 194 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 192 + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 193 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 194 + - uid: 197 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 195 + - uid: 198 components: - type: Transform rot: -1.5707963267948966 rad @@ -1899,17 +1988,17 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 196 + - uid: 199 components: - type: Transform pos: -7.5,0.5 parent: 1 - proto: HandheldGPSBasic entities: - - uid: 23 + - uid: 24 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1917,7 +2006,7 @@ entities: - type: InsideEntityStorage - proto: HeavyReinforcedPlasmaWindow entities: - - uid: 197 + - uid: 200 components: - type: Transform rot: -1.5707963267948966 rad @@ -1925,95 +2014,115 @@ entities: parent: 1 - proto: IdnaTorpedo entities: - - uid: 227 + - uid: 172 + components: + - type: Transform + pos: 2.532313,-0.26476252 + parent: 1 + - uid: 202 components: - type: Transform - parent: 226 + parent: 201 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 228 + - uid: 203 components: - type: Transform - parent: 226 + parent: 201 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 345 - components: - - type: Transform - pos: 2.363921,-0.4045136 - parent: 1 - - uid: 346 + - uid: 205 components: - type: Transform - pos: 2.6553326,-0.40753734 + pos: 2.2881725,-0.2918892 parent: 1 - proto: JetpackMiniFilled entities: - - uid: 24 + - uid: 25 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: PaperBin20 +- proto: MagazineLightRifleBoxSlug entities: - - uid: 198 + - uid: 204 + components: + - type: Transform + pos: -1.6873913,-0.28807497 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 206 + components: + - type: Transform + pos: -1.4296871,-0.28807497 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] +- proto: PaperBin + entities: + - uid: 207 components: - type: Transform pos: -3.5,6.5 parent: 1 -- proto: Pen +- proto: PenCentcom entities: - - uid: 199 + - uid: 166 components: - type: Transform - pos: -3.8757882,6.5035696 + pos: -3.9823503,6.632785 parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 200 + - uid: 208 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - - uid: 201 + - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - - uid: 202 + - uid: 210 components: - type: Transform pos: 0.5,2.5 parent: 1 - proto: PoweredlightLED entities: - - uid: 203 + - uid: 211 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 204 + - uid: 212 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 205 + - uid: 213 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 206 + - uid: 214 components: - type: Transform rot: 1.5707963267948966 rad @@ -2021,13 +2130,13 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 207 + - uid: 215 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 1 - - uid: 208 + - uid: 216 components: - type: Transform rot: 3.141592653589793 rad @@ -2035,41 +2144,41 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 209 + - uid: 217 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 210 + - uid: 218 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 211 + - uid: 219 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - - uid: 212 + - uid: 220 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 213 + - uid: 221 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 1 - - uid: 214 + - uid: 222 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 1 - - uid: 215 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad @@ -2077,73 +2186,80 @@ entities: parent: 1 - proto: Rack entities: - - uid: 216 + - uid: 224 components: - type: Transform pos: 5.5,6.5 parent: 1 + - uid: 237 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 - proto: Railing entities: - - uid: 217 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 338 + - uid: 226 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 171 + components: + - type: Transform + pos: -4.4706316,6.5107145 + parent: 1 - proto: ShuttersNormalOpen entities: - - uid: 219 + - uid: 227 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 162 - - uid: 220 + - 164 + - uid: 228 components: - type: Transform pos: -0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 162 - - uid: 221 + - 164 + - uid: 229 components: - type: Transform pos: 1.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 162 -- proto: ShuttleGunPlasmaRepeater - entities: - - uid: 343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - - uid: 344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 + - 164 - proto: ShuttleGunTorpedo entities: - - uid: 226 + - uid: 201 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 + - type: Battery + startingCharge: 19229.688 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: machine_board: !type:Container @@ -2158,15 +2274,15 @@ entities: showEnts: False occludes: True ents: - - 227 - - 228 + - 202 + - 203 - type: BallisticAmmoProvider entities: - - 227 - - 228 + - 202 + - 203 - proto: SignalButton entities: - - uid: 222 + - uid: 232 components: - type: Transform rot: 1.5707963267948966 rad @@ -2174,9 +2290,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 30: - - Pressed: Toggle - - uid: 223 + 31: + - - Pressed + - Toggle + - uid: 233 components: - type: Transform rot: -1.5707963267948966 rad @@ -2184,24 +2301,95 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 31: - - Pressed: Toggle - - uid: 224 + 32: + - - Pressed + - Toggle + - uid: 234 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 +- proto: SlugthrowerCannon + entities: + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Battery + startingCharge: 19895.576 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Battery + startingCharge: 19891.758 + - type: ApcPowerReceiverBattery + enabled: True - proto: StairStageDark entities: - - uid: 229 + - uid: 235 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: SubstationBasic entities: - - uid: 230 + - uid: 236 components: - type: Transform pos: 6.5,3.5 @@ -2210,7 +2398,7 @@ entities: - Explosive - proto: SuitStorageBase entities: - - uid: 17 + - uid: 18 components: - type: Transform pos: 5.5,5.5 @@ -2239,95 +2427,85 @@ entities: showEnts: False occludes: True ents: - - 18 - - 21 - 19 - - 23 - - 20 - 22 + - 20 - 24 + - 21 + - 23 + - 25 - proto: TableReinforced entities: - - uid: 113 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 - - uid: 231 + - uid: 238 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 232 + - uid: 239 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 233 + - uid: 240 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 341 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 1 - proto: ThrusterDSMFighter entities: - - uid: 234 + - uid: 242 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 235 + - uid: 243 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 1 - - uid: 236 + - uid: 244 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 1 - - uid: 237 + - uid: 245 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-1.5 parent: 1 - - uid: 238 + - uid: 246 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 239 + - uid: 247 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 240 + - uid: 248 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,3.5 parent: 1 - - uid: 241 + - uid: 249 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 242 + - uid: 250 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 243 + - uid: 251 components: - type: Transform rot: 3.141592653589793 rad @@ -2335,482 +2513,482 @@ entities: parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 244 + - uid: 252 components: - type: Transform pos: 5.4772058,6.7566757 parent: 1 - proto: WallPlastitanium entities: - - uid: 245 + - uid: 253 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 246 + - uid: 254 components: - type: Transform pos: 5.5,1.5 parent: 1 - proto: WallReinforced entities: - - uid: 247 + - uid: 255 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 248 + - uid: 256 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 1 - - uid: 249 + - uid: 257 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 1 - - uid: 250 + - uid: 258 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 251 + - uid: 259 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,4.5 parent: 1 - - uid: 252 + - uid: 260 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 253 + - uid: 261 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,7.5 parent: 1 - - uid: 254 + - uid: 262 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,0.5 parent: 1 - - uid: 255 + - uid: 263 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 1 - - uid: 256 + - uid: 264 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,0.5 parent: 1 - - uid: 257 + - uid: 265 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 1 - - uid: 258 + - uid: 266 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 1 - - uid: 259 + - uid: 267 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-0.5 parent: 1 - - uid: 260 + - uid: 268 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 1 - - uid: 261 + - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 1 - - uid: 262 + - uid: 270 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 263 + - uid: 271 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 264 + - uid: 272 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,8.5 parent: 1 - - uid: 265 + - uid: 273 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 266 + - uid: 274 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 267 + - uid: 275 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 1 - - uid: 268 + - uid: 276 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,1.5 parent: 1 - - uid: 269 + - uid: 277 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,9.5 parent: 1 - - uid: 270 + - uid: 278 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - - uid: 271 + - uid: 279 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 272 + - uid: 280 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 273 + - uid: 281 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 274 + - uid: 282 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 275 + - uid: 283 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 1 - - uid: 276 + - uid: 284 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 1 - - uid: 277 + - uid: 285 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 1 - - uid: 278 + - uid: 286 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 1 - - uid: 279 + - uid: 287 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 1 - - uid: 280 + - uid: 288 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 281 + - uid: 289 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 282 + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 283 + - uid: 291 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,5.5 parent: 1 - - uid: 284 + - uid: 292 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 285 + - uid: 293 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 286 + - uid: 294 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 1 - - uid: 287 + - uid: 295 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 1 - - uid: 288 + - uid: 296 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 289 + - uid: 297 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 290 + - uid: 298 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 1 - - uid: 291 + - uid: 299 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 1 - - uid: 292 + - uid: 300 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 293 + - uid: 301 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 294 + - uid: 302 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-0.5 parent: 1 - - uid: 295 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 1 - - uid: 296 + - uid: 304 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 297 + - uid: 305 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,1.5 parent: 1 - - uid: 298 + - uid: 306 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 299 + - uid: 307 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 1 - - uid: 300 + - uid: 308 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 301 + - uid: 309 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,1.5 parent: 1 - - uid: 302 + - uid: 310 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 - - uid: 303 + - uid: 311 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,6.5 parent: 1 - - uid: 304 + - uid: 312 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,1.5 parent: 1 - - uid: 305 + - uid: 313 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 1 - - uid: 306 + - uid: 314 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 1 - - uid: 307 + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 308 + - uid: 316 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 1 - - uid: 309 + - uid: 317 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 310 + - uid: 318 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 1 - - uid: 311 + - uid: 319 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 312 + - uid: 320 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 313 + - uid: 321 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 1 - - uid: 314 + - uid: 322 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 315 + - uid: 323 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 1 - - uid: 316 + - uid: 324 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,1.5 parent: 1 - - uid: 317 + - uid: 325 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 - - uid: 318 + - uid: 326 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - - uid: 319 + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 1 - - uid: 320 + - uid: 328 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 1 - - uid: 321 + - uid: 329 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 1 - - uid: 322 + - uid: 330 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 323 + - uid: 331 components: - type: Transform rot: 3.141592653589793 rad @@ -2818,58 +2996,58 @@ entities: parent: 1 - proto: WallSolidDiagonalNortheastCurved entities: - - uid: 324 + - uid: 332 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 325 + - uid: 333 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 326 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 1 - - uid: 327 + - uid: 335 components: - type: Transform pos: -8.5,1.5 parent: 1 - - uid: 328 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - - uid: 329 + - uid: 337 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 1 - - uid: 330 + - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 331 + - uid: 339 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 332 + - uid: 340 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 333 + - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad @@ -2877,12 +3055,12 @@ entities: parent: 1 - proto: WallSolidDiagonalNortheastHollow entities: - - uid: 334 + - uid: 342 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 335 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad @@ -2890,7 +3068,7 @@ entities: parent: 1 - proto: WallSolidDiagonalSoutheastHollow entities: - - uid: 336 + - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad @@ -2898,7 +3076,7 @@ entities: parent: 1 - proto: WallSolidDiagonalSouthwestHollow entities: - - uid: 337 + - uid: 345 components: - type: Transform rot: 1.5707963267948966 rad @@ -2906,7 +3084,7 @@ entities: parent: 1 - proto: WarpPointShip entities: - - uid: 218 + - uid: 346 components: - type: Transform pos: 0.5,0.5 diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml index ea5c51a44ff..866c8bd5cf3 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 10:43:52 + entityCount: 1033 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 2: FloorDark @@ -38,36 +49,36 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAADwAAAAAACgAAAAAADwAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAACgAAAAAADwAAAAAAggAAAAAACgAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAADwAAAAAACgAAAAAADwAAAAAAggAAAAAACgAAAAAACgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAACgAAAAAADwAAAAAACgAAAAAAggAAAAAADwAAAAAAggAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACwAAAAAADwAAAAAACgAAAAAACgAAAAAADwAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAKAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAACgAAAAAAAA8AAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAPAAAAAAAACgAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAACwAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADQAAAAAAggAAAAAADAAAAAAADgAAAAAADAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAAADQAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAAADQAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAAADQAAAAAADwAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAADQAAAAAADQAAAAAAggAAAAAADQAAAAAADQAAAAAADQAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAAADQAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAEgAAAAAAEQAAAAAADwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEwAAAAAAEwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAANAAAAAAAAggAAAAAAAAwAAAAAAAAOAAAAAAAADAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAADwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA8AAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAAggAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAEgAAAAAAABEAAAAAAAAPAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAABgAAAAAAggAAAAAADwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAAggAAAAAABgAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAADwAAAAAADwAAAAAAEgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAAEQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAEQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADwAAAAAAEQAAAAAAggAAAAAAgQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAEwAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAABMAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAASAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: EwAAAAAAEwAAAAAAEwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAEQAAAAAADwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAEQAAAAAADwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAEQAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAADwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: EwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAABIAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAEQAAAAAAAA8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAABEAAAAAAAAPAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAggAAAAAAggAAAAAADwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -94,2752 +105,3089 @@ entities: id: BrickTileSteelCornerNe decals: 82: 1,7 - 162: 4,7 - 233: -3,7 - 234: -3,7 - 235: -3,3 - 236: -3,3 + 159: 4,7 + 230: -3,7 + 231: -3,7 + 232: -3,3 + 233: -3,3 - node: angle: 4.71238898038469 rad color: '#D381C996' id: BrickTileSteelCornerNe decals: - 567: 1,12 - 792: 8,5 + 519: 1,12 + 717: 8,5 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: 81: -1,7 - 155: 7,3 - 158: 6,6 - 161: 3,7 - 221: -5,3 - 222: -5,3 - 223: -5,6 - 224: -5,6 - 231: -4,7 - 232: -4,7 + 152: 7,3 + 155: 6,6 + 158: 3,7 + 218: -5,3 + 219: -5,3 + 220: -5,6 + 221: -5,6 + 228: -4,7 + 229: -4,7 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 575: -1,9 + 526: -1,9 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 574: 1,9 + 525: 1,9 - node: angle: 4.71238898038469 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 573: 1,10 - 793: 8,6 + 524: 1,10 + 718: 8,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 572: -1,10 + 523: -1,10 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: 83: 1,3 - 163: 4,5 - 237: -3,1 - 238: -3,1 - 239: -3,5 - 240: -3,5 + 160: 4,5 + 234: -3,1 + 235: -3,1 + 236: -3,5 + 237: -3,5 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: BrickTileSteelCornerSe decals: - 783: -7,6 - 784: -7,6 + 708: -7,6 + 709: -7,6 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelCornerSe decals: - 785: -8,6 - 786: -8,6 + 710: -8,6 + 711: -8,6 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: 84: -1,3 - 159: 6,5 - 160: 3,5 - 225: -8,3 - 226: -8,3 - 227: -5,1 - 228: -5,1 - 229: -5,5 - 230: -5,5 + 156: 6,5 + 157: 3,5 + 222: -8,3 + 223: -8,3 + 224: -5,1 + 225: -5,1 + 226: -5,5 + 227: -5,5 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerSw decals: - 569: -1,12 + 520: -1,12 - node: color: '#D381C996' id: BrickTileSteelEndE decals: - 154: 8,3 + 151: 8,3 - node: color: '#D381C996' id: BrickTileSteelEndS decals: - 157: 7,2 - 241: -7,2 - 242: -7,2 + 154: 7,2 + 238: -7,2 + 239: -7,2 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 255: -4,6 - 256: -4,6 + 252: -4,6 + 253: -4,6 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 156: 7,3 + 153: 7,3 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 243: -7,3 - 244: -7,3 + 240: -7,3 + 241: -7,3 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 88: 1,6 - 89: 1,4 - 165: 4,6 - 175: 4,3 - 176: 4,2 - 177: 4,1 - 245: -7,3 - 246: -7,3 - 247: -7,4 - 248: -7,4 - 249: -3,6 - 250: -3,6 - 251: -3,2 - 252: -3,2 - 266: 1,5 + 86: 1,4 + 162: 4,6 + 172: 4,3 + 173: 4,2 + 174: 4,1 + 242: -7,3 + 243: -7,3 + 244: -7,4 + 245: -7,4 + 246: -3,6 + 247: -3,6 + 248: -3,2 + 249: -3,2 + 263: 1,5 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineE decals: - 787: -8,5 - 788: -8,5 + 712: -8,5 + 713: -8,5 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelLineE decals: - 781: -7,5 - 782: -7,5 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 90: 0,7 - 263: -4,3 - 264: -4,3 - 576: 0,10 + 706: -7,5 + 707: -7,5 - node: - angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineN decals: - 577: 0,9 + 87: 0,7 + 260: -4,3 + 261: -4,3 + 2711: 0,10 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 85: 0,3 - 253: -4,5 - 254: -4,5 - 259: -4,1 - 260: -4,1 + 250: -4,5 + 251: -4,5 + 256: -4,1 + 257: -4,1 + 2712: 0,12 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineS decals: - 790: 7,6 + 715: 7,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelLineS decals: - 568: 0,12 - 791: 7,5 + 716: 7,5 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 86: -1,4 - 87: -1,6 - 164: 3,6 - 172: 4,3 - 173: 4,2 - 174: 4,1 - 257: -8,4 - 258: -8,4 - 261: -5,2 - 262: -5,2 - 265: -1,5 - 563: -1,13 - 564: -1,14 + 85: -1,6 + 161: 3,6 + 169: 4,3 + 170: 4,2 + 171: 4,1 + 254: -8,4 + 255: -8,4 + 258: -5,2 + 259: -5,2 + 262: -1,5 + 515: -1,13 + 516: -1,14 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineW decals: - 565: 1,14 - 566: 1,13 + 517: 1,14 + 518: 1,13 - node: color: '#D381C996' id: Caution decals: - 789: -8,6 - 794: 8,6 + 714: -8,6 + 719: 8,6 - node: color: '#D381C996' id: Delivery decals: - 795: -4,26 - 796: -4,27 + 720: -4,26 + 721: -4,27 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: Delivery decals: - 585: 2,24 - 586: -2,24 + 534: 2,24 + 535: -2,24 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: Dirt decals: - 1147: 0,21 - 1148: -1,22 - 1149: -1,21 - 1150: -1,20 - 1151: 1,20 - 1152: 1,22 + 997: 0,21 + 998: -1,22 + 999: -1,21 + 1000: -1,20 + 1001: 1,20 + 1002: 1,22 - node: angle: 4.71238898038469 rad color: '#D381C996' id: Dirt decals: - 757: -4,13 - 758: -2,12 + 684: -4,13 + 685: -2,12 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 2687: -5,16 + 2688: -6,16 + 2705: -1,3 + 2706: 0,7 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2707: 0,6 + 2708: -1,6 + 2709: 1,5 + 2710: 1,3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 767: 3,14 - 768: 4,14 - 769: 5,14 - 770: -5,13 - 771: -4,13 - 772: -3,14 - 773: -4,14 - 774: -5,14 - 775: -5,18 - 776: -4,18 - 777: -4,18 - 778: 3,18 - 779: 4,18 - 780: 5,18 + 693: 3,14 + 694: 4,14 + 695: 5,14 + 696: -5,13 + 697: -4,13 + 698: -3,14 + 699: -4,14 + 700: -5,14 + 701: -4,18 + 702: -4,18 + 703: 3,18 + 704: 4,18 + 705: 5,18 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 1154: 0,22 - 1155: 0,21 - 1156: -1,22 - 1157: -1,21 - 1158: 1,22 - 1159: 1,21 - 1160: -1,20 - 1161: 1,20 + 1004: 0,22 + 1005: 0,21 + 1006: -1,22 + 1007: -1,21 + 1008: 1,22 + 1009: 1,21 + 1010: -1,20 + 1011: 1,20 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2689: -5,14 + 2690: 5,14 + 2691: 5,14 + 2692: 5,15 + 2693: 5,16 + 2694: 5,17 + 2695: 4,17 + 2696: 5,18 + 2697: 4,19 + 2698: -4,19 + 2699: -4,20 + 2700: -5,19 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 993: -5,19 + 874: -5,19 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2701: -5,16 + 2702: -4,17 + 2703: -1,13 + 2704: 1,13 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 2040: -2,19 - 2102: -2,19 - 2260: -2,19 - 2456: -2,19 - 2641: -2,19 - 2826: -2,19 + 1738: -2,19 + 1785: -2,19 + 1916: -2,19 + 2047: -2,19 + 2178: -2,19 + 2309: -2,19 + 2440: -2,19 + 2571: -2,19 + 2767: -2,19 + 2898: -2,19 + 3029: -2,19 + 3160: -2,19 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: + 1726: -2,15 + 1766: -2,15 + 1897: -2,15 2028: -2,15 - 2078: -2,15 - 2241: -2,15 - 2426: -2,15 - 2611: -2,15 - 2796: -2,15 + 2159: -2,15 + 2290: -2,15 + 2421: -2,15 + 2552: -2,15 + 2748: -2,15 + 2879: -2,15 + 3010: -2,15 + 3141: -2,15 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 2035: 2,15 - 2053: 2,15 - 2216: 2,15 - 2401: 2,15 - 2586: 2,15 - 2771: 2,15 + 1733: 2,15 + 1751: 2,15 + 1882: 2,15 + 2013: 2,15 + 2144: 2,15 + 2275: 2,15 + 2406: 2,15 + 2537: 2,15 + 2733: 2,15 + 2864: 2,15 + 2995: 2,15 + 3126: 2,15 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 2044: 2,19 - 2171: 2,19 - 2358: 2,19 - 2554: 2,19 - 2739: 2,19 - 2924: 2,19 + 1742: 2,19 + 1848: 2,19 + 2008: 2,19 + 2139: 2,19 + 2270: 2,19 + 2401: 2,19 + 2532: 2,19 + 2663: 2,19 + 2859: 2,19 + 2990: 2,19 + 3121: 2,19 + 3252: 2,19 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 2025: -2,17 + 1723: -2,17 + 1725: -2,15 + 1727: -2,16 + 1737: -2,19 + 1739: -2,18 + 1765: -2,15 + 1780: -2,16 + 1781: -2,17 + 1782: -2,18 + 1784: -2,19 + 1896: -2,15 + 1911: -2,16 + 1912: -2,17 + 1913: -2,18 + 1915: -2,19 2027: -2,15 - 2029: -2,16 - 2039: -2,19 - 2041: -2,18 - 2077: -2,15 - 2097: -2,16 - 2098: -2,17 - 2099: -2,18 - 2101: -2,19 - 2240: -2,15 - 2255: -2,16 - 2256: -2,17 - 2257: -2,18 - 2259: -2,19 - 2425: -2,15 - 2451: -2,16 - 2452: -2,17 - 2453: -2,18 - 2455: -2,19 - 2610: -2,15 - 2636: -2,16 - 2637: -2,17 - 2638: -2,18 - 2640: -2,19 - 2795: -2,15 - 2821: -2,16 - 2822: -2,17 - 2823: -2,18 - 2825: -2,19 + 2042: -2,16 + 2043: -2,17 + 2044: -2,18 + 2046: -2,19 + 2158: -2,15 + 2173: -2,16 + 2174: -2,17 + 2175: -2,18 + 2177: -2,19 + 2289: -2,15 + 2304: -2,16 + 2305: -2,17 + 2306: -2,18 + 2308: -2,19 + 2420: -2,15 + 2435: -2,16 + 2436: -2,17 + 2437: -2,18 + 2439: -2,19 + 2551: -2,15 + 2566: -2,16 + 2567: -2,17 + 2568: -2,18 + 2570: -2,19 + 2747: -2,15 + 2762: -2,16 + 2763: -2,17 + 2764: -2,18 + 2766: -2,19 + 2878: -2,15 + 2893: -2,16 + 2894: -2,17 + 2895: -2,18 + 2897: -2,19 + 3009: -2,15 + 3024: -2,16 + 3025: -2,17 + 3026: -2,18 + 3028: -2,19 + 3140: -2,15 + 3155: -2,16 + 3156: -2,17 + 3157: -2,18 + 3159: -2,19 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: + 1724: -2,15 + 1728: -1,15 + 1729: 0,15 + 1731: 2,15 + 1735: 1,15 + 1747: 0,15 + 1748: 1,15 + 1749: 2,15 + 1764: -2,15 + 1767: -1,15 + 1878: 0,15 + 1879: 1,15 + 1880: 2,15 + 1895: -2,15 + 1898: -1,15 + 2009: 0,15 + 2010: 1,15 + 2011: 2,15 2026: -2,15 - 2030: -1,15 - 2031: 0,15 - 2033: 2,15 - 2037: 1,15 - 2049: 0,15 - 2050: 1,15 - 2051: 2,15 - 2076: -2,15 - 2079: -1,15 - 2212: 0,15 - 2213: 1,15 - 2214: 2,15 - 2239: -2,15 - 2242: -1,15 - 2397: 0,15 - 2398: 1,15 - 2399: 2,15 - 2424: -2,15 - 2427: -1,15 - 2582: 0,15 - 2583: 1,15 - 2584: 2,15 - 2609: -2,15 - 2612: -1,15 - 2767: 0,15 - 2768: 1,15 - 2769: 2,15 - 2794: -2,15 - 2797: -1,15 + 2029: -1,15 + 2140: 0,15 + 2141: 1,15 + 2142: 2,15 + 2157: -2,15 + 2160: -1,15 + 2271: 0,15 + 2272: 1,15 + 2273: 2,15 + 2288: -2,15 + 2291: -1,15 + 2402: 0,15 + 2403: 1,15 + 2404: 2,15 + 2419: -2,15 + 2422: -1,15 + 2533: 0,15 + 2534: 1,15 + 2535: 2,15 + 2550: -2,15 + 2553: -1,15 + 2729: 0,15 + 2730: 1,15 + 2731: 2,15 + 2746: -2,15 + 2749: -1,15 + 2860: 0,15 + 2861: 1,15 + 2862: 2,15 + 2877: -2,15 + 2880: -1,15 + 2991: 0,15 + 2992: 1,15 + 2993: 2,15 + 3008: -2,15 + 3011: -1,15 + 3122: 0,15 + 3123: 1,15 + 3124: 2,15 + 3139: -2,15 + 3142: -1,15 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 2032: 2,17 - 2034: 2,15 - 2036: 2,16 - 2042: 2,19 - 2045: 2,18 - 2052: 2,15 - 2166: 2,16 - 2167: 2,17 - 2168: 2,18 - 2169: 2,19 - 2215: 2,15 - 2353: 2,16 - 2354: 2,17 - 2355: 2,18 - 2356: 2,19 - 2400: 2,15 - 2549: 2,16 - 2550: 2,17 - 2551: 2,18 - 2552: 2,19 - 2585: 2,15 - 2734: 2,16 - 2735: 2,17 - 2736: 2,18 - 2737: 2,19 - 2770: 2,15 - 2919: 2,16 - 2920: 2,17 - 2921: 2,18 - 2922: 2,19 + 1730: 2,17 + 1732: 2,15 + 1734: 2,16 + 1740: 2,19 + 1743: 2,18 + 1750: 2,15 + 1843: 2,16 + 1844: 2,17 + 1845: 2,18 + 1846: 2,19 + 1881: 2,15 + 2003: 2,16 + 2004: 2,17 + 2005: 2,18 + 2006: 2,19 + 2012: 2,15 + 2134: 2,16 + 2135: 2,17 + 2136: 2,18 + 2137: 2,19 + 2143: 2,15 + 2265: 2,16 + 2266: 2,17 + 2267: 2,18 + 2268: 2,19 + 2274: 2,15 + 2396: 2,16 + 2397: 2,17 + 2398: 2,18 + 2399: 2,19 + 2405: 2,15 + 2527: 2,16 + 2528: 2,17 + 2529: 2,18 + 2530: 2,19 + 2536: 2,15 + 2658: 2,16 + 2659: 2,17 + 2660: 2,18 + 2661: 2,19 + 2732: 2,15 + 2854: 2,16 + 2855: 2,17 + 2856: 2,18 + 2857: 2,19 + 2863: 2,15 + 2985: 2,16 + 2986: 2,17 + 2987: 2,18 + 2988: 2,19 + 2994: 2,15 + 3116: 2,16 + 3117: 2,17 + 3118: 2,18 + 3119: 2,19 + 3125: 2,15 + 3247: 2,16 + 3248: 2,17 + 3249: 2,18 + 3250: 2,19 - node: id: FloorTechMaintDirectionalEdge decals: - 2038: -2,19 - 2043: 2,19 - 2046: 0,19 - 2047: -1,19 - 2048: 1,19 - 2100: -2,19 - 2103: -1,19 - 2124: 0,19 - 2145: 1,19 - 2170: 2,19 - 2258: -2,19 - 2261: -1,19 - 2290: 0,19 - 2324: 1,19 - 2357: 2,19 - 2454: -2,19 - 2457: -1,19 - 2486: 0,19 - 2520: 1,19 - 2553: 2,19 - 2639: -2,19 - 2642: -1,19 - 2671: 0,19 - 2705: 1,19 - 2738: 2,19 - 2824: -2,19 - 2827: -1,19 - 2856: 0,19 - 2890: 1,19 - 2923: 2,19 + 1736: -2,19 + 1741: 2,19 + 1744: 0,19 + 1745: -1,19 + 1746: 1,19 + 1783: -2,19 + 1786: -1,19 + 1805: 0,19 + 1824: 1,19 + 1847: 2,19 + 1914: -2,19 + 1917: -1,19 + 1944: 0,19 + 1976: 1,19 + 2007: 2,19 + 2045: -2,19 + 2048: -1,19 + 2075: 0,19 + 2107: 1,19 + 2138: 2,19 + 2176: -2,19 + 2179: -1,19 + 2206: 0,19 + 2238: 1,19 + 2269: 2,19 + 2307: -2,19 + 2310: -1,19 + 2337: 0,19 + 2369: 1,19 + 2400: 2,19 + 2438: -2,19 + 2441: -1,19 + 2468: 0,19 + 2500: 1,19 + 2531: 2,19 + 2569: -2,19 + 2572: -1,19 + 2599: 0,19 + 2631: 1,19 + 2662: 2,19 + 2765: -2,19 + 2768: -1,19 + 2795: 0,19 + 2827: 1,19 + 2858: 2,19 + 2896: -2,19 + 2899: -1,19 + 2926: 0,19 + 2958: 1,19 + 2989: 2,19 + 3027: -2,19 + 3030: -1,19 + 3057: 0,19 + 3089: 1,19 + 3120: 2,19 + 3158: -2,19 + 3161: -1,19 + 3188: 0,19 + 3220: 1,19 + 3251: 2,19 - node: zIndex: 1 id: LatticeCornerNE decals: - 335: -9,2 - 338: -8,0 - 344: -5,-1 - 367: 0,24 - 379: -2,-2 - 395: -7,13 - 400: -6,9 - 405: -6,10 - 410: -1,26 - 421: 1,26 - 437: 0,25 - 462: -9,2 - 465: -8,0 - 473: -6,9 - 478: -6,10 - 481: -5,-1 - 492: -1,26 - 503: 0,24 - 511: 0,25 - 524: 1,26 - 598: -7,13 - 613: -2,-2 - 628: -9,2 - 631: -8,0 - 637: -5,-1 - 640: -2,-2 - 701: 1,26 - 709: -1,26 - 717: 0,25 - 725: 0,24 - 749: -6,9 - 812: -6,9 - 815: -5,-1 - 818: -2,-2 - 829: -1,26 - 844: 0,24 - 852: 0,25 - 869: 1,26 - 888: -8,0 - 906: -8,0 - 911: -6,9 - 914: -5,-1 - 917: -2,-2 - 928: -1,26 - 943: 0,24 - 951: 0,25 - 968: 1,26 - 1039: -8,0 - 1044: -6,9 - 1047: -5,-1 - 1050: -2,-2 - 1178: 1,26 - 1186: -1,26 - 1199: -1,24 - 1207: -1,25 - 1215: 1,24 - 1223: 1,25 - 1231: 0,24 - 1239: 0,25 - 1259: -8,0 - 1264: -6,9 - 1267: -5,-1 - 1270: -2,-2 - 1281: -1,24 - 1289: -1,25 - 1297: -1,26 - 1312: 0,24 - 1320: 0,25 - 1337: 1,24 - 1345: 1,25 - 1353: 1,26 - 1386: -8,0 - 1391: -6,9 - 1394: -5,-1 - 1397: -2,-2 - 1408: -1,24 - 1416: -1,25 - 1424: -1,26 - 1439: 0,24 - 1447: 0,25 - 1464: 1,24 - 1472: 1,25 - 1480: 1,26 - 1513: -8,0 - 1518: -6,9 - 1521: -5,-1 - 1524: -2,-2 - 1535: -1,24 - 1543: -1,25 - 1551: -1,26 - 1566: 0,24 - 1574: 0,25 - 1591: 1,24 - 1599: 1,25 - 1607: 1,26 - 1640: -8,0 - 1645: -6,9 - 1648: -5,-1 - 1651: -2,-2 - 1662: -1,24 - 1670: -1,25 - 1678: -1,26 - 1693: 0,24 - 1701: 0,25 - 1718: 1,24 - 1726: 1,25 - 1734: 1,26 - 1767: -8,0 - 1772: -6,9 - 1775: -5,-1 - 1778: -2,-2 - 1789: -1,24 - 1797: -1,25 - 1805: -1,26 - 1820: 0,24 - 1828: 0,25 - 1845: 1,24 - 1853: 1,25 + 328: -9,2 + 331: -8,0 + 337: -5,-1 + 354: 0,24 + 366: -2,-2 + 377: -7,13 + 382: -6,10 + 387: -1,26 + 398: 1,26 + 414: 0,25 + 434: -9,2 + 437: -8,0 + 445: -6,10 + 448: -5,-1 + 459: -1,26 + 470: 0,24 + 478: 0,25 + 491: 1,26 + 547: -7,13 + 562: -2,-2 + 577: -9,2 + 580: -8,0 + 586: -5,-1 + 589: -2,-2 + 638: 1,26 + 646: -1,26 + 654: 0,25 + 662: 0,24 + 730: -5,-1 + 733: -2,-2 + 744: -1,26 + 757: 0,24 + 765: 0,25 + 780: 1,26 + 791: -8,0 + 804: -8,0 + 807: -5,-1 + 810: -2,-2 + 821: -1,26 + 834: 0,24 + 842: 0,25 + 857: 1,26 + 912: -8,0 + 915: -5,-1 + 918: -2,-2 + 1028: 1,26 + 1036: -1,26 + 1049: -1,24 + 1057: -1,25 + 1065: 1,24 + 1073: 1,25 + 1081: 0,24 + 1089: 0,25 + 1104: -8,0 + 1107: -5,-1 + 1110: -2,-2 + 1121: -1,24 + 1129: -1,25 + 1137: -1,26 + 1150: 0,24 + 1158: 0,25 + 1173: 1,24 + 1181: 1,25 + 1189: 1,26 + 1209: -8,0 + 1212: -5,-1 + 1215: -2,-2 + 1226: -1,24 + 1234: -1,25 + 1242: -1,26 + 1255: 0,24 + 1263: 0,25 + 1278: 1,24 + 1286: 1,25 + 1294: 1,26 + 1314: -8,0 + 1317: -5,-1 + 1320: -2,-2 + 1331: -1,24 + 1339: -1,25 + 1347: -1,26 + 1360: 0,24 + 1368: 0,25 + 1383: 1,24 + 1391: 1,25 + 1399: 1,26 + 1419: -8,0 + 1422: -5,-1 + 1425: -2,-2 + 1436: -1,24 + 1444: -1,25 + 1452: -1,26 + 1465: 0,24 + 1473: 0,25 + 1488: 1,24 + 1496: 1,25 + 1504: 1,26 + 1524: -8,0 + 1527: -5,-1 + 1530: -2,-2 + 1541: -1,24 + 1549: -1,25 + 1557: -1,26 + 1570: 0,24 + 1578: 0,25 + 1593: 1,24 + 1601: 1,25 + 1609: 1,26 + 1629: -8,0 + 1632: -5,-1 + 1635: -2,-2 + 1646: -1,24 + 1654: -1,25 + 1662: -1,26 + 1675: 0,24 + 1683: 0,25 + 1698: 1,24 + 1706: 1,25 + 1714: 1,26 + 1763: -8,0 + 1770: -5,-1 + 1773: -2,-2 + 1791: -1,24 + 1799: -1,25 + 1810: 0,24 + 1818: 0,25 + 1829: 1,24 + 1837: 1,25 + 1853: -1,26 1861: 1,26 - 1876: -5,31 - 1904: -8,0 - 1909: -6,9 - 1912: -5,-1 - 1915: -2,-2 - 1926: -5,31 - 1931: -1,24 - 1939: -1,25 - 1947: -1,26 - 1962: 0,24 - 1970: 0,25 - 1987: 1,24 - 1995: 1,25 - 2003: 1,26 - 2070: -8,0 - 2075: -6,9 - 2082: -5,-1 - 2085: -2,-2 - 2096: -5,31 - 2108: -1,24 - 2116: -1,25 - 2129: 0,24 - 2137: 0,25 - 2150: 1,24 - 2158: 1,25 - 2187: -1,26 - 2195: 1,26 - 2208: 0,26 - 2233: -8,0 - 2238: -6,9 - 2245: -5,-1 - 2248: -2,-2 - 2266: -1,24 - 2274: -1,25 - 2282: -1,26 - 2295: 0,24 - 2303: 0,25 - 2311: 0,26 - 2329: 1,24 - 2337: 1,25 - 2345: 1,26 - 2372: -5,31 - 2380: -5,32 - 2388: 5,31 + 1874: 0,26 + 1894: -8,0 + 1901: -5,-1 + 1904: -2,-2 + 1922: -1,24 + 1930: -1,25 + 1938: -1,26 + 1949: 0,24 + 1957: 0,25 + 1965: 0,26 + 1981: 1,24 + 1989: 1,25 + 1997: 1,26 + 2025: -8,0 + 2032: -5,-1 + 2035: -2,-2 + 2053: -1,24 + 2061: -1,25 + 2069: -1,26 + 2080: 0,24 + 2088: 0,25 + 2096: 0,26 + 2112: 1,24 + 2120: 1,25 + 2128: 1,26 + 2156: -8,0 + 2163: -5,-1 + 2166: -2,-2 + 2184: -1,24 + 2192: -1,25 + 2200: -1,26 + 2211: 0,24 + 2219: 0,25 + 2227: 0,26 + 2243: 1,24 + 2251: 1,25 + 2259: 1,26 + 2287: -8,0 + 2294: -5,-1 + 2297: -2,-2 + 2315: -1,24 + 2323: -1,25 + 2331: -1,26 + 2342: 0,24 + 2350: 0,25 + 2358: 0,26 + 2374: 1,24 + 2382: 1,25 + 2390: 1,26 2418: -8,0 - 2423: -6,9 - 2430: -5,-1 - 2433: -2,-2 - 2447: -5,31 - 2462: -1,24 - 2470: -1,25 - 2478: -1,26 - 2491: 0,24 - 2499: 0,25 - 2507: 0,26 - 2525: 1,24 - 2533: 1,25 - 2541: 1,26 - 2559: 5,31 - 2578: -5,32 - 2603: -8,0 - 2608: -6,9 - 2615: -5,-1 - 2618: -2,-2 - 2632: -5,31 - 2647: -1,24 - 2655: -1,25 - 2663: -1,26 - 2676: 0,24 - 2684: 0,25 - 2692: 0,26 - 2710: 1,24 - 2718: 1,25 - 2726: 1,26 - 2744: 5,31 - 2763: -5,32 - 2788: -8,0 - 2793: -6,9 - 2800: -5,-1 - 2803: -2,-2 - 2817: -5,31 - 2832: -1,24 - 2840: -1,25 - 2848: -1,26 - 2861: 0,24 - 2869: 0,25 - 2877: 0,26 - 2895: 1,24 - 2903: 1,25 - 2911: 1,26 - 2929: 5,31 - 2948: -5,32 + 2425: -5,-1 + 2428: -2,-2 + 2446: -1,24 + 2454: -1,25 + 2462: -1,26 + 2473: 0,24 + 2481: 0,25 + 2489: 0,26 + 2505: 1,24 + 2513: 1,25 + 2521: 1,26 + 2549: -8,0 + 2556: -5,-1 + 2559: -2,-2 + 2577: -1,24 + 2585: -1,25 + 2593: -1,26 + 2604: 0,24 + 2612: 0,25 + 2620: 0,26 + 2636: 1,24 + 2644: 1,25 + 2652: 1,26 + 2745: -8,0 + 2752: -5,-1 + 2755: -2,-2 + 2773: -1,24 + 2781: -1,25 + 2789: -1,26 + 2800: 0,24 + 2808: 0,25 + 2816: 0,26 + 2832: 1,24 + 2840: 1,25 + 2848: 1,26 + 2876: -8,0 + 2883: -5,-1 + 2886: -2,-2 + 2904: -1,24 + 2912: -1,25 + 2920: -1,26 + 2931: 0,24 + 2939: 0,25 + 2947: 0,26 + 2963: 1,24 + 2971: 1,25 + 2979: 1,26 + 3007: -8,0 + 3014: -5,-1 + 3017: -2,-2 + 3035: -1,24 + 3043: -1,25 + 3051: -1,26 + 3062: 0,24 + 3070: 0,25 + 3078: 0,26 + 3094: 1,24 + 3102: 1,25 + 3110: 1,26 + 3138: -8,0 + 3145: -5,-1 + 3148: -2,-2 + 3166: -1,24 + 3174: -1,25 + 3182: -1,26 + 3193: 0,24 + 3201: 0,25 + 3209: 0,26 + 3225: 1,24 + 3233: 1,25 + 3241: 1,26 - node: zIndex: 1 id: LatticeCornerNW decals: - 326: 8,0 - 332: 9,2 - 347: 5,-1 - 362: 7,13 - 370: 0,24 - 382: 2,-2 - 387: 6,9 - 392: 6,10 - 413: -1,26 - 424: 1,26 - 440: 0,25 - 445: 6,9 - 450: 6,10 - 453: 8,0 - 459: 9,2 - 484: 5,-1 - 495: -1,26 - 506: 0,24 - 514: 0,25 - 527: 1,26 - 595: 7,13 - 616: 2,-2 - 619: 8,0 - 625: 9,2 - 643: 2,-2 - 646: 5,-1 - 704: 1,26 - 712: -1,26 - 720: 0,25 - 728: 0,24 - 754: 6,9 - 801: 6,9 - 821: 2,-2 - 824: 5,-1 - 832: -1,26 - 847: 0,24 - 855: 0,25 - 872: 1,26 - 891: 8,0 - 900: 6,9 + 319: 8,0 + 325: 9,2 + 340: 5,-1 + 349: 7,13 + 357: 0,24 + 369: 2,-2 + 374: 6,10 + 390: -1,26 + 401: 1,26 + 417: 0,25 + 422: 6,10 + 425: 8,0 + 431: 9,2 + 451: 5,-1 + 462: -1,26 + 473: 0,24 + 481: 0,25 + 494: 1,26 + 544: 7,13 + 565: 2,-2 + 568: 8,0 + 574: 9,2 + 592: 2,-2 + 595: 5,-1 + 641: 1,26 + 649: -1,26 + 657: 0,25 + 665: 0,24 + 736: 2,-2 + 739: 5,-1 + 747: -1,26 + 760: 0,24 + 768: 0,25 + 783: 1,26 + 794: 8,0 + 801: 8,0 + 813: 2,-2 + 816: 5,-1 + 824: -1,26 + 837: 0,24 + 845: 0,25 + 860: 1,26 903: 8,0 - 920: 2,-2 - 923: 5,-1 - 931: -1,26 - 946: 0,24 - 954: 0,25 - 971: 1,26 - 1027: 6,9 - 1030: 8,0 - 1053: 2,-2 - 1056: 5,-1 - 1181: 1,26 - 1189: -1,26 - 1202: -1,24 - 1210: -1,25 - 1218: 1,24 - 1226: 1,25 - 1234: 0,24 - 1242: 0,25 - 1247: 6,9 - 1250: 8,0 - 1273: 2,-2 - 1276: 5,-1 - 1284: -1,24 - 1292: -1,25 - 1300: -1,26 - 1315: 0,24 - 1323: 0,25 - 1340: 1,24 - 1348: 1,25 - 1356: 1,26 - 1374: 6,9 - 1377: 8,0 - 1400: 2,-2 - 1403: 5,-1 - 1411: -1,24 - 1419: -1,25 - 1427: -1,26 - 1442: 0,24 - 1450: 0,25 - 1467: 1,24 - 1475: 1,25 - 1483: 1,26 - 1501: 6,9 - 1504: 8,0 - 1527: 2,-2 - 1530: 5,-1 - 1538: -1,24 - 1546: -1,25 - 1554: -1,26 - 1569: 0,24 - 1577: 0,25 - 1594: 1,24 - 1602: 1,25 - 1610: 1,26 - 1628: 6,9 - 1631: 8,0 - 1654: 2,-2 - 1657: 5,-1 - 1665: -1,24 - 1673: -1,25 - 1681: -1,26 - 1696: 0,24 - 1704: 0,25 - 1721: 1,24 - 1729: 1,25 - 1737: 1,26 - 1755: 6,9 - 1758: 8,0 - 1781: 2,-2 - 1784: 5,-1 - 1792: -1,24 - 1800: -1,25 - 1808: -1,26 - 1823: 0,24 - 1831: 0,25 - 1848: 1,24 - 1856: 1,25 + 921: 2,-2 + 924: 5,-1 + 1031: 1,26 + 1039: -1,26 + 1052: -1,24 + 1060: -1,25 + 1068: 1,24 + 1076: 1,25 + 1084: 0,24 + 1092: 0,25 + 1095: 8,0 + 1113: 2,-2 + 1116: 5,-1 + 1124: -1,24 + 1132: -1,25 + 1140: -1,26 + 1153: 0,24 + 1161: 0,25 + 1176: 1,24 + 1184: 1,25 + 1192: 1,26 + 1200: 8,0 + 1218: 2,-2 + 1221: 5,-1 + 1229: -1,24 + 1237: -1,25 + 1245: -1,26 + 1258: 0,24 + 1266: 0,25 + 1281: 1,24 + 1289: 1,25 + 1297: 1,26 + 1305: 8,0 + 1323: 2,-2 + 1326: 5,-1 + 1334: -1,24 + 1342: -1,25 + 1350: -1,26 + 1363: 0,24 + 1371: 0,25 + 1386: 1,24 + 1394: 1,25 + 1402: 1,26 + 1410: 8,0 + 1428: 2,-2 + 1431: 5,-1 + 1439: -1,24 + 1447: -1,25 + 1455: -1,26 + 1468: 0,24 + 1476: 0,25 + 1491: 1,24 + 1499: 1,25 + 1507: 1,26 + 1515: 8,0 + 1533: 2,-2 + 1536: 5,-1 + 1544: -1,24 + 1552: -1,25 + 1560: -1,26 + 1573: 0,24 + 1581: 0,25 + 1596: 1,24 + 1604: 1,25 + 1612: 1,26 + 1620: 8,0 + 1638: 2,-2 + 1641: 5,-1 + 1649: -1,24 + 1657: -1,25 + 1665: -1,26 + 1678: 0,24 + 1686: 0,25 + 1701: 1,24 + 1709: 1,25 + 1717: 1,26 + 1754: 8,0 + 1776: 2,-2 + 1779: 5,-1 + 1794: -1,24 + 1802: -1,25 + 1813: 0,24 + 1821: 0,25 + 1832: 1,24 + 1840: 1,25 + 1856: -1,26 1864: 1,26 - 1884: 5,31 - 1892: 6,9 - 1895: 8,0 - 1918: 2,-2 - 1921: 5,-1 - 1934: -1,24 - 1942: -1,25 - 1950: -1,26 - 1965: 0,24 - 1973: 0,25 - 1990: 1,24 - 1998: 1,25 - 2006: 1,26 - 2018: 5,31 - 2058: 6,9 - 2061: 8,0 - 2088: 2,-2 - 2091: 5,-1 - 2111: -1,24 - 2119: -1,25 - 2132: 0,24 - 2140: 0,25 - 2153: 1,24 - 2161: 1,25 - 2176: 5,31 - 2190: -1,26 - 2198: 1,26 - 2211: 0,26 - 2221: 6,9 - 2224: 8,0 - 2251: 2,-2 - 2254: 5,-1 - 2269: -1,24 - 2277: -1,25 - 2285: -1,26 - 2298: 0,24 - 2306: 0,25 - 2314: 0,26 - 2332: 1,24 - 2340: 1,25 - 2348: 1,26 - 2375: -5,31 - 2391: 5,31 - 2396: 5,32 - 2406: 6,9 + 1877: 0,26 + 1885: 8,0 + 1907: 2,-2 + 1910: 5,-1 + 1925: -1,24 + 1933: -1,25 + 1941: -1,26 + 1952: 0,24 + 1960: 0,25 + 1968: 0,26 + 1984: 1,24 + 1992: 1,25 + 2000: 1,26 + 2016: 8,0 + 2038: 2,-2 + 2041: 5,-1 + 2056: -1,24 + 2064: -1,25 + 2072: -1,26 + 2083: 0,24 + 2091: 0,25 + 2099: 0,26 + 2115: 1,24 + 2123: 1,25 + 2131: 1,26 + 2147: 8,0 + 2169: 2,-2 + 2172: 5,-1 + 2187: -1,24 + 2195: -1,25 + 2203: -1,26 + 2214: 0,24 + 2222: 0,25 + 2230: 0,26 + 2246: 1,24 + 2254: 1,25 + 2262: 1,26 + 2278: 8,0 + 2300: 2,-2 + 2303: 5,-1 + 2318: -1,24 + 2326: -1,25 + 2334: -1,26 + 2345: 0,24 + 2353: 0,25 + 2361: 0,26 + 2377: 1,24 + 2385: 1,25 + 2393: 1,26 2409: 8,0 - 2436: 2,-2 - 2439: 5,-1 - 2450: -5,31 - 2465: -1,24 - 2473: -1,25 - 2481: -1,26 - 2494: 0,24 - 2502: 0,25 - 2510: 0,26 - 2528: 1,24 - 2536: 1,25 - 2544: 1,26 - 2562: 5,31 - 2570: 5,32 - 2591: 6,9 - 2594: 8,0 - 2621: 2,-2 - 2624: 5,-1 - 2635: -5,31 - 2650: -1,24 - 2658: -1,25 - 2666: -1,26 - 2679: 0,24 - 2687: 0,25 - 2695: 0,26 - 2713: 1,24 - 2721: 1,25 - 2729: 1,26 - 2747: 5,31 - 2755: 5,32 - 2776: 6,9 - 2779: 8,0 - 2806: 2,-2 - 2809: 5,-1 - 2820: -5,31 - 2835: -1,24 - 2843: -1,25 - 2851: -1,26 - 2864: 0,24 - 2872: 0,25 - 2880: 0,26 - 2898: 1,24 - 2906: 1,25 - 2914: 1,26 - 2932: 5,31 - 2940: 5,32 + 2431: 2,-2 + 2434: 5,-1 + 2449: -1,24 + 2457: -1,25 + 2465: -1,26 + 2476: 0,24 + 2484: 0,25 + 2492: 0,26 + 2508: 1,24 + 2516: 1,25 + 2524: 1,26 + 2540: 8,0 + 2562: 2,-2 + 2565: 5,-1 + 2580: -1,24 + 2588: -1,25 + 2596: -1,26 + 2607: 0,24 + 2615: 0,25 + 2623: 0,26 + 2639: 1,24 + 2647: 1,25 + 2655: 1,26 + 2736: 8,0 + 2758: 2,-2 + 2761: 5,-1 + 2776: -1,24 + 2784: -1,25 + 2792: -1,26 + 2803: 0,24 + 2811: 0,25 + 2819: 0,26 + 2835: 1,24 + 2843: 1,25 + 2851: 1,26 + 2867: 8,0 + 2889: 2,-2 + 2892: 5,-1 + 2907: -1,24 + 2915: -1,25 + 2923: -1,26 + 2934: 0,24 + 2942: 0,25 + 2950: 0,26 + 2966: 1,24 + 2974: 1,25 + 2982: 1,26 + 2998: 8,0 + 3020: 2,-2 + 3023: 5,-1 + 3038: -1,24 + 3046: -1,25 + 3054: -1,26 + 3065: 0,24 + 3073: 0,25 + 3081: 0,26 + 3097: 1,24 + 3105: 1,25 + 3113: 1,26 + 3129: 8,0 + 3151: 2,-2 + 3154: 5,-1 + 3169: -1,24 + 3177: -1,25 + 3185: -1,26 + 3196: 0,24 + 3204: 0,25 + 3212: 0,26 + 3228: 1,24 + 3236: 1,25 + 3244: 1,26 - node: zIndex: 1 id: LatticeCornerSE decals: - 341: -8,8 - 365: 0,24 - 376: -7,19 - 398: -6,9 - 403: -6,10 - 408: -1,26 - 419: 1,26 - 427: 1,27 - 430: 0,26 - 435: 0,25 - 468: -8,8 - 471: -6,9 - 476: -6,10 - 487: -7,19 - 490: -1,26 - 501: 0,24 - 509: 0,25 - 517: 0,26 - 522: 1,26 - 530: 1,27 - 559: -5,32 - 634: -8,8 - 660: 1,27 - 670: -5,32 - 699: 1,26 - 707: -1,26 - 715: 0,25 - 723: 0,24 - 731: 0,26 - 747: -6,9 - 807: -8,8 - 810: -6,9 - 827: -1,26 - 842: 0,24 - 850: 0,25 - 858: 0,26 - 867: 1,26 - 875: 1,27 - 885: -5,32 - 909: -6,9 - 926: -1,26 - 941: 0,24 - 949: 0,25 - 957: 0,26 - 966: 1,26 - 974: 1,27 - 984: -5,32 - 1011: -9,7 - 1036: -9,7 - 1042: -6,9 - 1070: 1,27 - 1121: -5,32 - 1176: 1,26 - 1184: -1,26 - 1192: 0,26 - 1197: -1,24 - 1205: -1,25 - 1213: 1,24 - 1221: 1,25 - 1229: 0,24 - 1237: 0,25 - 1256: -9,7 - 1262: -6,9 - 1279: -1,24 - 1287: -1,25 - 1295: -1,26 - 1310: 0,24 - 1318: 0,25 - 1326: 0,26 - 1335: 1,24 - 1343: 1,25 - 1351: 1,26 - 1359: 1,27 - 1369: -5,32 - 1383: -9,7 - 1389: -6,9 - 1406: -1,24 - 1414: -1,25 - 1422: -1,26 - 1437: 0,24 - 1445: 0,25 - 1453: 0,26 - 1462: 1,24 - 1470: 1,25 - 1478: 1,26 - 1486: 1,27 - 1496: -5,32 - 1510: -9,7 - 1516: -6,9 - 1533: -1,24 - 1541: -1,25 - 1549: -1,26 - 1564: 0,24 - 1572: 0,25 - 1580: 0,26 - 1589: 1,24 - 1597: 1,25 - 1605: 1,26 - 1613: 1,27 - 1623: -5,32 - 1637: -9,7 - 1643: -6,9 - 1660: -1,24 - 1668: -1,25 - 1676: -1,26 - 1691: 0,24 - 1699: 0,25 - 1707: 0,26 - 1716: 1,24 - 1724: 1,25 - 1732: 1,26 - 1740: 1,27 - 1750: -5,32 - 1764: -9,7 - 1770: -6,9 - 1787: -1,24 - 1795: -1,25 - 1803: -1,26 - 1818: 0,24 - 1826: 0,25 - 1834: 0,26 - 1843: 1,24 - 1851: 1,25 + 334: -8,8 + 352: 0,24 + 363: -7,19 + 380: -6,10 + 385: -1,26 + 396: 1,26 + 404: 1,27 + 407: 0,26 + 412: 0,25 + 440: -8,8 + 443: -6,10 + 454: -7,19 + 457: -1,26 + 468: 0,24 + 476: 0,25 + 484: 0,26 + 489: 1,26 + 497: 1,27 + 583: -8,8 + 605: 1,27 + 636: 1,26 + 644: -1,26 + 652: 0,25 + 660: 0,24 + 668: 0,26 + 727: -8,8 + 742: -1,26 + 755: 0,24 + 763: 0,25 + 771: 0,26 + 778: 1,26 + 786: 1,27 + 819: -1,26 + 832: 0,24 + 840: 0,25 + 848: 0,26 + 855: 1,26 + 863: 1,27 + 892: -9,7 + 909: -9,7 + 934: 1,27 + 1026: 1,26 + 1034: -1,26 + 1042: 0,26 + 1047: -1,24 + 1055: -1,25 + 1063: 1,24 + 1071: 1,25 + 1079: 0,24 + 1087: 0,25 + 1101: -9,7 + 1119: -1,24 + 1127: -1,25 + 1135: -1,26 + 1148: 0,24 + 1156: 0,25 + 1164: 0,26 + 1171: 1,24 + 1179: 1,25 + 1187: 1,26 + 1195: 1,27 + 1206: -9,7 + 1224: -1,24 + 1232: -1,25 + 1240: -1,26 + 1253: 0,24 + 1261: 0,25 + 1269: 0,26 + 1276: 1,24 + 1284: 1,25 + 1292: 1,26 + 1300: 1,27 + 1311: -9,7 + 1329: -1,24 + 1337: -1,25 + 1345: -1,26 + 1358: 0,24 + 1366: 0,25 + 1374: 0,26 + 1381: 1,24 + 1389: 1,25 + 1397: 1,26 + 1405: 1,27 + 1416: -9,7 + 1434: -1,24 + 1442: -1,25 + 1450: -1,26 + 1463: 0,24 + 1471: 0,25 + 1479: 0,26 + 1486: 1,24 + 1494: 1,25 + 1502: 1,26 + 1510: 1,27 + 1521: -9,7 + 1539: -1,24 + 1547: -1,25 + 1555: -1,26 + 1568: 0,24 + 1576: 0,25 + 1584: 0,26 + 1591: 1,24 + 1599: 1,25 + 1607: 1,26 + 1615: 1,27 + 1626: -9,7 + 1644: -1,24 + 1652: -1,25 + 1660: -1,26 + 1673: 0,24 + 1681: 0,25 + 1689: 0,26 + 1696: 1,24 + 1704: 1,25 + 1712: 1,26 + 1720: 1,27 + 1760: -9,7 + 1789: -1,24 + 1797: -1,25 + 1808: 0,24 + 1816: 0,25 + 1827: 1,24 + 1835: 1,25 + 1851: -1,26 1859: 1,26 - 1867: 1,27 - 1874: -5,31 - 1879: -5,32 - 1901: -9,7 - 1907: -6,9 - 1924: -5,31 - 1929: -1,24 - 1937: -1,25 - 1945: -1,26 - 1960: 0,24 - 1968: 0,25 - 1976: 0,26 - 1985: 1,24 - 1993: 1,25 - 2001: 1,26 - 2009: 1,27 - 2024: -5,32 - 2067: -9,7 - 2073: -6,9 - 2094: -5,31 - 2106: -1,24 - 2114: -1,25 - 2127: 0,24 - 2135: 0,25 - 2148: 1,24 - 2156: 1,25 - 2182: -5,32 - 2185: -1,26 - 2193: 1,26 - 2201: 0,27 - 2206: 0,26 - 2230: -9,7 - 2236: -6,9 - 2264: -1,24 - 2272: -1,25 - 2280: -1,26 - 2293: 0,24 - 2301: 0,25 - 2309: 0,26 - 2317: 0,27 - 2327: 1,24 - 2335: 1,25 - 2343: 1,26 - 2361: -5,33 - 2367: -6,31 - 2370: -5,31 - 2378: -5,32 - 2386: 5,31 + 1867: 0,27 + 1872: 0,26 + 1891: -9,7 + 1920: -1,24 + 1928: -1,25 + 1936: -1,26 + 1947: 0,24 + 1955: 0,25 + 1963: 0,26 + 1971: 0,27 + 1979: 1,24 + 1987: 1,25 + 1995: 1,26 + 2022: -9,7 + 2051: -1,24 + 2059: -1,25 + 2067: -1,26 + 2078: 0,24 + 2086: 0,25 + 2094: 0,26 + 2102: 0,27 + 2110: 1,24 + 2118: 1,25 + 2126: 1,26 + 2153: -9,7 + 2182: -1,24 + 2190: -1,25 + 2198: -1,26 + 2209: 0,24 + 2217: 0,25 + 2225: 0,26 + 2233: 0,27 + 2241: 1,24 + 2249: 1,25 + 2257: 1,26 + 2284: -9,7 + 2313: -1,24 + 2321: -1,25 + 2329: -1,26 + 2340: 0,24 + 2348: 0,25 + 2356: 0,26 + 2364: 0,27 + 2372: 1,24 + 2380: 1,25 + 2388: 1,26 2415: -9,7 - 2421: -6,9 - 2442: -6,31 - 2445: -5,31 - 2460: -1,24 - 2468: -1,25 - 2476: -1,26 - 2489: 0,24 - 2497: 0,25 - 2505: 0,26 - 2513: 0,27 - 2523: 1,24 - 2531: 1,25 - 2539: 1,26 - 2557: 5,31 - 2576: -5,32 - 2581: -5,33 - 2600: -9,7 - 2606: -6,9 - 2627: -6,31 - 2630: -5,31 - 2645: -1,24 - 2653: -1,25 - 2661: -1,26 - 2674: 0,24 - 2682: 0,25 - 2690: 0,26 - 2698: 0,27 - 2708: 1,24 - 2716: 1,25 - 2724: 1,26 - 2742: 5,31 - 2761: -5,32 - 2766: -5,33 - 2785: -9,7 - 2791: -6,9 - 2812: -6,31 - 2815: -5,31 - 2830: -1,24 - 2838: -1,25 - 2846: -1,26 - 2859: 0,24 - 2867: 0,25 - 2875: 0,26 - 2883: 0,27 - 2893: 1,24 - 2901: 1,25 - 2909: 1,26 - 2927: 5,31 - 2946: -5,32 - 2951: -5,33 + 2444: -1,24 + 2452: -1,25 + 2460: -1,26 + 2471: 0,24 + 2479: 0,25 + 2487: 0,26 + 2495: 0,27 + 2503: 1,24 + 2511: 1,25 + 2519: 1,26 + 2546: -9,7 + 2575: -1,24 + 2583: -1,25 + 2591: -1,26 + 2602: 0,24 + 2610: 0,25 + 2618: 0,26 + 2626: 0,27 + 2634: 1,24 + 2642: 1,25 + 2650: 1,26 + 2742: -9,7 + 2771: -1,24 + 2779: -1,25 + 2787: -1,26 + 2798: 0,24 + 2806: 0,25 + 2814: 0,26 + 2822: 0,27 + 2830: 1,24 + 2838: 1,25 + 2846: 1,26 + 2873: -9,7 + 2902: -1,24 + 2910: -1,25 + 2918: -1,26 + 2929: 0,24 + 2937: 0,25 + 2945: 0,26 + 2953: 0,27 + 2961: 1,24 + 2969: 1,25 + 2977: 1,26 + 3004: -9,7 + 3033: -1,24 + 3041: -1,25 + 3049: -1,26 + 3060: 0,24 + 3068: 0,25 + 3076: 0,26 + 3084: 0,27 + 3092: 1,24 + 3100: 1,25 + 3108: 1,26 + 3135: -9,7 + 3164: -1,24 + 3172: -1,25 + 3180: -1,26 + 3191: 0,24 + 3199: 0,25 + 3207: 0,26 + 3215: 0,27 + 3223: 1,24 + 3231: 1,25 + 3239: 1,26 - node: zIndex: 1 id: LatticeCornerSW decals: - 329: 8,8 - 369: 0,24 - 373: 7,19 - 386: 6,9 - 391: 6,10 - 412: -1,26 - 416: -1,27 - 423: 1,26 - 432: 0,26 - 439: 0,25 - 444: 6,9 - 449: 6,10 - 456: 8,8 - 494: -1,26 - 498: -1,27 - 505: 0,24 - 513: 0,25 - 519: 0,26 - 526: 1,26 - 533: 7,19 - 562: 5,32 - 622: 8,8 - 649: -1,27 - 667: 5,32 - 703: 1,26 - 711: -1,26 - 719: 0,25 - 727: 0,24 - 733: 0,26 - 753: 6,9 - 800: 6,9 - 804: 8,8 - 831: -1,26 - 835: -1,27 - 846: 0,24 - 854: 0,25 - 860: 0,26 - 871: 1,26 - 882: 5,32 - 899: 6,9 - 930: -1,26 - 934: -1,27 - 945: 0,24 - 953: 0,25 - 959: 0,26 - 970: 1,26 - 981: 5,32 - 1014: 9,7 - 1026: 6,9 - 1033: 9,7 - 1059: -1,27 - 1124: 5,32 - 1180: 1,26 - 1188: -1,26 - 1194: 0,26 - 1201: -1,24 - 1209: -1,25 - 1217: 1,24 - 1225: 1,25 - 1233: 0,24 - 1241: 0,25 - 1246: 6,9 - 1253: 9,7 - 1283: -1,24 - 1291: -1,25 - 1299: -1,26 - 1303: -1,27 - 1314: 0,24 - 1322: 0,25 - 1328: 0,26 - 1339: 1,24 - 1347: 1,25 - 1355: 1,26 - 1366: 5,32 - 1373: 6,9 - 1380: 9,7 - 1410: -1,24 - 1418: -1,25 - 1426: -1,26 - 1430: -1,27 - 1441: 0,24 - 1449: 0,25 - 1455: 0,26 - 1466: 1,24 - 1474: 1,25 - 1482: 1,26 - 1493: 5,32 - 1500: 6,9 - 1507: 9,7 - 1537: -1,24 - 1545: -1,25 - 1553: -1,26 - 1557: -1,27 - 1568: 0,24 - 1576: 0,25 - 1582: 0,26 - 1593: 1,24 - 1601: 1,25 - 1609: 1,26 - 1620: 5,32 - 1627: 6,9 - 1634: 9,7 - 1664: -1,24 - 1672: -1,25 - 1680: -1,26 - 1684: -1,27 - 1695: 0,24 - 1703: 0,25 - 1709: 0,26 - 1720: 1,24 - 1728: 1,25 - 1736: 1,26 - 1747: 5,32 - 1754: 6,9 - 1761: 9,7 - 1791: -1,24 - 1799: -1,25 - 1807: -1,26 - 1811: -1,27 - 1822: 0,24 - 1830: 0,25 - 1836: 0,26 - 1847: 1,24 - 1855: 1,25 + 322: 8,8 + 356: 0,24 + 360: 7,19 + 373: 6,10 + 389: -1,26 + 393: -1,27 + 400: 1,26 + 409: 0,26 + 416: 0,25 + 421: 6,10 + 428: 8,8 + 461: -1,26 + 465: -1,27 + 472: 0,24 + 480: 0,25 + 486: 0,26 + 493: 1,26 + 500: 7,19 + 571: 8,8 + 598: -1,27 + 640: 1,26 + 648: -1,26 + 656: 0,25 + 664: 0,24 + 670: 0,26 + 724: 8,8 + 746: -1,26 + 750: -1,27 + 759: 0,24 + 767: 0,25 + 773: 0,26 + 782: 1,26 + 823: -1,26 + 827: -1,27 + 836: 0,24 + 844: 0,25 + 850: 0,26 + 859: 1,26 + 895: 9,7 + 906: 9,7 + 927: -1,27 + 1030: 1,26 + 1038: -1,26 + 1044: 0,26 + 1051: -1,24 + 1059: -1,25 + 1067: 1,24 + 1075: 1,25 + 1083: 0,24 + 1091: 0,25 + 1098: 9,7 + 1123: -1,24 + 1131: -1,25 + 1139: -1,26 + 1143: -1,27 + 1152: 0,24 + 1160: 0,25 + 1166: 0,26 + 1175: 1,24 + 1183: 1,25 + 1191: 1,26 + 1203: 9,7 + 1228: -1,24 + 1236: -1,25 + 1244: -1,26 + 1248: -1,27 + 1257: 0,24 + 1265: 0,25 + 1271: 0,26 + 1280: 1,24 + 1288: 1,25 + 1296: 1,26 + 1308: 9,7 + 1333: -1,24 + 1341: -1,25 + 1349: -1,26 + 1353: -1,27 + 1362: 0,24 + 1370: 0,25 + 1376: 0,26 + 1385: 1,24 + 1393: 1,25 + 1401: 1,26 + 1413: 9,7 + 1438: -1,24 + 1446: -1,25 + 1454: -1,26 + 1458: -1,27 + 1467: 0,24 + 1475: 0,25 + 1481: 0,26 + 1490: 1,24 + 1498: 1,25 + 1506: 1,26 + 1518: 9,7 + 1543: -1,24 + 1551: -1,25 + 1559: -1,26 + 1563: -1,27 + 1572: 0,24 + 1580: 0,25 + 1586: 0,26 + 1595: 1,24 + 1603: 1,25 + 1611: 1,26 + 1623: 9,7 + 1648: -1,24 + 1656: -1,25 + 1664: -1,26 + 1668: -1,27 + 1677: 0,24 + 1685: 0,25 + 1691: 0,26 + 1700: 1,24 + 1708: 1,25 + 1716: 1,26 + 1757: 9,7 + 1793: -1,24 + 1801: -1,25 + 1812: 0,24 + 1820: 0,25 + 1831: 1,24 + 1839: 1,25 + 1855: -1,26 1863: 1,26 - 1883: 5,31 - 1887: 5,32 - 1891: 6,9 - 1898: 9,7 - 1933: -1,24 - 1941: -1,25 - 1949: -1,26 - 1953: -1,27 - 1964: 0,24 - 1972: 0,25 - 1978: 0,26 - 1989: 1,24 - 1997: 1,25 - 2005: 1,26 - 2017: 5,31 - 2021: 5,32 - 2057: 6,9 - 2064: 9,7 - 2110: -1,24 - 2118: -1,25 - 2131: 0,24 - 2139: 0,25 - 2152: 1,24 - 2160: 1,25 - 2175: 5,31 - 2179: 5,32 - 2189: -1,26 - 2197: 1,26 - 2203: 0,27 - 2210: 0,26 - 2220: 6,9 - 2227: 9,7 - 2268: -1,24 - 2276: -1,25 - 2284: -1,26 - 2297: 0,24 - 2305: 0,25 - 2313: 0,26 - 2319: 0,27 - 2331: 1,24 - 2339: 1,25 - 2347: 1,26 - 2364: 5,33 - 2374: -5,31 - 2383: 6,31 - 2390: 5,31 - 2395: 5,32 - 2405: 6,9 + 1869: 0,27 + 1876: 0,26 + 1888: 9,7 + 1924: -1,24 + 1932: -1,25 + 1940: -1,26 + 1951: 0,24 + 1959: 0,25 + 1967: 0,26 + 1973: 0,27 + 1983: 1,24 + 1991: 1,25 + 1999: 1,26 + 2019: 9,7 + 2055: -1,24 + 2063: -1,25 + 2071: -1,26 + 2082: 0,24 + 2090: 0,25 + 2098: 0,26 + 2104: 0,27 + 2114: 1,24 + 2122: 1,25 + 2130: 1,26 + 2150: 9,7 + 2186: -1,24 + 2194: -1,25 + 2202: -1,26 + 2213: 0,24 + 2221: 0,25 + 2229: 0,26 + 2235: 0,27 + 2245: 1,24 + 2253: 1,25 + 2261: 1,26 + 2281: 9,7 + 2317: -1,24 + 2325: -1,25 + 2333: -1,26 + 2344: 0,24 + 2352: 0,25 + 2360: 0,26 + 2366: 0,27 + 2376: 1,24 + 2384: 1,25 + 2392: 1,26 2412: 9,7 - 2449: -5,31 - 2464: -1,24 - 2472: -1,25 - 2480: -1,26 - 2493: 0,24 - 2501: 0,25 - 2509: 0,26 - 2515: 0,27 - 2527: 1,24 - 2535: 1,25 - 2543: 1,26 - 2561: 5,31 - 2565: 6,31 - 2569: 5,32 - 2573: 5,33 - 2590: 6,9 - 2597: 9,7 - 2634: -5,31 - 2649: -1,24 - 2657: -1,25 - 2665: -1,26 - 2678: 0,24 - 2686: 0,25 - 2694: 0,26 - 2700: 0,27 - 2712: 1,24 - 2720: 1,25 - 2728: 1,26 - 2746: 5,31 - 2750: 6,31 - 2754: 5,32 - 2758: 5,33 - 2775: 6,9 - 2782: 9,7 - 2819: -5,31 - 2834: -1,24 - 2842: -1,25 - 2850: -1,26 - 2863: 0,24 - 2871: 0,25 - 2879: 0,26 - 2885: 0,27 - 2897: 1,24 - 2905: 1,25 - 2913: 1,26 - 2931: 5,31 - 2935: 6,31 - 2939: 5,32 - 2943: 5,33 + 2448: -1,24 + 2456: -1,25 + 2464: -1,26 + 2475: 0,24 + 2483: 0,25 + 2491: 0,26 + 2497: 0,27 + 2507: 1,24 + 2515: 1,25 + 2523: 1,26 + 2543: 9,7 + 2579: -1,24 + 2587: -1,25 + 2595: -1,26 + 2606: 0,24 + 2614: 0,25 + 2622: 0,26 + 2628: 0,27 + 2638: 1,24 + 2646: 1,25 + 2654: 1,26 + 2739: 9,7 + 2775: -1,24 + 2783: -1,25 + 2791: -1,26 + 2802: 0,24 + 2810: 0,25 + 2818: 0,26 + 2824: 0,27 + 2834: 1,24 + 2842: 1,25 + 2850: 1,26 + 2870: 9,7 + 2906: -1,24 + 2914: -1,25 + 2922: -1,26 + 2933: 0,24 + 2941: 0,25 + 2949: 0,26 + 2955: 0,27 + 2965: 1,24 + 2973: 1,25 + 2981: 1,26 + 3001: 9,7 + 3037: -1,24 + 3045: -1,25 + 3053: -1,26 + 3064: 0,24 + 3072: 0,25 + 3080: 0,26 + 3086: 0,27 + 3096: 1,24 + 3104: 1,25 + 3112: 1,26 + 3132: 9,7 + 3168: -1,24 + 3176: -1,25 + 3184: -1,26 + 3195: 0,24 + 3203: 0,25 + 3211: 0,26 + 3217: 0,27 + 3227: 1,24 + 3235: 1,25 + 3243: 1,26 - node: id: LatticeEdgeE decals: - 333: -9,2 - 336: -8,0 - 340: -8,8 - 342: -5,-1 - 348: -1,29 - 350: -1,31 - 352: 0,29 - 354: 0,31 - 356: 1,29 - 358: 1,31 - 364: 0,24 - 375: -7,19 - 377: -2,-2 - 393: -7,13 - 397: -6,9 - 402: -6,10 - 407: -1,26 - 418: 1,26 - 426: 1,27 - 429: 0,26 - 434: 0,25 - 460: -9,2 - 463: -8,0 - 467: -8,8 - 470: -6,9 - 475: -6,10 - 479: -5,-1 - 486: -7,19 - 489: -1,26 - 500: 0,24 - 508: 0,25 - 516: 0,26 - 521: 1,26 - 529: 1,27 - 541: 0,31 - 543: 0,29 - 545: -1,29 - 547: 1,29 - 549: -1,31 - 551: 1,31 - 558: -5,32 - 596: -7,13 - 611: -2,-2 - 626: -9,2 - 629: -8,0 - 633: -8,8 - 635: -5,-1 - 638: -2,-2 - 650: -1,29 - 652: -1,31 - 654: 0,29 - 656: 0,31 - 659: 1,27 - 661: 1,29 - 663: 1,31 - 669: -5,32 - 698: 1,26 - 706: -1,26 - 714: 0,25 - 722: 0,24 - 730: 0,26 - 746: -6,9 - 806: -8,8 - 809: -6,9 - 813: -5,-1 - 816: -2,-2 - 826: -1,26 - 836: -1,29 - 838: -1,31 - 841: 0,24 - 849: 0,25 - 857: 0,26 - 861: 0,29 - 863: 0,31 - 866: 1,26 - 874: 1,27 - 876: 1,29 - 878: 1,31 - 884: -5,32 - 886: -8,0 - 904: -8,0 - 908: -6,9 - 912: -5,-1 - 915: -2,-2 - 925: -1,26 - 935: -1,29 - 937: -1,31 - 940: 0,24 - 948: 0,25 - 956: 0,26 - 960: 0,29 - 962: 0,31 - 965: 1,26 - 973: 1,27 - 975: 1,29 - 977: 1,31 - 983: -5,32 - 1010: -9,7 - 1035: -9,7 - 1037: -8,0 - 1041: -6,9 - 1045: -5,-1 - 1048: -2,-2 - 1060: -1,29 - 1062: -1,31 - 1064: 0,29 - 1066: 0,31 - 1069: 1,27 - 1071: 1,29 - 1073: 1,31 - 1120: -5,32 - 1175: 1,26 - 1183: -1,26 - 1191: 0,26 - 1196: -1,24 - 1204: -1,25 - 1212: 1,24 - 1220: 1,25 - 1228: 0,24 - 1236: 0,25 - 1255: -9,7 - 1257: -8,0 - 1261: -6,9 - 1265: -5,-1 - 1268: -2,-2 - 1278: -1,24 - 1286: -1,25 - 1294: -1,26 - 1304: -1,29 - 1306: -1,31 - 1309: 0,24 - 1317: 0,25 - 1325: 0,26 - 1329: 0,29 - 1331: 0,31 - 1334: 1,24 - 1342: 1,25 - 1350: 1,26 - 1358: 1,27 - 1360: 1,29 - 1362: 1,31 - 1368: -5,32 - 1382: -9,7 - 1384: -8,0 - 1388: -6,9 - 1392: -5,-1 - 1395: -2,-2 - 1405: -1,24 - 1413: -1,25 - 1421: -1,26 - 1431: -1,29 - 1433: -1,31 - 1436: 0,24 - 1444: 0,25 - 1452: 0,26 - 1456: 0,29 - 1458: 0,31 - 1461: 1,24 - 1469: 1,25 - 1477: 1,26 - 1485: 1,27 - 1487: 1,29 - 1489: 1,31 - 1495: -5,32 - 1509: -9,7 - 1511: -8,0 - 1515: -6,9 - 1519: -5,-1 - 1522: -2,-2 - 1532: -1,24 - 1540: -1,25 - 1548: -1,26 - 1558: -1,29 - 1560: -1,31 - 1563: 0,24 - 1571: 0,25 - 1579: 0,26 - 1583: 0,29 - 1585: 0,31 - 1588: 1,24 - 1596: 1,25 - 1604: 1,26 - 1612: 1,27 - 1614: 1,29 + 326: -9,2 + 329: -8,0 + 333: -8,8 + 335: -5,-1 + 341: -1,31 + 343: 0,31 + 345: 1,31 + 351: 0,24 + 362: -7,19 + 364: -2,-2 + 375: -7,13 + 379: -6,10 + 384: -1,26 + 395: 1,26 + 403: 1,27 + 406: 0,26 + 411: 0,25 + 432: -9,2 + 435: -8,0 + 439: -8,8 + 442: -6,10 + 446: -5,-1 + 453: -7,19 + 456: -1,26 + 467: 0,24 + 475: 0,25 + 483: 0,26 + 488: 1,26 + 496: 1,27 + 505: 0,31 + 507: -1,31 + 509: 1,31 + 545: -7,13 + 560: -2,-2 + 575: -9,2 + 578: -8,0 + 582: -8,8 + 584: -5,-1 + 587: -2,-2 + 599: -1,31 + 601: 0,31 + 604: 1,27 + 606: 1,31 + 635: 1,26 + 643: -1,26 + 651: 0,25 + 659: 0,24 + 667: 0,26 + 726: -8,8 + 728: -5,-1 + 731: -2,-2 + 741: -1,26 + 751: -1,31 + 754: 0,24 + 762: 0,25 + 770: 0,26 + 774: 0,31 + 777: 1,26 + 785: 1,27 + 787: 1,31 + 789: -8,0 + 802: -8,0 + 805: -5,-1 + 808: -2,-2 + 818: -1,26 + 828: -1,31 + 831: 0,24 + 839: 0,25 + 847: 0,26 + 851: 0,31 + 854: 1,26 + 862: 1,27 + 864: 1,31 + 891: -9,7 + 908: -9,7 + 910: -8,0 + 913: -5,-1 + 916: -2,-2 + 928: -1,31 + 930: 0,31 + 933: 1,27 + 935: 1,31 + 1025: 1,26 + 1033: -1,26 + 1041: 0,26 + 1046: -1,24 + 1054: -1,25 + 1062: 1,24 + 1070: 1,25 + 1078: 0,24 + 1086: 0,25 + 1100: -9,7 + 1102: -8,0 + 1105: -5,-1 + 1108: -2,-2 + 1118: -1,24 + 1126: -1,25 + 1134: -1,26 + 1144: -1,31 + 1147: 0,24 + 1155: 0,25 + 1163: 0,26 + 1167: 0,31 + 1170: 1,24 + 1178: 1,25 + 1186: 1,26 + 1194: 1,27 + 1196: 1,31 + 1205: -9,7 + 1207: -8,0 + 1210: -5,-1 + 1213: -2,-2 + 1223: -1,24 + 1231: -1,25 + 1239: -1,26 + 1249: -1,31 + 1252: 0,24 + 1260: 0,25 + 1268: 0,26 + 1272: 0,31 + 1275: 1,24 + 1283: 1,25 + 1291: 1,26 + 1299: 1,27 + 1301: 1,31 + 1310: -9,7 + 1312: -8,0 + 1315: -5,-1 + 1318: -2,-2 + 1328: -1,24 + 1336: -1,25 + 1344: -1,26 + 1354: -1,31 + 1357: 0,24 + 1365: 0,25 + 1373: 0,26 + 1377: 0,31 + 1380: 1,24 + 1388: 1,25 + 1396: 1,26 + 1404: 1,27 + 1406: 1,31 + 1415: -9,7 + 1417: -8,0 + 1420: -5,-1 + 1423: -2,-2 + 1433: -1,24 + 1441: -1,25 + 1449: -1,26 + 1459: -1,31 + 1462: 0,24 + 1470: 0,25 + 1478: 0,26 + 1482: 0,31 + 1485: 1,24 + 1493: 1,25 + 1501: 1,26 + 1509: 1,27 + 1511: 1,31 + 1520: -9,7 + 1522: -8,0 + 1525: -5,-1 + 1528: -2,-2 + 1538: -1,24 + 1546: -1,25 + 1554: -1,26 + 1564: -1,31 + 1567: 0,24 + 1575: 0,25 + 1583: 0,26 + 1587: 0,31 + 1590: 1,24 + 1598: 1,25 + 1606: 1,26 + 1614: 1,27 1616: 1,31 - 1622: -5,32 - 1636: -9,7 - 1638: -8,0 - 1642: -6,9 - 1646: -5,-1 - 1649: -2,-2 - 1659: -1,24 - 1667: -1,25 - 1675: -1,26 - 1685: -1,29 - 1687: -1,31 - 1690: 0,24 - 1698: 0,25 - 1706: 0,26 - 1710: 0,29 - 1712: 0,31 - 1715: 1,24 - 1723: 1,25 - 1731: 1,26 - 1739: 1,27 - 1741: 1,29 - 1743: 1,31 - 1749: -5,32 - 1763: -9,7 - 1765: -8,0 - 1769: -6,9 - 1773: -5,-1 - 1776: -2,-2 - 1786: -1,24 - 1794: -1,25 - 1802: -1,26 - 1812: -1,29 - 1814: -1,31 - 1817: 0,24 - 1825: 0,25 - 1833: 0,26 - 1837: 0,29 - 1839: 0,31 - 1842: 1,24 - 1850: 1,25 + 1625: -9,7 + 1627: -8,0 + 1630: -5,-1 + 1633: -2,-2 + 1643: -1,24 + 1651: -1,25 + 1659: -1,26 + 1669: -1,31 + 1672: 0,24 + 1680: 0,25 + 1688: 0,26 + 1692: 0,31 + 1695: 1,24 + 1703: 1,25 + 1711: 1,26 + 1719: 1,27 + 1721: 1,31 + 1759: -9,7 + 1761: -8,0 + 1768: -5,-1 + 1771: -2,-2 + 1788: -1,24 + 1796: -1,25 + 1803: -1,31 + 1807: 0,24 + 1815: 0,25 + 1822: 0,31 + 1826: 1,24 + 1834: 1,25 + 1841: 1,31 + 1850: -1,26 1858: 1,26 - 1866: 1,27 - 1868: 1,29 - 1870: 1,31 - 1873: -5,31 - 1878: -5,32 - 1900: -9,7 - 1902: -8,0 - 1906: -6,9 - 1910: -5,-1 - 1913: -2,-2 - 1923: -5,31 - 1928: -1,24 - 1936: -1,25 - 1944: -1,26 - 1954: -1,29 - 1956: -1,31 - 1959: 0,24 - 1967: 0,25 - 1975: 0,26 - 1979: 0,29 - 1981: 0,31 - 1984: 1,24 - 1992: 1,25 - 2000: 1,26 - 2008: 1,27 - 2010: 1,29 - 2012: 1,31 - 2023: -5,32 - 2066: -9,7 - 2068: -8,0 - 2072: -6,9 - 2080: -5,-1 - 2083: -2,-2 - 2093: -5,31 - 2105: -1,24 - 2113: -1,25 - 2120: -1,29 - 2122: -1,31 - 2126: 0,24 - 2134: 0,25 - 2141: 0,29 - 2143: 0,31 - 2147: 1,24 - 2155: 1,25 - 2162: 1,29 - 2164: 1,31 - 2181: -5,32 - 2184: -1,26 - 2192: 1,26 - 2200: 0,27 - 2205: 0,26 - 2229: -9,7 - 2231: -8,0 - 2235: -6,9 - 2243: -5,-1 - 2246: -2,-2 - 2263: -1,24 - 2271: -1,25 - 2279: -1,26 - 2286: -1,29 - 2288: -1,31 - 2292: 0,24 - 2300: 0,25 - 2308: 0,26 - 2316: 0,27 - 2320: 0,29 - 2322: 0,31 - 2326: 1,24 - 2334: 1,25 - 2342: 1,26 - 2349: 1,29 - 2351: 1,31 - 2360: -5,33 - 2366: -6,31 - 2369: -5,31 - 2377: -5,32 - 2385: 5,31 + 1866: 0,27 + 1871: 0,26 + 1890: -9,7 + 1892: -8,0 + 1899: -5,-1 + 1902: -2,-2 + 1919: -1,24 + 1927: -1,25 + 1935: -1,26 + 1942: -1,31 + 1946: 0,24 + 1954: 0,25 + 1962: 0,26 + 1970: 0,27 + 1974: 0,31 + 1978: 1,24 + 1986: 1,25 + 1994: 1,26 + 2001: 1,31 + 2021: -9,7 + 2023: -8,0 + 2030: -5,-1 + 2033: -2,-2 + 2050: -1,24 + 2058: -1,25 + 2066: -1,26 + 2073: -1,31 + 2077: 0,24 + 2085: 0,25 + 2093: 0,26 + 2101: 0,27 + 2105: 0,31 + 2109: 1,24 + 2117: 1,25 + 2125: 1,26 + 2132: 1,31 + 2152: -9,7 + 2154: -8,0 + 2161: -5,-1 + 2164: -2,-2 + 2181: -1,24 + 2189: -1,25 + 2197: -1,26 + 2204: -1,31 + 2208: 0,24 + 2216: 0,25 + 2224: 0,26 + 2232: 0,27 + 2236: 0,31 + 2240: 1,24 + 2248: 1,25 + 2256: 1,26 + 2263: 1,31 + 2283: -9,7 + 2285: -8,0 + 2292: -5,-1 + 2295: -2,-2 + 2312: -1,24 + 2320: -1,25 + 2328: -1,26 + 2335: -1,31 + 2339: 0,24 + 2347: 0,25 + 2355: 0,26 + 2363: 0,27 + 2367: 0,31 + 2371: 1,24 + 2379: 1,25 + 2387: 1,26 + 2394: 1,31 2414: -9,7 2416: -8,0 - 2420: -6,9 - 2428: -5,-1 - 2431: -2,-2 - 2441: -6,31 - 2444: -5,31 - 2459: -1,24 - 2467: -1,25 - 2475: -1,26 - 2482: -1,29 - 2484: -1,31 - 2488: 0,24 - 2496: 0,25 - 2504: 0,26 - 2512: 0,27 - 2516: 0,29 - 2518: 0,31 - 2522: 1,24 - 2530: 1,25 - 2538: 1,26 - 2545: 1,29 - 2547: 1,31 - 2556: 5,31 - 2575: -5,32 - 2580: -5,33 - 2599: -9,7 - 2601: -8,0 - 2605: -6,9 - 2613: -5,-1 - 2616: -2,-2 - 2626: -6,31 - 2629: -5,31 - 2644: -1,24 - 2652: -1,25 - 2660: -1,26 - 2667: -1,29 - 2669: -1,31 - 2673: 0,24 - 2681: 0,25 - 2689: 0,26 - 2697: 0,27 - 2701: 0,29 - 2703: 0,31 - 2707: 1,24 - 2715: 1,25 - 2723: 1,26 - 2730: 1,29 - 2732: 1,31 - 2741: 5,31 - 2760: -5,32 - 2765: -5,33 - 2784: -9,7 - 2786: -8,0 - 2790: -6,9 - 2798: -5,-1 - 2801: -2,-2 - 2811: -6,31 - 2814: -5,31 - 2829: -1,24 - 2837: -1,25 - 2845: -1,26 - 2852: -1,29 - 2854: -1,31 - 2858: 0,24 - 2866: 0,25 - 2874: 0,26 - 2882: 0,27 - 2886: 0,29 - 2888: 0,31 - 2892: 1,24 - 2900: 1,25 - 2908: 1,26 - 2915: 1,29 - 2917: 1,31 - 2926: 5,31 - 2945: -5,32 - 2950: -5,33 + 2423: -5,-1 + 2426: -2,-2 + 2443: -1,24 + 2451: -1,25 + 2459: -1,26 + 2466: -1,31 + 2470: 0,24 + 2478: 0,25 + 2486: 0,26 + 2494: 0,27 + 2498: 0,31 + 2502: 1,24 + 2510: 1,25 + 2518: 1,26 + 2525: 1,31 + 2545: -9,7 + 2547: -8,0 + 2554: -5,-1 + 2557: -2,-2 + 2574: -1,24 + 2582: -1,25 + 2590: -1,26 + 2597: -1,31 + 2601: 0,24 + 2609: 0,25 + 2617: 0,26 + 2625: 0,27 + 2629: 0,31 + 2633: 1,24 + 2641: 1,25 + 2649: 1,26 + 2656: 1,31 + 2741: -9,7 + 2743: -8,0 + 2750: -5,-1 + 2753: -2,-2 + 2770: -1,24 + 2778: -1,25 + 2786: -1,26 + 2793: -1,31 + 2797: 0,24 + 2805: 0,25 + 2813: 0,26 + 2821: 0,27 + 2825: 0,31 + 2829: 1,24 + 2837: 1,25 + 2845: 1,26 + 2852: 1,31 + 2872: -9,7 + 2874: -8,0 + 2881: -5,-1 + 2884: -2,-2 + 2901: -1,24 + 2909: -1,25 + 2917: -1,26 + 2924: -1,31 + 2928: 0,24 + 2936: 0,25 + 2944: 0,26 + 2952: 0,27 + 2956: 0,31 + 2960: 1,24 + 2968: 1,25 + 2976: 1,26 + 2983: 1,31 + 3003: -9,7 + 3005: -8,0 + 3012: -5,-1 + 3015: -2,-2 + 3032: -1,24 + 3040: -1,25 + 3048: -1,26 + 3055: -1,31 + 3059: 0,24 + 3067: 0,25 + 3075: 0,26 + 3083: 0,27 + 3087: 0,31 + 3091: 1,24 + 3099: 1,25 + 3107: 1,26 + 3114: 1,31 + 3134: -9,7 + 3136: -8,0 + 3143: -5,-1 + 3146: -2,-2 + 3163: -1,24 + 3171: -1,25 + 3179: -1,26 + 3186: -1,31 + 3190: 0,24 + 3198: 0,25 + 3206: 0,26 + 3214: 0,27 + 3218: 0,31 + 3222: 1,24 + 3230: 1,25 + 3238: 1,26 + 3245: 1,31 - node: id: LatticeEdgeN decals: - 324: 8,0 - 330: 9,2 - 334: -9,2 - 337: -8,0 - 343: -5,-1 - 345: 5,-1 - 360: 7,13 - 366: 0,24 - 378: -2,-2 - 380: 2,-2 - 384: 6,9 - 389: 6,10 - 394: -7,13 - 399: -6,9 - 404: -6,10 - 409: -1,26 - 420: 1,26 - 436: 0,25 - 442: 6,9 - 447: 6,10 - 451: 8,0 - 457: 9,2 - 461: -9,2 - 464: -8,0 - 472: -6,9 - 477: -6,10 - 480: -5,-1 - 482: 5,-1 - 491: -1,26 - 502: 0,24 - 510: 0,25 - 523: 1,26 - 593: 7,13 - 597: -7,13 - 612: -2,-2 - 614: 2,-2 - 617: 8,0 - 623: 9,2 - 627: -9,2 - 630: -8,0 - 636: -5,-1 - 639: -2,-2 - 641: 2,-2 - 644: 5,-1 - 700: 1,26 - 708: -1,26 - 716: 0,25 - 724: 0,24 - 748: -6,9 - 751: 6,9 - 798: 6,9 - 811: -6,9 - 814: -5,-1 - 817: -2,-2 - 819: 2,-2 - 822: 5,-1 - 828: -1,26 - 843: 0,24 - 851: 0,25 - 868: 1,26 - 887: -8,0 - 889: 8,0 - 897: 6,9 + 317: 8,0 + 323: 9,2 + 327: -9,2 + 330: -8,0 + 336: -5,-1 + 338: 5,-1 + 347: 7,13 + 353: 0,24 + 365: -2,-2 + 367: 2,-2 + 371: 6,10 + 376: -7,13 + 381: -6,10 + 386: -1,26 + 397: 1,26 + 413: 0,25 + 419: 6,10 + 423: 8,0 + 429: 9,2 + 433: -9,2 + 436: -8,0 + 444: -6,10 + 447: -5,-1 + 449: 5,-1 + 458: -1,26 + 469: 0,24 + 477: 0,25 + 490: 1,26 + 542: 7,13 + 546: -7,13 + 561: -2,-2 + 563: 2,-2 + 566: 8,0 + 572: 9,2 + 576: -9,2 + 579: -8,0 + 585: -5,-1 + 588: -2,-2 + 590: 2,-2 + 593: 5,-1 + 637: 1,26 + 645: -1,26 + 653: 0,25 + 661: 0,24 + 729: -5,-1 + 732: -2,-2 + 734: 2,-2 + 737: 5,-1 + 743: -1,26 + 756: 0,24 + 764: 0,25 + 779: 1,26 + 790: -8,0 + 792: 8,0 + 799: 8,0 + 803: -8,0 + 806: -5,-1 + 809: -2,-2 + 811: 2,-2 + 814: 5,-1 + 820: -1,26 + 833: 0,24 + 841: 0,25 + 856: 1,26 901: 8,0 - 905: -8,0 - 910: -6,9 - 913: -5,-1 - 916: -2,-2 - 918: 2,-2 - 921: 5,-1 - 927: -1,26 - 942: 0,24 - 950: 0,25 - 967: 1,26 - 1024: 6,9 - 1028: 8,0 - 1038: -8,0 - 1043: -6,9 - 1046: -5,-1 - 1049: -2,-2 - 1051: 2,-2 - 1054: 5,-1 - 1177: 1,26 - 1185: -1,26 - 1198: -1,24 - 1206: -1,25 - 1214: 1,24 - 1222: 1,25 - 1230: 0,24 - 1238: 0,25 - 1244: 6,9 - 1248: 8,0 - 1258: -8,0 - 1263: -6,9 - 1266: -5,-1 - 1269: -2,-2 - 1271: 2,-2 - 1274: 5,-1 - 1280: -1,24 - 1288: -1,25 - 1296: -1,26 - 1311: 0,24 - 1319: 0,25 - 1336: 1,24 - 1344: 1,25 - 1352: 1,26 - 1371: 6,9 - 1375: 8,0 - 1385: -8,0 - 1390: -6,9 - 1393: -5,-1 - 1396: -2,-2 - 1398: 2,-2 - 1401: 5,-1 - 1407: -1,24 - 1415: -1,25 - 1423: -1,26 - 1438: 0,24 - 1446: 0,25 - 1463: 1,24 - 1471: 1,25 - 1479: 1,26 - 1498: 6,9 - 1502: 8,0 - 1512: -8,0 - 1517: -6,9 - 1520: -5,-1 - 1523: -2,-2 - 1525: 2,-2 - 1528: 5,-1 - 1534: -1,24 - 1542: -1,25 - 1550: -1,26 - 1565: 0,24 - 1573: 0,25 - 1590: 1,24 - 1598: 1,25 - 1606: 1,26 - 1625: 6,9 - 1629: 8,0 - 1639: -8,0 - 1644: -6,9 - 1647: -5,-1 - 1650: -2,-2 - 1652: 2,-2 - 1655: 5,-1 - 1661: -1,24 - 1669: -1,25 - 1677: -1,26 - 1692: 0,24 - 1700: 0,25 - 1717: 1,24 - 1725: 1,25 - 1733: 1,26 - 1752: 6,9 - 1756: 8,0 - 1766: -8,0 - 1771: -6,9 - 1774: -5,-1 - 1777: -2,-2 - 1779: 2,-2 - 1782: 5,-1 - 1788: -1,24 - 1796: -1,25 - 1804: -1,26 - 1819: 0,24 - 1827: 0,25 - 1844: 1,24 - 1852: 1,25 + 911: -8,0 + 914: -5,-1 + 917: -2,-2 + 919: 2,-2 + 922: 5,-1 + 1027: 1,26 + 1035: -1,26 + 1048: -1,24 + 1056: -1,25 + 1064: 1,24 + 1072: 1,25 + 1080: 0,24 + 1088: 0,25 + 1093: 8,0 + 1103: -8,0 + 1106: -5,-1 + 1109: -2,-2 + 1111: 2,-2 + 1114: 5,-1 + 1120: -1,24 + 1128: -1,25 + 1136: -1,26 + 1149: 0,24 + 1157: 0,25 + 1172: 1,24 + 1180: 1,25 + 1188: 1,26 + 1198: 8,0 + 1208: -8,0 + 1211: -5,-1 + 1214: -2,-2 + 1216: 2,-2 + 1219: 5,-1 + 1225: -1,24 + 1233: -1,25 + 1241: -1,26 + 1254: 0,24 + 1262: 0,25 + 1277: 1,24 + 1285: 1,25 + 1293: 1,26 + 1303: 8,0 + 1313: -8,0 + 1316: -5,-1 + 1319: -2,-2 + 1321: 2,-2 + 1324: 5,-1 + 1330: -1,24 + 1338: -1,25 + 1346: -1,26 + 1359: 0,24 + 1367: 0,25 + 1382: 1,24 + 1390: 1,25 + 1398: 1,26 + 1408: 8,0 + 1418: -8,0 + 1421: -5,-1 + 1424: -2,-2 + 1426: 2,-2 + 1429: 5,-1 + 1435: -1,24 + 1443: -1,25 + 1451: -1,26 + 1464: 0,24 + 1472: 0,25 + 1487: 1,24 + 1495: 1,25 + 1503: 1,26 + 1513: 8,0 + 1523: -8,0 + 1526: -5,-1 + 1529: -2,-2 + 1531: 2,-2 + 1534: 5,-1 + 1540: -1,24 + 1548: -1,25 + 1556: -1,26 + 1569: 0,24 + 1577: 0,25 + 1592: 1,24 + 1600: 1,25 + 1608: 1,26 + 1618: 8,0 + 1628: -8,0 + 1631: -5,-1 + 1634: -2,-2 + 1636: 2,-2 + 1639: 5,-1 + 1645: -1,24 + 1653: -1,25 + 1661: -1,26 + 1674: 0,24 + 1682: 0,25 + 1697: 1,24 + 1705: 1,25 + 1713: 1,26 + 1752: 8,0 + 1762: -8,0 + 1769: -5,-1 + 1772: -2,-2 + 1774: 2,-2 + 1777: 5,-1 + 1790: -1,24 + 1798: -1,25 + 1809: 0,24 + 1817: 0,25 + 1828: 1,24 + 1836: 1,25 + 1852: -1,26 1860: 1,26 - 1875: -5,31 - 1881: 5,31 - 1889: 6,9 - 1893: 8,0 - 1903: -8,0 - 1908: -6,9 - 1911: -5,-1 - 1914: -2,-2 - 1916: 2,-2 - 1919: 5,-1 - 1925: -5,31 - 1930: -1,24 - 1938: -1,25 - 1946: -1,26 - 1961: 0,24 - 1969: 0,25 - 1986: 1,24 - 1994: 1,25 - 2002: 1,26 - 2015: 5,31 - 2055: 6,9 - 2059: 8,0 - 2069: -8,0 - 2074: -6,9 - 2081: -5,-1 - 2084: -2,-2 - 2086: 2,-2 - 2089: 5,-1 - 2095: -5,31 - 2107: -1,24 - 2115: -1,25 - 2128: 0,24 - 2136: 0,25 - 2149: 1,24 - 2157: 1,25 - 2173: 5,31 - 2186: -1,26 - 2194: 1,26 - 2207: 0,26 - 2218: 6,9 - 2222: 8,0 - 2232: -8,0 - 2237: -6,9 - 2244: -5,-1 - 2247: -2,-2 - 2249: 2,-2 - 2252: 5,-1 - 2265: -1,24 - 2273: -1,25 - 2281: -1,26 - 2294: 0,24 - 2302: 0,25 - 2310: 0,26 - 2328: 1,24 - 2336: 1,25 - 2344: 1,26 - 2371: -5,31 - 2379: -5,32 - 2387: 5,31 - 2393: 5,32 - 2403: 6,9 + 1873: 0,26 + 1883: 8,0 + 1893: -8,0 + 1900: -5,-1 + 1903: -2,-2 + 1905: 2,-2 + 1908: 5,-1 + 1921: -1,24 + 1929: -1,25 + 1937: -1,26 + 1948: 0,24 + 1956: 0,25 + 1964: 0,26 + 1980: 1,24 + 1988: 1,25 + 1996: 1,26 + 2014: 8,0 + 2024: -8,0 + 2031: -5,-1 + 2034: -2,-2 + 2036: 2,-2 + 2039: 5,-1 + 2052: -1,24 + 2060: -1,25 + 2068: -1,26 + 2079: 0,24 + 2087: 0,25 + 2095: 0,26 + 2111: 1,24 + 2119: 1,25 + 2127: 1,26 + 2145: 8,0 + 2155: -8,0 + 2162: -5,-1 + 2165: -2,-2 + 2167: 2,-2 + 2170: 5,-1 + 2183: -1,24 + 2191: -1,25 + 2199: -1,26 + 2210: 0,24 + 2218: 0,25 + 2226: 0,26 + 2242: 1,24 + 2250: 1,25 + 2258: 1,26 + 2276: 8,0 + 2286: -8,0 + 2293: -5,-1 + 2296: -2,-2 + 2298: 2,-2 + 2301: 5,-1 + 2314: -1,24 + 2322: -1,25 + 2330: -1,26 + 2341: 0,24 + 2349: 0,25 + 2357: 0,26 + 2373: 1,24 + 2381: 1,25 + 2389: 1,26 2407: 8,0 2417: -8,0 - 2422: -6,9 - 2429: -5,-1 - 2432: -2,-2 - 2434: 2,-2 - 2437: 5,-1 - 2446: -5,31 - 2461: -1,24 - 2469: -1,25 - 2477: -1,26 - 2490: 0,24 - 2498: 0,25 - 2506: 0,26 - 2524: 1,24 - 2532: 1,25 - 2540: 1,26 - 2558: 5,31 - 2567: 5,32 - 2577: -5,32 - 2588: 6,9 - 2592: 8,0 - 2602: -8,0 - 2607: -6,9 - 2614: -5,-1 - 2617: -2,-2 - 2619: 2,-2 - 2622: 5,-1 - 2631: -5,31 - 2646: -1,24 - 2654: -1,25 - 2662: -1,26 - 2675: 0,24 - 2683: 0,25 - 2691: 0,26 - 2709: 1,24 - 2717: 1,25 - 2725: 1,26 - 2743: 5,31 - 2752: 5,32 - 2762: -5,32 - 2773: 6,9 - 2777: 8,0 - 2787: -8,0 - 2792: -6,9 - 2799: -5,-1 - 2802: -2,-2 - 2804: 2,-2 - 2807: 5,-1 - 2816: -5,31 - 2831: -1,24 - 2839: -1,25 - 2847: -1,26 - 2860: 0,24 - 2868: 0,25 - 2876: 0,26 - 2894: 1,24 - 2902: 1,25 - 2910: 1,26 - 2928: 5,31 - 2937: 5,32 - 2947: -5,32 + 2424: -5,-1 + 2427: -2,-2 + 2429: 2,-2 + 2432: 5,-1 + 2445: -1,24 + 2453: -1,25 + 2461: -1,26 + 2472: 0,24 + 2480: 0,25 + 2488: 0,26 + 2504: 1,24 + 2512: 1,25 + 2520: 1,26 + 2538: 8,0 + 2548: -8,0 + 2555: -5,-1 + 2558: -2,-2 + 2560: 2,-2 + 2563: 5,-1 + 2576: -1,24 + 2584: -1,25 + 2592: -1,26 + 2603: 0,24 + 2611: 0,25 + 2619: 0,26 + 2635: 1,24 + 2643: 1,25 + 2651: 1,26 + 2734: 8,0 + 2744: -8,0 + 2751: -5,-1 + 2754: -2,-2 + 2756: 2,-2 + 2759: 5,-1 + 2772: -1,24 + 2780: -1,25 + 2788: -1,26 + 2799: 0,24 + 2807: 0,25 + 2815: 0,26 + 2831: 1,24 + 2839: 1,25 + 2847: 1,26 + 2865: 8,0 + 2875: -8,0 + 2882: -5,-1 + 2885: -2,-2 + 2887: 2,-2 + 2890: 5,-1 + 2903: -1,24 + 2911: -1,25 + 2919: -1,26 + 2930: 0,24 + 2938: 0,25 + 2946: 0,26 + 2962: 1,24 + 2970: 1,25 + 2978: 1,26 + 2996: 8,0 + 3006: -8,0 + 3013: -5,-1 + 3016: -2,-2 + 3018: 2,-2 + 3021: 5,-1 + 3034: -1,24 + 3042: -1,25 + 3050: -1,26 + 3061: 0,24 + 3069: 0,25 + 3077: 0,26 + 3093: 1,24 + 3101: 1,25 + 3109: 1,26 + 3127: 8,0 + 3137: -8,0 + 3144: -5,-1 + 3147: -2,-2 + 3149: 2,-2 + 3152: 5,-1 + 3165: -1,24 + 3173: -1,25 + 3181: -1,26 + 3192: 0,24 + 3200: 0,25 + 3208: 0,26 + 3224: 1,24 + 3232: 1,25 + 3240: 1,26 - node: id: LatticeEdgeS decals: - 327: 8,8 - 339: -8,8 - 363: 0,24 - 371: 7,19 - 374: -7,19 - 383: 6,9 - 388: 6,10 - 396: -6,9 - 401: -6,10 - 406: -1,26 - 414: -1,27 - 417: 1,26 - 425: 1,27 - 428: 0,26 - 433: 0,25 - 441: 6,9 - 446: 6,10 - 454: 8,8 - 466: -8,8 - 469: -6,9 - 474: -6,10 - 485: -7,19 - 488: -1,26 - 496: -1,27 - 499: 0,24 - 507: 0,25 - 515: 0,26 - 520: 1,26 - 528: 1,27 - 531: 7,19 - 557: -5,32 - 560: 5,32 - 620: 8,8 - 632: -8,8 - 647: -1,27 - 658: 1,27 - 665: 5,32 - 668: -5,32 - 697: 1,26 - 705: -1,26 - 713: 0,25 - 721: 0,24 - 729: 0,26 - 745: -6,9 - 750: 6,9 - 797: 6,9 - 802: 8,8 - 805: -8,8 - 808: -6,9 - 825: -1,26 - 833: -1,27 - 840: 0,24 - 848: 0,25 - 856: 0,26 - 865: 1,26 - 873: 1,27 - 880: 5,32 - 883: -5,32 - 896: 6,9 - 907: -6,9 - 924: -1,26 - 932: -1,27 - 939: 0,24 - 947: 0,25 - 955: 0,26 - 964: 1,26 - 972: 1,27 - 979: 5,32 - 982: -5,32 - 1009: -9,7 - 1012: 9,7 - 1023: 6,9 - 1031: 9,7 - 1034: -9,7 - 1040: -6,9 - 1057: -1,27 - 1068: 1,27 - 1119: -5,32 - 1122: 5,32 - 1174: 1,26 - 1182: -1,26 - 1190: 0,26 - 1195: -1,24 - 1203: -1,25 - 1211: 1,24 - 1219: 1,25 - 1227: 0,24 - 1235: 0,25 - 1243: 6,9 - 1251: 9,7 - 1254: -9,7 - 1260: -6,9 - 1277: -1,24 - 1285: -1,25 - 1293: -1,26 - 1301: -1,27 - 1308: 0,24 - 1316: 0,25 - 1324: 0,26 - 1333: 1,24 - 1341: 1,25 - 1349: 1,26 - 1357: 1,27 - 1364: 5,32 - 1367: -5,32 - 1370: 6,9 - 1378: 9,7 - 1381: -9,7 - 1387: -6,9 - 1404: -1,24 - 1412: -1,25 - 1420: -1,26 - 1428: -1,27 - 1435: 0,24 - 1443: 0,25 - 1451: 0,26 - 1460: 1,24 - 1468: 1,25 - 1476: 1,26 - 1484: 1,27 - 1491: 5,32 - 1494: -5,32 - 1497: 6,9 - 1505: 9,7 - 1508: -9,7 - 1514: -6,9 - 1531: -1,24 - 1539: -1,25 - 1547: -1,26 - 1555: -1,27 - 1562: 0,24 - 1570: 0,25 - 1578: 0,26 - 1587: 1,24 - 1595: 1,25 - 1603: 1,26 - 1611: 1,27 - 1618: 5,32 - 1621: -5,32 - 1624: 6,9 - 1632: 9,7 - 1635: -9,7 - 1641: -6,9 - 1658: -1,24 - 1666: -1,25 - 1674: -1,26 - 1682: -1,27 - 1689: 0,24 - 1697: 0,25 - 1705: 0,26 - 1714: 1,24 - 1722: 1,25 - 1730: 1,26 - 1738: 1,27 - 1745: 5,32 - 1748: -5,32 - 1751: 6,9 - 1759: 9,7 - 1762: -9,7 - 1768: -6,9 - 1785: -1,24 - 1793: -1,25 - 1801: -1,26 - 1809: -1,27 - 1816: 0,24 - 1824: 0,25 - 1832: 0,26 - 1841: 1,24 - 1849: 1,25 + 320: 8,8 + 332: -8,8 + 350: 0,24 + 358: 7,19 + 361: -7,19 + 370: 6,10 + 378: -6,10 + 383: -1,26 + 391: -1,27 + 394: 1,26 + 402: 1,27 + 405: 0,26 + 410: 0,25 + 418: 6,10 + 426: 8,8 + 438: -8,8 + 441: -6,10 + 452: -7,19 + 455: -1,26 + 463: -1,27 + 466: 0,24 + 474: 0,25 + 482: 0,26 + 487: 1,26 + 495: 1,27 + 498: 7,19 + 569: 8,8 + 581: -8,8 + 596: -1,27 + 603: 1,27 + 634: 1,26 + 642: -1,26 + 650: 0,25 + 658: 0,24 + 666: 0,26 + 722: 8,8 + 725: -8,8 + 740: -1,26 + 748: -1,27 + 753: 0,24 + 761: 0,25 + 769: 0,26 + 776: 1,26 + 784: 1,27 + 817: -1,26 + 825: -1,27 + 830: 0,24 + 838: 0,25 + 846: 0,26 + 853: 1,26 + 861: 1,27 + 890: -9,7 + 893: 9,7 + 904: 9,7 + 907: -9,7 + 925: -1,27 + 932: 1,27 + 1024: 1,26 + 1032: -1,26 + 1040: 0,26 + 1045: -1,24 + 1053: -1,25 + 1061: 1,24 + 1069: 1,25 + 1077: 0,24 + 1085: 0,25 + 1096: 9,7 + 1099: -9,7 + 1117: -1,24 + 1125: -1,25 + 1133: -1,26 + 1141: -1,27 + 1146: 0,24 + 1154: 0,25 + 1162: 0,26 + 1169: 1,24 + 1177: 1,25 + 1185: 1,26 + 1193: 1,27 + 1201: 9,7 + 1204: -9,7 + 1222: -1,24 + 1230: -1,25 + 1238: -1,26 + 1246: -1,27 + 1251: 0,24 + 1259: 0,25 + 1267: 0,26 + 1274: 1,24 + 1282: 1,25 + 1290: 1,26 + 1298: 1,27 + 1306: 9,7 + 1309: -9,7 + 1327: -1,24 + 1335: -1,25 + 1343: -1,26 + 1351: -1,27 + 1356: 0,24 + 1364: 0,25 + 1372: 0,26 + 1379: 1,24 + 1387: 1,25 + 1395: 1,26 + 1403: 1,27 + 1411: 9,7 + 1414: -9,7 + 1432: -1,24 + 1440: -1,25 + 1448: -1,26 + 1456: -1,27 + 1461: 0,24 + 1469: 0,25 + 1477: 0,26 + 1484: 1,24 + 1492: 1,25 + 1500: 1,26 + 1508: 1,27 + 1516: 9,7 + 1519: -9,7 + 1537: -1,24 + 1545: -1,25 + 1553: -1,26 + 1561: -1,27 + 1566: 0,24 + 1574: 0,25 + 1582: 0,26 + 1589: 1,24 + 1597: 1,25 + 1605: 1,26 + 1613: 1,27 + 1621: 9,7 + 1624: -9,7 + 1642: -1,24 + 1650: -1,25 + 1658: -1,26 + 1666: -1,27 + 1671: 0,24 + 1679: 0,25 + 1687: 0,26 + 1694: 1,24 + 1702: 1,25 + 1710: 1,26 + 1718: 1,27 + 1755: 9,7 + 1758: -9,7 + 1787: -1,24 + 1795: -1,25 + 1806: 0,24 + 1814: 0,25 + 1825: 1,24 + 1833: 1,25 + 1849: -1,26 1857: 1,26 - 1865: 1,27 - 1872: -5,31 - 1877: -5,32 - 1880: 5,31 - 1885: 5,32 - 1888: 6,9 - 1896: 9,7 - 1899: -9,7 - 1905: -6,9 - 1922: -5,31 - 1927: -1,24 - 1935: -1,25 - 1943: -1,26 - 1951: -1,27 - 1958: 0,24 - 1966: 0,25 - 1974: 0,26 - 1983: 1,24 - 1991: 1,25 - 1999: 1,26 - 2007: 1,27 - 2014: 5,31 - 2019: 5,32 - 2022: -5,32 - 2054: 6,9 - 2062: 9,7 - 2065: -9,7 - 2071: -6,9 - 2092: -5,31 - 2104: -1,24 - 2112: -1,25 - 2125: 0,24 - 2133: 0,25 - 2146: 1,24 - 2154: 1,25 - 2172: 5,31 - 2177: 5,32 - 2180: -5,32 - 2183: -1,26 - 2191: 1,26 - 2199: 0,27 - 2204: 0,26 - 2217: 6,9 - 2225: 9,7 - 2228: -9,7 - 2234: -6,9 - 2262: -1,24 - 2270: -1,25 - 2278: -1,26 - 2291: 0,24 - 2299: 0,25 - 2307: 0,26 - 2315: 0,27 - 2325: 1,24 - 2333: 1,25 - 2341: 1,26 - 2359: -5,33 - 2362: 5,33 - 2365: -6,31 - 2368: -5,31 - 2376: -5,32 - 2381: 6,31 - 2384: 5,31 - 2392: 5,32 - 2402: 6,9 + 1865: 0,27 + 1870: 0,26 + 1886: 9,7 + 1889: -9,7 + 1918: -1,24 + 1926: -1,25 + 1934: -1,26 + 1945: 0,24 + 1953: 0,25 + 1961: 0,26 + 1969: 0,27 + 1977: 1,24 + 1985: 1,25 + 1993: 1,26 + 2017: 9,7 + 2020: -9,7 + 2049: -1,24 + 2057: -1,25 + 2065: -1,26 + 2076: 0,24 + 2084: 0,25 + 2092: 0,26 + 2100: 0,27 + 2108: 1,24 + 2116: 1,25 + 2124: 1,26 + 2148: 9,7 + 2151: -9,7 + 2180: -1,24 + 2188: -1,25 + 2196: -1,26 + 2207: 0,24 + 2215: 0,25 + 2223: 0,26 + 2231: 0,27 + 2239: 1,24 + 2247: 1,25 + 2255: 1,26 + 2279: 9,7 + 2282: -9,7 + 2311: -1,24 + 2319: -1,25 + 2327: -1,26 + 2338: 0,24 + 2346: 0,25 + 2354: 0,26 + 2362: 0,27 + 2370: 1,24 + 2378: 1,25 + 2386: 1,26 2410: 9,7 2413: -9,7 - 2419: -6,9 - 2440: -6,31 - 2443: -5,31 - 2458: -1,24 - 2466: -1,25 - 2474: -1,26 - 2487: 0,24 - 2495: 0,25 - 2503: 0,26 - 2511: 0,27 - 2521: 1,24 - 2529: 1,25 - 2537: 1,26 - 2555: 5,31 - 2563: 6,31 - 2566: 5,32 - 2571: 5,33 - 2574: -5,32 - 2579: -5,33 - 2587: 6,9 - 2595: 9,7 - 2598: -9,7 - 2604: -6,9 - 2625: -6,31 - 2628: -5,31 - 2643: -1,24 - 2651: -1,25 - 2659: -1,26 - 2672: 0,24 - 2680: 0,25 - 2688: 0,26 - 2696: 0,27 - 2706: 1,24 - 2714: 1,25 - 2722: 1,26 - 2740: 5,31 - 2748: 6,31 - 2751: 5,32 - 2756: 5,33 - 2759: -5,32 - 2764: -5,33 - 2772: 6,9 - 2780: 9,7 - 2783: -9,7 - 2789: -6,9 - 2810: -6,31 - 2813: -5,31 - 2828: -1,24 - 2836: -1,25 - 2844: -1,26 - 2857: 0,24 - 2865: 0,25 - 2873: 0,26 - 2881: 0,27 - 2891: 1,24 - 2899: 1,25 - 2907: 1,26 - 2925: 5,31 - 2933: 6,31 - 2936: 5,32 - 2941: 5,33 - 2944: -5,32 - 2949: -5,33 + 2442: -1,24 + 2450: -1,25 + 2458: -1,26 + 2469: 0,24 + 2477: 0,25 + 2485: 0,26 + 2493: 0,27 + 2501: 1,24 + 2509: 1,25 + 2517: 1,26 + 2541: 9,7 + 2544: -9,7 + 2573: -1,24 + 2581: -1,25 + 2589: -1,26 + 2600: 0,24 + 2608: 0,25 + 2616: 0,26 + 2624: 0,27 + 2632: 1,24 + 2640: 1,25 + 2648: 1,26 + 2737: 9,7 + 2740: -9,7 + 2769: -1,24 + 2777: -1,25 + 2785: -1,26 + 2796: 0,24 + 2804: 0,25 + 2812: 0,26 + 2820: 0,27 + 2828: 1,24 + 2836: 1,25 + 2844: 1,26 + 2868: 9,7 + 2871: -9,7 + 2900: -1,24 + 2908: -1,25 + 2916: -1,26 + 2927: 0,24 + 2935: 0,25 + 2943: 0,26 + 2951: 0,27 + 2959: 1,24 + 2967: 1,25 + 2975: 1,26 + 2999: 9,7 + 3002: -9,7 + 3031: -1,24 + 3039: -1,25 + 3047: -1,26 + 3058: 0,24 + 3066: 0,25 + 3074: 0,26 + 3082: 0,27 + 3090: 1,24 + 3098: 1,25 + 3106: 1,26 + 3130: 9,7 + 3133: -9,7 + 3162: -1,24 + 3170: -1,25 + 3178: -1,26 + 3189: 0,24 + 3197: 0,25 + 3205: 0,26 + 3213: 0,27 + 3221: 1,24 + 3229: 1,25 + 3237: 1,26 - node: id: LatticeEdgeW decals: - 325: 8,0 - 328: 8,8 - 331: 9,2 - 346: 5,-1 - 349: -1,29 - 351: -1,31 - 353: 0,29 - 355: 0,31 - 357: 1,29 - 359: 1,31 - 361: 7,13 - 368: 0,24 - 372: 7,19 - 381: 2,-2 - 385: 6,9 - 390: 6,10 - 411: -1,26 - 415: -1,27 - 422: 1,26 - 431: 0,26 - 438: 0,25 - 443: 6,9 - 448: 6,10 - 452: 8,0 - 455: 8,8 - 458: 9,2 - 483: 5,-1 - 493: -1,26 - 497: -1,27 - 504: 0,24 - 512: 0,25 - 518: 0,26 - 525: 1,26 - 532: 7,19 - 542: 0,31 - 544: 0,29 - 546: -1,29 - 548: 1,29 - 550: -1,31 - 552: 1,31 - 561: 5,32 - 594: 7,13 - 615: 2,-2 - 618: 8,0 - 621: 8,8 - 624: 9,2 - 642: 2,-2 - 645: 5,-1 - 648: -1,27 - 651: -1,29 - 653: -1,31 - 655: 0,29 - 657: 0,31 - 662: 1,29 - 664: 1,31 - 666: 5,32 - 702: 1,26 - 710: -1,26 - 718: 0,25 - 726: 0,24 - 732: 0,26 - 752: 6,9 - 799: 6,9 - 803: 8,8 - 820: 2,-2 - 823: 5,-1 - 830: -1,26 - 834: -1,27 - 837: -1,29 - 839: -1,31 - 845: 0,24 - 853: 0,25 - 859: 0,26 - 862: 0,29 - 864: 0,31 - 870: 1,26 - 877: 1,29 - 879: 1,31 - 881: 5,32 - 890: 8,0 - 898: 6,9 + 318: 8,0 + 321: 8,8 + 324: 9,2 + 339: 5,-1 + 342: -1,31 + 344: 0,31 + 346: 1,31 + 348: 7,13 + 355: 0,24 + 359: 7,19 + 368: 2,-2 + 372: 6,10 + 388: -1,26 + 392: -1,27 + 399: 1,26 + 408: 0,26 + 415: 0,25 + 420: 6,10 + 424: 8,0 + 427: 8,8 + 430: 9,2 + 450: 5,-1 + 460: -1,26 + 464: -1,27 + 471: 0,24 + 479: 0,25 + 485: 0,26 + 492: 1,26 + 499: 7,19 + 506: 0,31 + 508: -1,31 + 510: 1,31 + 543: 7,13 + 564: 2,-2 + 567: 8,0 + 570: 8,8 + 573: 9,2 + 591: 2,-2 + 594: 5,-1 + 597: -1,27 + 600: -1,31 + 602: 0,31 + 607: 1,31 + 639: 1,26 + 647: -1,26 + 655: 0,25 + 663: 0,24 + 669: 0,26 + 723: 8,8 + 735: 2,-2 + 738: 5,-1 + 745: -1,26 + 749: -1,27 + 752: -1,31 + 758: 0,24 + 766: 0,25 + 772: 0,26 + 775: 0,31 + 781: 1,26 + 788: 1,31 + 793: 8,0 + 800: 8,0 + 812: 2,-2 + 815: 5,-1 + 822: -1,26 + 826: -1,27 + 829: -1,31 + 835: 0,24 + 843: 0,25 + 849: 0,26 + 852: 0,31 + 858: 1,26 + 865: 1,31 + 894: 9,7 902: 8,0 - 919: 2,-2 - 922: 5,-1 - 929: -1,26 - 933: -1,27 - 936: -1,29 - 938: -1,31 - 944: 0,24 - 952: 0,25 - 958: 0,26 - 961: 0,29 - 963: 0,31 - 969: 1,26 - 976: 1,29 - 978: 1,31 - 980: 5,32 - 1013: 9,7 - 1025: 6,9 - 1029: 8,0 - 1032: 9,7 - 1052: 2,-2 - 1055: 5,-1 - 1058: -1,27 - 1061: -1,29 - 1063: -1,31 - 1065: 0,29 - 1067: 0,31 - 1072: 1,29 - 1074: 1,31 - 1123: 5,32 - 1179: 1,26 - 1187: -1,26 - 1193: 0,26 - 1200: -1,24 - 1208: -1,25 - 1216: 1,24 - 1224: 1,25 - 1232: 0,24 - 1240: 0,25 - 1245: 6,9 - 1249: 8,0 - 1252: 9,7 - 1272: 2,-2 - 1275: 5,-1 - 1282: -1,24 - 1290: -1,25 - 1298: -1,26 - 1302: -1,27 - 1305: -1,29 - 1307: -1,31 - 1313: 0,24 - 1321: 0,25 - 1327: 0,26 - 1330: 0,29 - 1332: 0,31 - 1338: 1,24 - 1346: 1,25 - 1354: 1,26 - 1361: 1,29 - 1363: 1,31 - 1365: 5,32 - 1372: 6,9 - 1376: 8,0 - 1379: 9,7 - 1399: 2,-2 - 1402: 5,-1 - 1409: -1,24 - 1417: -1,25 - 1425: -1,26 - 1429: -1,27 - 1432: -1,29 - 1434: -1,31 - 1440: 0,24 - 1448: 0,25 - 1454: 0,26 - 1457: 0,29 - 1459: 0,31 - 1465: 1,24 - 1473: 1,25 - 1481: 1,26 - 1488: 1,29 - 1490: 1,31 - 1492: 5,32 - 1499: 6,9 - 1503: 8,0 - 1506: 9,7 - 1526: 2,-2 - 1529: 5,-1 - 1536: -1,24 - 1544: -1,25 - 1552: -1,26 - 1556: -1,27 - 1559: -1,29 - 1561: -1,31 - 1567: 0,24 - 1575: 0,25 - 1581: 0,26 - 1584: 0,29 - 1586: 0,31 - 1592: 1,24 - 1600: 1,25 - 1608: 1,26 - 1615: 1,29 + 905: 9,7 + 920: 2,-2 + 923: 5,-1 + 926: -1,27 + 929: -1,31 + 931: 0,31 + 936: 1,31 + 1029: 1,26 + 1037: -1,26 + 1043: 0,26 + 1050: -1,24 + 1058: -1,25 + 1066: 1,24 + 1074: 1,25 + 1082: 0,24 + 1090: 0,25 + 1094: 8,0 + 1097: 9,7 + 1112: 2,-2 + 1115: 5,-1 + 1122: -1,24 + 1130: -1,25 + 1138: -1,26 + 1142: -1,27 + 1145: -1,31 + 1151: 0,24 + 1159: 0,25 + 1165: 0,26 + 1168: 0,31 + 1174: 1,24 + 1182: 1,25 + 1190: 1,26 + 1197: 1,31 + 1199: 8,0 + 1202: 9,7 + 1217: 2,-2 + 1220: 5,-1 + 1227: -1,24 + 1235: -1,25 + 1243: -1,26 + 1247: -1,27 + 1250: -1,31 + 1256: 0,24 + 1264: 0,25 + 1270: 0,26 + 1273: 0,31 + 1279: 1,24 + 1287: 1,25 + 1295: 1,26 + 1302: 1,31 + 1304: 8,0 + 1307: 9,7 + 1322: 2,-2 + 1325: 5,-1 + 1332: -1,24 + 1340: -1,25 + 1348: -1,26 + 1352: -1,27 + 1355: -1,31 + 1361: 0,24 + 1369: 0,25 + 1375: 0,26 + 1378: 0,31 + 1384: 1,24 + 1392: 1,25 + 1400: 1,26 + 1407: 1,31 + 1409: 8,0 + 1412: 9,7 + 1427: 2,-2 + 1430: 5,-1 + 1437: -1,24 + 1445: -1,25 + 1453: -1,26 + 1457: -1,27 + 1460: -1,31 + 1466: 0,24 + 1474: 0,25 + 1480: 0,26 + 1483: 0,31 + 1489: 1,24 + 1497: 1,25 + 1505: 1,26 + 1512: 1,31 + 1514: 8,0 + 1517: 9,7 + 1532: 2,-2 + 1535: 5,-1 + 1542: -1,24 + 1550: -1,25 + 1558: -1,26 + 1562: -1,27 + 1565: -1,31 + 1571: 0,24 + 1579: 0,25 + 1585: 0,26 + 1588: 0,31 + 1594: 1,24 + 1602: 1,25 + 1610: 1,26 1617: 1,31 - 1619: 5,32 - 1626: 6,9 - 1630: 8,0 - 1633: 9,7 - 1653: 2,-2 - 1656: 5,-1 - 1663: -1,24 - 1671: -1,25 - 1679: -1,26 - 1683: -1,27 - 1686: -1,29 - 1688: -1,31 - 1694: 0,24 - 1702: 0,25 - 1708: 0,26 - 1711: 0,29 - 1713: 0,31 - 1719: 1,24 - 1727: 1,25 - 1735: 1,26 - 1742: 1,29 - 1744: 1,31 - 1746: 5,32 - 1753: 6,9 - 1757: 8,0 - 1760: 9,7 - 1780: 2,-2 - 1783: 5,-1 - 1790: -1,24 - 1798: -1,25 - 1806: -1,26 - 1810: -1,27 - 1813: -1,29 - 1815: -1,31 - 1821: 0,24 - 1829: 0,25 - 1835: 0,26 - 1838: 0,29 - 1840: 0,31 - 1846: 1,24 - 1854: 1,25 + 1619: 8,0 + 1622: 9,7 + 1637: 2,-2 + 1640: 5,-1 + 1647: -1,24 + 1655: -1,25 + 1663: -1,26 + 1667: -1,27 + 1670: -1,31 + 1676: 0,24 + 1684: 0,25 + 1690: 0,26 + 1693: 0,31 + 1699: 1,24 + 1707: 1,25 + 1715: 1,26 + 1722: 1,31 + 1753: 8,0 + 1756: 9,7 + 1775: 2,-2 + 1778: 5,-1 + 1792: -1,24 + 1800: -1,25 + 1804: -1,31 + 1811: 0,24 + 1819: 0,25 + 1823: 0,31 + 1830: 1,24 + 1838: 1,25 + 1842: 1,31 + 1854: -1,26 1862: 1,26 - 1869: 1,29 - 1871: 1,31 - 1882: 5,31 - 1886: 5,32 - 1890: 6,9 - 1894: 8,0 - 1897: 9,7 - 1917: 2,-2 - 1920: 5,-1 - 1932: -1,24 - 1940: -1,25 - 1948: -1,26 - 1952: -1,27 - 1955: -1,29 - 1957: -1,31 - 1963: 0,24 - 1971: 0,25 - 1977: 0,26 - 1980: 0,29 - 1982: 0,31 - 1988: 1,24 - 1996: 1,25 - 2004: 1,26 - 2011: 1,29 - 2013: 1,31 - 2016: 5,31 - 2020: 5,32 - 2056: 6,9 - 2060: 8,0 - 2063: 9,7 - 2087: 2,-2 - 2090: 5,-1 - 2109: -1,24 - 2117: -1,25 - 2121: -1,29 - 2123: -1,31 - 2130: 0,24 - 2138: 0,25 - 2142: 0,29 - 2144: 0,31 - 2151: 1,24 - 2159: 1,25 - 2163: 1,29 - 2165: 1,31 - 2174: 5,31 - 2178: 5,32 - 2188: -1,26 - 2196: 1,26 - 2202: 0,27 - 2209: 0,26 - 2219: 6,9 - 2223: 8,0 - 2226: 9,7 - 2250: 2,-2 - 2253: 5,-1 - 2267: -1,24 - 2275: -1,25 - 2283: -1,26 - 2287: -1,29 - 2289: -1,31 - 2296: 0,24 - 2304: 0,25 - 2312: 0,26 - 2318: 0,27 - 2321: 0,29 - 2323: 0,31 - 2330: 1,24 - 2338: 1,25 - 2346: 1,26 - 2350: 1,29 - 2352: 1,31 - 2363: 5,33 - 2373: -5,31 - 2382: 6,31 - 2389: 5,31 - 2394: 5,32 - 2404: 6,9 + 1868: 0,27 + 1875: 0,26 + 1884: 8,0 + 1887: 9,7 + 1906: 2,-2 + 1909: 5,-1 + 1923: -1,24 + 1931: -1,25 + 1939: -1,26 + 1943: -1,31 + 1950: 0,24 + 1958: 0,25 + 1966: 0,26 + 1972: 0,27 + 1975: 0,31 + 1982: 1,24 + 1990: 1,25 + 1998: 1,26 + 2002: 1,31 + 2015: 8,0 + 2018: 9,7 + 2037: 2,-2 + 2040: 5,-1 + 2054: -1,24 + 2062: -1,25 + 2070: -1,26 + 2074: -1,31 + 2081: 0,24 + 2089: 0,25 + 2097: 0,26 + 2103: 0,27 + 2106: 0,31 + 2113: 1,24 + 2121: 1,25 + 2129: 1,26 + 2133: 1,31 + 2146: 8,0 + 2149: 9,7 + 2168: 2,-2 + 2171: 5,-1 + 2185: -1,24 + 2193: -1,25 + 2201: -1,26 + 2205: -1,31 + 2212: 0,24 + 2220: 0,25 + 2228: 0,26 + 2234: 0,27 + 2237: 0,31 + 2244: 1,24 + 2252: 1,25 + 2260: 1,26 + 2264: 1,31 + 2277: 8,0 + 2280: 9,7 + 2299: 2,-2 + 2302: 5,-1 + 2316: -1,24 + 2324: -1,25 + 2332: -1,26 + 2336: -1,31 + 2343: 0,24 + 2351: 0,25 + 2359: 0,26 + 2365: 0,27 + 2368: 0,31 + 2375: 1,24 + 2383: 1,25 + 2391: 1,26 + 2395: 1,31 2408: 8,0 2411: 9,7 - 2435: 2,-2 - 2438: 5,-1 - 2448: -5,31 - 2463: -1,24 - 2471: -1,25 - 2479: -1,26 - 2483: -1,29 - 2485: -1,31 - 2492: 0,24 - 2500: 0,25 - 2508: 0,26 - 2514: 0,27 - 2517: 0,29 - 2519: 0,31 - 2526: 1,24 - 2534: 1,25 - 2542: 1,26 - 2546: 1,29 - 2548: 1,31 - 2560: 5,31 - 2564: 6,31 - 2568: 5,32 - 2572: 5,33 - 2589: 6,9 - 2593: 8,0 - 2596: 9,7 - 2620: 2,-2 - 2623: 5,-1 - 2633: -5,31 - 2648: -1,24 - 2656: -1,25 - 2664: -1,26 - 2668: -1,29 - 2670: -1,31 - 2677: 0,24 - 2685: 0,25 - 2693: 0,26 - 2699: 0,27 - 2702: 0,29 - 2704: 0,31 - 2711: 1,24 - 2719: 1,25 - 2727: 1,26 - 2731: 1,29 - 2733: 1,31 - 2745: 5,31 - 2749: 6,31 - 2753: 5,32 - 2757: 5,33 - 2774: 6,9 - 2778: 8,0 - 2781: 9,7 - 2805: 2,-2 - 2808: 5,-1 - 2818: -5,31 - 2833: -1,24 - 2841: -1,25 - 2849: -1,26 - 2853: -1,29 - 2855: -1,31 - 2862: 0,24 - 2870: 0,25 - 2878: 0,26 - 2884: 0,27 - 2887: 0,29 - 2889: 0,31 - 2896: 1,24 - 2904: 1,25 - 2912: 1,26 - 2916: 1,29 - 2918: 1,31 - 2930: 5,31 - 2934: 6,31 - 2938: 5,32 - 2942: 5,33 + 2430: 2,-2 + 2433: 5,-1 + 2447: -1,24 + 2455: -1,25 + 2463: -1,26 + 2467: -1,31 + 2474: 0,24 + 2482: 0,25 + 2490: 0,26 + 2496: 0,27 + 2499: 0,31 + 2506: 1,24 + 2514: 1,25 + 2522: 1,26 + 2526: 1,31 + 2539: 8,0 + 2542: 9,7 + 2561: 2,-2 + 2564: 5,-1 + 2578: -1,24 + 2586: -1,25 + 2594: -1,26 + 2598: -1,31 + 2605: 0,24 + 2613: 0,25 + 2621: 0,26 + 2627: 0,27 + 2630: 0,31 + 2637: 1,24 + 2645: 1,25 + 2653: 1,26 + 2657: 1,31 + 2735: 8,0 + 2738: 9,7 + 2757: 2,-2 + 2760: 5,-1 + 2774: -1,24 + 2782: -1,25 + 2790: -1,26 + 2794: -1,31 + 2801: 0,24 + 2809: 0,25 + 2817: 0,26 + 2823: 0,27 + 2826: 0,31 + 2833: 1,24 + 2841: 1,25 + 2849: 1,26 + 2853: 1,31 + 2866: 8,0 + 2869: 9,7 + 2888: 2,-2 + 2891: 5,-1 + 2905: -1,24 + 2913: -1,25 + 2921: -1,26 + 2925: -1,31 + 2932: 0,24 + 2940: 0,25 + 2948: 0,26 + 2954: 0,27 + 2957: 0,31 + 2964: 1,24 + 2972: 1,25 + 2980: 1,26 + 2984: 1,31 + 2997: 8,0 + 3000: 9,7 + 3019: 2,-2 + 3022: 5,-1 + 3036: -1,24 + 3044: -1,25 + 3052: -1,26 + 3056: -1,31 + 3063: 0,24 + 3071: 0,25 + 3079: 0,26 + 3085: 0,27 + 3088: 0,31 + 3095: 1,24 + 3103: 1,25 + 3111: 1,26 + 3115: 1,31 + 3128: 8,0 + 3131: 9,7 + 3150: 2,-2 + 3153: 5,-1 + 3167: -1,24 + 3175: -1,25 + 3183: -1,26 + 3187: -1,31 + 3194: 0,24 + 3202: 0,25 + 3210: 0,26 + 3216: 0,27 + 3219: 0,31 + 3226: 1,24 + 3234: 1,25 + 3242: 1,26 + 3246: 1,31 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: LoadingArea decals: - 1100: 3,13 - 1101: 3,19 + 962: 3,13 + 963: 3,19 - node: angle: 4.71238898038469 rad color: '#D381C996' id: LoadingArea decals: - 1099: -3,13 - 1102: -3,19 + 961: -3,13 + 964: -3,19 - node: angle: 3.141592653589793 rad color: '#D381C996' id: MedicalTextZeta decals: - 1103: -4,6 + 965: -4,6 + - node: + color: '#D381C996' + id: Rust + decals: + 2713: 0,22 + 2714: -3,23 + 2715: -4,24 + 2716: 4,24 + 2717: 3,22 + 2718: 3,23 + 2719: 3,2 + 2720: 4,2 + 2721: 7,3 + 2722: -4,3 + 2723: -7,5 + 2724: -7,6 + 2725: -4,6 + 2726: 1,6 + 2727: 3,9 + 2728: -3,9 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 2664: -1,9 + 2665: 0,13 + 2666: -1,13 + 2667: -5,15 + 2668: -5,17 + 2669: -4,17 + 2670: -4,18 + 2671: -5,19 + 2672: 5,19 + 2673: 4,18 + 2674: 4,19 + 2675: 5,15 + 2676: 5,13 + 2677: 4,14 + 2678: 1,4 + 2679: -1,5 + 2680: -4,5 + 2681: 7,5 + 2682: 6,5 + 2683: 8,6 + 2684: -7,5 + 2685: -7,4 + 2686: -8,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: SecTextZeta decals: - 1104: 4,5 + 966: 4,5 - node: color: '#FFFFFFFF' id: TechE @@ -2847,81 +3195,81 @@ entities: 78: 1,1 79: 1,0 80: 1,-1 - 169: 3,3 - 170: 3,2 - 171: 3,1 + 166: 3,3 + 167: 3,2 + 168: 3,1 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechNE decals: - 578: -4,27 + 527: -4,27 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 583: 4,27 + 532: 4,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechS decals: - 1005: 4,23 - 1006: 4,24 - 1007: 4,25 - 1008: 4,26 - 1137: 1,21 - 1138: 1,20 + 886: 4,23 + 887: 4,24 + 888: 4,25 + 889: 4,26 + 993: 1,21 + 994: 1,20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechS decals: - 579: -3,27 - 582: 3,27 - 1153: 0,22 + 528: -3,27 + 531: 3,27 + 1003: 0,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechS decals: - 1002: -4,23 - 1003: -4,24 - 1004: -4,25 - 1139: -1,21 - 1140: -1,20 + 883: -4,23 + 884: -4,24 + 885: -4,25 + 995: -1,21 + 996: -1,20 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechS decals: - 1133: -3,22 - 1134: 3,22 + 989: -3,22 + 990: 3,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechSE decals: - 1136: 1,22 + 992: 1,22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechSE decals: - 1135: -1,22 + 991: -1,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechSE decals: - 581: -4,22 + 530: -4,22 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSE decals: - 584: 4,22 + 533: 4,22 - node: color: '#FFFFFFFF' id: TechW @@ -2929,188 +3277,166 @@ entities: 75: -1,-1 76: -1,0 77: -1,1 - 166: 5,3 - 167: 5,2 - 168: 5,1 + 163: 5,3 + 164: 5,2 + 165: 5,1 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechW decals: - 553: -4,18 - 554: -3,18 - 555: 3,18 - 556: 4,18 - 587: 1,19 - 588: 0,19 - 589: -1,19 - 590: 6,18 - 736: 5,18 - 765: -4,18 - 766: -5,18 + 511: -4,18 + 512: -3,18 + 513: 3,18 + 514: 4,18 + 536: 1,19 + 537: 0,19 + 538: -1,19 + 539: 6,18 + 673: 5,18 + 692: -4,18 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechW decals: - 592: -3,9 - 1020: -3,10 + 541: -3,9 + 898: -3,10 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechW decals: - 759: -5,14 - 760: -4,14 - 761: -3,14 - 762: 4,14 - 763: 3,14 - 764: 5,14 + 686: -5,14 + 687: -4,14 + 688: -3,14 + 689: 4,14 + 690: 3,14 + 691: 5,14 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 580: -4,26 - 591: 3,9 - 1021: 3,10 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleNE - decals: - 535: 4,33 + 529: -4,26 + 540: 3,9 + 899: 3,10 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 536: -4,33 - 540: -6,23 - 738: -7,19 - 741: -7,18 - 1015: -6,23 - 1016: -4,33 - 1079: 3,20 - 1080: 3,20 - 1083: -5,20 - 1084: -5,20 - 1143: -4,33 - 1144: -4,33 - 1145: -3,33 - 1146: -3,33 + 504: -6,23 + 675: -7,19 + 678: -7,18 + 896: -6,23 + 941: 3,20 + 942: 3,20 + 945: -5,20 + 946: -5,20 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 739: -7,13 - 742: -7,14 - 755: -6,10 - 892: -9,1 - 893: -9,2 - 1093: -5,12 - 1094: -5,12 + 676: -7,13 + 679: -7,14 + 682: -6,10 + 795: -9,1 + 796: -9,2 + 955: -5,12 + 956: -5,12 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 740: 7,13 - 743: 7,14 - 756: 6,10 - 894: 9,1 - 895: 9,2 - 1022: 9,1 - 1077: 5,12 - 1078: 5,12 - 1095: -3,12 - 1096: -3,12 + 677: 7,13 + 680: 7,14 + 683: 6,10 + 797: 9,1 + 798: 9,2 + 900: 9,1 + 939: 5,12 + 940: 5,12 + 957: -3,12 + 958: -3,12 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 539: 6,23 - 737: 7,19 - 744: 7,18 - 1017: 6,23 - 1018: 4,33 - 1081: 5,20 - 1082: 5,20 - 1085: -3,20 - 1086: -3,20 - 1141: 4,33 - 1142: 4,33 + 503: 6,23 + 674: 7,19 + 681: 7,18 + 897: 6,23 + 943: 5,20 + 944: 5,20 + 947: -3,20 + 948: -3,20 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 1075: 3,12 - 1076: 3,12 + 937: 3,12 + 938: 3,12 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnCornerSmallGreyscaleNE decals: - 1113: 5,14 - 1114: 5,14 + 975: 5,14 + 976: 5,14 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallGreyscaleNE decals: - 1115: 5,18 - 1116: 5,18 + 977: 5,18 + 978: 5,18 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallGreyscaleSW decals: - 1117: -5,14 - 1118: -5,14 + 979: -5,14 + 980: -5,14 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallNE decals: - 691: -5,15 - 696: 3,15 + 628: -5,15 + 633: 3,15 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallNW decals: - 692: -3,15 - 693: 5,15 + 629: -3,15 + 630: 5,15 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallSE decals: - 690: -5,17 - 695: 3,17 + 627: -5,17 + 632: 3,17 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallSW decals: - 689: -3,17 - 694: 5,17 - - node: - color: '#D381C996' - id: WarnEndGreyscaleN - decals: - 127: 0,0 - 128: 0,0 - 129: 0,0 - 534: 2,33 + 626: -3,17 + 631: 5,17 - node: - angle: 6.283185307179586 rad color: '#D381C996' id: WarnEndGreyscaleN decals: - 1019: 2,33 + 124: 0,0 + 125: 0,0 + 126: 0,0 - node: color: '#EFB34196' id: WarnEndN @@ -3121,8 +3447,8 @@ entities: color: '#D381C996' id: WarnFull decals: - 570: -4,16 - 571: 4,16 + 521: -4,16 + 522: 4,16 - node: color: '#D381C996' id: WarnFullGreyscale @@ -3136,37 +3462,37 @@ entities: color: '#D381C996' id: WarnLineE decals: - 679: 0,8 + 616: 0,8 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineE decals: - 676: 2,19 - 677: -2,19 - 1166: -2,9 - 1167: -2,9 - 1172: 2,9 - 1173: 2,9 + 613: 2,19 + 614: -2,19 + 1016: -2,9 + 1017: -2,9 + 1022: 2,9 + 1023: 2,9 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnLineE decals: - 680: 0,8 + 617: 0,8 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineE decals: - 675: 2,19 - 678: -2,19 - 682: 3,16 - 687: -5,16 - 1168: 2,9 - 1169: 2,9 - 1170: -2,9 - 1171: -2,9 + 612: 2,19 + 615: -2,19 + 619: 3,16 + 624: -5,16 + 1018: 2,9 + 1019: 2,9 + 1020: -2,9 + 1021: -2,9 - node: color: '#EFB34196' id: WarnLineE @@ -3176,133 +3502,130 @@ entities: 34: 2,5 35: 2,5 73: 0,-1 - 152: 5,5 - 153: 5,5 - 184: -6,5 - 185: -6,5 - 269: 6,20 - 278: 5,29 - 279: 5,28 - 293: 5,30 - 300: 9,6 + 149: 5,5 + 150: 5,5 + 181: -6,5 + 182: -6,5 + 266: 6,20 + 275: 5,29 + 276: 5,28 + 289: 5,30 + 293: 9,6 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 94: 0,-1 - 95: 0,-1 - 96: 0,-1 - 133: -2,5 - 134: -2,5 - 135: -2,5 - 136: 2,5 - 137: 2,5 - 138: 2,5 - 195: -6,5 - 196: -6,5 - 197: -6,5 - 198: -2,5 - 199: -2,5 - 200: -2,5 - 201: 5,5 - 202: 5,5 - 203: 5,5 - 270: 6,20 - 271: 6,20 - 280: 5,29 - 281: 5,29 - 282: 5,28 - 283: 5,28 - 284: 5,28 - 285: 5,29 - 294: 5,30 - 295: 5,30 - 296: 5,30 - 318: 9,6 - 319: 9,6 - 320: 9,6 + 91: 0,-1 + 92: 0,-1 + 93: 0,-1 + 130: -2,5 + 131: -2,5 + 132: -2,5 + 133: 2,5 + 134: 2,5 + 135: 2,5 + 192: -6,5 + 193: -6,5 + 194: -6,5 + 195: -2,5 + 196: -2,5 + 197: -2,5 + 198: 5,5 + 199: 5,5 + 200: 5,5 + 267: 6,20 + 268: 6,20 + 277: 5,29 + 278: 5,29 + 279: 5,28 + 280: 5,28 + 281: 5,28 + 282: 5,29 + 290: 5,30 + 291: 5,30 + 292: 5,30 + 311: 9,6 + 312: 9,6 + 313: 9,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineGreyscaleE decals: - 538: 4,32 - 1111: 5,19 - 1112: 5,19 + 502: 4,32 + 973: 5,19 + 974: 5,19 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 103: -1,-2 - 104: -1,-2 - 105: -1,-2 - 106: 1,-2 - 107: 1,-2 - 108: 1,-2 - 109: 1,2 - 110: 1,2 - 111: 1,2 - 112: 0,2 - 113: 0,2 - 114: 0,2 - 115: -1,2 - 116: -1,2 - 117: -1,2 - 189: -4,4 - 190: -4,4 - 191: -4,4 - 211: 4,4 - 212: 4,4 - 213: 4,4 - 214: 7,4 - 215: 7,4 - 216: 7,4 - 297: 3,33 - 298: 3,33 - 299: 3,33 - 306: -7,8 - 307: -7,8 - 308: -7,8 - 309: -6,8 - 310: -6,8 - 311: -6,8 - 312: 6,8 - 313: 6,8 - 314: 6,8 - 315: 7,8 - 316: 7,8 - 317: 7,8 + 100: -1,-2 + 101: -1,-2 + 102: -1,-2 + 103: 1,-2 + 104: 1,-2 + 105: 1,-2 + 106: 1,2 + 107: 1,2 + 108: 1,2 + 109: 0,2 + 110: 0,2 + 111: 0,2 + 112: -1,2 + 113: -1,2 + 114: -1,2 + 186: -4,4 + 187: -4,4 + 188: -4,4 + 208: 4,4 + 209: 4,4 + 210: 4,4 + 211: 7,4 + 212: 7,4 + 213: 7,4 + 299: -7,8 + 300: -7,8 + 301: -7,8 + 302: -6,8 + 303: -6,8 + 304: -6,8 + 305: 6,8 + 306: 6,8 + 307: 6,8 + 308: 7,8 + 309: 7,8 + 310: 7,8 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 537: -4,32 - 1109: -5,19 - 1110: -5,19 + 501: -4,32 + 971: -5,19 + 972: -5,19 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 1091: 4,12 - 1092: 4,12 + 953: 4,12 + 954: 4,12 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 1107: 5,13 - 1108: 5,13 + 969: 5,13 + 970: 5,13 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 1087: -4,20 - 1088: -4,20 - 1089: 4,20 - 1090: 4,20 + 949: -4,20 + 950: -4,20 + 951: 4,20 + 952: 4,20 - node: color: '#D381C996' id: WarnLineGreyscaleS @@ -3331,118 +3654,118 @@ entities: 69: 7,0 70: 7,0 71: 7,0 - 97: -1,-2 - 98: -1,-2 - 99: -1,-2 - 100: 1,-2 - 101: 1,-2 - 102: 1,-2 - 118: -1,2 - 119: -1,2 - 120: -1,2 - 121: 0,2 - 122: 0,2 - 123: 0,2 - 124: 1,2 - 125: 1,2 - 126: 1,2 - 186: -4,4 - 187: -4,4 - 188: -4,4 - 208: 4,4 - 209: 4,4 - 210: 4,4 + 94: -1,-2 + 95: -1,-2 + 96: -1,-2 + 97: 1,-2 + 98: 1,-2 + 99: 1,-2 + 115: -1,2 + 116: -1,2 + 117: -1,2 + 118: 0,2 + 119: 0,2 + 120: 0,2 + 121: 1,2 + 122: 1,2 + 123: 1,2 + 183: -4,4 + 184: -4,4 + 185: -4,4 + 205: 4,4 + 206: 4,4 + 207: 4,4 + 214: 7,4 + 215: 7,4 + 216: 7,4 217: 7,4 - 218: 7,4 - 219: 7,4 - 220: 7,4 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnLineGreyscaleS decals: - 599: 6,12 - 600: 6,13 - 603: 6,12 - 604: 6,13 - 605: 6,12 - 606: 6,13 + 548: 6,12 + 549: 6,13 + 552: 6,12 + 553: 6,13 + 554: 6,12 + 555: 6,13 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnLineGreyscaleS decals: - 601: -6,12 - 602: -6,13 - 607: -6,12 - 608: -6,13 - 609: -6,12 - 610: -6,13 + 550: -6,12 + 551: -6,13 + 556: -6,12 + 557: -6,13 + 558: -6,12 + 559: -6,13 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 91: 0,-1 - 92: 0,-1 - 93: 0,-1 - 130: -2,5 - 131: -2,5 - 132: -2,5 - 139: 2,5 - 140: 2,5 - 141: 2,5 - 192: -6,5 - 193: -6,5 - 194: -6,5 + 88: 0,-1 + 89: 0,-1 + 90: 0,-1 + 127: -2,5 + 128: -2,5 + 129: -2,5 + 136: 2,5 + 137: 2,5 + 138: 2,5 + 189: -6,5 + 190: -6,5 + 191: -6,5 + 201: 5,5 + 202: 5,5 + 203: 5,5 204: 5,5 - 205: 5,5 - 206: 5,5 - 207: 5,5 - 272: -6,21 - 273: -6,21 - 274: -6,20 - 275: -6,20 - 286: -5,28 - 287: -5,28 - 288: -5,28 - 289: -5,29 - 290: -5,29 - 291: -5,29 - 321: -9,6 - 322: -9,6 - 323: -9,6 + 269: -6,21 + 270: -6,21 + 271: -6,20 + 272: -6,20 + 283: -5,28 + 284: -5,28 + 285: -5,28 + 286: -5,29 + 287: -5,29 + 288: -5,29 + 314: -9,6 + 315: -9,6 + 316: -9,6 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnLineGreyscaleW decals: - 1097: -4,12 - 1098: -4,12 + 959: -4,12 + 960: -4,12 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineGreyscaleW decals: - 734: 6,22 - 1164: 6,11 - 1165: 6,11 + 671: 6,22 + 1014: 6,11 + 1015: 6,11 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineGreyscaleW decals: - 735: -6,22 - 1105: -5,13 - 1106: -5,13 - 1162: -6,11 - 1163: -6,11 + 672: -6,22 + 967: -5,13 + 968: -5,13 + 1012: -6,11 + 1013: -6,11 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineN decals: - 683: 4,17 - 686: -4,17 + 620: 4,17 + 623: -4,17 - node: color: '#EFB34196' id: WarnLineN @@ -3471,44 +3794,44 @@ entities: 45: -4,-1 46: -7,0 47: -7,0 - 146: 4,4 - 147: 4,4 - 148: 7,4 - 149: 7,4 - 180: -4,4 - 181: -4,4 + 143: 4,4 + 144: 4,4 + 145: 7,4 + 146: 7,4 + 177: -4,4 + 178: -4,4 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineS decals: - 671: -2,13 - 674: 2,13 - 994: 2,22 - 995: 2,22 - 1000: -2,22 - 1001: -2,22 - 1127: 4,31 - 1128: 4,31 - 1131: -4,31 - 1132: -4,31 + 608: -2,13 + 611: 2,13 + 875: 2,22 + 876: 2,22 + 881: -2,22 + 882: -2,22 + 983: 4,31 + 984: 4,31 + 987: -4,31 + 988: -4,31 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineS decals: - 672: -2,13 - 673: 2,13 - 681: 5,16 - 685: -3,16 - 996: 2,22 - 997: 2,22 - 998: -2,22 - 999: -2,22 - 1125: 4,31 - 1126: 4,31 - 1129: -4,31 - 1130: -4,31 + 609: -2,13 + 610: 2,13 + 618: 5,16 + 622: -3,16 + 877: 2,22 + 878: 2,22 + 879: -2,22 + 880: -2,22 + 981: 4,31 + 982: 4,31 + 985: -4,31 + 986: -4,31 - node: color: '#EFB34196' id: WarnLineS @@ -3518,35 +3841,35 @@ entities: 30: 2,5 31: 2,5 74: 0,-1 - 150: 5,5 - 151: 5,5 - 182: -6,5 - 183: -6,5 - 267: -6,21 - 268: -6,20 - 276: -5,29 - 277: -5,28 - 301: -9,6 + 147: 5,5 + 148: 5,5 + 179: -6,5 + 180: -6,5 + 264: -6,21 + 265: -6,20 + 273: -5,29 + 274: -5,28 + 294: -9,6 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineW decals: - 985: -8,7 - 986: -8,7 - 989: 8,7 - 990: 8,7 + 866: -8,7 + 867: -8,7 + 870: 8,7 + 871: 8,7 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineW decals: - 684: 4,15 - 688: -4,15 - 987: -8,7 - 988: -8,7 - 991: 8,7 - 992: 8,7 + 621: 4,15 + 625: -4,15 + 868: -8,7 + 869: -8,7 + 872: 8,7 + 873: 8,7 - node: color: '#EFB34196' id: WarnLineW @@ -3563,17 +3886,16 @@ entities: 25: 0,2 26: -1,2 27: -1,2 - 142: 4,4 - 143: 4,4 - 144: 7,4 - 145: 7,4 - 178: -4,4 - 179: -4,4 - 292: 3,33 - 302: -6,8 - 303: -7,8 - 304: 6,8 - 305: 7,8 + 139: 4,4 + 140: 4,4 + 141: 7,4 + 142: 7,4 + 175: -4,4 + 176: -4,4 + 295: -6,8 + 296: -7,8 + 297: 6,8 + 298: 7,8 - type: GridAtmosphere version: 2 data: @@ -3732,6 +4054,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle ALP-800 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAardpointMediumMissile entities: - uid: 2 @@ -3750,85 +4073,80 @@ entities: canCollide: False - proto: AAAHardpointFixed entities: - - uid: 560 + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,27.5 + pos: 0.5,24.5 parent: 1 - type: DeviceLinkSink links: - - 744 + - 502 - type: Physics canCollide: False - - uid: 562 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,27.5 + pos: -1.5,33.5 parent: 1 - type: DeviceLinkSink links: - - 744 + - 502 - type: Physics canCollide: False - - uid: 901 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,33.5 + pos: -0.5,27.5 parent: 1 - type: DeviceLinkSink links: - - 744 + - 502 - type: Physics canCollide: False - - uid: 912 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,33.5 + pos: 1.5,27.5 parent: 1 - type: DeviceLinkSink links: - - 744 + - 502 - type: Physics canCollide: False -- proto: AAAHardpointMediumBallistic - entities: - - uid: 6 + - uid: 8 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - - type: Physics - canCollide: False - - uid: 7 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,23.5 + rot: 3.141592653589793 rad + pos: 2.5,33.5 parent: 1 + - type: DeviceLinkSink + links: + - 502 - type: Physics canCollide: False +- proto: AAAHardpointMediumBallistic + entities: - uid: 9 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 6.5,23.5 parent: 1 - type: Physics canCollide: False - - uid: 12 + - uid: 10 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,33.5 + rot: -1.5707963267948966 rad + pos: -5.5,23.5 parent: 1 - type: Physics canCollide: False - - uid: 724 + - uid: 11 components: - type: Transform rot: -1.5707963267948966 rad @@ -3836,7 +4154,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 753 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad @@ -3846,21 +4164,21 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 10 + - uid: 13 components: - type: Transform pos: -8.5,1.5 parent: 1 - type: Physics canCollide: False - - uid: 11 + - uid: 14 components: - type: Transform pos: 9.5,1.5 parent: 1 - type: Physics canCollide: False - - uid: 979 + - uid: 15 components: - type: Transform rot: 1.5707963267948966 rad @@ -3868,7 +4186,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 980 + - uid: 16 components: - type: Transform rot: -1.5707963267948966 rad @@ -3878,236 +4196,221 @@ entities: canCollide: False - proto: AirCanister entities: - - uid: 13 + - uid: 17 components: - type: Transform pos: 4.5,27.5 parent: 1 - proto: AirlockCommandLockedDSM entities: - - uid: 14 + - uid: 18 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 15 + - uid: 19 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 16 + - uid: 20 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 19 + - uid: 21 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 24 + - uid: 22 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 28 + - uid: 23 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 30 + - uid: 24 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 31 + - uid: 25 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 72 + - uid: 26 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 696 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 8 + - uid: 27 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 17 + - uid: 28 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 18 + - uid: 29 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 21 + - uid: 30 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 22 + - uid: 31 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 25 + - uid: 32 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 26 + - uid: 33 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 27 + - uid: 34 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 29 + - uid: 35 components: - type: Transform pos: -1.5,22.5 parent: 1 - - uid: 76 + - uid: 36 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 391 + - uid: 37 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 405 + - uid: 38 components: - type: Transform pos: 3.5,17.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 34 + - uid: 39 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 35 + - uid: 40 components: - type: Transform pos: 1.5,-1.5 parent: 1 - proto: AirTankFilled entities: - - uid: 37 + - uid: 42 components: - type: Transform - parent: 36 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 44 + - uid: 49 components: - type: Transform - parent: 43 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 51 + - uid: 56 components: - type: Transform - parent: 50 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: AlwaysPoweredStrobeLight - entities: - - uid: 57 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 1 - - type: PointLight - color: '#FB4747FF' - proto: AtmosDeviceFanTiny entities: - - uid: 58 + - uid: 62 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 59 + - uid: 63 components: - type: Transform pos: 5.5,23.5 parent: 1 - - uid: 60 + - uid: 64 components: - type: Transform pos: -4.5,23.5 parent: 1 - - uid: 61 + - uid: 65 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 1 - - uid: 62 + - uid: 66 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 63 + - uid: 67 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 64 + - uid: 68 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 65 + - uid: 69 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 66 + - uid: 70 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 67 + - uid: 71 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 580 + - uid: 72 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 - - uid: 678 + - uid: 73 components: - type: Transform rot: 1.5707963267948966 rad @@ -4115,37 +4418,37 @@ entities: parent: 1 - proto: BaseAPC entities: - - uid: 68 + - uid: 74 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 69 + - uid: 75 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 70 + - uid: 76 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 1 - - uid: 71 + - uid: 77 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,21.5 parent: 1 - - uid: 695 + - uid: 78 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 1 - - uid: 919 + - uid: 79 components: - type: Transform rot: -1.5707963267948966 rad @@ -4153,12 +4456,16 @@ entities: parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 74 + - uid: 80 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4169,16 +4476,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 33 - linkedConsoleId: 33 - - uid: 75 + - 503 + linkedConsoleId: 503 + - uid: 81 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4189,41 +4508,49 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 33 - linkedConsoleId: 33 + - 503 + linkedConsoleId: 503 - proto: Beaker entities: - - uid: 80 + - uid: 82 components: - type: Transform pos: -7.270003,4.018259 parent: 1 - type: CollisionWake enabled: False - - uid: 81 + - uid: 83 components: - type: Transform pos: -7.238753,4.143259 parent: 1 - proto: Bed entities: - - uid: 82 + - uid: 84 components: - type: Transform pos: 8.5,3.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 83 + - uid: 85 components: - type: Transform pos: 8.5,3.5 parent: 1 - proto: BlastDoor entities: - - uid: 84 + - uid: 86 components: - type: Transform rot: 1.5707963267948966 rad @@ -4231,8 +4558,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 628 - - uid: 85 + - 739 + - uid: 87 components: - type: Transform rot: 1.5707963267948966 rad @@ -4240,37 +4567,37 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 627 - - uid: 86 + - 738 + - uid: 88 components: - type: Transform pos: 0.5,23.5 parent: 1 - type: DeviceLinkSink links: - - 629 - - uid: 87 + - 740 + - uid: 89 components: - type: Transform pos: 8.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 635 - - uid: 88 + - 746 + - uid: 90 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 89 + - uid: 91 components: - type: Transform pos: -7.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 632 - - uid: 90 + - 743 + - uid: 92 components: - type: Transform rot: -1.5707963267948966 rad @@ -4278,8 +4605,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 636 - - uid: 91 + - 747 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad @@ -4287,8 +4614,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 626 - - uid: 813 + - 737 + - uid: 94 components: - type: Transform rot: -1.5707963267948966 rad @@ -4296,8 +4623,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 610 - - uid: 898 + - 748 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad @@ -4305,18 +4632,18 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 612 + - 749 - proto: BlastDoorOpen entities: - - uid: 92 + - uid: 96 components: - type: Transform pos: 8.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 631 - - uid: 93 + - 742 + - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad @@ -4324,8 +4651,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 630 - - uid: 94 + - 741 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad @@ -4333,8 +4660,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 630 - - uid: 95 + - 741 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -4342,10 +4669,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 630 + - 741 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 96 + - uid: 100 components: - type: Transform pos: -3.5,16.5 @@ -4356,7 +4683,7 @@ entities: bodyType: Static missingComponents: - Explosive - - uid: 97 + - uid: 101 components: - type: Transform pos: 4.5,16.5 @@ -4369,106 +4696,119 @@ entities: - Explosive - proto: BoxTeargasGrenades entities: - - uid: 98 + - uid: 102 components: - type: Transform pos: 5.331721,3.0633063 parent: 1 - - uid: 99 + - uid: 103 components: - type: Transform pos: 5.737971,3.0789313 parent: 1 +- proto: BrokenBottle + entities: + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.3771772,18.39844 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.6377606,13.892456 + parent: 1 - proto: Brutepack entities: - - uid: 100 + - uid: 106 components: - type: Transform pos: -2.9211304,7.6591873 parent: 1 - - uid: 101 + - uid: 107 components: - type: Transform pos: -2.7023804,7.5966873 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 102 + - uid: 108 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,30.5 parent: 1 - - uid: 103 + - uid: 109 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,30.5 parent: 1 - - uid: 104 + - uid: 110 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 105 + - uid: 111 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 106 + - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 107 + - uid: 113 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 108 + - uid: 114 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 109 + - uid: 115 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 110 + - uid: 116 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 111 + - uid: 117 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 112 + - uid: 118 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 113 + - uid: 119 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 - - uid: 680 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,15.5 parent: 1 - - uid: 697 + - uid: 121 components: - type: Transform rot: 1.5707963267948966 rad @@ -4476,1752 +4816,1852 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 32 + - uid: 122 components: - type: Transform - pos: -2.5,14.5 + pos: 1.5,23.5 parent: 1 - - uid: 114 + - uid: 123 components: - type: Transform - pos: 0.5,15.5 + pos: 0.5,23.5 parent: 1 - - uid: 115 + - uid: 124 components: - type: Transform - pos: -4.5,2.5 + pos: -2.5,14.5 parent: 1 - - uid: 116 + - uid: 125 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 127 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 117 + - uid: 128 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 118 + - uid: 129 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 119 + - uid: 130 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 120 + - uid: 131 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 121 + - uid: 132 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 122 + - uid: 133 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 123 + - uid: 134 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 124 + - uid: 135 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 125 + - uid: 136 components: - type: Transform pos: 3.5,24.5 parent: 1 - - uid: 126 + - uid: 137 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 127 + - uid: 138 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 128 + - uid: 139 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 129 + - uid: 140 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 130 + - uid: 141 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 131 + - uid: 142 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 132 + - uid: 143 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 133 + - uid: 144 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 134 + - uid: 145 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 135 + - uid: 146 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 136 + - uid: 147 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 137 + - uid: 148 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 138 + - uid: 149 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 139 + - uid: 150 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 140 + - uid: 151 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 141 + - uid: 152 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 142 + - uid: 153 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 143 + - uid: 154 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 144 + - uid: 155 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 145 + - uid: 156 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 146 + - uid: 157 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 147 + - uid: 158 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 148 + - uid: 159 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 149 + - uid: 160 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 150 + - uid: 161 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 151 + - uid: 162 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 152 + - uid: 163 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 153 + - uid: 164 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 154 + - uid: 165 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 155 + - uid: 166 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 156 + - uid: 167 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 157 + - uid: 168 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 158 + - uid: 169 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 159 + - uid: 170 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 160 + - uid: 171 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 161 + - uid: 172 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 162 + - uid: 173 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 163 + - uid: 174 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 164 + - uid: 175 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 165 + - uid: 176 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 166 + - uid: 177 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 167 + - uid: 178 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 168 + - uid: 179 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 169 + - uid: 180 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 170 + - uid: 181 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 171 + - uid: 182 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 172 + - uid: 183 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 173 + - uid: 184 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 174 + - uid: 185 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 175 + - uid: 186 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 176 + - uid: 187 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 177 + - uid: 188 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 178 + - uid: 189 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 179 + - uid: 190 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 180 + - uid: 191 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 181 + - uid: 192 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 182 + - uid: 193 components: - type: Transform pos: -4.5,16.5 parent: 1 - - uid: 183 + - uid: 194 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 184 + - uid: 195 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 185 + - uid: 196 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 186 + - uid: 197 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 187 + - uid: 198 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 188 + - uid: 199 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 189 + - uid: 200 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 190 + - uid: 201 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 191 + - uid: 202 components: - type: Transform pos: 4.5,19.5 parent: 1 - - uid: 192 + - uid: 203 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 193 + - uid: 204 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 194 + - uid: 205 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 195 + - uid: 206 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 196 + - uid: 207 components: - type: Transform pos: 5.5,19.5 parent: 1 - - uid: 197 + - uid: 208 components: - type: Transform pos: 5.5,19.5 parent: 1 - - uid: 198 + - uid: 209 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 199 + - uid: 210 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 200 + - uid: 211 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 201 + - uid: 212 components: - type: Transform pos: -3.5,17.5 parent: 1 - - uid: 202 + - uid: 213 components: - type: Transform pos: -3.5,18.5 parent: 1 - - uid: 203 + - uid: 214 components: - type: Transform pos: -3.5,18.5 parent: 1 - - uid: 204 + - uid: 215 components: - type: Transform pos: -3.5,19.5 parent: 1 - - uid: 205 + - uid: 216 components: - type: Transform pos: -4.5,19.5 parent: 1 - - uid: 206 + - uid: 217 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 207 + - uid: 218 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 208 + - uid: 219 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 209 + - uid: 220 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 210 + - uid: 221 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 211 + - uid: 222 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 212 + - uid: 223 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 213 + - uid: 224 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 214 + - uid: 225 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 215 + - uid: 226 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 216 + - uid: 227 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 217 + - uid: 228 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 218 + - uid: 229 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 219 + - uid: 230 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 220 + - uid: 231 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 221 + - uid: 232 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 222 + - uid: 233 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 223 + - uid: 234 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 224 + - uid: 235 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 225 + - uid: 236 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 226 + - uid: 237 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 227 + - uid: 238 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 228 + - uid: 239 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 229 + - uid: 240 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 230 + - uid: 241 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 231 + - uid: 242 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 232 + - uid: 243 components: - type: Transform pos: 0.5,21.5 parent: 1 - - uid: 233 + - uid: 244 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 234 + - uid: 245 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 235 + - uid: 246 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 236 + - uid: 247 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 237 + - uid: 248 components: - type: Transform pos: 0.5,22.5 parent: 1 - - uid: 238 + - uid: 249 components: - type: Transform pos: 0.5,23.5 parent: 1 - - uid: 239 + - uid: 250 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 240 + - uid: 251 components: - type: Transform pos: -1.5,23.5 parent: 1 - - uid: 241 + - uid: 252 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 242 + - uid: 253 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 243 + - uid: 254 components: - type: Transform pos: -2.5,24.5 parent: 1 - - uid: 244 + - uid: 255 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 245 + - uid: 256 components: - type: Transform pos: -2.5,26.5 parent: 1 - - uid: 246 + - uid: 257 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 247 + - uid: 258 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 248 + - uid: 259 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 249 + - uid: 260 components: - type: Transform pos: -3.5,29.5 parent: 1 - - uid: 250 + - uid: 261 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 251 + - uid: 262 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 252 + - uid: 263 components: - type: Transform pos: -3.5,32.5 parent: 1 - - uid: 253 + - uid: 264 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 254 + - uid: 265 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 255 + - uid: 266 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 256 + - uid: 267 components: - type: Transform pos: 3.5,23.5 parent: 1 - - uid: 257 + - uid: 268 components: - type: Transform pos: 3.5,23.5 parent: 1 - - uid: 258 + - uid: 269 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 259 + - uid: 270 components: - type: Transform pos: 3.5,25.5 parent: 1 - - uid: 260 + - uid: 271 components: - type: Transform pos: 3.5,26.5 parent: 1 - - uid: 261 + - uid: 272 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 262 + - uid: 273 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 263 + - uid: 274 components: - type: Transform pos: 3.5,29.5 parent: 1 - - uid: 264 + - uid: 275 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 265 + - uid: 276 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 266 + - uid: 277 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 267 + - uid: 278 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 268 + - uid: 279 components: - type: Transform pos: 4.5,32.5 parent: 1 - - uid: 269 + - uid: 280 components: - type: Transform pos: -2.5,32.5 parent: 1 - - uid: 270 + - uid: 281 components: - type: Transform pos: -3.5,32.5 parent: 1 - - uid: 271 + - uid: 282 components: - type: Transform pos: 4.5,32.5 parent: 1 - - uid: 272 + - uid: 283 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 273 + - uid: 284 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 274 + - uid: 285 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 275 + - uid: 286 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 276 + - uid: 287 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 277 + - uid: 288 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 278 + - uid: 289 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 279 + - uid: 290 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 280 + - uid: 291 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 281 + - uid: 292 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 282 + - uid: 293 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 283 + - uid: 294 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 284 + - uid: 295 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 285 + - uid: 296 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 286 + - uid: 297 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 287 + - uid: 298 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 288 + - uid: 299 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 289 + - uid: 300 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 290 + - uid: 301 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 291 + - uid: 302 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 613 + - uid: 303 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 679 + - uid: 304 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 740 + - uid: 305 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 742 + - uid: 306 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 802 + - uid: 307 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 944 + - uid: 308 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 945 + - uid: 309 components: - type: Transform pos: -7.5,16.5 parent: 1 - - uid: 953 + - uid: 310 components: - type: Transform pos: -2.5,30.5 parent: 1 - - uid: 956 + - uid: 311 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 957 + - uid: 312 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 958 + - uid: 313 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 959 + - uid: 314 components: - type: Transform pos: 7.5,19.5 parent: 1 - - uid: 960 + - uid: 315 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 961 + - uid: 316 components: - type: Transform pos: -6.5,19.5 parent: 1 - - uid: 962 + - uid: 317 components: - type: Transform pos: -4.5,23.5 parent: 1 - - uid: 963 + - uid: 318 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 964 + - uid: 319 components: - type: Transform pos: 5.5,23.5 parent: 1 - - uid: 965 + - uid: 320 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 966 + - uid: 321 components: - type: Transform - pos: -2.5,33.5 + pos: -1.5,33.5 parent: 1 - - uid: 967 + - uid: 322 components: - type: Transform - pos: -3.5,33.5 + pos: 2.5,33.5 parent: 1 - - uid: 968 + - uid: 323 components: - type: Transform - pos: -1.5,33.5 + pos: 3.5,32.5 parent: 1 - - uid: 969 + - uid: 324 components: - type: Transform - pos: 3.5,33.5 + pos: 3.5,31.5 parent: 1 - - uid: 970 + - uid: 325 components: - type: Transform - pos: 2.5,33.5 + pos: 3.5,30.5 parent: 1 - - uid: 971 + - uid: 326 components: - type: Transform - pos: 4.5,33.5 + pos: 1.5,24.5 parent: 1 - - uid: 972 + - uid: 327 components: - type: Transform - pos: 3.5,32.5 + pos: -0.5,24.5 parent: 1 - - uid: 973 + - uid: 328 components: - type: Transform - pos: 3.5,31.5 + pos: 0.5,24.5 parent: 1 - - uid: 974 + - uid: 329 components: - type: Transform - pos: 3.5,30.5 + pos: 1.5,25.5 parent: 1 -- proto: CableHV - entities: - - uid: 292 + - uid: 330 components: - type: Transform - pos: 4.5,16.5 + pos: -0.5,23.5 parent: 1 - - uid: 293 + - uid: 331 components: - type: Transform - pos: 4.5,15.5 + pos: -0.5,27.5 parent: 1 - - uid: 294 + - uid: 332 components: - type: Transform - pos: 4.5,14.5 + pos: 1.5,27.5 parent: 1 - - uid: 295 + - uid: 333 components: - type: Transform - pos: 4.5,13.5 + pos: 0.5,25.5 parent: 1 - - uid: 296 + - uid: 334 components: - type: Transform - pos: 4.5,12.5 + pos: 2.5,27.5 parent: 1 - - uid: 297 + - uid: 335 components: - type: Transform - pos: -3.5,16.5 + pos: 1.5,27.5 parent: 1 - - uid: 298 + - uid: 336 components: - type: Transform - pos: -3.5,15.5 + pos: -1.5,27.5 parent: 1 - - uid: 299 + - uid: 337 components: - type: Transform - pos: -3.5,14.5 + pos: -0.5,27.5 parent: 1 - - uid: 300 + - uid: 338 components: - type: Transform - pos: -3.5,13.5 + pos: 0.5,24.5 parent: 1 - - uid: 301 + - uid: 339 components: - type: Transform - pos: -3.5,12.5 + pos: -1.5,24.5 parent: 1 - - uid: 302 + - uid: 340 components: - type: Transform - pos: -3.5,11.5 + pos: -0.5,24.5 parent: 1 - - uid: 303 + - uid: 341 components: - type: Transform - pos: -3.5,10.5 + pos: 1.5,24.5 parent: 1 - - uid: 304 + - uid: 342 components: - type: Transform - pos: -3.5,9.5 + pos: 2.5,24.5 parent: 1 - - uid: 305 + - uid: 343 components: - type: Transform - pos: 4.5,12.5 + pos: 1.5,23.5 parent: 1 - - uid: 306 + - uid: 344 components: - type: Transform - pos: 4.5,11.5 + pos: 0.5,23.5 parent: 1 - - uid: 307 + - uid: 345 components: - type: Transform - pos: 4.5,10.5 + pos: -0.5,23.5 parent: 1 - - uid: 308 + - uid: 346 components: - type: Transform - pos: 4.5,9.5 + pos: -1.5,23.5 parent: 1 - - uid: 309 + - uid: 347 components: - type: Transform - pos: 5.5,13.5 + pos: -0.5,25.5 parent: 1 - - uid: 310 +- proto: CableHV + entities: + - uid: 348 components: - type: Transform - pos: 5.5,12.5 + pos: 4.5,16.5 parent: 1 - - uid: 311 + - uid: 349 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 367 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 312 + - uid: 368 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 313 + - uid: 369 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 314 + - uid: 370 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 315 + - uid: 371 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: CableMV entities: - - uid: 316 + - uid: 372 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 317 + - uid: 373 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 318 + - uid: 374 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 319 + - uid: 375 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 320 + - uid: 376 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 321 + - uid: 377 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 322 + - uid: 378 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 323 + - uid: 379 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 324 + - uid: 380 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 325 + - uid: 381 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 326 + - uid: 382 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 327 + - uid: 383 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 328 + - uid: 384 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 329 + - uid: 385 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 330 + - uid: 386 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 331 + - uid: 387 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 332 + - uid: 388 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 333 + - uid: 389 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 334 + - uid: 390 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 335 + - uid: 391 components: - type: Transform pos: 2.5,19.5 parent: 1 - - uid: 336 + - uid: 392 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 337 + - uid: 393 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 338 + - uid: 394 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 339 + - uid: 395 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 340 + - uid: 396 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 341 + - uid: 397 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 342 + - uid: 398 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 343 + - uid: 399 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 344 + - uid: 400 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 345 + - uid: 401 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 346 + - uid: 402 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 347 + - uid: 403 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 348 + - uid: 404 components: - type: Transform pos: -1.5,17.5 parent: 1 - - uid: 349 + - uid: 405 components: - type: Transform pos: -1.5,18.5 parent: 1 - - uid: 350 + - uid: 406 components: - type: Transform pos: -1.5,19.5 parent: 1 - - uid: 351 + - uid: 407 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 352 + - uid: 408 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 353 + - uid: 409 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 354 + - uid: 410 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 355 + - uid: 411 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 356 + - uid: 412 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 357 + - uid: 413 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 358 + - uid: 414 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 359 + - uid: 415 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 360 + - uid: 416 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 361 + - uid: 417 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 362 + - uid: 418 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 363 + - uid: 419 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 364 + - uid: 420 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 365 + - uid: 421 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 366 + - uid: 422 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 367 + - uid: 423 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 368 + - uid: 424 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 369 + - uid: 425 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 370 + - uid: 426 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 371 + - uid: 427 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 372 + - uid: 428 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 373 + - uid: 429 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 374 + - uid: 430 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 375 + - uid: 431 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 376 + - uid: 432 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 377 + - uid: 433 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 378 + - uid: 434 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 745 + - uid: 435 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 768 + - uid: 436 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 791 + - uid: 437 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 921 + - uid: 438 components: - type: Transform pos: -1.5,14.5 parent: 1 - proto: CableTerminal entities: - - uid: 379 + - uid: 439 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 380 + - uid: 440 components: - type: Transform pos: 4.5,13.5 parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 561 + - uid: 441 components: - type: Transform pos: -0.668946,21.262907 parent: 1 - - uid: 741 + - uid: 442 components: - type: Transform pos: -0.622071,21.42697 parent: 1 - - uid: 920 + - uid: 443 components: - type: Transform pos: -0.6455085,21.544157 parent: 1 - - uid: 924 + - uid: 444 components: - type: Transform pos: -0.668946,21.684782 parent: 1 - - uid: 925 + - uid: 445 components: - type: Transform pos: -0.668946,21.755095 parent: 1 - - uid: 926 + - uid: 446 components: - type: Transform pos: -0.668946,21.872282 parent: 1 - - uid: 931 + - uid: 447 components: - type: Transform pos: -0.27050856,21.23947 parent: 1 - - uid: 933 + - uid: 448 components: - type: Transform pos: -0.24707106,21.403532 parent: 1 - - uid: 934 + - uid: 449 components: - type: Transform pos: -0.24707106,21.497282 parent: 1 - - uid: 935 + - uid: 450 components: - type: Transform pos: -0.22363356,21.61447 parent: 1 - - uid: 936 + - uid: 451 components: - type: Transform pos: -0.22363356,21.661345 parent: 1 - - uid: 937 + - uid: 452 components: - type: Transform pos: -0.20019606,21.825407 parent: 1 - proto: CartridgeShellHighExplosive entities: - - uid: 602 + - uid: 453 components: - type: Transform pos: 1.440429,21.473845 parent: 1 - - uid: 693 + - uid: 454 components: - type: Transform pos: 1.3701165,21.23947 parent: 1 - proto: Catwalk entities: - - uid: 20 + - uid: 455 components: - type: Transform pos: -3.5,17.5 parent: 1 - - uid: 381 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 382 + - uid: 457 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 383 + - uid: 458 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 384 + - uid: 459 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 386 + - uid: 460 components: - type: Transform pos: 0.5,24.5 parent: 1 - - uid: 387 + - uid: 461 components: - type: Transform pos: 0.5,25.5 parent: 1 - - uid: 389 + - uid: 462 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 392 + - uid: 463 components: - type: Transform pos: 3.5,29.5 parent: 1 - - uid: 393 + - uid: 464 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 394 + - uid: 465 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 395 + - uid: 466 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 396 + - uid: 467 components: - type: Transform pos: 3.5,30.5 parent: 1 - - uid: 397 + - uid: 468 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 398 + - uid: 469 components: - type: Transform pos: -3.5,29.5 parent: 1 - - uid: 399 + - uid: 470 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 400 + - uid: 471 components: - type: Transform pos: -2.5,30.5 parent: 1 - - uid: 401 + - uid: 472 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 402 + - uid: 473 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 440 + - uid: 474 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 531 + - uid: 475 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 547 + - uid: 476 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 548 + - uid: 477 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 549 + - uid: 478 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 558 + - uid: 479 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 570 + - uid: 480 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 599 + - uid: 481 components: - type: Transform pos: -4.5,15.5 parent: 1 - - uid: 700 + - uid: 482 components: - type: Transform pos: 0.5,26.5 parent: 1 - - uid: 702 + - uid: 483 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 714 + - uid: 484 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 797 + - uid: 485 components: - type: Transform pos: -4.5,17.5 parent: 1 - - uid: 923 + - uid: 486 components: - type: Transform pos: -4.5,16.5 parent: 1 - - uid: 943 + - uid: 487 components: - type: Transform pos: 6.5,16.5 parent: 1 - proto: ChairFolding entities: - - uid: 403 + - uid: 488 components: - type: Transform rot: 1.5707963267948966 rad @@ -6229,7 +6669,7 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 404 + - uid: 489 components: - type: Transform rot: -1.5707963267948966 rad @@ -6237,163 +6677,203 @@ entities: parent: 1 - proto: CheapRollerBed entities: - - uid: 407 + - uid: 490 components: - type: Transform pos: -2.4544098,1.424509 parent: 1 - proto: ChemistryHotplate entities: - - uid: 408 + - uid: 491 components: - type: Transform pos: -7.5,3.5 parent: 1 - type: ItemPlacer placedEntities: - - 80 + - 82 - type: PlaceableSurface isPlaceable: False - proto: ChemMaster entities: - - uid: 409 + - uid: 492 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 411 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 - - uid: 412 + - uid: 493 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 413 + - uid: 494 components: - type: Transform pos: -4.5,12.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 414 + - uid: 495 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 415 +- proto: ClosetToolFilled + entities: + - uid: 496 components: - type: Transform pos: 5.5,12.5 parent: 1 -- proto: ClosetToolFilled - entities: - - uid: 416 + - uid: 497 components: - type: Transform pos: -4.5,20.5 parent: 1 - proto: ClosetWallFireFilledRandom entities: - - uid: 417 + - uid: 498 components: - type: Transform pos: 3.5,8.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 418 + - uid: 499 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 1 +- proto: ClothingBeltSheathDSMSabreFilled + entities: + - uid: 1033 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesImperialGovernorGloves + entities: + - uid: 1030 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 38 + - uid: 43 components: - type: Transform - parent: 36 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 45 + - uid: 50 components: - type: Transform - parent: 43 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 52 + - uid: 57 components: - type: Transform - parent: 50 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ClothingNeckCloakImperialGovernor + entities: + - uid: 1029 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatImperialGovernor + entities: + - uid: 1031 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 39 + - uid: 44 components: - type: Transform - parent: 36 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 46 + - uid: 51 components: - type: Transform - parent: 43 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 53 + - uid: 58 components: - type: Transform - parent: 50 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsImperialGovernorBoots + entities: + - uid: 1032 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - - uid: 40 + - uid: 45 components: - type: Transform - parent: 36 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 47 + - uid: 52 components: - type: Transform - parent: 43 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 54 + - uid: 59 components: - type: Transform - parent: 50 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -6401,25 +6881,32 @@ entities: - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 555 + - uid: 500 components: - type: Transform pos: 0.5,14.5 parent: 1 - proto: ComputerTabletopCriminalRecords entities: - - uid: 421 + - uid: 501 components: - type: Transform pos: 6.5,6.5 parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 744 + - uid: 502 components: - type: Transform pos: 1.5,14.5 parent: 1 + - type: NamedModules + buttonNames: + - Fire 120mm + - Toggle Plasma Bolt Repeater + - Module C + - Module D + - Module E - type: ContainerContainer containers: board: !type:Container @@ -6436,24 +6923,24 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 560: - - Group1: SpaceArtilleryFire - 562: - - Group1: SpaceArtilleryFire - 912: - - Group2: Toggle - 901: - - Group2: Toggle - - type: NamedModules - buttonNames: - - Fire Twin 120mm - - Fire Plasmacasters - - Module C - - Module D - - Module E + 4: + - - Group1 + - SpaceArtilleryFire + 7: + - - Group2 + - Toggle + 6: + - - Group2 + - Toggle + 5: + - - Group2 + - Toggle + 8: + - - Group2 + - Toggle - proto: ComputerTabletopTargeting entities: - - uid: 33 + - uid: 503 components: - type: Transform pos: -0.5,14.5 @@ -6461,66 +6948,66 @@ entities: - type: TargetingConsole cannonGroups: all: - - 74 - - 75 + - 80 + - 81 70mm "Jeong" swarmrocket platform: - - 74 - - 75 + - 80 + - 81 - proto: ConveyorBelt entities: - - uid: 423 + - uid: 504 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 688 - - uid: 424 + - 807 + - uid: 505 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: DeviceLinkSink links: - - 688 - - uid: 425 + - 807 + - uid: 506 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 688 + - 807 - proto: CrateAutogunAmmo entities: - - uid: 608 + - uid: 507 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 609 + - uid: 508 components: - type: Transform pos: 1.5,7.5 parent: 1 -- proto: CrateSwarmerAmmo +- proto: CrateJeongAmmo entities: - - uid: 579 + - uid: 509 components: - type: Transform pos: 0.5,5.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 769 + - uid: 510 components: - type: Transform pos: 0.5,13.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 426 + - uid: 511 components: - type: Transform rot: 3.141592653589793 rad @@ -6528,14 +7015,14 @@ entities: parent: 1 - proto: Dropper entities: - - uid: 427 + - uid: 512 components: - type: Transform pos: -7.491656,5.143259 parent: 1 - proto: EmergencyLight entities: - - uid: 428 + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad @@ -6543,155 +7030,197 @@ entities: parent: 1 - proto: EmergencyMedipen entities: - - uid: 429 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.413235,3.612009 parent: 1 - - uid: 430 + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.225735,3.612009 parent: 1 -- proto: FaxMachineShip - entities: - - uid: 431 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - proto: Firelock entities: - - uid: 432 + - uid: 516 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 433 + - uid: 517 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 434 + - uid: 518 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 435 + - uid: 519 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 436 + - uid: 520 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 437 + - uid: 521 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 438 + - uid: 522 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 441 + - uid: 523 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 442 + - uid: 524 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 443 + - uid: 525 components: - type: Transform pos: 2.5,5.5 parent: 1 - proto: Flash entities: - - uid: 444 + - uid: 526 components: - type: Transform pos: 5.3090024,3.6101813 parent: 1 - - uid: 445 + - uid: 527 components: - type: Transform pos: 5.6996274,3.5945563 parent: 1 +- proto: FloodlightBroken + entities: + - uid: 528 + components: + - type: Transform + pos: 4.541318,24.510738 + parent: 1 - proto: FloorDrain entities: - - uid: 446 + - uid: 529 components: - type: Transform pos: -4.5,2.5 parent: 1 - type: Fixtures fixtures: {} -- proto: GasPassiveVent +- proto: FoodPacketChipsTrash entities: - - uid: 701 + - uid: 530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,27.5 + pos: -0.27207223,4.3121834 parent: 1 -- proto: GasPipeBend +- proto: FoodPacketChowMeinTrash entities: - - uid: 448 + - uid: 531 components: - type: Transform - pos: -0.5,22.5 + pos: 3.6525846,30.351187 parent: 1 - - uid: 449 +- proto: FoodPacketEnergyTrash + entities: + - uid: 532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,22.5 + pos: 5.3311996,18.245098 parent: 1 - - uid: 450 +- proto: FoodPacketRaisinsTrash + entities: + - uid: 533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 + pos: 8.750652,6.3564634 parent: 1 - - uid: 451 - components: +- proto: FoodPlateTrash + entities: + - uid: 534 + components: + - type: Transform + pos: -2.6465223,6.7096605 + parent: 1 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 535 + components: + - type: Transform + pos: -3.3345368,25.552786 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 537 + components: + - type: Transform + pos: -0.5,22.5 + parent: 1 + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,22.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 + - uid: 540 + components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 1 - - uid: 452 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 453 + - uid: 542 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 454 + - uid: 543 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 455 + - uid: 544 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,27.5 parent: 1 - - uid: 456 + - uid: 545 components: - type: Transform rot: 3.141592653589793 rad @@ -6699,291 +7228,291 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 457 + - uid: 546 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 458 + - uid: 547 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 459 + - uid: 548 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 460 + - uid: 549 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 1 - - uid: 461 + - uid: 550 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,22.5 parent: 1 - - uid: 462 + - uid: 551 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 463 + - uid: 552 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 464 + - uid: 553 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 465 + - uid: 554 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,19.5 parent: 1 - - uid: 466 + - uid: 555 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 1 - - uid: 467 + - uid: 556 components: - type: Transform pos: 3.5,17.5 parent: 1 - - uid: 468 + - uid: 557 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 469 + - uid: 558 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 470 + - uid: 559 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 471 + - uid: 560 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 472 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 473 + - uid: 562 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 474 + - uid: 563 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 475 + - uid: 564 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 476 + - uid: 565 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 477 + - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 1 - - uid: 478 + - uid: 567 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 479 + - uid: 568 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 480 + - uid: 569 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 481 + - uid: 570 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 1 - - uid: 482 + - uid: 571 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 483 + - uid: 572 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 484 + - uid: 573 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 485 + - uid: 574 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 486 + - uid: 575 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 487 + - uid: 576 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,27.5 parent: 1 - - uid: 488 + - uid: 577 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 489 + - uid: 578 components: - type: Transform pos: -2.5,24.5 parent: 1 - - uid: 490 + - uid: 579 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 491 + - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 1 - - uid: 492 + - uid: 581 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 493 + - uid: 582 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 494 + - uid: 583 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 495 + - uid: 584 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 496 + - uid: 585 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 497 + - uid: 586 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 498 + - uid: 587 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 499 + - uid: 588 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 500 + - uid: 589 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 501 + - uid: 590 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 502 + - uid: 591 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 503 + - uid: 592 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 504 + - uid: 593 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 505 + - uid: 594 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 506 + - uid: 595 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 507 + - uid: 596 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 508 + - uid: 597 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 509 + - uid: 598 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 510 + - uid: 599 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 511 + - uid: 600 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 942 + - uid: 601 components: - type: Transform rot: 1.5707963267948966 rad @@ -6991,23 +7520,23 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 512 + - uid: 602 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 513 + - uid: 603 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 514 + - uid: 604 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 1 - - uid: 515 + - uid: 605 components: - type: Transform rot: 3.141592653589793 rad @@ -7015,19 +7544,19 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 516 + - uid: 606 components: - type: Transform pos: 4.5,27.5 parent: 1 - proto: GasPressurePump entities: - - uid: 517 + - uid: 607 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 518 + - uid: 608 components: - type: Transform rot: 3.141592653589793 rad @@ -7035,19 +7564,19 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 519 + - uid: 609 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 1 - - uid: 520 + - uid: 610 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 521 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad @@ -7056,19 +7585,19 @@ entities: - type: DeviceNetwork configurators: - invalid - - uid: 522 + - uid: 612 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 523 + - uid: 613 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 1 - - uid: 524 + - uid: 614 components: - type: Transform rot: 3.141592653589793 rad @@ -7076,37 +7605,37 @@ entities: parent: 1 - proto: GasVentScrubber entities: - - uid: 525 + - uid: 615 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 526 + - uid: 616 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,10.5 parent: 1 - - uid: 527 + - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 528 + - uid: 618 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 529 + - uid: 619 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 530 + - uid: 620 components: - type: Transform rot: 3.141592653589793 rad @@ -7114,94 +7643,100 @@ entities: parent: 1 - proto: GravityGeneratorMini entities: - - uid: 4 + - uid: 621 components: - type: Transform pos: 3.5,7.5 parent: 1 - proto: Grille entities: - - uid: 73 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 + - uid: 623 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 385 + - uid: 624 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 388 + - uid: 625 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 406 + - uid: 626 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 422 + - uid: 627 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 439 + - uid: 628 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 532 + - uid: 629 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 533 + - uid: 630 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 534 + - uid: 631 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 535 + - uid: 632 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 536 + - uid: 633 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 537 + - uid: 634 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 538 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,29.5 parent: 1 - - uid: 539 + - uid: 636 components: - type: Transform pos: -8.5,5.5 parent: 1 - proto: GrilleBroken entities: - - uid: 540 + - uid: 637 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,31.5 parent: 1 - - uid: 541 + - uid: 638 components: - type: Transform rot: 3.141592653589793 rad @@ -7209,47 +7744,47 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 542 + - uid: 639 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 543 + - uid: 640 components: - type: Transform pos: 3.5,12.5 parent: 1 - proto: HandheldCrewMonitor entities: - - uid: 544 + - uid: 641 components: - type: Transform pos: -3.599592,7.616263 parent: 1 - proto: HandheldGPSBasic entities: - - uid: 41 + - uid: 46 components: - type: Transform - parent: 36 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 48 + - uid: 53 components: - type: Transform - parent: 43 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 55 + - uid: 60 components: - type: Transform - parent: 50 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -7257,42 +7792,42 @@ entities: - type: InsideEntityStorage - proto: HandheldHealthAnalyzer entities: - - uid: 545 + - uid: 642 components: - type: Transform pos: -3.112308,7.621122 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 546 + - uid: 643 components: - type: Transform pos: -2.5,1.5 parent: 1 - proto: JetpackMiniFilled entities: - - uid: 42 + - uid: 47 components: - type: Transform - parent: 36 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 49 + - uid: 54 components: - type: Transform - parent: 43 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 56 + - uid: 61 components: - type: Transform - parent: 50 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -7300,21 +7835,21 @@ entities: - type: InsideEntityStorage - proto: KitchenReagentGrinder entities: - - uid: 550 + - uid: 644 components: - type: Transform pos: -7.5,5.5 parent: 1 - proto: LargeBeaker entities: - - uid: 551 + - uid: 645 components: - type: Transform pos: -7.510775,4.049509 parent: 1 - proto: LightStripInner entities: - - uid: 984 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad @@ -7323,7 +7858,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 985 + - uid: 647 components: - type: Transform rot: 3.141592653589793 rad @@ -7332,7 +7867,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 986 + - uid: 648 components: - type: Transform rot: -1.5707963267948966 rad @@ -7341,7 +7876,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 987 + - uid: 649 components: - type: Transform pos: -0.5,18.5 @@ -7349,7 +7884,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 992 + - uid: 650 components: - type: Transform rot: 1.5707963267948966 rad @@ -7360,7 +7895,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 988 + - uid: 651 components: - type: Transform rot: -1.5707963267948966 rad @@ -7369,7 +7904,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 989 + - uid: 652 components: - type: Transform pos: 0.5,16.5 @@ -7377,7 +7912,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 990 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad @@ -7386,7 +7921,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 991 + - uid: 654 components: - type: Transform rot: 3.141592653589793 rad @@ -7397,26 +7932,26 @@ entities: - type: TurretIFF - proto: MachineFrame entities: - - uid: 552 + - uid: 655 components: - type: Transform pos: 5.5,20.5 parent: 1 - proto: MaintenanceFluffSpawner entities: - - uid: 553 + - uid: 656 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 554 + - uid: 657 components: - type: Transform pos: 3.5,10.5 parent: 1 - proto: MaintenanceToolSpawner entities: - - uid: 556 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad @@ -7424,33 +7959,77 @@ entities: parent: 1 - proto: MaintenanceWeaponSpawner entities: - - uid: 557 + - uid: 659 components: - type: Transform pos: -2.5,31.5 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 559 + - uid: 660 components: - type: Transform pos: -2.402193,7.596414 parent: 1 +- proto: N14JunkArcade + entities: + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,27.5 + parent: 1 +- proto: NitrogenCanisterBroken + entities: + - uid: 662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 1 +- proto: Paper + entities: + - uid: 663 + components: + - type: Transform + pos: 1.227263,14.248247 + parent: 1 + - type: Paper + content: >- + From: Regiment Battalion Engineering Corps + + + Sir, + + + The new Laelaps plans are in regrettably poor condition. Production has been curtailed, and material usage strictly limited. As the engineer assigned to this battalion, I shall offer no excuses. + + + I have implemented several modifications based upon the original Laelaps drafts. I am fully aware that the engine placements are far from ideal; however, given the circumstances, no better options were available. Supplies have been exceedingly scarce for an extended period, and the same engine oil has been reused countless times — the vessel is, quite literally, barely holding together. + + + I wish you every success, and trust that the ship endures until we reach our objective. + + + For the Kaiser. + + + — Regiment Battalion Engineering Corps - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 410 + - uid: 664 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 - - uid: 419 + - uid: 665 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 - - uid: 420 + - uid: 666 components: - type: Transform rot: 3.141592653589793 rad @@ -7458,7 +8037,7 @@ entities: parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 566 + - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad @@ -7466,177 +8045,189 @@ entities: parent: 1 - proto: PottedPlantRandomPlastic entities: - - uid: 567 + - uid: 668 components: - type: Transform - pos: 4.5,6.5 + pos: -4.5,1.5 parent: 1 - - uid: 568 +- proto: Poweredlight + entities: + - uid: 669 components: - type: Transform - pos: -4.5,1.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1 -- proto: PoweredlightLED - entities: - - uid: 571 + - uid: 670 components: - type: Transform - pos: -6.5,6.5 + pos: -3.5,7.5 parent: 1 - - uid: 572 + - uid: 671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 + pos: -0.5,7.5 parent: 1 - - uid: 573 + - uid: 672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 + pos: -4.5,20.5 parent: 1 - - uid: 574 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,12.5 + pos: -4.5,12.5 parent: 1 - - uid: 578 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: 1.5,9.5 parent: 1 - - uid: 581 + - uid: 675 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,12.5 + pos: 1.5,12.5 parent: 1 - - uid: 582 + - uid: 676 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,9.5 parent: 1 - - uid: 583 + - uid: 677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 + pos: 1.5,7.5 parent: 1 - - uid: 584 + - uid: 678 components: - type: Transform - pos: -0.5,7.5 + pos: 4.5,7.5 parent: 1 - - uid: 585 + - uid: 679 components: - type: Transform - pos: 1.5,7.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 - - uid: 586 + - uid: 680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,12.5 parent: 1 - - uid: 587 + - uid: 681 components: - type: Transform - pos: 4.5,7.5 + rot: 1.5707963267948966 rad + pos: -7.5,6.5 parent: 1 - - uid: 588 + - uid: 682 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: -6.5,2.5 parent: 1 - - uid: 589 + - uid: 683 components: - type: Transform - pos: 6.5,6.5 + rot: 3.141592653589793 rad + pos: -3.5,1.5 parent: 1 - - uid: 590 + - uid: 684 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,1.5 + pos: 7.5,2.5 parent: 1 - - uid: 591 + - uid: 685 components: - type: Transform - pos: -2.5,7.5 + pos: 6.5,6.5 parent: 1 - - uid: 592 + - uid: 686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 593 + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,3.5 + pos: -0.5,0.5 parent: 1 - - uid: 594 + - uid: 688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,3.5 + pos: -3.5,25.5 parent: 1 - - uid: 595 + - uid: 689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + rot: -1.5707963267948966 rad + pos: 4.5,25.5 parent: 1 - - uid: 596 + - uid: 690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: -1.5,19.5 parent: 1 - - uid: 597 + - uid: 691 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,25.5 + pos: -0.5,26.5 parent: 1 - - uid: 598 + - uid: 694 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,25.5 + pos: 1.5,26.5 parent: 1 - proto: PoweredSmallLight entities: - - uid: 600 + - uid: 695 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 601 + - uid: 696 components: - type: Transform pos: 3.5,31.5 parent: 1 - proto: Rack entities: - - uid: 577 + - uid: 697 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,21.5 parent: 1 - - uid: 603 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 723 + - uid: 699 components: - type: Transform rot: 3.141592653589793 rad @@ -7644,95 +8235,109 @@ entities: parent: 1 - proto: Railing entities: - - uid: 604 + - uid: 700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 1 + - uid: 701 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - - uid: 605 + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,10.5 parent: 1 - - uid: 606 + - uid: 703 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,10.5 parent: 1 - - uid: 607 + - uid: 704 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - - uid: 617 + - uid: 705 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,6.5 + pos: 0.5,31.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 947 + - uid: 706 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,23.5 + pos: -0.5,31.5 parent: 1 - - uid: 948 + - uid: 707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: 1.5,31.5 parent: 1 - - uid: 949 + - uid: 708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,33.5 + pos: 0.5,31.5 parent: 1 - - uid: 950 + - uid: 709 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 1 + - uid: 711 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 1 - - uid: 975 + - uid: 712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,33.5 + pos: 9.5,1.5 parent: 1 - - uid: 976 + - uid: 713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - proto: RailingRound entities: - - uid: 946 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,16.5 parent: 1 - - uid: 951 + - uid: 715 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 1 - - uid: 977 + - uid: 716 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 1 - - uid: 978 + - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad @@ -7740,102 +8345,148 @@ entities: parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 79 + - uid: 718 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 390 + - uid: 719 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 618 + - uid: 720 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 619 + - uid: 721 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 620 + - uid: 722 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 621 + - uid: 723 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 663 + - uid: 724 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 689 + - uid: 725 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 691 + - uid: 726 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 694 + - uid: 727 components: - type: Transform pos: 3.5,18.5 parent: 1 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6527574,12.66847 + parent: 1 - proto: ShuttersNormal entities: - - uid: 623 + - uid: 730 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 633 - - 634 - - uid: 624 + - 744 + - 745 + - uid: 731 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 633 - - 634 - - uid: 625 + - 744 + - 745 + - uid: 732 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 633 - - 634 + - 744 + - 745 - proto: ShuttleGunPlasmaRepeater entities: - - uid: 447 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 699 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18519.805 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18523.457 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - proto: SignalButton entities: - - uid: 626 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad @@ -7843,9 +8494,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 91: - - Pressed: Toggle - - uid: 627 + 93: + - - Pressed + - Toggle + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad @@ -7853,9 +8505,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 85: - - Pressed: Toggle - - uid: 628 + 87: + - - Pressed + - Toggle + - uid: 739 components: - type: Transform rot: -1.5707963267948966 rad @@ -7863,18 +8516,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 84: - - Pressed: Toggle - - uid: 629 + 86: + - - Pressed + - Toggle + - uid: 740 components: - type: Transform pos: 1.5,23.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 86: - - Pressed: Toggle - - uid: 630 + 88: + - - Pressed + - Toggle + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad @@ -7882,13 +8537,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 94: - - Pressed: Toggle - 93: - - Pressed: Toggle - 95: - - Pressed: Toggle - - uid: 631 + 98: + - - Pressed + - Toggle + 97: + - - Pressed + - Toggle + 99: + - - Pressed + - Toggle + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad @@ -7896,18 +8554,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 92: - - Pressed: Toggle - - uid: 632 + 96: + - - Pressed + - Toggle + - uid: 743 components: - type: Transform pos: -6.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 89: - - Pressed: Toggle - - uid: 633 + 91: + - - Pressed + - Toggle + - uid: 744 components: - type: Transform rot: 1.5707963267948966 rad @@ -7915,13 +8575,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 623: - - Pressed: Toggle - 624: - - Pressed: Toggle - 625: - - Pressed: Toggle - - uid: 634 + 730: + - - Pressed + - Toggle + 731: + - - Pressed + - Toggle + 732: + - - Pressed + - Toggle + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad @@ -7929,22 +8592,26 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 625: - - Pressed: Toggle - 624: - - Pressed: Toggle - 623: - - Pressed: Toggle - - uid: 635 + 732: + - - Pressed + - Toggle + 731: + - - Pressed + - Toggle + 730: + - - Pressed + - Toggle + - uid: 746 components: - type: Transform pos: 7.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 87: - - Pressed: Toggle - - uid: 636 + 89: + - - Pressed + - Toggle + - uid: 747 components: - type: Transform rot: 1.5707963267948966 rad @@ -7952,11 +8619,12 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 90: - - Pressed: Toggle + 92: + - - Pressed + - Toggle - proto: SignalButtonDirectional entities: - - uid: 610 + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad @@ -7964,9 +8632,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 813: - - Pressed: Toggle - - uid: 612 + 94: + - - Pressed + - Toggle + - uid: 749 components: - type: Transform rot: -1.5707963267948966 rad @@ -7974,37 +8643,38 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 898: - - Pressed: Toggle + 95: + - - Pressed + - Toggle - proto: SignBridge entities: - - uid: 637 + - uid: 750 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 638 + - uid: 751 components: - type: Transform pos: 1.5,11.5 parent: 1 - proto: SignMedical entities: - - uid: 639 + - uid: 752 components: - type: Transform pos: -1.5,6.5 parent: 1 - proto: SignPrison entities: - - uid: 640 + - uid: 753 components: - type: Transform pos: 2.5,6.5 parent: 1 - proto: SinkStemlessWater entities: - - uid: 641 + - uid: 754 components: - type: Transform rot: 1.5707963267948966 rad @@ -8012,7 +8682,7 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 642 + - uid: 755 components: - type: Transform rot: 1.5707963267948966 rad @@ -8020,42 +8690,32 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 643 + - uid: 756 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 644 + - uid: 757 components: - type: Transform pos: 4.5,12.5 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 983 + - uid: 758 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: StairDark entities: - - uid: 647 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - uid: 648 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - uid: 649 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 650 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad @@ -8063,68 +8723,76 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 565 + - uid: 761 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 1 - - uid: 645 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,24.5 parent: 1 - - uid: 927 + - uid: 763 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - - uid: 928 + - uid: 764 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 929 + - uid: 765 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 930 + - uid: 766 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 932 + - uid: 767 components: - type: Transform pos: -0.5,23.5 parent: 1 - proto: StorageCanister entities: - - uid: 651 + - uid: 768 components: - type: Transform pos: 4.5,25.5 parent: 1 +- proto: StorageCanisterBroken + entities: + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,26.5 + parent: 1 - proto: SubstationBasic entities: - - uid: 652 + - uid: 770 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 653 + - uid: 771 components: - type: Transform pos: -3.5,9.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 36 + - uid: 41 components: - type: Transform pos: 3.5,3.5 @@ -8135,13 +8803,13 @@ entities: showEnts: False occludes: True ents: - - 39 - - 40 - - 37 - - 38 + - 44 + - 45 - 42 - - 41 - - uid: 43 + - 43 + - 47 + - 46 + - uid: 48 components: - type: Transform pos: 3.5,2.5 @@ -8152,13 +8820,13 @@ entities: showEnts: False occludes: True ents: + - 54 - 49 - - 44 - - 47 - - 48 - - 46 - - 45 - - uid: 50 + - 52 + - 53 + - 51 + - 50 + - uid: 55 components: - type: Transform pos: 3.5,1.5 @@ -8169,45 +8837,45 @@ entities: showEnts: False occludes: True ents: - - 55 - - 54 - - 53 - - 51 - - 52 + - 60 + - 59 + - 58 - 56 + - 57 + - 61 - proto: Table entities: - - uid: 654 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 655 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 656 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 1 - - uid: 657 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 658 + - uid: 776 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 659 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad @@ -8215,19 +8883,19 @@ entities: parent: 1 - proto: TableFancyPurple entities: - - uid: 23 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 - - uid: 563 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 - - uid: 564 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -8235,24 +8903,24 @@ entities: parent: 1 - proto: TablePlasmaGlass entities: - - uid: 660 + - uid: 781 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 661 + - uid: 782 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 662 + - uid: 783 components: - type: Transform pos: -2.5,7.5 parent: 1 - proto: TableReinforced entities: - - uid: 664 + - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad @@ -8260,119 +8928,119 @@ entities: parent: 1 - proto: ThrusterDSMWarship entities: - - uid: 665 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 666 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 1 - - uid: 667 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 1 - - uid: 668 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 669 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 670 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 1 - - uid: 671 + - uid: 791 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 672 + - uid: 792 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 673 + - uid: 793 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 674 + - uid: 794 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 675 + - uid: 795 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 676 + - uid: 796 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 677 + - uid: 797 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 681 + - uid: 798 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 682 + - uid: 799 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,10.5 parent: 1 - - uid: 683 + - uid: 800 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 954 + - uid: 801 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 955 + - uid: 802 components: - type: Transform pos: 7.5,20.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 684 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 - - uid: 685 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad @@ -8380,920 +9048,965 @@ entities: parent: 1 - proto: Truncheon entities: - - uid: 686 + - uid: 805 components: - type: Transform pos: 5.3152604,2.5320563 parent: 1 - - uid: 687 + - uid: 806 components: - type: Transform pos: 5.5965104,2.4539313 parent: 1 - proto: TwoWayLever entities: - - uid: 688 + - uid: 807 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 425: - - Left: Forward - - Right: Reverse - - Middle: Off - 424: - - Left: Forward - - Right: Reverse - - Middle: Off - 423: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: Type99Artillery + 506: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 505: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 504: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off +- proto: Type99ArtilleryFilled entities: - - uid: 698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - - uid: 952 + - uid: 808 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,27.5 + pos: 0.5,24.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - proto: UnionfallShipNodeDSM entities: - - uid: 615 + - uid: 809 components: - type: Transform pos: 0.5,17.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 690 + - uid: 810 components: - type: Transform pos: -6.5,2.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 726 + - uid: 811 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 692 + - uid: 812 components: - type: Transform pos: -2.5,2.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 569 + - uid: 813 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 575 + - uid: 814 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 576 + - uid: 815 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 616 + - uid: 816 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 622 + - uid: 817 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 703 + - uid: 818 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 704 + - uid: 819 components: - type: Transform pos: -4.5,30.5 parent: 1 - - uid: 705 + - uid: 820 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 706 + - uid: 821 components: - type: Transform pos: 2.5,24.5 parent: 1 - - uid: 707 + - uid: 822 components: - type: Transform pos: -1.5,24.5 parent: 1 - - uid: 708 + - uid: 823 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 709 + - uid: 824 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 710 + - uid: 825 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 711 + - uid: 826 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 712 + - uid: 827 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 713 + - uid: 828 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 716 + - uid: 829 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 717 + - uid: 830 components: - type: Transform pos: 7.5,17.5 parent: 1 - - uid: 718 + - uid: 831 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 719 + - uid: 832 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 721 + - uid: 833 components: - type: Transform pos: -1.5,10.5 parent: 1 - - uid: 722 + - uid: 834 components: - type: Transform pos: -1.5,23.5 parent: 1 - - uid: 725 + - uid: 835 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 727 + - uid: 836 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 728 + - uid: 837 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 729 + - uid: 838 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 730 + - uid: 839 components: - type: Transform pos: -4.5,24.5 parent: 1 - - uid: 731 + - uid: 840 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 732 + - uid: 841 components: - type: Transform pos: -4.5,27.5 parent: 1 - - uid: 733 + - uid: 842 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 734 + - uid: 843 components: - type: Transform pos: 5.5,24.5 parent: 1 - - uid: 735 + - uid: 844 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 736 + - uid: 845 components: - type: Transform pos: 5.5,28.5 parent: 1 - - uid: 737 + - uid: 846 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 738 + - uid: 847 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 739 + - uid: 848 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 743 + - uid: 849 components: - type: Transform pos: -1.5,29.5 parent: 1 - - uid: 746 + - uid: 850 components: - type: Transform pos: -1.5,27.5 parent: 1 - - uid: 747 + - uid: 851 components: - type: Transform pos: 5.5,21.5 parent: 1 - - uid: 748 + - uid: 852 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 749 + - uid: 853 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 750 + - uid: 854 components: - type: Transform pos: -2.5,21.5 parent: 1 - - uid: 751 + - uid: 855 components: - type: Transform pos: 2.5,26.5 parent: 1 - - uid: 752 + - uid: 856 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 754 + - uid: 857 components: - type: Transform pos: -4.5,28.5 parent: 1 - - uid: 755 + - uid: 858 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 756 + - uid: 859 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 757 + - uid: 860 components: - type: Transform pos: -1.5,11.5 parent: 1 - - uid: 758 + - uid: 861 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 759 + - uid: 862 components: - type: Transform pos: -1.5,30.5 parent: 1 - - uid: 760 + - uid: 863 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 761 + - uid: 864 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 762 + - uid: 865 components: - type: Transform pos: 5.5,27.5 parent: 1 - - uid: 763 + - uid: 866 components: - type: Transform pos: -1.5,25.5 parent: 1 - - uid: 764 + - uid: 867 components: - type: Transform pos: -1.5,26.5 parent: 1 - - uid: 765 + - uid: 868 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 766 + - uid: 869 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 767 + - uid: 870 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 771 + - uid: 871 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 772 + - uid: 872 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 773 + - uid: 873 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 774 + - uid: 874 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 775 + - uid: 875 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 776 + - uid: 876 components: - type: Transform pos: 5.5,30.5 parent: 1 - - uid: 777 + - uid: 877 components: - type: Transform pos: 5.5,29.5 parent: 1 - - uid: 778 + - uid: 878 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 779 + - uid: 879 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 780 + - uid: 880 components: - type: Transform pos: 2.5,25.5 parent: 1 - - uid: 781 + - uid: 881 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 782 + - uid: 882 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 783 + - uid: 883 components: - type: Transform pos: 2.5,29.5 parent: 1 - - uid: 784 + - uid: 884 components: - type: Transform pos: -4.5,25.5 parent: 1 - - uid: 785 + - uid: 885 components: - type: Transform pos: 5.5,22.5 parent: 1 - - uid: 786 + - uid: 886 components: - type: Transform pos: -4.5,22.5 parent: 1 - - uid: 787 + - uid: 887 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 788 + - uid: 888 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 789 + - uid: 889 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 790 + - uid: 890 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 792 + - uid: 891 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 793 + - uid: 892 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 794 + - uid: 893 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 795 + - uid: 894 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 796 + - uid: 895 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 798 + - uid: 896 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 799 + - uid: 897 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 800 + - uid: 898 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 801 + - uid: 899 components: - type: Transform pos: -4.5,29.5 parent: 1 - - uid: 803 + - uid: 900 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 804 + - uid: 901 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 805 + - uid: 902 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 806 + - uid: 903 components: - type: Transform pos: -6.5,17.5 parent: 1 - - uid: 807 + - uid: 904 components: - type: Transform pos: 2.5,27.5 parent: 1 - - uid: 808 + - uid: 905 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 809 + - uid: 906 components: - type: Transform pos: 5.5,25.5 parent: 1 - - uid: 810 + - uid: 907 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 811 + - uid: 908 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 812 + - uid: 909 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 814 + - uid: 910 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 815 + - uid: 911 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 816 + - uid: 912 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 817 + - uid: 913 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 818 + - uid: 914 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 819 + - uid: 915 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 820 + - uid: 916 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 821 + - uid: 917 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 822 + - uid: 918 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 823 + - uid: 919 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 824 + - uid: 920 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 825 + - uid: 921 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 826 + - uid: 922 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 827 + - uid: 923 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 828 + - uid: 924 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 829 + - uid: 925 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 830 + - uid: 926 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 831 + - uid: 927 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 832 + - uid: 928 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 833 + - uid: 929 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 834 + - uid: 930 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 835 + - uid: 931 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 836 + - uid: 932 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 837 + - uid: 933 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 838 + - uid: 934 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 839 + - uid: 935 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 840 + - uid: 936 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 841 + - uid: 937 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 842 + - uid: 938 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 843 + - uid: 939 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 844 + - uid: 940 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 845 + - uid: 941 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 846 + - uid: 942 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 847 + - uid: 943 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 848 + - uid: 944 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 849 + - uid: 945 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 850 + - uid: 946 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 851 + - uid: 947 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 852 + - uid: 948 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 853 + - uid: 949 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 854 + - uid: 950 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 855 + - uid: 951 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 856 + - uid: 952 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 857 + - uid: 953 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 858 + - uid: 954 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 859 + - uid: 955 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 860 + - uid: 956 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 861 + - uid: 957 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 862 + - uid: 958 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 863 + - uid: 959 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 864 + - uid: 960 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 865 + - uid: 961 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 866 + - uid: 962 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 867 + - uid: 963 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 868 + - uid: 964 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 869 + - uid: 965 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 870 + - uid: 966 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 871 + - uid: 967 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 872 + - uid: 968 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 873 + - uid: 969 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 874 + - uid: 970 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 875 + - uid: 971 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 876 + - uid: 972 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 877 + - uid: 973 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 878 + - uid: 974 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 879 + - uid: 975 components: - type: Transform pos: -2.5,32.5 parent: 1 - - uid: 922 + - uid: 976 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 938 + - uid: 977 components: - type: Transform - pos: 3.5,33.5 + rot: 3.141592653589793 rad + pos: -3.5,32.5 parent: 1 - - uid: 939 + - uid: 978 components: - type: Transform - pos: -2.5,33.5 + rot: 3.141592653589793 rad + pos: 4.5,32.5 parent: 1 - proto: WallPlastitaniumDiagonalCurved entities: - - uid: 614 + - uid: 979 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: -3.5,33.5 + parent: 1 + - uid: 983 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 1 - - uid: 646 + - uid: 984 components: - type: Transform rot: 3.141592653589793 rad @@ -9301,24 +10014,24 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalHollow entities: - - uid: 715 + - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 1 - - uid: 720 + - uid: 986 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 770 + - uid: 987 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 911 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad @@ -9326,83 +10039,72 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - - uid: 881 - components: - - type: Transform - pos: -3.5,32.5 - parent: 1 - - uid: 882 + - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 1 - - uid: 883 + - uid: 990 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 1 - - uid: 884 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - - uid: 885 + - uid: 992 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - - uid: 886 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - - uid: 887 + - uid: 994 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 888 + - uid: 995 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 889 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 1 - - uid: 890 + - uid: 997 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 1 - - uid: 891 + - uid: 998 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 892 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 893 + - uid: 1000 components: - type: Transform rot: 1.5707963267948966 rad @@ -9410,48 +10112,48 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 894 + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 1 - - uid: 895 + - uid: 1002 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 896 + - uid: 1003 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 897 + - uid: 1004 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 899 + - uid: 1005 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,25.5 parent: 1 - - uid: 900 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,25.5 parent: 1 - - uid: 902 + - uid: 1007 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 903 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad @@ -9459,22 +10161,46 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 904 + - uid: 1009 components: - type: Transform pos: -1.5,6.5 parent: 1 +- proto: WardrobeBlack + entities: + - uid: 1028 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1029 + - 1030 + - 1031 + - 1032 + - 1033 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WarpPointShip entities: - - uid: 905 + - uid: 1010 components: + - type: MetaData + name: DSM Laelaps - type: Transform rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 906 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad @@ -9482,7 +10208,7 @@ entities: parent: 1 - proto: WeaponDisabler entities: - - uid: 907 + - uid: 1012 components: - type: Transform pos: 5.8357854,1.3758063 @@ -9490,7 +10216,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 908 + - uid: 1013 components: - type: Transform pos: 5.8514104,1.6258063 @@ -9500,7 +10226,7 @@ entities: linearDamping: 0 - proto: WeaponPistolComplianceImperial entities: - - uid: 909 + - uid: 1014 components: - type: Transform pos: 5.2889104,1.3445563 @@ -9508,7 +10234,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 910 + - uid: 1015 components: - type: Transform pos: 5.307101,1.5945563 @@ -9518,12 +10244,16 @@ entities: linearDamping: 0 - proto: WeaponTurretNeedler entities: - - uid: 5 + - uid: 1016 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9538,14 +10268,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 77 + linkedConsoleId: 503 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9560,14 +10302,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 78 + linkedConsoleId: 503 + - uid: 1018 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9582,36 +10336,26 @@ entities: showEnts: False occludes: True ent: null - - type: PointCannon - linkedConsoleId: 33 - - uid: 611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,16.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container + machine_board: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 940 + linkedConsoleId: 503 + - uid: 1019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + rot: -1.5707963267948966 rad + pos: -7.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9626,35 +10370,22 @@ entities: showEnts: False occludes: True ent: null - - type: PointCannon - linkedConsoleId: 33 - - uid: 941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,33.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container + machine_board: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_parts: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + ents: [] - type: PointCannon - linkedConsoleId: 33 -- proto: WeaponTurretVulcan + linkedConsoleId: 503 +- proto: WeaponTurretPDT entities: - - uid: 913 + - uid: 1020 components: - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - type: ContainerContainer @@ -9663,20 +10394,25 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 33 - - uid: 914 + linkedConsoleId: 503 + - type: Battery + startingCharge: 0 + - uid: 1021 components: - type: Transform - pos: -8.5,1.5 + rot: -1.5707963267948966 rad + pos: -5.5,30.5 parent: 1 - type: ContainerContainer containers: @@ -9684,20 +10420,24 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 33 - - uid: 981 + linkedConsoleId: 503 + - type: Battery + startingCharge: 0 + - uid: 1022 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 6.5,30.5 parent: 1 - type: ContainerContainer @@ -9706,19 +10446,25 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - uid: 982 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: PointCannon + linkedConsoleId: 503 + - type: Battery + startingCharge: 0 + - uid: 1023 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,30.5 + pos: -8.5,1.5 parent: 1 - type: ContainerContainer containers: @@ -9726,35 +10472,41 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: PointCannon + linkedConsoleId: 503 + - type: Battery + startingCharge: 0 - proto: WindowReinforcedDirectional entities: - - uid: 915 + - uid: 1024 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 916 + - uid: 1025 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 917 + - uid: 1026 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,12.5 parent: 1 - - uid: 918 + - uid: 1027 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml index 1356b80025c..bac3b7601f5 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 22:11:44 + entityCount: 214 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 34: FloorDarkDiagonal @@ -24,12 +35,12 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAgQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIgAAAAAAACIAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAACIAAAAAAAAiAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -56,70 +67,70 @@ entities: color: '#D381C996' id: ConcreteTrimCornerNe decals: - 213: 3,1 + 179: 3,1 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimCornerNw decals: - 211: 1,1 + 177: 1,1 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimCornerSe decals: - 221: 2,-2 + 187: 2,-2 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimCornerSw decals: - 222: 1,-2 + 188: 1,-2 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimEndE decals: - 217: 5,0 + 183: 5,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimInnerNe decals: - 215: 3,0 + 181: 3,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimInnerSe decals: - 214: 2,0 + 180: 2,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineE decals: - 220: 2,-1 + 186: 2,-1 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineN decals: - 212: 2,1 - 216: 4,0 + 178: 2,1 + 182: 4,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineS decals: - 218: 4,0 - 219: 3,0 + 184: 4,0 + 185: 3,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineW decals: - 223: 1,-1 - 224: 1,0 + 189: 1,-1 + 190: 1,0 - node: zIndex: 1 id: LatticeCornerNE @@ -130,18 +141,54 @@ entities: 45: 1,-4 50: 0,-4 53: 5,-4 - 85: 0,2 - 90: 0,3 - 119: 0,-4 - 122: 1,-4 - 127: 3,-4 - 132: 5,-4 - 142: 0,2 - 147: 0,3 - 176: 0,-4 - 179: 1,-4 - 184: 3,-4 - 189: 5,-4 + 67: 0,2 + 72: 0,3 + 101: 0,-4 + 104: 1,-4 + 109: 3,-4 + 114: 5,-4 + 124: 0,2 + 129: 0,3 + 148: 0,-4 + 151: 1,-4 + 156: 3,-4 + 161: 5,-4 + 209: 0,2 + 214: 0,3 + 243: 0,-4 + 246: 1,-4 + 251: 3,-4 + 256: 5,-4 + 266: 0,2 + 271: 0,3 + 300: 0,-4 + 303: 1,-4 + 308: 3,-4 + 313: 5,-4 + 323: 0,2 + 328: 0,3 + 357: 0,-4 + 360: 1,-4 + 365: 3,-4 + 370: 5,-4 + 380: 0,2 + 385: 0,3 + 414: 0,-4 + 417: 1,-4 + 422: 3,-4 + 427: 5,-4 + 437: 0,2 + 442: 0,3 + 471: 0,-4 + 474: 1,-4 + 479: 3,-4 + 484: 5,-4 + 494: 0,2 + 499: 0,3 + 528: 0,-4 + 531: 1,-4 + 536: 3,-4 + 541: 5,-4 - node: zIndex: 1 id: LatticeCornerNW @@ -152,18 +199,54 @@ entities: 47: 1,-4 55: 5,-4 58: 6,-4 - 108: 6,2 - 113: 6,3 - 124: 1,-4 - 129: 3,-4 - 134: 5,-4 - 137: 6,-4 - 165: 6,2 - 170: 6,3 - 181: 1,-4 - 186: 3,-4 - 191: 5,-4 - 194: 6,-4 + 90: 6,2 + 95: 6,3 + 106: 1,-4 + 111: 3,-4 + 116: 5,-4 + 119: 6,-4 + 137: 6,2 + 142: 6,3 + 153: 1,-4 + 158: 3,-4 + 163: 5,-4 + 166: 6,-4 + 232: 6,2 + 237: 6,3 + 248: 1,-4 + 253: 3,-4 + 258: 5,-4 + 261: 6,-4 + 289: 6,2 + 294: 6,3 + 305: 1,-4 + 310: 3,-4 + 315: 5,-4 + 318: 6,-4 + 346: 6,2 + 351: 6,3 + 362: 1,-4 + 367: 3,-4 + 372: 5,-4 + 375: 6,-4 + 403: 6,2 + 408: 6,3 + 419: 1,-4 + 424: 3,-4 + 429: 5,-4 + 432: 6,-4 + 460: 6,2 + 465: 6,3 + 476: 1,-4 + 481: 3,-4 + 486: 5,-4 + 489: 6,-4 + 517: 6,2 + 522: 6,3 + 533: 1,-4 + 538: 3,-4 + 543: 5,-4 + 546: 6,-4 - node: zIndex: 1 id: LatticeCornerSE @@ -173,16 +256,46 @@ entities: 14: 0,4 17: 1,4 22: 5,4 - 83: 0,2 - 88: 0,3 - 93: 0,4 - 96: 1,4 - 101: 5,4 - 140: 0,2 - 145: 0,3 - 150: 0,4 - 202: 5,4 - 207: 1,4 + 65: 0,2 + 70: 0,3 + 75: 0,4 + 78: 1,4 + 83: 5,4 + 122: 0,2 + 127: 0,3 + 132: 0,4 + 169: 5,4 + 174: 1,4 + 207: 0,2 + 212: 0,3 + 217: 0,4 + 220: 1,4 + 225: 5,4 + 264: 0,2 + 269: 0,3 + 274: 0,4 + 277: 1,4 + 282: 5,4 + 321: 0,2 + 326: 0,3 + 331: 0,4 + 334: 1,4 + 339: 5,4 + 378: 0,2 + 383: 0,3 + 388: 0,4 + 391: 1,4 + 396: 5,4 + 435: 0,2 + 440: 0,3 + 445: 0,4 + 448: 1,4 + 453: 5,4 + 492: 0,2 + 497: 0,3 + 502: 0,4 + 505: 1,4 + 510: 5,4 - node: zIndex: 1 id: LatticeCornerSW @@ -192,16 +305,46 @@ entities: 28: 6,2 33: 6,3 37: 6,4 - 98: 1,4 - 103: 5,4 - 107: 6,2 - 112: 6,3 - 116: 6,4 - 164: 6,2 - 169: 6,3 - 173: 6,4 - 204: 5,4 - 209: 1,4 + 80: 1,4 + 85: 5,4 + 89: 6,2 + 94: 6,3 + 98: 6,4 + 136: 6,2 + 141: 6,3 + 145: 6,4 + 171: 5,4 + 176: 1,4 + 222: 1,4 + 227: 5,4 + 231: 6,2 + 236: 6,3 + 240: 6,4 + 279: 1,4 + 284: 5,4 + 288: 6,2 + 293: 6,3 + 297: 6,4 + 336: 1,4 + 341: 5,4 + 345: 6,2 + 350: 6,3 + 354: 6,4 + 393: 1,4 + 398: 5,4 + 402: 6,2 + 407: 6,3 + 411: 6,4 + 450: 1,4 + 455: 5,4 + 459: 6,2 + 464: 6,3 + 468: 6,4 + 507: 1,4 + 512: 5,4 + 516: 6,2 + 521: 6,3 + 525: 6,4 - node: id: LatticeEdgeE decals: @@ -214,24 +357,78 @@ entities: 43: 1,-4 48: 0,-4 51: 5,-4 - 82: 0,2 - 87: 0,3 - 92: 0,4 - 95: 1,4 - 100: 5,4 - 117: 0,-4 - 120: 1,-4 - 125: 3,-4 - 130: 5,-4 - 139: 0,2 - 144: 0,3 - 149: 0,4 - 174: 0,-4 - 177: 1,-4 - 182: 3,-4 - 187: 5,-4 - 201: 5,4 - 206: 1,4 + 64: 0,2 + 69: 0,3 + 74: 0,4 + 77: 1,4 + 82: 5,4 + 99: 0,-4 + 102: 1,-4 + 107: 3,-4 + 112: 5,-4 + 121: 0,2 + 126: 0,3 + 131: 0,4 + 146: 0,-4 + 149: 1,-4 + 154: 3,-4 + 159: 5,-4 + 168: 5,4 + 173: 1,4 + 206: 0,2 + 211: 0,3 + 216: 0,4 + 219: 1,4 + 224: 5,4 + 241: 0,-4 + 244: 1,-4 + 249: 3,-4 + 254: 5,-4 + 263: 0,2 + 268: 0,3 + 273: 0,4 + 276: 1,4 + 281: 5,4 + 298: 0,-4 + 301: 1,-4 + 306: 3,-4 + 311: 5,-4 + 320: 0,2 + 325: 0,3 + 330: 0,4 + 333: 1,4 + 338: 5,4 + 355: 0,-4 + 358: 1,-4 + 363: 3,-4 + 368: 5,-4 + 377: 0,2 + 382: 0,3 + 387: 0,4 + 390: 1,4 + 395: 5,4 + 412: 0,-4 + 415: 1,-4 + 420: 3,-4 + 425: 5,-4 + 434: 0,2 + 439: 0,3 + 444: 0,4 + 447: 1,4 + 452: 5,4 + 469: 0,-4 + 472: 1,-4 + 477: 3,-4 + 482: 5,-4 + 491: 0,2 + 496: 0,3 + 501: 0,4 + 504: 1,4 + 509: 5,4 + 526: 0,-4 + 529: 1,-4 + 534: 3,-4 + 539: 5,-4 - node: id: LatticeEdgeN decals: @@ -244,24 +441,78 @@ entities: 49: 0,-4 52: 5,-4 56: 6,-4 - 84: 0,2 - 89: 0,3 - 105: 6,2 - 110: 6,3 - 118: 0,-4 - 121: 1,-4 - 126: 3,-4 - 131: 5,-4 - 135: 6,-4 - 141: 0,2 - 146: 0,3 - 162: 6,2 - 167: 6,3 - 175: 0,-4 - 178: 1,-4 - 183: 3,-4 - 188: 5,-4 - 192: 6,-4 + 66: 0,2 + 71: 0,3 + 87: 6,2 + 92: 6,3 + 100: 0,-4 + 103: 1,-4 + 108: 3,-4 + 113: 5,-4 + 117: 6,-4 + 123: 0,2 + 128: 0,3 + 134: 6,2 + 139: 6,3 + 147: 0,-4 + 150: 1,-4 + 155: 3,-4 + 160: 5,-4 + 164: 6,-4 + 208: 0,2 + 213: 0,3 + 229: 6,2 + 234: 6,3 + 242: 0,-4 + 245: 1,-4 + 250: 3,-4 + 255: 5,-4 + 259: 6,-4 + 265: 0,2 + 270: 0,3 + 286: 6,2 + 291: 6,3 + 299: 0,-4 + 302: 1,-4 + 307: 3,-4 + 312: 5,-4 + 316: 6,-4 + 322: 0,2 + 327: 0,3 + 343: 6,2 + 348: 6,3 + 356: 0,-4 + 359: 1,-4 + 364: 3,-4 + 369: 5,-4 + 373: 6,-4 + 379: 0,2 + 384: 0,3 + 400: 6,2 + 405: 6,3 + 413: 0,-4 + 416: 1,-4 + 421: 3,-4 + 426: 5,-4 + 430: 6,-4 + 436: 0,2 + 441: 0,3 + 457: 6,2 + 462: 6,3 + 470: 0,-4 + 473: 1,-4 + 478: 3,-4 + 483: 5,-4 + 487: 6,-4 + 493: 0,2 + 498: 0,3 + 514: 6,2 + 519: 6,3 + 527: 0,-4 + 530: 1,-4 + 535: 3,-4 + 540: 5,-4 + 544: 6,-4 - node: id: LatticeEdgeS decals: @@ -273,22 +524,70 @@ entities: 25: 6,2 30: 6,3 35: 6,4 - 81: 0,2 - 86: 0,3 - 91: 0,4 - 94: 1,4 - 99: 5,4 - 104: 6,2 - 109: 6,3 - 114: 6,4 - 138: 0,2 - 143: 0,3 - 148: 0,4 - 161: 6,2 - 166: 6,3 - 171: 6,4 - 200: 5,4 - 205: 1,4 + 63: 0,2 + 68: 0,3 + 73: 0,4 + 76: 1,4 + 81: 5,4 + 86: 6,2 + 91: 6,3 + 96: 6,4 + 120: 0,2 + 125: 0,3 + 130: 0,4 + 133: 6,2 + 138: 6,3 + 143: 6,4 + 167: 5,4 + 172: 1,4 + 205: 0,2 + 210: 0,3 + 215: 0,4 + 218: 1,4 + 223: 5,4 + 228: 6,2 + 233: 6,3 + 238: 6,4 + 262: 0,2 + 267: 0,3 + 272: 0,4 + 275: 1,4 + 280: 5,4 + 285: 6,2 + 290: 6,3 + 295: 6,4 + 319: 0,2 + 324: 0,3 + 329: 0,4 + 332: 1,4 + 337: 5,4 + 342: 6,2 + 347: 6,3 + 352: 6,4 + 376: 0,2 + 381: 0,3 + 386: 0,4 + 389: 1,4 + 394: 5,4 + 399: 6,2 + 404: 6,3 + 409: 6,4 + 433: 0,2 + 438: 0,3 + 443: 0,4 + 446: 1,4 + 451: 5,4 + 456: 6,2 + 461: 6,3 + 466: 6,4 + 490: 0,2 + 495: 0,3 + 500: 0,4 + 503: 1,4 + 508: 5,4 + 513: 6,2 + 518: 6,3 + 523: 6,4 - node: id: LatticeEdgeW decals: @@ -301,54 +600,108 @@ entities: 46: 1,-4 54: 5,-4 57: 6,-4 - 97: 1,4 - 102: 5,4 - 106: 6,2 - 111: 6,3 - 115: 6,4 - 123: 1,-4 - 128: 3,-4 - 133: 5,-4 - 136: 6,-4 - 163: 6,2 - 168: 6,3 - 172: 6,4 - 180: 1,-4 - 185: 3,-4 - 190: 5,-4 - 193: 6,-4 - 203: 5,4 - 208: 1,4 + 79: 1,4 + 84: 5,4 + 88: 6,2 + 93: 6,3 + 97: 6,4 + 105: 1,-4 + 110: 3,-4 + 115: 5,-4 + 118: 6,-4 + 135: 6,2 + 140: 6,3 + 144: 6,4 + 152: 1,-4 + 157: 3,-4 + 162: 5,-4 + 165: 6,-4 + 170: 5,4 + 175: 1,4 + 221: 1,4 + 226: 5,4 + 230: 6,2 + 235: 6,3 + 239: 6,4 + 247: 1,-4 + 252: 3,-4 + 257: 5,-4 + 260: 6,-4 + 278: 1,4 + 283: 5,4 + 287: 6,2 + 292: 6,3 + 296: 6,4 + 304: 1,-4 + 309: 3,-4 + 314: 5,-4 + 317: 6,-4 + 335: 1,4 + 340: 5,4 + 344: 6,2 + 349: 6,3 + 353: 6,4 + 361: 1,-4 + 366: 3,-4 + 371: 5,-4 + 374: 6,-4 + 392: 1,4 + 397: 5,4 + 401: 6,2 + 406: 6,3 + 410: 6,4 + 418: 1,-4 + 423: 3,-4 + 428: 5,-4 + 431: 6,-4 + 449: 1,4 + 454: 5,4 + 458: 6,2 + 463: 6,3 + 467: 6,4 + 475: 1,-4 + 480: 3,-4 + 485: 5,-4 + 488: 6,-4 + 506: 1,4 + 511: 5,4 + 515: 6,2 + 520: 6,3 + 524: 6,4 + 532: 1,-4 + 537: 3,-4 + 542: 5,-4 + 545: 6,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechE decals: - 228: 2,2 + 193: 2,2 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 229: 2,3 + 194: 2,3 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNW decals: - 227: 4,3 + 192: 4,3 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 226: 4,2 + 191: 4,2 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnEndN decals: - 231: 3,3 + 196: 3,3 - node: angle: 3.141592653589793 rad color: '#D381C996' @@ -356,10 +709,10 @@ entities: decals: 61: 6,0 62: 6,0 - 235: 0,0 - 236: 0,0 - 237: 0,-1 - 238: 0,-1 + 200: 0,0 + 201: 0,0 + 202: 0,-1 + 203: 0,-1 - node: angle: 6.283185307179586 rad color: '#D381C996' @@ -367,10 +720,10 @@ entities: decals: 59: 6,0 60: 6,0 - 230: 3,2 - 233: 0,0 - 234: 0,0 - 239: 0,-1 + 195: 3,2 + 198: 0,0 + 199: 0,0 + 204: 0,-1 - node: color: '#43990996' id: WarnLineGreyscaleN @@ -382,7 +735,7 @@ entities: color: '#D381C996' id: WarnLineS decals: - 232: 3,2 + 197: 3,2 - type: GridAtmosphere version: 2 data: @@ -446,6 +799,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle NX-561 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - uid: 2 @@ -456,7 +810,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 83 + - 126 - type: Physics canCollide: False - uid: 3 @@ -467,7 +821,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 83 + - 126 - type: Physics canCollide: False - proto: AirlockShuttle @@ -495,40 +849,61 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: APCBasic +- proto: APCHighCapacity entities: - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - type: BatterySelfRecharger + autoRechargeRate: 100000 + autoRecharge: True +- proto: APCHyperCapacity + entities: + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 + - type: BatterySelfRecharger + autoRechargeRate: 200000 + autoRecharge: True - proto: AtmosDeviceFanTiny entities: - - uid: 14 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 1 - - uid: 15 + - uid: 16 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 16 + - uid: 17 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 17 + - uid: 18 components: - type: Transform pos: 2.5,4.5 parent: 1 -- proto: BoriaticGeneratorHerculesShuttle +- proto: BaseSubstationWall entities: - - uid: 18 + - uid: 19 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: BoriaticGeneratorEinsteinShuttle + entities: + - uid: 20 components: - type: Transform pos: 2.5,-1.5 @@ -539,7 +914,7 @@ entities: bodyType: Static - proto: ButtonFrameCaution entities: - - uid: 19 + - uid: 21 components: - type: Transform rot: -1.5707963267948966 rad @@ -547,320 +922,525 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 20 + - uid: 22 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 21 + - uid: 23 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 22 + - uid: 24 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 23 + - uid: 25 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 24 + - uid: 26 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 25 + - uid: 27 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 26 + - uid: 28 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 27 + - uid: 29 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 28 + - uid: 30 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 29 + - uid: 31 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 30 + - uid: 32 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 31 + - uid: 33 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 32 + - uid: 34 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 33 + - uid: 35 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 34 + - uid: 36 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 35 + - uid: 37 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 36 + - uid: 38 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 37 + - uid: 39 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 38 + - uid: 40 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 39 + - uid: 41 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 40 + - uid: 42 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 41 + - uid: 43 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 42 + - uid: 44 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 43 + - uid: 45 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 44 + - uid: 46 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 45 + - uid: 47 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 46 + - uid: 48 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 47 + - uid: 49 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 48 + - uid: 50 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 49 + - uid: 51 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 50 + - uid: 52 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 51 + - uid: 53 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 52 + - uid: 54 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 53 + - uid: 55 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 54 + - uid: 56 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 55 + - uid: 57 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 56 + - uid: 58 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 57 + - uid: 59 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 58 + - uid: 60 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 59 + - uid: 61 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 60 + - uid: 62 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 61 + - uid: 63 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 62 + - uid: 64 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 63 + - uid: 65 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 64 + - uid: 66 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 65 + - uid: 67 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 66 + - uid: 68 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 67 + - uid: 69 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 68 + - uid: 70 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 69 + - uid: 71 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 70 + - uid: 72 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 71 + - uid: 73 components: - type: Transform pos: 4.5,0.5 parent: 1 + - uid: 74 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 - proto: CableHV entities: - - uid: 72 + - uid: 75 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 73 + - uid: 76 components: - type: Transform pos: 2.5,-2.5 parent: 1 + - uid: 77 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 - proto: CableMV entities: - - uid: 74 + - uid: 90 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 75 + - uid: 91 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 76 + - uid: 92 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 77 + - uid: 93 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 78 + - uid: 94 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 121 components: - type: Transform - pos: 4.5,-2.5 + pos: 5.5,2.5 parent: 1 - proto: CargoPallet entities: - - uid: 79 + - uid: 122 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 80 + - uid: 123 components: - type: Transform pos: 5.5,1.5 parent: 1 - proto: ChairPilotSeat entities: - - uid: 81 + - uid: 124 components: - type: Transform rot: 3.141592653589793 rad @@ -912,14 +1492,14 @@ entities: - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 82 + - uid: 125 components: - type: Transform pos: 5.5,-0.5 parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 83 + - uid: 126 components: - type: Transform pos: 4.5,-0.5 @@ -941,9 +1521,11 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - Group1: Toggle + - - Group1 + - Toggle 3: - - Group1: Toggle + - - Group1 + - Toggle - type: NamedModules buttonNames: - Toggle Vulcans @@ -953,31 +1535,31 @@ entities: - Module E - proto: FaxMachineShip entities: - - uid: 84 + - uid: 127 components: - type: Transform pos: 5.5,-1.5 parent: 1 - proto: FirelockEdge entities: - - uid: 85 + - uid: 128 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 86 + - uid: 129 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 87 + - uid: 130 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 88 + - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad @@ -985,32 +1567,32 @@ entities: parent: 1 - proto: GasPassiveVent entities: - - uid: 89 + - uid: 132 components: - type: Transform pos: 6.5,4.5 parent: 1 - proto: GasPipeBend entities: - - uid: 90 + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - - uid: 91 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 92 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 93 + - uid: 136 components: - type: Transform rot: 1.5707963267948966 rad @@ -1018,19 +1600,19 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 94 + - uid: 137 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 95 + - uid: 138 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,2.5 parent: 1 - - uid: 96 + - uid: 139 components: - type: Transform rot: 3.141592653589793 rad @@ -1038,7 +1620,7 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 97 + - uid: 140 components: - type: Transform rot: 3.141592653589793 rad @@ -1046,7 +1628,7 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 98 + - uid: 141 components: - type: Transform rot: 1.5707963267948966 rad @@ -1054,7 +1636,7 @@ entities: parent: 1 - proto: GasVentScrubber entities: - - uid: 99 + - uid: 142 components: - type: Transform rot: -1.5707963267948966 rad @@ -1062,20 +1644,20 @@ entities: parent: 1 - proto: GravityGeneratorMini entities: - - uid: 100 + - uid: 143 components: - type: Transform pos: 1.5,-1.5 parent: 1 - proto: Grille entities: - - uid: 101 + - uid: 144 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 - - uid: 102 + - uid: 145 components: - type: Transform rot: 3.141592653589793 rad @@ -1094,41 +1676,48 @@ entities: - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 103 - components: - - type: Transform - pos: 2.2914922,-1.4761214 - parent: 1 - - uid: 104 + - uid: 146 components: - type: Transform - pos: 2.499561,-1.4761214 + pos: 2.3516612,-1.6302726 parent: 1 - - uid: 105 + - uid: 147 components: - type: Transform - pos: 2.6481805,-1.4761214 + pos: 2.6861567,-1.4002066 parent: 1 - proto: MagazineVulcan entities: - - uid: 106 + - uid: 148 components: - type: Transform pos: 5.522419,1.5607862 parent: 1 - - uid: 107 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 149 components: - type: Transform pos: 5.522419,1.5607862 parent: 1 -- proto: NTVulcanTurret + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] +- proto: NTVulcanTurretFilled entities: - - uid: 108 + - uid: 150 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - type: ApcPowerReceiver + powerLoad: 5000 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1143,14 +1732,28 @@ entities: showEnts: False occludes: True ent: null - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 109 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 19666.309 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 151 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - type: ApcPowerReceiver + powerLoad: 5000 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1165,35 +1768,45 @@ entities: showEnts: False occludes: True ent: null - - type: ChamberMagazineAmmoProvider - boltClosed: True + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 19669.629 + - type: ApcPowerReceiverBattery + enabled: True - proto: PoweredSmallLight entities: - - uid: 110 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 111 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 112 + - uid: 154 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 113 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - - uid: 114 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad @@ -1201,7 +1814,7 @@ entities: parent: 1 - proto: Rack entities: - - uid: 115 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad @@ -1209,25 +1822,25 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 116 + - uid: 158 components: - type: Transform pos: 2.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 118 - - uid: 117 + - 160 + - uid: 159 components: - type: Transform pos: 4.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 118 + - 160 - proto: SignalButton entities: - - uid: 118 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -1235,26 +1848,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 117: - - Pressed: Toggle - 116: - - Pressed: Toggle + 159: + - - Pressed + - Toggle + 158: + - - Pressed + - Toggle - proto: SmallGyroscopeSecurity entities: - - uid: 119 + - uid: 161 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 -- proto: SubstationWallBasic - entities: - - uid: 120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - proto: SuitStorageBase entities: - uid: 6 @@ -1268,27 +1875,27 @@ entities: showEnts: False occludes: True ents: - - 12 - 7 - - 11 - - 8 - - 9 - 10 + - 9 + - 8 + - 11 + - 12 - proto: TableReinforced entities: - - uid: 121 + - uid: 162 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 122 + - uid: 163 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 123 + - uid: 164 components: - type: Transform rot: 3.141592653589793 rad @@ -1296,301 +1903,289 @@ entities: parent: 1 - proto: ThrusterDSMFighter entities: - - uid: 124 + - uid: 165 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 125 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - - uid: 126 + - uid: 167 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 127 + - uid: 168 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 1 - - uid: 128 + - uid: 169 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 129 + - uid: 170 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 1 - - uid: 130 + - uid: 171 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 1 -- proto: WallReinforced +- proto: WallPlastitanium entities: - - uid: 131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - - uid: 132 + - uid: 172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + pos: 0.5,-2.5 parent: 1 - - uid: 133 + - uid: 173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 + pos: 5.5,2.5 parent: 1 - - uid: 134 + - uid: 174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 + pos: 5.5,3.5 parent: 1 - - uid: 135 + - uid: 175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 6.5,-2.5 parent: 1 - - uid: 136 + - uid: 176 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 1 - - uid: 137 + - uid: 177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-3.5 + pos: 4.5,-2.5 parent: 1 - - uid: 138 + - uid: 178 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 2.5,-2.5 parent: 1 - - uid: 139 + - uid: 179 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 140 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: 2.5,-3.5 parent: 1 - - uid: 141 + - uid: 181 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-3.5 + pos: 4.5,-3.5 parent: 1 - - uid: 142 + - uid: 182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 + pos: 1.5,3.5 parent: 1 - - uid: 143 + - uid: 183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 6.5,-0.5 parent: 1 - - uid: 144 + - uid: 184 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 1 - - uid: 145 + - uid: 185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + pos: 0.5,-1.5 parent: 1 - - uid: 146 + - uid: 186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + pos: 6.5,2.5 parent: 1 - - uid: 147 + - uid: 187 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 148 + - uid: 188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 + pos: 6.5,0.5 parent: 1 -- proto: WallSolidDiagonalNortheastCurved - entities: - - uid: 149 + - uid: 189 components: - type: Transform - pos: 0.5,2.5 + pos: 0.5,1.5 parent: 1 - - uid: 150 + - uid: 195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 + pos: 3.5,4.5 parent: 1 - - uid: 151 +- proto: WallPlastitaniumDiagonalCurved + entities: + - uid: 190 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - - uid: 152 + - uid: 191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 - - uid: 153 + - uid: 192 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - - uid: 154 + - uid: 194 components: - type: Transform - pos: 1.5,4.5 + pos: 0.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 155 + - uid: 196 components: + - type: MetaData + name: Dsm Saintsfall - type: Transform pos: 3.5,0.5 parent: 1 - proto: WindoorSecure entities: - - uid: 156 + - uid: 197 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 157 + - uid: 198 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 158 + - uid: 199 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 159 + - uid: 200 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 160 + - uid: 201 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 161 + - uid: 202 components: - type: Transform pos: 4.5,1.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 162 + - uid: 203 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 163 + - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 164 + - uid: 205 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 165 + - uid: 206 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 166 + - uid: 207 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 167 + - uid: 208 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - - uid: 168 + - uid: 209 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 169 + - uid: 210 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 170 + - uid: 211 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 171 + - uid: 212 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 - - uid: 172 + - uid: 213 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - - uid: 173 + - uid: 214 components: - type: Transform rot: 3.141592653589793 rad diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml index 9cb0f9518ad..676b8c99ea3 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 00:18:32 + entityCount: 260 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 38: FloorDark @@ -24,20 +35,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: xAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAGAEAAAAAFAEAAAAAxAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: xAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAXAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAYAQAAAAAAFAEAAAAAAMQAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAAAO0AAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAFwEAAAAAFwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAFAEAAAAARAAAAAAARAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAAFwEAAAAAABcBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFwEAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAxAAAAAAAFAEAAAAAGAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAFwEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAADEAAAAAAAAFAEAAAAAABgBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAAFwEAAAAAFwEAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAARAAAAAAARAAAAAAAFAEAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBAAAAAAAXAQAAAAAAFwEAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAABcBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -116,9 +127,12 @@ entities: 184: -5,-2 187: -4,-5 193: -4,4 - 231: -5,-2 - 234: -4,-5 - 323: -4,4 + 215: -5,-2 + 218: -4,-5 + 231: -4,4 + 268: -5,-2 + 271: -4,-5 + 277: -4,4 - node: zIndex: 1 id: LatticeCornerNW @@ -132,9 +146,12 @@ entities: 178: 4,4 209: 4,-5 212: 5,-2 - 256: 4,-5 - 259: 5,-2 - 333: 4,4 + 223: 4,-5 + 226: 5,-2 + 236: 4,4 + 265: 4,4 + 289: 4,-5 + 292: 5,-2 - node: zIndex: 1 id: LatticeCornerSE @@ -154,10 +171,14 @@ entities: 196: -4,5 199: -3,5 204: -2,6 - 321: -4,4 - 371: -2,6 - 474: -1,6 - 479: 1,6 + 229: -4,4 + 242: -2,6 + 245: -1,6 + 250: 1,6 + 255: 1,6 + 275: -4,4 + 280: -2,6 + 283: -1,6 - node: zIndex: 1 id: LatticeCornerSW @@ -177,10 +198,14 @@ entities: 177: 4,4 181: 4,5 201: -3,5 - 332: 4,4 - 355: 2,6 - 476: -1,6 - 481: 1,6 + 235: 4,4 + 239: 2,6 + 247: -1,6 + 252: 1,6 + 257: 1,6 + 260: 2,6 + 264: 4,4 + 285: -1,6 - node: id: LatticeEdgeE decals: @@ -205,12 +230,18 @@ entities: 195: -4,5 198: -3,5 203: -2,6 - 229: -5,-2 - 232: -4,-5 - 320: -4,4 - 370: -2,6 - 473: -1,6 - 478: 1,6 + 213: -5,-2 + 216: -4,-5 + 228: -4,4 + 241: -2,6 + 244: -1,6 + 249: 1,6 + 254: 1,6 + 266: -5,-2 + 269: -4,-5 + 274: -4,4 + 279: -2,6 + 282: -1,6 - node: id: LatticeEdgeN decals: @@ -240,14 +271,22 @@ entities: 206: 3,-6 207: 4,-5 210: 5,-2 - 230: -5,-2 - 233: -4,-5 - 235: -3,-6 - 253: 3,-6 - 254: 4,-5 - 257: 5,-2 - 322: -4,4 - 330: 4,4 + 214: -5,-2 + 217: -4,-5 + 219: -3,-6 + 220: 3,-6 + 221: 4,-5 + 224: 5,-2 + 230: -4,4 + 233: 4,4 + 262: 4,4 + 267: -5,-2 + 270: -4,-5 + 272: -3,-6 + 276: -4,4 + 286: 3,-6 + 287: 4,-5 + 290: 5,-2 - node: id: LatticeEdgeS decals: @@ -275,12 +314,18 @@ entities: 194: -4,5 197: -3,5 202: -2,6 - 319: -4,4 - 329: 4,4 - 353: 2,6 - 369: -2,6 - 472: -1,6 - 477: 1,6 + 227: -4,4 + 232: 4,4 + 237: 2,6 + 240: -2,6 + 243: -1,6 + 248: 1,6 + 253: 1,6 + 258: 2,6 + 261: 4,4 + 273: -4,4 + 278: -2,6 + 281: -1,6 - node: id: LatticeEdgeW decals: @@ -305,12 +350,18 @@ entities: 200: -3,5 208: 4,-5 211: 5,-2 - 255: 4,-5 - 258: 5,-2 - 331: 4,4 - 354: 2,6 - 475: -1,6 - 480: 1,6 + 222: 4,-5 + 225: 5,-2 + 234: 4,4 + 238: 2,6 + 246: -1,6 + 251: 1,6 + 256: 1,6 + 259: 2,6 + 263: 4,4 + 284: -1,6 + 288: 4,-5 + 291: 5,-2 - node: color: '#FFFFFFFF' id: TechE @@ -494,9 +545,10 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: VanguardMarkTwo + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 17 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad @@ -504,19 +556,19 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 244 + - 128 - type: Physics canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 4 + - uid: 3 components: - type: Transform pos: 0.5,-6.5 parent: 1 - type: Physics canCollide: False - - uid: 16 + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad @@ -524,7 +576,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 261 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad @@ -534,7 +586,7 @@ entities: canCollide: False - proto: AirCanister entities: - - uid: 111 + - uid: 6 components: - type: Transform anchored: True @@ -546,13 +598,13 @@ entities: bodyType: Static - proto: AirlockCommand entities: - - uid: 81 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 1 - - uid: 82 + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad @@ -560,13 +612,13 @@ entities: parent: 1 - proto: AirlockCommandHorizontal entities: - - uid: 207 + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - uid: 208 + - uid: 10 components: - type: Transform rot: 1.5707963267948966 rad @@ -574,13 +626,13 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 79 + - uid: 11 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 80 + - uid: 12 components: - type: Transform rot: -1.5707963267948966 rad @@ -588,7 +640,7 @@ entities: parent: 1 - proto: APCBasic entities: - - uid: 145 + - uid: 13 components: - type: Transform rot: 1.5707963267948966 rad @@ -596,24 +648,24 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 211 + - uid: 14 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 215 + - uid: 15 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 228 + - uid: 16 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 97 + - uid: 17 components: - type: Transform pos: -1.5,-2.5 @@ -624,7 +676,7 @@ entities: bodyType: Static - proto: ButtonFrameCaution entities: - - uid: 236 + - uid: 18 components: - type: Transform rot: 3.141592653589793 rad @@ -632,575 +684,607 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 33 + - uid: 19 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 34 + - uid: 20 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 35 + - uid: 21 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 36 + - uid: 22 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 38 + - uid: 23 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 39 + - uid: 24 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 40 + - uid: 25 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 41 + - uid: 26 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 42 + - uid: 27 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 85 + - uid: 28 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 148 + - uid: 29 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 149 + - uid: 30 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 150 + - uid: 31 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 151 + - uid: 32 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 152 + - uid: 33 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 153 + - uid: 34 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 154 + - uid: 35 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 155 + - uid: 36 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 156 + - uid: 37 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 157 + - uid: 38 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 158 + - uid: 39 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 159 + - uid: 40 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 160 + - uid: 41 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 161 + - uid: 42 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 162 + - uid: 43 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 163 + - uid: 44 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 164 + - uid: 45 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 165 + - uid: 46 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 166 + - uid: 47 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 167 + - uid: 48 components: - type: Transform pos: 3.5,1.5 parent: 1 - - uid: 168 + - uid: 49 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 169 + - uid: 50 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 170 + - uid: 51 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 171 + - uid: 52 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 172 + - uid: 53 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 173 + - uid: 54 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 174 + - uid: 55 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 175 + - uid: 56 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 176 + - uid: 57 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 179 + - uid: 58 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 180 + - uid: 59 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 181 + - uid: 60 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 182 + - uid: 61 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 183 + - uid: 62 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 184 + - uid: 63 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 185 + - uid: 64 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 186 + - uid: 65 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 187 + - uid: 66 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 188 + - uid: 67 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 189 + - uid: 68 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 190 + - uid: 69 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 191 + - uid: 70 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 192 + - uid: 71 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 193 + - uid: 72 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 194 + - uid: 73 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 195 + - uid: 74 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 196 + - uid: 75 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 197 + - uid: 76 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 198 + - uid: 77 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 199 + - uid: 78 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 200 + - uid: 79 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 201 + - uid: 80 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 202 + - uid: 81 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 203 + - uid: 82 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 204 + - uid: 83 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 205 + - uid: 84 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 206 + - uid: 85 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 225 + - uid: 86 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 226 + - uid: 87 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 227 + - uid: 88 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 229 + - uid: 89 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 234 + - uid: 90 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 235 + - uid: 91 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: CableHV entities: - - uid: 141 + - uid: 92 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 142 + - uid: 93 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 143 + - uid: 94 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 144 + - uid: 95 components: - type: Transform pos: 1.5,-2.5 parent: 1 - proto: CableMV entities: - - uid: 137 + - uid: 96 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 138 + - uid: 97 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 139 + - uid: 98 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 140 + - uid: 99 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 146 + - uid: 100 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 147 + - uid: 101 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 27 + - uid: 167 components: - type: Transform - pos: -1.2630869,3.4399166 - parent: 1 - - uid: 28 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 168 components: - type: Transform - pos: -1.3099619,3.557104 - parent: 1 - - uid: 29 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 169 components: - type: Transform - pos: -1.3333994,3.6274166 - parent: 1 - - uid: 31 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 170 components: - type: Transform - pos: -1.2162119,3.3461666 - parent: 1 - - uid: 37 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 171 components: - type: Transform - pos: -1.8255868,3.697729 - parent: 1 - - uid: 77 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 172 components: - type: Transform - pos: -1.4505869,3.697729 - parent: 1 - - uid: 83 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 173 components: - type: Transform - pos: -1.4974619,3.791479 - parent: 1 - - uid: 87 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 174 components: - type: Transform - pos: -1.6380868,3.885229 - parent: 1 - - uid: 178 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 175 components: - type: Transform - pos: -1.6849618,3.9555416 - parent: 1 - - uid: 219 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 176 components: - type: Transform - pos: -1.6380868,3.4399166 - parent: 1 - - uid: 220 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 177 components: - type: Transform - pos: -1.7083993,3.603979 - parent: 1 - - uid: 221 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 178 components: - type: Transform - pos: -1.6146493,3.3930416 - parent: 1 - - uid: 222 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 179 components: - type: Transform - pos: -1.6615243,3.5336666 - parent: 1 - - uid: 231 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 180 components: - type: Transform - pos: -1.4505869,3.088354 - parent: 1 - - uid: 232 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 181 components: - type: Transform - pos: -1.5677743,3.2992916 - parent: 1 - - uid: 233 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 182 components: - type: Transform - pos: -1.4974619,3.2055416 - parent: 1 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CartridgeShellHighExplosive entities: - - uid: 267 + - uid: 102 components: - type: Transform pos: 2.4792738,3.7435112 parent: 1 - - uid: 268 + - uid: 103 components: - type: Transform pos: 2.5067015,3.3047543 parent: 1 - proto: Catwalk entities: - - uid: 101 + - uid: 104 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 102 + - uid: 105 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 103 + - uid: 106 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 104 + - uid: 107 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 105 + - uid: 108 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 106 + - uid: 109 components: - type: Transform pos: 4.5,1.5 parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 9 + - uid: 111 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 214 + - uid: 117 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 242 + - uid: 126 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1208,28 +1292,28 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 14 + - uid: 112 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 218 + - uid: 118 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 239 + - uid: 123 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1237,36 +1321,43 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagNCWL entities: - - uid: 13 + - uid: 113 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 213 + - uid: 119 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 238 + - uid: 125 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ComputerAdvancedRadar + entities: + - uid: 191 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 - proto: ComputerShuttle entities: - - uid: 244 + - uid: 128 components: - type: Transform pos: -0.5,-0.5 @@ -1287,8 +1378,9 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 17: - - Group1: SpaceArtilleryFire + 2: + - - Group1 + - SpaceArtilleryFire - type: NamedModules buttonNames: - Fire 120mm @@ -1298,45 +1390,35 @@ entities: - Module E - proto: ComputerTargeting entities: - - uid: 3 + - uid: 129 components: - type: Transform pos: -0.5,4.5 parent: 1 - - type: TargetingConsole - cannonGroups: - all: - - 259 - - 6 - - 260 - SHI MG-213 light dual machinegun 20x135mm: - - 259 - - 6 - - 260 - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 7 + - uid: 114 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 216 + - uid: 120 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 241 + - uid: 127 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1344,14 +1426,14 @@ entities: - type: InsideEntityStorage - proto: FaxMachineShip entities: - - uid: 95 + - uid: 130 components: - type: Transform pos: 2.5,-0.5 parent: 1 - proto: GasPassiveVent entities: - - uid: 136 + - uid: 131 components: - type: Transform rot: 3.141592653589793 rad @@ -1361,7 +1443,7 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 127 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad @@ -1369,7 +1451,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 128 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad @@ -1379,77 +1461,77 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 120 + - uid: 134 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 121 + - uid: 135 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 122 + - uid: 136 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 123 + - uid: 137 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 124 + - uid: 138 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 129 + - uid: 139 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 130 + - uid: 140 components: - type: Transform pos: -0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 131 + - uid: 141 components: - type: Transform pos: -0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 133 + - uid: 142 components: - type: Transform pos: -0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 134 + - uid: 143 components: - type: Transform pos: -0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 135 + - uid: 144 components: - type: Transform pos: -0.5,-3.5 @@ -1458,7 +1540,7 @@ entities: color: '#990000FF' - proto: GasPipeTJunction entities: - - uid: 132 + - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad @@ -1468,7 +1550,7 @@ entities: color: '#990000FF' - proto: GasPort entities: - - uid: 117 + - uid: 146 components: - type: Transform rot: 3.141592653589793 rad @@ -1478,14 +1560,14 @@ entities: color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 118 + - uid: 147 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 119 + - uid: 148 components: - type: Transform pos: 0.5,3.5 @@ -1494,7 +1576,7 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 125 + - uid: 149 components: - type: Transform rot: -1.5707963267948966 rad @@ -1502,7 +1584,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 126 + - uid: 150 components: - type: Transform pos: 0.5,4.5 @@ -1511,144 +1593,118 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 98 + - uid: 151 components: - type: Transform pos: -0.5,-2.5 parent: 1 - proto: Gyroscope entities: - - uid: 100 + - uid: 152 components: - type: Transform pos: 2.5,-2.5 parent: 1 -- proto: HandHeldMassScannerEE - entities: - - uid: 271 - components: - - type: Transform - pos: 1.5378815,-0.3590932 - parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 272 - components: - - type: Transform - pos: 1.3184658,-0.66073847 - parent: 1 - - uid: 273 - components: - - type: Transform - pos: 1.9081465,-0.6470275 - parent: 1 - proto: JetpackBlackFilled entities: - - uid: 12 + - uid: 115 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 217 + - uid: 121 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 240 + - uid: 124 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: PaperBin20 +- proto: N14CrateAluminium entities: - - uid: 96 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 -- proto: PlastitaniumWindow - entities: - - uid: 8 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - uid: 10 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - uid: 11 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 30 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1 - - uid: 246 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 247 + - uid: 166 components: - type: Transform - pos: -1.5,4.5 + pos: -1.5,3.5 parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 182 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 + - 180 + - 181 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: PoweredSmallLight entities: - - uid: 112 + - uid: 159 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 1 - - uid: 113 + - uid: 160 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 114 + - uid: 161 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 115 + - uid: 162 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 116 + - uid: 163 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 209 + - uid: 164 components: - type: Transform pos: 1.5,1.5 parent: 1 - type: PointLight energy: 0.5 - - uid: 210 + - uid: 165 components: - type: Transform pos: -0.5,1.5 @@ -1657,37 +1713,32 @@ entities: energy: 0.5 - proto: Rack entities: - - uid: 223 - components: - - type: Transform - pos: -1.5,3.5 - parent: 1 - - uid: 224 + - uid: 183 components: - type: Transform pos: 2.5,3.5 parent: 1 - proto: Railing entities: - - uid: 107 + - uid: 184 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 108 + - uid: 185 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 109 + - uid: 186 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 1 - - uid: 110 + - uid: 187 components: - type: Transform rot: 3.141592653589793 rad @@ -1695,17 +1746,17 @@ entities: parent: 1 - proto: ShuttersNormalOpen entities: - - uid: 230 + - uid: 188 components: - type: Transform pos: 0.5,6.5 parent: 1 - type: DeviceLinkSink links: - - 243 + - 189 - proto: SignalButtonDirectional entities: - - uid: 243 + - uid: 189 components: - type: Transform rot: 3.141592653589793 rad @@ -1713,18 +1764,19 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 230: - - Pressed: Toggle + 188: + - - Pressed + - Toggle - proto: SubstationBasic entities: - - uid: 99 + - uid: 190 components: - type: Transform pos: 1.5,-2.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 5 + - uid: 110 components: - type: Transform pos: 4.5,-0.5 @@ -1737,12 +1789,12 @@ entities: showEnts: False occludes: True ents: - - 7 - - 9 - - 12 - - 13 - - 14 - - uid: 212 + - 114 + - 111 + - 115 + - 113 + - 112 + - uid: 116 components: - type: Transform pos: -3.5,-0.5 @@ -1755,12 +1807,12 @@ entities: showEnts: False occludes: True ents: - - 213 - - 214 - - 216 - - 217 - - 218 - - uid: 237 + - 119 + - 117 + - 120 + - 121 + - 118 + - uid: 122 components: - type: Transform pos: -1.5,-0.5 @@ -1773,20 +1825,14 @@ entities: showEnts: False occludes: True ents: - - 238 - - 239 - - 240 - - 241 - - 242 + - 123 + - 126 + - 127 + - 124 + - 125 - proto: TableReinforced entities: - - uid: 93 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - - uid: 94 + - uid: 192 components: - type: Transform rot: 3.141592653589793 rad @@ -1794,71 +1840,71 @@ entities: parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 15 + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 19 + - uid: 194 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 20 + - uid: 195 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 21 + - uid: 196 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 22 + - uid: 197 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 23 + - uid: 198 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 - - uid: 24 + - uid: 199 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 25 + - uid: 200 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 26 + - uid: 201 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 32 + - uid: 202 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 73 + - uid: 203 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 86 + - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad @@ -1866,328 +1912,447 @@ entities: parent: 1 - proto: Type99Artillery entities: - - uid: 18 + - uid: 205 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 -- proto: WallReinforced + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 18968.877 + - type: ApcPowerReceiverBattery + enabled: True +- proto: WallPlastitanium entities: - - uid: 43 + - uid: 153 components: - type: Transform - pos: 3.5,-0.5 + pos: -1.5,5.5 parent: 1 - - uid: 44 + - uid: 156 components: - type: Transform - pos: 3.5,2.5 + pos: -1.5,4.5 parent: 1 - - uid: 45 + - uid: 157 components: - type: Transform - pos: -0.5,2.5 + pos: -0.5,6.5 parent: 1 - - uid: 46 + - uid: 158 components: - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 1 - - uid: 47 + - uid: 210 components: - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 48 + - uid: 211 components: - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 1 - - uid: 49 + - uid: 212 components: - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 1 - - uid: 50 + - uid: 213 components: - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 51 + - uid: 214 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 52 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 1 - - uid: 53 + - uid: 216 components: - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 54 + - uid: 218 components: - type: Transform - pos: 3.5,-4.5 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 55 + - uid: 219 components: - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 1 - - uid: 56 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - uid: 57 + - uid: 220 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 1 - - uid: 58 + - uid: 221 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 59 + - uid: 222 components: - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 60 + - uid: 223 components: - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - - uid: 61 + - uid: 224 components: - type: Transform - pos: -2.5,2.5 + pos: -3.5,2.5 parent: 1 - - uid: 62 + - uid: 225 components: - type: Transform - pos: 4.5,-1.5 + pos: -2.5,2.5 parent: 1 - - uid: 63 + - uid: 227 components: - type: Transform - pos: -3.5,-1.5 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 1 - - uid: 64 + - uid: 228 components: - type: Transform - pos: -4.5,-0.5 + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 - - uid: 65 + - uid: 229 components: - type: Transform - pos: -4.5,1.5 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 parent: 1 - - uid: 66 + - uid: 230 components: - type: Transform - pos: -1.5,2.5 + pos: 5.5,1.5 parent: 1 - - uid: 67 + - uid: 231 components: - type: Transform - pos: 5.5,-0.5 + pos: 4.5,2.5 parent: 1 - - uid: 68 + - uid: 233 components: - type: Transform - pos: 5.5,1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 1 - - uid: 69 + - uid: 234 components: - type: Transform - pos: 5.5,2.5 + rot: 1.5707963267948966 rad + pos: -0.5,2.5 parent: 1 - - uid: 70 + - uid: 235 components: - type: Transform - pos: -2.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 parent: 1 - - uid: 71 + - uid: 236 components: - type: Transform - pos: 1.5,2.5 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 72 + - uid: 237 components: - type: Transform - pos: 3.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - - uid: 74 + - uid: 238 components: - type: Transform - pos: 1.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,0.5 parent: 1 - - uid: 75 + - uid: 240 components: - type: Transform - pos: -3.5,2.5 + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 parent: 1 - - uid: 76 + - uid: 241 components: - type: Transform - pos: -2.5,-0.5 + pos: 3.5,3.5 parent: 1 - - uid: 78 + - uid: 242 components: - type: Transform - pos: 4.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 84 + - uid: 243 components: - type: Transform - pos: -4.5,2.5 + pos: 1.5,6.5 parent: 1 - - uid: 88 + - uid: 244 components: - type: Transform - pos: -1.5,5.5 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 parent: 1 - - uid: 89 + - uid: 245 components: - type: Transform - pos: 2.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,0.5 parent: 1 - - uid: 90 + - uid: 246 components: - type: Transform - pos: 2.5,5.5 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 parent: 1 - - uid: 91 + - uid: 247 components: - type: Transform - pos: 2.5,0.5 + pos: 2.5,4.5 parent: 1 - - uid: 92 + - uid: 248 components: - type: Transform - pos: -1.5,0.5 + pos: -4.5,1.5 parent: 1 - - uid: 177 + - uid: 250 components: - type: Transform - pos: -0.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,-4.5 parent: 1 - - uid: 248 + - uid: 252 components: - type: Transform - pos: 1.5,6.5 + rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 1 - - uid: 251 + - uid: 255 components: - type: Transform - pos: -0.5,6.5 + pos: 2.5,5.5 parent: 1 -- proto: WallReinforcedDiagonalCurved +- proto: WallPlastitaniumDiagonalCurved entities: - - uid: 253 + - uid: 154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + pos: -1.5,6.5 parent: 1 - - uid: 254 + - uid: 155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 + pos: -2.5,4.5 parent: 1 - - uid: 255 + - uid: 215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 1 - - uid: 256 + - uid: 217 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-4.5 parent: 1 - - uid: 257 + - uid: 226 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-5.5 + pos: 5.5,-1.5 parent: 1 - - uid: 258 + - uid: 232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + pos: -4.5,2.5 parent: 1 -- proto: WallReinforcedDiagonalHollow - entities: - - uid: 245 + - uid: 239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + rot: -1.5707963267948966 rad + pos: 5.5,2.5 parent: 1 - uid: 249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,5.5 + pos: -2.5,-5.5 parent: 1 - - uid: 250 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 1 - - uid: 252 +- proto: WallReinforced + entities: + - uid: 207 components: - type: Transform - pos: -1.5,6.5 + pos: 3.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 2 + - uid: 257 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: WeaponTurretPDT entities: - - uid: 6 + - uid: 258 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleIds: - - 3 - linkedConsoleId: 3 + linkedConsoleId: 129 - uid: 259 components: - type: Transform pos: 0.5,-6.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleIds: - - 3 - linkedConsoleId: 3 + linkedConsoleId: 129 - uid: 260 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleIds: - - 3 - linkedConsoleId: 3 + linkedConsoleId: 129 ... diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml index aec372abf9d..7f5a99463c2 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 23:44:41 + entityCount: 1447 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 38: FloorDark @@ -8,6 +19,7 @@ tilemap: 163: FloorReinforced 196: FloorTechMaint2 3: FloorTechMaintDirectional + 4: FloorWhite 237: Lattice 276: Plating 1: PlatingBurnt @@ -26,44 +38,44 @@ entities: chunks: 0,0: ind: 0,0 - tiles: FAEAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAJgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAAQAAAAAAAwAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAJgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAAQAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAAQAAAAAAJgAAAAAAxAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAxAAAAAAAxAAAAAAARAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAAQAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAJgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAEAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAQAAAAAAxAAAAAAAxAAAAAAAFAEAAAAARAAAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAAFAEAAAAAAgAAAAAAAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAFAEAAAAAAAAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAARAAAAAAAAAAAAAAAFAEAAAAAAgAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAARAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAARAAAAAAAAAAAAAAAFAEAAAAARAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: FAEAAAAAABQBAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAFAEAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAACYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABQBAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAmAAAAAAAAAQAAAAAAAAMAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAJgAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAAEAAAAAAAAmAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAFAEAAAAAAMQAAAAAAAABAAAAAAAAJgAAAAAAAMQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAARAAAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAABQBAAAAAADEAAAAAAAAAQAAAAAAACYAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAJgAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAARAAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAUAQAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAQAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAABEAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAARAAAAAAAABQBAAAAAAACAAAAAAAAAQAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAABEAAAAAAAAFAEAAAAAAAAAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAFAEAAAAAAAIAAAAAAAAUAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: owAAAAAAFAEAAAAAAgAAAAAAFAEAAAAAxAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAwAAAAAAAwAAAAAAFAEAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAwAAAAAAAwAAAAAAFAEAAAAAJgAAAAAAJgAAAAAAAQAAAAAAFAEAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAEAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAwAAAAAAJgAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAxAAAAAAAAQAAAAAAowAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAJgAAAAAAowAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAowAAAAAAowAAAAAAFAEAAAAAJgAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAAQAAAAAAowAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAJgAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAxAAAAAAAxAAAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAxAAAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAARAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BAAAAAAAABQBAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAABAAAAAAAAFAEAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAAAEAAAAAAAAUAQAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFAEAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAwAAAAAAACYAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAMQAAAAAAAABAAAAAAAAowAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAJgAAAAAAAKMAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAJgAAAAAAAAEAAAAAAAABAAAAAAAAxAAAAAAAAAEAAAAAAACjAAAAAAAAFAEAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAABQBAAAAAAABAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAxAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAARAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAA7QAAAAAAAAAAAAAARAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAJgAAAAAAxAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAJgAAAAAAxAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAARAAAAAAAAQAAAAAAAwAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAARAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAARAAAAAAARAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAxAAAAAAARAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFAEAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAADtAAAAAAAAAAAAAAAAAEQAAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAJgAAAAAAAMQAAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAACYAAAAAAADEAAAAAAAAFAEAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAARAAAAAAAAAEAAAAAAAADAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAEQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAAAUAQAAAAAARAAAAAAAABQBAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAARAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAAgAAAAAAxAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAFAEAAAAAAgAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAwAAAAAAxAAAAAAAFAEAAAAAAgAAAAAAFAEAAAAAxAAAAAAAowAAAAAAowAAAAAAowAAAAAAowAAAAAAFAEAAAAAAQAAAAAAxAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAowAAAAAAxAAAAAAAAgAAAAAAFAEAAAAAxAAAAAAAowAAAAAAowAAAAAAowAAAAAAowAAAAAAxAAAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAwAAAAAAAwAAAAAAFAEAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAABAAAAAAAABQBAAAAAAACAAAAAAAAxAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAAQAAAAAAAAUAQAAAAAAAgAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAMAAAAAAAAEAAAAAAAAFAEAAAAAAAIAAAAAAAAUAQAAAAAAxAAAAAAAAKMAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAAQAAAAAAAMQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAMQAAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAACjAAAAAAAAxAAAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAJgAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAJgAAAAAAJgAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAowAAAAAAowAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAJgAAAAAAACYAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAowAAAAAAowAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAARAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAACYAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAmAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: FAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: FAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -89,7 +101,7 @@ entities: color: '#EFB34196' id: BotRightGreyscale decals: - 216: -12,-5 + 207: -12,-5 - node: color: '#EFB34196' id: BoxGreyscale @@ -99,1575 +111,2478 @@ entities: 2: -16,6 3: 11,9 4: 10,9 - 214: -11,-5 - 215: -10,-5 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNe - decals: - 114: -16,0 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNw - decals: - 113: -18,0 + 205: -11,-5 + 206: -10,-5 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 111: -16,-1 - 127: -8,2 + 118: -8,2 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 112: -18,-1 - 123: -12,2 + 114: -12,2 - node: color: '#EFB34196' id: BrickTileSteelInnerNe decals: - 131: -12,4 - 178: -6,-4 + 122: -12,4 + 169: -6,-4 - node: color: '#EFB34196' id: BrickTileSteelInnerNw decals: - 167: 7,-4 - 179: -6,-4 + 158: 7,-4 + 170: -6,-4 - node: color: '#EFB34196' id: BrickTileSteelInnerSe decals: - 129: -8,4 + 120: -8,4 - node: color: '#EFB34196' id: BrickTileSteelInnerSw decals: - 130: -12,4 - 170: 7,-4 + 121: -12,4 + 161: 7,-4 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 128: -8,3 - 140: -6,5 - 174: 7,-5 - 175: 7,-4 + 119: -8,3 + 131: -6,5 + 165: 7,-5 + 166: 7,-4 - node: color: '#EFB34196' id: BrickTileSteelLineN decals: - 108: -16,-3 - 109: -17,0 - 132: -11,4 - 133: -10,4 - 134: -9,4 - 135: -8,4 - 168: 6,-4 + 123: -11,4 + 124: -10,4 + 125: -9,4 + 126: -8,4 + 159: 6,-4 - node: color: '#EFB34196' id: BrickTileSteelLineS decals: - 110: -17,-1 - 124: -11,2 - 125: -10,2 - 126: -9,2 - 169: 6,-4 - 176: -6,-4 + 115: -11,2 + 116: -10,2 + 117: -9,2 + 160: 6,-4 + 167: -6,-4 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: - 122: -12,3 - 141: -6,5 - 173: 7,-5 + 113: -12,3 + 132: -6,5 + 164: 7,-5 - node: color: '#EFB34196' id: DeliveryGreyscale decals: - 212: -9,-5 - 213: -8,-5 + 203: -9,-5 + 204: -8,-5 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 736: 6,3 - 819: 6,3 - 1017: -3,1 - 1031: 2,1 - 1047: -1,3 - 1055: 1,3 - 1063: -1,-3 - 1071: 1,-3 - 1087: 1,3 - 1104: 2,1 - 1141: 6,3 - 1166: -3,1 - 1204: -1,3 - 1246: 1,-3 - 1354: -1,-3 - 1393: 1,3 - 1410: 2,1 - 1447: 6,3 - 1472: -3,1 - 1510: -1,3 - 1552: 1,-3 - 1660: -1,-3 + 727: 6,3 + 810: 6,3 + 1008: -3,1 + 1022: 2,1 + 1038: -1,3 + 1046: 1,3 + 1054: -1,-3 + 1062: 1,-3 + 1078: 1,3 + 1095: 2,1 + 1132: 6,3 + 1157: -3,1 + 1195: -1,3 + 1237: 1,-3 + 1345: -1,-3 + 1384: 1,3 + 1401: 2,1 + 1438: 6,3 + 1463: -3,1 + 1501: -1,3 + 1543: 1,-3 + 1651: -1,-3 + 1690: 1,3 + 1707: 2,1 + 1744: 6,3 + 1769: -3,1 + 1807: -1,3 + 1849: 1,-3 + 1957: -1,-3 + 1996: 1,3 + 2013: 2,1 + 2050: 6,3 + 2075: -3,1 + 2113: -1,3 + 2155: 1,-3 + 2263: -1,-3 + 2302: 1,3 + 2319: 2,1 + 2356: 6,3 + 2381: -3,1 + 2419: -1,3 + 2461: 1,-3 + 2569: -1,-3 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 743: 6,-1 - 933: 6,-1 - 1024: -3,-1 - 1038: 2,-1 - 1046: -1,3 - 1054: 1,3 - 1062: -1,-3 - 1070: 1,-3 - 1086: 1,3 - 1203: -1,3 - 1245: 1,-3 - 1262: 2,-1 - 1285: 6,-1 - 1317: -3,-1 - 1353: -1,-3 - 1392: 1,3 - 1509: -1,3 - 1551: 1,-3 - 1568: 2,-1 - 1591: 6,-1 - 1623: -3,-1 - 1659: -1,-3 + 734: 6,-1 + 924: 6,-1 + 1015: -3,-1 + 1029: 2,-1 + 1037: -1,3 + 1045: 1,3 + 1053: -1,-3 + 1061: 1,-3 + 1077: 1,3 + 1194: -1,3 + 1236: 1,-3 + 1253: 2,-1 + 1276: 6,-1 + 1308: -3,-1 + 1344: -1,-3 + 1383: 1,3 + 1500: -1,3 + 1542: 1,-3 + 1559: 2,-1 + 1582: 6,-1 + 1614: -3,-1 + 1650: -1,-3 + 1689: 1,3 + 1806: -1,3 + 1848: 1,-3 + 1865: 2,-1 + 1888: 6,-1 + 1920: -3,-1 + 1956: -1,-3 + 1995: 1,3 + 2112: -1,3 + 2154: 1,-3 + 2171: 2,-1 + 2194: 6,-1 + 2226: -3,-1 + 2262: -1,-3 + 2301: 1,3 + 2418: -1,3 + 2460: 1,-3 + 2477: 2,-1 + 2500: 6,-1 + 2532: -3,-1 + 2568: -1,-3 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 749: 10,-1 - 939: 10,-1 - 1020: -2,-1 - 1034: 3,-1 - 1042: -1,3 - 1050: 1,3 - 1058: -1,-3 - 1066: 1,-3 - 1082: 1,3 - 1199: -1,3 - 1241: 1,-3 - 1278: 3,-1 - 1291: 10,-1 - 1333: -2,-1 - 1349: -1,-3 - 1388: 1,3 - 1505: -1,3 - 1547: 1,-3 - 1584: 3,-1 - 1597: 10,-1 - 1639: -2,-1 - 1655: -1,-3 + 740: 10,-1 + 930: 10,-1 + 1011: -2,-1 + 1025: 3,-1 + 1033: -1,3 + 1041: 1,3 + 1049: -1,-3 + 1057: 1,-3 + 1073: 1,3 + 1190: -1,3 + 1232: 1,-3 + 1269: 3,-1 + 1282: 10,-1 + 1324: -2,-1 + 1340: -1,-3 + 1379: 1,3 + 1496: -1,3 + 1538: 1,-3 + 1575: 3,-1 + 1588: 10,-1 + 1630: -2,-1 + 1646: -1,-3 + 1685: 1,3 + 1802: -1,3 + 1844: 1,-3 + 1881: 3,-1 + 1894: 10,-1 + 1936: -2,-1 + 1952: -1,-3 + 1991: 1,3 + 2108: -1,3 + 2150: 1,-3 + 2187: 3,-1 + 2200: 10,-1 + 2242: -2,-1 + 2258: -1,-3 + 2297: 1,3 + 2414: -1,3 + 2456: 1,-3 + 2493: 3,-1 + 2506: 10,-1 + 2548: -2,-1 + 2564: -1,-3 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 754: 10,3 - 828: 10,3 - 1014: -2,1 - 1028: 3,1 - 1044: -1,3 - 1052: 1,3 - 1060: -1,-3 - 1068: 1,-3 - 1084: 1,3 - 1121: 3,1 - 1150: 10,3 - 1183: -2,1 - 1201: -1,3 - 1243: 1,-3 - 1351: -1,-3 - 1390: 1,3 - 1427: 3,1 - 1456: 10,3 - 1489: -2,1 - 1507: -1,3 - 1549: 1,-3 - 1657: -1,-3 + 745: 10,3 + 819: 10,3 + 1005: -2,1 + 1019: 3,1 + 1035: -1,3 + 1043: 1,3 + 1051: -1,-3 + 1059: 1,-3 + 1075: 1,3 + 1112: 3,1 + 1141: 10,3 + 1174: -2,1 + 1192: -1,3 + 1234: 1,-3 + 1342: -1,-3 + 1381: 1,3 + 1418: 3,1 + 1447: 10,3 + 1480: -2,1 + 1498: -1,3 + 1540: 1,-3 + 1648: -1,-3 + 1687: 1,3 + 1724: 3,1 + 1753: 10,3 + 1786: -2,1 + 1804: -1,3 + 1846: 1,-3 + 1954: -1,-3 + 1993: 1,3 + 2030: 3,1 + 2059: 10,3 + 2092: -2,1 + 2110: -1,3 + 2152: 1,-3 + 2260: -1,-3 + 2299: 1,3 + 2336: 3,1 + 2365: 10,3 + 2398: -2,1 + 2416: -1,3 + 2458: 1,-3 + 2566: -1,-3 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 732: 6,0 - 733: 6,1 - 735: 6,3 - 737: 6,2 - 742: 6,-1 - 814: 6,0 - 815: 6,1 - 816: 6,2 - 818: 6,3 - 932: 6,-1 - 1016: -3,1 - 1023: -3,-1 - 1025: -3,0 - 1030: 2,1 - 1037: 2,-1 - 1039: 2,0 - 1045: -1,3 - 1053: 1,3 - 1061: -1,-3 - 1069: 1,-3 - 1085: 1,3 - 1101: 2,0 - 1103: 2,1 - 1136: 6,0 - 1137: 6,1 - 1138: 6,2 - 1140: 6,3 - 1163: -3,0 - 1165: -3,1 - 1202: -1,3 - 1244: 1,-3 - 1261: 2,-1 - 1284: 6,-1 - 1316: -3,-1 - 1352: -1,-3 - 1391: 1,3 - 1407: 2,0 - 1409: 2,1 - 1442: 6,0 - 1443: 6,1 - 1444: 6,2 - 1446: 6,3 - 1469: -3,0 - 1471: -3,1 - 1508: -1,3 - 1550: 1,-3 - 1567: 2,-1 - 1590: 6,-1 - 1622: -3,-1 - 1658: -1,-3 + 723: 6,0 + 724: 6,1 + 726: 6,3 + 728: 6,2 + 733: 6,-1 + 805: 6,0 + 806: 6,1 + 807: 6,2 + 809: 6,3 + 923: 6,-1 + 1007: -3,1 + 1014: -3,-1 + 1016: -3,0 + 1021: 2,1 + 1028: 2,-1 + 1030: 2,0 + 1036: -1,3 + 1044: 1,3 + 1052: -1,-3 + 1060: 1,-3 + 1076: 1,3 + 1092: 2,0 + 1094: 2,1 + 1127: 6,0 + 1128: 6,1 + 1129: 6,2 + 1131: 6,3 + 1154: -3,0 + 1156: -3,1 + 1193: -1,3 + 1235: 1,-3 + 1252: 2,-1 + 1275: 6,-1 + 1307: -3,-1 + 1343: -1,-3 + 1382: 1,3 + 1398: 2,0 + 1400: 2,1 + 1433: 6,0 + 1434: 6,1 + 1435: 6,2 + 1437: 6,3 + 1460: -3,0 + 1462: -3,1 + 1499: -1,3 + 1541: 1,-3 + 1558: 2,-1 + 1581: 6,-1 + 1613: -3,-1 + 1649: -1,-3 + 1688: 1,3 + 1704: 2,0 + 1706: 2,1 + 1739: 6,0 + 1740: 6,1 + 1741: 6,2 + 1743: 6,3 + 1766: -3,0 + 1768: -3,1 + 1805: -1,3 + 1847: 1,-3 + 1864: 2,-1 + 1887: 6,-1 + 1919: -3,-1 + 1955: -1,-3 + 1994: 1,3 + 2010: 2,0 + 2012: 2,1 + 2045: 6,0 + 2046: 6,1 + 2047: 6,2 + 2049: 6,3 + 2072: -3,0 + 2074: -3,1 + 2111: -1,3 + 2153: 1,-3 + 2170: 2,-1 + 2193: 6,-1 + 2225: -3,-1 + 2261: -1,-3 + 2300: 1,3 + 2316: 2,0 + 2318: 2,1 + 2351: 6,0 + 2352: 6,1 + 2353: 6,2 + 2355: 6,3 + 2378: -3,0 + 2380: -3,1 + 2417: -1,3 + 2459: 1,-3 + 2476: 2,-1 + 2499: 6,-1 + 2531: -3,-1 + 2567: -1,-3 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 741: 6,-1 - 744: 7,-1 - 745: 8,-1 - 746: 9,-1 - 747: 10,-1 - 931: 6,-1 - 934: 7,-1 - 935: 8,-1 - 936: 9,-1 - 937: 10,-1 - 1018: -2,-1 - 1022: -3,-1 - 1032: 3,-1 - 1036: 2,-1 - 1040: -1,3 - 1048: 1,3 - 1056: -1,-3 - 1064: 1,-3 - 1080: 1,3 - 1197: -1,3 - 1239: 1,-3 - 1260: 2,-1 - 1276: 3,-1 - 1283: 6,-1 - 1286: 7,-1 - 1287: 8,-1 - 1288: 9,-1 - 1289: 10,-1 - 1315: -3,-1 - 1331: -2,-1 - 1347: -1,-3 - 1386: 1,3 - 1503: -1,3 - 1545: 1,-3 - 1566: 2,-1 - 1582: 3,-1 - 1589: 6,-1 - 1592: 7,-1 - 1593: 8,-1 - 1594: 9,-1 - 1595: 10,-1 - 1621: -3,-1 - 1637: -2,-1 - 1653: -1,-3 + 732: 6,-1 + 735: 7,-1 + 736: 8,-1 + 737: 9,-1 + 738: 10,-1 + 922: 6,-1 + 925: 7,-1 + 926: 8,-1 + 927: 9,-1 + 928: 10,-1 + 1009: -2,-1 + 1013: -3,-1 + 1023: 3,-1 + 1027: 2,-1 + 1031: -1,3 + 1039: 1,3 + 1047: -1,-3 + 1055: 1,-3 + 1071: 1,3 + 1188: -1,3 + 1230: 1,-3 + 1251: 2,-1 + 1267: 3,-1 + 1274: 6,-1 + 1277: 7,-1 + 1278: 8,-1 + 1279: 9,-1 + 1280: 10,-1 + 1306: -3,-1 + 1322: -2,-1 + 1338: -1,-3 + 1377: 1,3 + 1494: -1,3 + 1536: 1,-3 + 1557: 2,-1 + 1573: 3,-1 + 1580: 6,-1 + 1583: 7,-1 + 1584: 8,-1 + 1585: 9,-1 + 1586: 10,-1 + 1612: -3,-1 + 1628: -2,-1 + 1644: -1,-3 + 1683: 1,3 + 1800: -1,3 + 1842: 1,-3 + 1863: 2,-1 + 1879: 3,-1 + 1886: 6,-1 + 1889: 7,-1 + 1890: 8,-1 + 1891: 9,-1 + 1892: 10,-1 + 1918: -3,-1 + 1934: -2,-1 + 1950: -1,-3 + 1989: 1,3 + 2106: -1,3 + 2148: 1,-3 + 2169: 2,-1 + 2185: 3,-1 + 2192: 6,-1 + 2195: 7,-1 + 2196: 8,-1 + 2197: 9,-1 + 2198: 10,-1 + 2224: -3,-1 + 2240: -2,-1 + 2256: -1,-3 + 2295: 1,3 + 2412: -1,3 + 2454: 1,-3 + 2475: 2,-1 + 2491: 3,-1 + 2498: 6,-1 + 2501: 7,-1 + 2502: 8,-1 + 2503: 9,-1 + 2504: 10,-1 + 2530: -3,-1 + 2546: -2,-1 + 2562: -1,-3 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 748: 10,-1 - 750: 10,0 - 751: 10,1 - 752: 10,3 - 755: 10,2 - 823: 10,0 - 824: 10,1 - 825: 10,2 - 826: 10,3 - 938: 10,-1 - 1012: -2,1 - 1019: -2,-1 - 1021: -2,0 - 1026: 3,1 - 1033: 3,-1 - 1035: 3,0 - 1041: -1,3 - 1049: 1,3 - 1057: -1,-3 - 1065: 1,-3 - 1081: 1,3 - 1118: 3,0 - 1119: 3,1 - 1145: 10,0 - 1146: 10,1 - 1147: 10,2 - 1148: 10,3 - 1180: -2,0 - 1181: -2,1 - 1198: -1,3 - 1240: 1,-3 - 1277: 3,-1 - 1290: 10,-1 - 1332: -2,-1 - 1348: -1,-3 - 1387: 1,3 - 1424: 3,0 - 1425: 3,1 - 1451: 10,0 - 1452: 10,1 - 1453: 10,2 - 1454: 10,3 - 1486: -2,0 - 1487: -2,1 - 1504: -1,3 - 1546: 1,-3 - 1583: 3,-1 - 1596: 10,-1 - 1638: -2,-1 - 1654: -1,-3 + 739: 10,-1 + 741: 10,0 + 742: 10,1 + 743: 10,3 + 746: 10,2 + 814: 10,0 + 815: 10,1 + 816: 10,2 + 817: 10,3 + 929: 10,-1 + 1003: -2,1 + 1010: -2,-1 + 1012: -2,0 + 1017: 3,1 + 1024: 3,-1 + 1026: 3,0 + 1032: -1,3 + 1040: 1,3 + 1048: -1,-3 + 1056: 1,-3 + 1072: 1,3 + 1109: 3,0 + 1110: 3,1 + 1136: 10,0 + 1137: 10,1 + 1138: 10,2 + 1139: 10,3 + 1171: -2,0 + 1172: -2,1 + 1189: -1,3 + 1231: 1,-3 + 1268: 3,-1 + 1281: 10,-1 + 1323: -2,-1 + 1339: -1,-3 + 1378: 1,3 + 1415: 3,0 + 1416: 3,1 + 1442: 10,0 + 1443: 10,1 + 1444: 10,2 + 1445: 10,3 + 1477: -2,0 + 1478: -2,1 + 1495: -1,3 + 1537: 1,-3 + 1574: 3,-1 + 1587: 10,-1 + 1629: -2,-1 + 1645: -1,-3 + 1684: 1,3 + 1721: 3,0 + 1722: 3,1 + 1748: 10,0 + 1749: 10,1 + 1750: 10,2 + 1751: 10,3 + 1783: -2,0 + 1784: -2,1 + 1801: -1,3 + 1843: 1,-3 + 1880: 3,-1 + 1893: 10,-1 + 1935: -2,-1 + 1951: -1,-3 + 1990: 1,3 + 2027: 3,0 + 2028: 3,1 + 2054: 10,0 + 2055: 10,1 + 2056: 10,2 + 2057: 10,3 + 2089: -2,0 + 2090: -2,1 + 2107: -1,3 + 2149: 1,-3 + 2186: 3,-1 + 2199: 10,-1 + 2241: -2,-1 + 2257: -1,-3 + 2296: 1,3 + 2333: 3,0 + 2334: 3,1 + 2360: 10,0 + 2361: 10,1 + 2362: 10,2 + 2363: 10,3 + 2395: -2,0 + 2396: -2,1 + 2413: -1,3 + 2455: 1,-3 + 2492: 3,-1 + 2505: 10,-1 + 2547: -2,-1 + 2563: -1,-3 - node: id: FloorTechMaintDirectionalEdge decals: - 734: 6,3 - 738: 8,3 - 739: 7,3 - 740: 9,3 - 753: 10,3 - 817: 6,3 - 820: 7,3 - 821: 8,3 - 822: 9,3 - 827: 10,3 - 1013: -2,1 - 1015: -3,1 - 1027: 3,1 - 1029: 2,1 - 1043: -1,3 - 1051: 1,3 - 1059: -1,-3 - 1067: 1,-3 - 1083: 1,3 - 1102: 2,1 - 1120: 3,1 - 1139: 6,3 - 1142: 7,3 - 1143: 8,3 - 1144: 9,3 - 1149: 10,3 - 1164: -3,1 - 1182: -2,1 - 1200: -1,3 - 1242: 1,-3 - 1350: -1,-3 - 1389: 1,3 - 1408: 2,1 - 1426: 3,1 - 1445: 6,3 - 1448: 7,3 - 1449: 8,3 - 1450: 9,3 - 1455: 10,3 - 1470: -3,1 - 1488: -2,1 - 1506: -1,3 - 1548: 1,-3 - 1656: -1,-3 + 725: 6,3 + 729: 8,3 + 730: 7,3 + 731: 9,3 + 744: 10,3 + 808: 6,3 + 811: 7,3 + 812: 8,3 + 813: 9,3 + 818: 10,3 + 1004: -2,1 + 1006: -3,1 + 1018: 3,1 + 1020: 2,1 + 1034: -1,3 + 1042: 1,3 + 1050: -1,-3 + 1058: 1,-3 + 1074: 1,3 + 1093: 2,1 + 1111: 3,1 + 1130: 6,3 + 1133: 7,3 + 1134: 8,3 + 1135: 9,3 + 1140: 10,3 + 1155: -3,1 + 1173: -2,1 + 1191: -1,3 + 1233: 1,-3 + 1341: -1,-3 + 1380: 1,3 + 1399: 2,1 + 1417: 3,1 + 1436: 6,3 + 1439: 7,3 + 1440: 8,3 + 1441: 9,3 + 1446: 10,3 + 1461: -3,1 + 1479: -2,1 + 1497: -1,3 + 1539: 1,-3 + 1647: -1,-3 + 1686: 1,3 + 1705: 2,1 + 1723: 3,1 + 1742: 6,3 + 1745: 7,3 + 1746: 8,3 + 1747: 9,3 + 1752: 10,3 + 1767: -3,1 + 1785: -2,1 + 1803: -1,3 + 1845: 1,-3 + 1953: -1,-3 + 1992: 1,3 + 2011: 2,1 + 2029: 3,1 + 2048: 6,3 + 2051: 7,3 + 2052: 8,3 + 2053: 9,3 + 2058: 10,3 + 2073: -3,1 + 2091: -2,1 + 2109: -1,3 + 2151: 1,-3 + 2259: -1,-3 + 2298: 1,3 + 2317: 2,1 + 2335: 3,1 + 2354: 6,3 + 2357: 7,3 + 2358: 8,3 + 2359: 9,3 + 2364: 10,3 + 2379: -3,1 + 2397: -2,1 + 2415: -1,3 + 2457: 1,-3 + 2565: -1,-3 - node: zIndex: 1 id: LatticeCornerNE decals: - 292: 0,5 - 300: 1,5 - 313: 2,5 - 326: 3,5 - 352: -3,5 - 365: -2,5 - 378: -1,5 - 391: 0,-5 - 397: 1,-6 - 404: 1,-5 - 410: 2,-6 - 417: 2,-5 - 423: 3,-6 - 430: 3,-5 - 443: -13,-7 - 446: -6,-9 - 450: -3,-6 - 457: -3,-5 - 463: -2,-6 - 470: -2,-5 - 476: -1,-6 - 483: -1,-5 - 489: -20,-2 - 492: -17,-4 - 495: -21,1 - 514: 0,5 - 522: 1,5 - 535: 2,5 - 548: 3,5 - 574: -3,5 - 587: -2,5 - 600: -1,5 - 613: 0,-5 - 619: 1,-6 - 626: 1,-5 - 632: 2,-6 - 639: 2,-5 - 645: 3,-6 - 652: 3,-5 - 665: -13,-7 - 668: -6,-9 - 672: -3,-6 - 679: -3,-5 - 685: -2,-6 - 692: -2,-5 - 698: -1,-6 - 705: -1,-5 - 711: -20,-2 - 714: -17,-4 - 717: -21,1 - 770: 0,5 - 778: 1,5 - 791: 2,5 - 804: 3,5 - 845: -3,5 - 858: -2,5 - 871: -1,5 - 884: 0,-5 - 890: 1,-6 - 897: 1,-5 - 903: 2,-6 - 910: 2,-5 - 916: 3,-6 - 923: 3,-5 - 945: -13,-7 - 948: -6,-9 - 952: -3,-6 - 959: -3,-5 - 965: -2,-6 - 972: -2,-5 - 978: -1,-6 - 985: -1,-5 - 991: -20,-2 - 994: -17,-4 - 997: -21,1 - 1076: 0,5 - 1092: 1,5 - 1109: 2,5 - 1126: 3,5 - 1171: -3,5 - 1188: -2,5 - 1209: -1,5 - 1222: 0,-5 - 1228: 1,-6 - 1235: 1,-5 - 1249: 2,-6 - 1256: 2,-5 - 1265: 3,-6 - 1272: 3,-5 - 1297: -13,-7 - 1300: -6,-9 - 1304: -3,-6 - 1311: -3,-5 - 1320: -2,-6 - 1327: -2,-5 - 1336: -1,-6 - 1343: -1,-5 - 1357: -20,-2 - 1360: -17,-4 - 1363: -21,1 - 1382: 0,5 - 1398: 1,5 - 1415: 2,5 - 1432: 3,5 - 1477: -3,5 - 1494: -2,5 - 1515: -1,5 - 1528: 0,-5 - 1534: 1,-6 - 1541: 1,-5 - 1555: 2,-6 - 1562: 2,-5 - 1571: 3,-6 - 1578: 3,-5 - 1603: -13,-7 - 1606: -6,-9 - 1610: -3,-6 - 1617: -3,-5 - 1626: -2,-6 - 1633: -2,-5 - 1642: -1,-6 - 1649: -1,-5 - 1663: -20,-2 - 1666: -17,-4 - 1669: -21,1 + 283: 0,5 + 291: 1,5 + 304: 2,5 + 317: 3,5 + 343: -3,5 + 356: -2,5 + 369: -1,5 + 382: 0,-5 + 388: 1,-6 + 395: 1,-5 + 401: 2,-6 + 408: 2,-5 + 414: 3,-6 + 421: 3,-5 + 434: -13,-7 + 437: -6,-9 + 441: -3,-6 + 448: -3,-5 + 454: -2,-6 + 461: -2,-5 + 467: -1,-6 + 474: -1,-5 + 480: -20,-2 + 483: -17,-4 + 486: -21,1 + 505: 0,5 + 513: 1,5 + 526: 2,5 + 539: 3,5 + 565: -3,5 + 578: -2,5 + 591: -1,5 + 604: 0,-5 + 610: 1,-6 + 617: 1,-5 + 623: 2,-6 + 630: 2,-5 + 636: 3,-6 + 643: 3,-5 + 656: -13,-7 + 659: -6,-9 + 663: -3,-6 + 670: -3,-5 + 676: -2,-6 + 683: -2,-5 + 689: -1,-6 + 696: -1,-5 + 702: -20,-2 + 705: -17,-4 + 708: -21,1 + 761: 0,5 + 769: 1,5 + 782: 2,5 + 795: 3,5 + 836: -3,5 + 849: -2,5 + 862: -1,5 + 875: 0,-5 + 881: 1,-6 + 888: 1,-5 + 894: 2,-6 + 901: 2,-5 + 907: 3,-6 + 914: 3,-5 + 936: -13,-7 + 939: -6,-9 + 943: -3,-6 + 950: -3,-5 + 956: -2,-6 + 963: -2,-5 + 969: -1,-6 + 976: -1,-5 + 982: -20,-2 + 985: -17,-4 + 988: -21,1 + 1067: 0,5 + 1083: 1,5 + 1100: 2,5 + 1117: 3,5 + 1162: -3,5 + 1179: -2,5 + 1200: -1,5 + 1213: 0,-5 + 1219: 1,-6 + 1226: 1,-5 + 1240: 2,-6 + 1247: 2,-5 + 1256: 3,-6 + 1263: 3,-5 + 1288: -13,-7 + 1291: -6,-9 + 1295: -3,-6 + 1302: -3,-5 + 1311: -2,-6 + 1318: -2,-5 + 1327: -1,-6 + 1334: -1,-5 + 1348: -20,-2 + 1351: -17,-4 + 1354: -21,1 + 1373: 0,5 + 1389: 1,5 + 1406: 2,5 + 1423: 3,5 + 1468: -3,5 + 1485: -2,5 + 1506: -1,5 + 1519: 0,-5 + 1525: 1,-6 + 1532: 1,-5 + 1546: 2,-6 + 1553: 2,-5 + 1562: 3,-6 + 1569: 3,-5 + 1594: -13,-7 + 1597: -6,-9 + 1601: -3,-6 + 1608: -3,-5 + 1617: -2,-6 + 1624: -2,-5 + 1633: -1,-6 + 1640: -1,-5 + 1654: -20,-2 + 1657: -17,-4 + 1660: -21,1 + 1679: 0,5 + 1695: 1,5 + 1712: 2,5 + 1729: 3,5 + 1774: -3,5 + 1791: -2,5 + 1812: -1,5 + 1825: 0,-5 + 1831: 1,-6 + 1838: 1,-5 + 1852: 2,-6 + 1859: 2,-5 + 1868: 3,-6 + 1875: 3,-5 + 1900: -13,-7 + 1903: -6,-9 + 1907: -3,-6 + 1914: -3,-5 + 1923: -2,-6 + 1930: -2,-5 + 1939: -1,-6 + 1946: -1,-5 + 1960: -20,-2 + 1963: -17,-4 + 1966: -21,1 + 1985: 0,5 + 2001: 1,5 + 2018: 2,5 + 2035: 3,5 + 2080: -3,5 + 2097: -2,5 + 2118: -1,5 + 2131: 0,-5 + 2137: 1,-6 + 2144: 1,-5 + 2158: 2,-6 + 2165: 2,-5 + 2174: 3,-6 + 2181: 3,-5 + 2206: -13,-7 + 2209: -6,-9 + 2213: -3,-6 + 2220: -3,-5 + 2229: -2,-6 + 2236: -2,-5 + 2245: -1,-6 + 2252: -1,-5 + 2266: -20,-2 + 2269: -21,1 + 2286: -17,-4 + 2291: 0,5 + 2307: 1,5 + 2324: 2,5 + 2341: 3,5 + 2386: -3,5 + 2403: -2,5 + 2424: -1,5 + 2437: 0,-5 + 2443: 1,-6 + 2450: 1,-5 + 2464: 2,-6 + 2471: 2,-5 + 2480: 3,-6 + 2487: 3,-5 + 2512: -13,-7 + 2515: -6,-9 + 2519: -3,-6 + 2526: -3,-5 + 2535: -2,-6 + 2542: -2,-5 + 2551: -1,-6 + 2558: -1,-5 + 2572: -20,-2 + 2575: -17,-4 + 2578: -21,1 - node: zIndex: 1 id: LatticeCornerNW decals: - 295: 0,5 - 303: 1,5 - 316: 2,5 - 329: 3,5 - 355: -3,5 - 368: -2,5 - 381: -1,5 - 394: 0,-5 - 399: 1,-6 - 407: 1,-5 - 412: 2,-6 - 420: 2,-5 - 425: 3,-6 - 433: 3,-5 - 437: 6,-9 - 440: 14,-7 - 452: -3,-6 - 460: -3,-5 - 465: -2,-6 - 473: -2,-5 - 478: -1,-6 - 486: -1,-5 - 509: 16,-2 - 517: 0,5 - 525: 1,5 - 538: 2,5 - 551: 3,5 - 577: -3,5 - 590: -2,5 - 603: -1,5 - 616: 0,-5 - 621: 1,-6 - 629: 1,-5 - 634: 2,-6 - 642: 2,-5 - 647: 3,-6 - 655: 3,-5 - 659: 6,-9 - 662: 14,-7 - 674: -3,-6 - 682: -3,-5 - 687: -2,-6 - 695: -2,-5 - 700: -1,-6 - 708: -1,-5 - 731: 16,-2 - 773: 0,5 - 781: 1,5 - 794: 2,5 - 807: 3,5 - 848: -3,5 - 861: -2,5 - 874: -1,5 - 887: 0,-5 - 892: 1,-6 - 900: 1,-5 - 905: 2,-6 - 913: 2,-5 - 918: 3,-6 - 926: 3,-5 - 930: 6,-9 - 942: 14,-7 - 954: -3,-6 - 962: -3,-5 - 967: -2,-6 - 975: -2,-5 - 980: -1,-6 - 988: -1,-5 - 1011: 16,-2 - 1079: 0,5 - 1095: 1,5 - 1112: 2,5 - 1129: 3,5 - 1174: -3,5 - 1191: -2,5 - 1212: -1,5 - 1225: 0,-5 - 1230: 1,-6 - 1238: 1,-5 - 1251: 2,-6 - 1259: 2,-5 - 1267: 3,-6 - 1275: 3,-5 - 1282: 6,-9 - 1294: 14,-7 - 1306: -3,-6 - 1314: -3,-5 - 1322: -2,-6 - 1330: -2,-5 - 1338: -1,-6 - 1346: -1,-5 - 1377: 16,-2 - 1385: 0,5 - 1401: 1,5 - 1418: 2,5 - 1435: 3,5 - 1480: -3,5 - 1497: -2,5 - 1518: -1,5 - 1531: 0,-5 - 1536: 1,-6 - 1544: 1,-5 - 1557: 2,-6 - 1565: 2,-5 - 1573: 3,-6 - 1581: 3,-5 - 1588: 6,-9 - 1600: 14,-7 - 1612: -3,-6 - 1620: -3,-5 - 1628: -2,-6 - 1636: -2,-5 - 1644: -1,-6 - 1652: -1,-5 - 1683: 16,-2 + 286: 0,5 + 294: 1,5 + 307: 2,5 + 320: 3,5 + 346: -3,5 + 359: -2,5 + 372: -1,5 + 385: 0,-5 + 390: 1,-6 + 398: 1,-5 + 403: 2,-6 + 411: 2,-5 + 416: 3,-6 + 424: 3,-5 + 428: 6,-9 + 431: 14,-7 + 443: -3,-6 + 451: -3,-5 + 456: -2,-6 + 464: -2,-5 + 469: -1,-6 + 477: -1,-5 + 500: 16,-2 + 508: 0,5 + 516: 1,5 + 529: 2,5 + 542: 3,5 + 568: -3,5 + 581: -2,5 + 594: -1,5 + 607: 0,-5 + 612: 1,-6 + 620: 1,-5 + 625: 2,-6 + 633: 2,-5 + 638: 3,-6 + 646: 3,-5 + 650: 6,-9 + 653: 14,-7 + 665: -3,-6 + 673: -3,-5 + 678: -2,-6 + 686: -2,-5 + 691: -1,-6 + 699: -1,-5 + 722: 16,-2 + 764: 0,5 + 772: 1,5 + 785: 2,5 + 798: 3,5 + 839: -3,5 + 852: -2,5 + 865: -1,5 + 878: 0,-5 + 883: 1,-6 + 891: 1,-5 + 896: 2,-6 + 904: 2,-5 + 909: 3,-6 + 917: 3,-5 + 921: 6,-9 + 933: 14,-7 + 945: -3,-6 + 953: -3,-5 + 958: -2,-6 + 966: -2,-5 + 971: -1,-6 + 979: -1,-5 + 1002: 16,-2 + 1070: 0,5 + 1086: 1,5 + 1103: 2,5 + 1120: 3,5 + 1165: -3,5 + 1182: -2,5 + 1203: -1,5 + 1216: 0,-5 + 1221: 1,-6 + 1229: 1,-5 + 1242: 2,-6 + 1250: 2,-5 + 1258: 3,-6 + 1266: 3,-5 + 1273: 6,-9 + 1285: 14,-7 + 1297: -3,-6 + 1305: -3,-5 + 1313: -2,-6 + 1321: -2,-5 + 1329: -1,-6 + 1337: -1,-5 + 1368: 16,-2 + 1376: 0,5 + 1392: 1,5 + 1409: 2,5 + 1426: 3,5 + 1471: -3,5 + 1488: -2,5 + 1509: -1,5 + 1522: 0,-5 + 1527: 1,-6 + 1535: 1,-5 + 1548: 2,-6 + 1556: 2,-5 + 1564: 3,-6 + 1572: 3,-5 + 1579: 6,-9 + 1591: 14,-7 + 1603: -3,-6 + 1611: -3,-5 + 1619: -2,-6 + 1627: -2,-5 + 1635: -1,-6 + 1643: -1,-5 + 1674: 16,-2 + 1682: 0,5 + 1698: 1,5 + 1715: 2,5 + 1732: 3,5 + 1777: -3,5 + 1794: -2,5 + 1815: -1,5 + 1828: 0,-5 + 1833: 1,-6 + 1841: 1,-5 + 1854: 2,-6 + 1862: 2,-5 + 1870: 3,-6 + 1878: 3,-5 + 1885: 6,-9 + 1897: 14,-7 + 1909: -3,-6 + 1917: -3,-5 + 1925: -2,-6 + 1933: -2,-5 + 1941: -1,-6 + 1949: -1,-5 + 1980: 16,-2 + 1988: 0,5 + 2004: 1,5 + 2021: 2,5 + 2038: 3,5 + 2083: -3,5 + 2100: -2,5 + 2121: -1,5 + 2134: 0,-5 + 2139: 1,-6 + 2147: 1,-5 + 2160: 2,-6 + 2168: 2,-5 + 2176: 3,-6 + 2184: 3,-5 + 2191: 6,-9 + 2203: 14,-7 + 2215: -3,-6 + 2223: -3,-5 + 2231: -2,-6 + 2239: -2,-5 + 2247: -1,-6 + 2255: -1,-5 + 2283: 16,-2 + 2294: 0,5 + 2310: 1,5 + 2327: 2,5 + 2344: 3,5 + 2389: -3,5 + 2406: -2,5 + 2427: -1,5 + 2440: 0,-5 + 2445: 1,-6 + 2453: 1,-5 + 2466: 2,-6 + 2474: 2,-5 + 2482: 3,-6 + 2490: 3,-5 + 2497: 6,-9 + 2509: 14,-7 + 2521: -3,-6 + 2529: -3,-5 + 2537: -2,-6 + 2545: -2,-5 + 2553: -1,-6 + 2561: -1,-5 + 2592: 16,-2 - node: zIndex: 1 id: LatticeCornerSE decals: - 290: 0,5 - 298: 1,5 - 306: 1,6 - 311: 2,5 - 319: 2,6 - 324: 3,5 - 332: 3,6 - 347: -6,13 - 350: -3,5 - 358: -3,6 - 363: -2,5 - 371: -2,6 - 376: -1,5 - 384: -1,6 - 389: 0,-5 - 402: 1,-5 - 415: 2,-5 - 428: 3,-5 - 455: -3,-5 - 468: -2,-5 - 481: -1,-5 - 498: -21,5 - 501: -19,10 - 512: 0,5 - 520: 1,5 - 528: 1,6 - 533: 2,5 - 541: 2,6 - 546: 3,5 - 554: 3,6 - 569: -6,13 - 572: -3,5 - 580: -3,6 - 585: -2,5 - 593: -2,6 - 598: -1,5 - 606: -1,6 - 611: 0,-5 - 624: 1,-5 - 637: 2,-5 - 650: 3,-5 - 677: -3,-5 - 690: -2,-5 - 703: -1,-5 - 720: -21,5 - 723: -19,10 - 768: 0,5 - 776: 1,5 - 784: 1,6 - 789: 2,5 - 797: 2,6 - 802: 3,5 - 810: 3,6 - 840: -6,13 - 843: -3,5 - 851: -3,6 - 856: -2,5 - 864: -2,6 - 869: -1,5 - 877: -1,6 - 882: 0,-5 - 895: 1,-5 - 908: 2,-5 - 921: 3,-5 - 957: -3,-5 - 970: -2,-5 - 983: -1,-5 - 1000: -21,5 - 1003: -19,10 - 1074: 0,5 - 1090: 1,5 - 1098: 1,6 - 1107: 2,5 - 1115: 2,6 - 1124: 3,5 - 1132: 3,6 - 1162: -6,13 - 1169: -3,5 - 1177: -3,6 - 1186: -2,5 - 1194: -2,6 - 1207: -1,5 - 1215: -1,6 - 1220: 0,-5 - 1233: 1,-5 - 1254: 2,-5 - 1270: 3,-5 - 1309: -3,-5 - 1325: -2,-5 - 1341: -1,-5 - 1366: -21,5 - 1369: -19,10 - 1380: 0,5 - 1396: 1,5 - 1404: 1,6 - 1413: 2,5 - 1421: 2,6 - 1430: 3,5 - 1438: 3,6 - 1468: -6,13 - 1475: -3,5 - 1483: -3,6 - 1492: -2,5 - 1500: -2,6 - 1513: -1,5 - 1521: -1,6 - 1526: 0,-5 - 1539: 1,-5 - 1560: 2,-5 - 1576: 3,-5 - 1615: -3,-5 - 1631: -2,-5 - 1647: -1,-5 - 1672: -21,5 - 1675: -19,10 + 281: 0,5 + 289: 1,5 + 297: 1,6 + 302: 2,5 + 310: 2,6 + 315: 3,5 + 323: 3,6 + 338: -6,13 + 341: -3,5 + 349: -3,6 + 354: -2,5 + 362: -2,6 + 367: -1,5 + 375: -1,6 + 380: 0,-5 + 393: 1,-5 + 406: 2,-5 + 419: 3,-5 + 446: -3,-5 + 459: -2,-5 + 472: -1,-5 + 489: -21,5 + 492: -19,10 + 503: 0,5 + 511: 1,5 + 519: 1,6 + 524: 2,5 + 532: 2,6 + 537: 3,5 + 545: 3,6 + 560: -6,13 + 563: -3,5 + 571: -3,6 + 576: -2,5 + 584: -2,6 + 589: -1,5 + 597: -1,6 + 602: 0,-5 + 615: 1,-5 + 628: 2,-5 + 641: 3,-5 + 668: -3,-5 + 681: -2,-5 + 694: -1,-5 + 711: -21,5 + 714: -19,10 + 759: 0,5 + 767: 1,5 + 775: 1,6 + 780: 2,5 + 788: 2,6 + 793: 3,5 + 801: 3,6 + 831: -6,13 + 834: -3,5 + 842: -3,6 + 847: -2,5 + 855: -2,6 + 860: -1,5 + 868: -1,6 + 873: 0,-5 + 886: 1,-5 + 899: 2,-5 + 912: 3,-5 + 948: -3,-5 + 961: -2,-5 + 974: -1,-5 + 991: -21,5 + 994: -19,10 + 1065: 0,5 + 1081: 1,5 + 1089: 1,6 + 1098: 2,5 + 1106: 2,6 + 1115: 3,5 + 1123: 3,6 + 1153: -6,13 + 1160: -3,5 + 1168: -3,6 + 1177: -2,5 + 1185: -2,6 + 1198: -1,5 + 1206: -1,6 + 1211: 0,-5 + 1224: 1,-5 + 1245: 2,-5 + 1261: 3,-5 + 1300: -3,-5 + 1316: -2,-5 + 1332: -1,-5 + 1357: -21,5 + 1360: -19,10 + 1371: 0,5 + 1387: 1,5 + 1395: 1,6 + 1404: 2,5 + 1412: 2,6 + 1421: 3,5 + 1429: 3,6 + 1459: -6,13 + 1466: -3,5 + 1474: -3,6 + 1483: -2,5 + 1491: -2,6 + 1504: -1,5 + 1512: -1,6 + 1517: 0,-5 + 1530: 1,-5 + 1551: 2,-5 + 1567: 3,-5 + 1606: -3,-5 + 1622: -2,-5 + 1638: -1,-5 + 1663: -21,5 + 1666: -19,10 + 1677: 0,5 + 1693: 1,5 + 1701: 1,6 + 1710: 2,5 + 1718: 2,6 + 1727: 3,5 + 1735: 3,6 + 1765: -6,13 + 1772: -3,5 + 1780: -3,6 + 1789: -2,5 + 1797: -2,6 + 1810: -1,5 + 1818: -1,6 + 1823: 0,-5 + 1836: 1,-5 + 1857: 2,-5 + 1873: 3,-5 + 1912: -3,-5 + 1928: -2,-5 + 1944: -1,-5 + 1969: -21,5 + 1972: -19,10 + 1983: 0,5 + 1999: 1,5 + 2007: 1,6 + 2016: 2,5 + 2024: 2,6 + 2033: 3,5 + 2041: 3,6 + 2071: -6,13 + 2078: -3,5 + 2086: -3,6 + 2095: -2,5 + 2103: -2,6 + 2116: -1,5 + 2124: -1,6 + 2129: 0,-5 + 2142: 1,-5 + 2163: 2,-5 + 2179: 3,-5 + 2218: -3,-5 + 2234: -2,-5 + 2250: -1,-5 + 2272: -21,5 + 2275: -19,10 + 2289: 0,5 + 2305: 1,5 + 2313: 1,6 + 2322: 2,5 + 2330: 2,6 + 2339: 3,5 + 2347: 3,6 + 2377: -6,13 + 2384: -3,5 + 2392: -3,6 + 2401: -2,5 + 2409: -2,6 + 2422: -1,5 + 2430: -1,6 + 2435: 0,-5 + 2448: 1,-5 + 2469: 2,-5 + 2485: 3,-5 + 2524: -3,-5 + 2540: -2,-5 + 2556: -1,-5 + 2581: -21,5 + 2584: -19,10 - node: zIndex: 1 id: LatticeCornerSW decals: - 294: 0,5 - 302: 1,5 - 308: 1,6 - 315: 2,5 - 321: 2,6 - 328: 3,5 - 334: 3,6 - 338: 10,15 - 341: 14,10 - 344: 15,9 - 354: -3,5 - 360: -3,6 - 367: -2,5 - 373: -2,6 - 380: -1,5 - 386: -1,6 - 393: 0,-5 - 406: 1,-5 - 419: 2,-5 - 432: 3,-5 - 459: -3,-5 - 472: -2,-5 - 485: -1,-5 - 506: 16,6 - 516: 0,5 - 524: 1,5 - 530: 1,6 - 537: 2,5 - 543: 2,6 - 550: 3,5 - 556: 3,6 - 560: 10,15 - 563: 14,10 - 566: 15,9 - 576: -3,5 - 582: -3,6 - 589: -2,5 - 595: -2,6 - 602: -1,5 - 608: -1,6 - 615: 0,-5 - 628: 1,-5 - 641: 2,-5 - 654: 3,-5 - 681: -3,-5 - 694: -2,-5 - 707: -1,-5 - 728: 16,6 - 772: 0,5 - 780: 1,5 - 786: 1,6 - 793: 2,5 - 799: 2,6 - 806: 3,5 - 812: 3,6 - 831: 10,15 - 834: 14,10 - 837: 15,9 - 847: -3,5 - 853: -3,6 - 860: -2,5 - 866: -2,6 - 873: -1,5 - 879: -1,6 - 886: 0,-5 - 899: 1,-5 - 912: 2,-5 - 925: 3,-5 - 961: -3,-5 - 974: -2,-5 - 987: -1,-5 - 1008: 16,6 - 1078: 0,5 - 1094: 1,5 - 1100: 1,6 - 1111: 2,5 - 1117: 2,6 - 1128: 3,5 - 1134: 3,6 - 1153: 10,15 - 1156: 14,10 - 1159: 15,9 - 1173: -3,5 - 1179: -3,6 - 1190: -2,5 - 1196: -2,6 - 1211: -1,5 - 1217: -1,6 - 1224: 0,-5 - 1237: 1,-5 - 1258: 2,-5 - 1274: 3,-5 - 1313: -3,-5 - 1329: -2,-5 - 1345: -1,-5 - 1374: 16,6 - 1384: 0,5 - 1400: 1,5 - 1406: 1,6 - 1417: 2,5 - 1423: 2,6 - 1434: 3,5 - 1440: 3,6 - 1459: 10,15 - 1462: 14,10 - 1465: 15,9 - 1479: -3,5 - 1485: -3,6 - 1496: -2,5 - 1502: -2,6 - 1517: -1,5 - 1523: -1,6 - 1530: 0,-5 - 1543: 1,-5 - 1564: 2,-5 - 1580: 3,-5 - 1619: -3,-5 - 1635: -2,-5 - 1651: -1,-5 - 1680: 16,6 + 285: 0,5 + 293: 1,5 + 299: 1,6 + 306: 2,5 + 312: 2,6 + 319: 3,5 + 325: 3,6 + 329: 10,15 + 332: 14,10 + 335: 15,9 + 345: -3,5 + 351: -3,6 + 358: -2,5 + 364: -2,6 + 371: -1,5 + 377: -1,6 + 384: 0,-5 + 397: 1,-5 + 410: 2,-5 + 423: 3,-5 + 450: -3,-5 + 463: -2,-5 + 476: -1,-5 + 497: 16,6 + 507: 0,5 + 515: 1,5 + 521: 1,6 + 528: 2,5 + 534: 2,6 + 541: 3,5 + 547: 3,6 + 551: 10,15 + 554: 14,10 + 557: 15,9 + 567: -3,5 + 573: -3,6 + 580: -2,5 + 586: -2,6 + 593: -1,5 + 599: -1,6 + 606: 0,-5 + 619: 1,-5 + 632: 2,-5 + 645: 3,-5 + 672: -3,-5 + 685: -2,-5 + 698: -1,-5 + 719: 16,6 + 763: 0,5 + 771: 1,5 + 777: 1,6 + 784: 2,5 + 790: 2,6 + 797: 3,5 + 803: 3,6 + 822: 10,15 + 825: 14,10 + 828: 15,9 + 838: -3,5 + 844: -3,6 + 851: -2,5 + 857: -2,6 + 864: -1,5 + 870: -1,6 + 877: 0,-5 + 890: 1,-5 + 903: 2,-5 + 916: 3,-5 + 952: -3,-5 + 965: -2,-5 + 978: -1,-5 + 999: 16,6 + 1069: 0,5 + 1085: 1,5 + 1091: 1,6 + 1102: 2,5 + 1108: 2,6 + 1119: 3,5 + 1125: 3,6 + 1144: 10,15 + 1147: 14,10 + 1150: 15,9 + 1164: -3,5 + 1170: -3,6 + 1181: -2,5 + 1187: -2,6 + 1202: -1,5 + 1208: -1,6 + 1215: 0,-5 + 1228: 1,-5 + 1249: 2,-5 + 1265: 3,-5 + 1304: -3,-5 + 1320: -2,-5 + 1336: -1,-5 + 1365: 16,6 + 1375: 0,5 + 1391: 1,5 + 1397: 1,6 + 1408: 2,5 + 1414: 2,6 + 1425: 3,5 + 1431: 3,6 + 1450: 10,15 + 1453: 14,10 + 1456: 15,9 + 1470: -3,5 + 1476: -3,6 + 1487: -2,5 + 1493: -2,6 + 1508: -1,5 + 1514: -1,6 + 1521: 0,-5 + 1534: 1,-5 + 1555: 2,-5 + 1571: 3,-5 + 1610: -3,-5 + 1626: -2,-5 + 1642: -1,-5 + 1671: 16,6 + 1681: 0,5 + 1697: 1,5 + 1703: 1,6 + 1714: 2,5 + 1720: 2,6 + 1731: 3,5 + 1737: 3,6 + 1756: 10,15 + 1759: 14,10 + 1762: 15,9 + 1776: -3,5 + 1782: -3,6 + 1793: -2,5 + 1799: -2,6 + 1814: -1,5 + 1820: -1,6 + 1827: 0,-5 + 1840: 1,-5 + 1861: 2,-5 + 1877: 3,-5 + 1916: -3,-5 + 1932: -2,-5 + 1948: -1,-5 + 1977: 16,6 + 1987: 0,5 + 2003: 1,5 + 2009: 1,6 + 2020: 2,5 + 2026: 2,6 + 2037: 3,5 + 2043: 3,6 + 2062: 10,15 + 2065: 14,10 + 2068: 15,9 + 2082: -3,5 + 2088: -3,6 + 2099: -2,5 + 2105: -2,6 + 2120: -1,5 + 2126: -1,6 + 2133: 0,-5 + 2146: 1,-5 + 2167: 2,-5 + 2183: 3,-5 + 2222: -3,-5 + 2238: -2,-5 + 2254: -1,-5 + 2280: 16,6 + 2293: 0,5 + 2309: 1,5 + 2315: 1,6 + 2326: 2,5 + 2332: 2,6 + 2343: 3,5 + 2349: 3,6 + 2368: 10,15 + 2371: 14,10 + 2374: 15,9 + 2388: -3,5 + 2394: -3,6 + 2405: -2,5 + 2411: -2,6 + 2426: -1,5 + 2432: -1,6 + 2439: 0,-5 + 2452: 1,-5 + 2473: 2,-5 + 2489: 3,-5 + 2528: -3,-5 + 2544: -2,-5 + 2560: -1,-5 + 2589: 16,6 - node: id: LatticeEdgeE decals: - 289: 0,5 - 297: 1,5 - 305: 1,6 - 310: 2,5 - 318: 2,6 - 323: 3,5 - 331: 3,6 - 346: -6,13 - 349: -3,5 - 357: -3,6 - 362: -2,5 - 370: -2,6 - 375: -1,5 - 383: -1,6 - 388: 0,-5 - 395: 1,-6 - 401: 1,-5 - 408: 2,-6 - 414: 2,-5 - 421: 3,-6 - 427: 3,-5 - 441: -13,-7 - 444: -6,-9 - 448: -3,-6 - 454: -3,-5 - 461: -2,-6 - 467: -2,-5 - 474: -1,-6 - 480: -1,-5 - 487: -20,-2 - 490: -17,-4 - 493: -21,1 - 497: -21,5 - 500: -19,10 - 511: 0,5 - 519: 1,5 - 527: 1,6 - 532: 2,5 - 540: 2,6 - 545: 3,5 - 553: 3,6 - 568: -6,13 - 571: -3,5 - 579: -3,6 - 584: -2,5 - 592: -2,6 - 597: -1,5 - 605: -1,6 - 610: 0,-5 - 617: 1,-6 - 623: 1,-5 - 630: 2,-6 - 636: 2,-5 - 643: 3,-6 - 649: 3,-5 - 663: -13,-7 - 666: -6,-9 - 670: -3,-6 - 676: -3,-5 - 683: -2,-6 - 689: -2,-5 - 696: -1,-6 - 702: -1,-5 - 709: -20,-2 - 712: -17,-4 - 715: -21,1 - 719: -21,5 - 722: -19,10 - 767: 0,5 - 775: 1,5 - 783: 1,6 - 788: 2,5 - 796: 2,6 - 801: 3,5 - 809: 3,6 - 839: -6,13 - 842: -3,5 - 850: -3,6 - 855: -2,5 - 863: -2,6 - 868: -1,5 - 876: -1,6 - 881: 0,-5 - 888: 1,-6 - 894: 1,-5 - 901: 2,-6 - 907: 2,-5 - 914: 3,-6 - 920: 3,-5 - 943: -13,-7 - 946: -6,-9 - 950: -3,-6 - 956: -3,-5 - 963: -2,-6 - 969: -2,-5 - 976: -1,-6 - 982: -1,-5 - 989: -20,-2 - 992: -17,-4 - 995: -21,1 - 999: -21,5 - 1002: -19,10 - 1073: 0,5 - 1089: 1,5 - 1097: 1,6 - 1106: 2,5 - 1114: 2,6 - 1123: 3,5 - 1131: 3,6 - 1161: -6,13 - 1168: -3,5 - 1176: -3,6 - 1185: -2,5 - 1193: -2,6 - 1206: -1,5 - 1214: -1,6 - 1219: 0,-5 - 1226: 1,-6 - 1232: 1,-5 - 1247: 2,-6 - 1253: 2,-5 - 1263: 3,-6 - 1269: 3,-5 - 1295: -13,-7 - 1298: -6,-9 - 1302: -3,-6 - 1308: -3,-5 - 1318: -2,-6 - 1324: -2,-5 - 1334: -1,-6 - 1340: -1,-5 - 1355: -20,-2 - 1358: -17,-4 - 1361: -21,1 - 1365: -21,5 - 1368: -19,10 - 1379: 0,5 - 1395: 1,5 - 1403: 1,6 - 1412: 2,5 - 1420: 2,6 - 1429: 3,5 - 1437: 3,6 - 1467: -6,13 - 1474: -3,5 - 1482: -3,6 - 1491: -2,5 - 1499: -2,6 - 1512: -1,5 - 1520: -1,6 - 1525: 0,-5 - 1532: 1,-6 - 1538: 1,-5 - 1553: 2,-6 - 1559: 2,-5 - 1569: 3,-6 - 1575: 3,-5 - 1601: -13,-7 - 1604: -6,-9 - 1608: -3,-6 - 1614: -3,-5 - 1624: -2,-6 - 1630: -2,-5 - 1640: -1,-6 - 1646: -1,-5 - 1661: -20,-2 - 1664: -17,-4 - 1667: -21,1 - 1671: -21,5 - 1674: -19,10 + 280: 0,5 + 288: 1,5 + 296: 1,6 + 301: 2,5 + 309: 2,6 + 314: 3,5 + 322: 3,6 + 337: -6,13 + 340: -3,5 + 348: -3,6 + 353: -2,5 + 361: -2,6 + 366: -1,5 + 374: -1,6 + 379: 0,-5 + 386: 1,-6 + 392: 1,-5 + 399: 2,-6 + 405: 2,-5 + 412: 3,-6 + 418: 3,-5 + 432: -13,-7 + 435: -6,-9 + 439: -3,-6 + 445: -3,-5 + 452: -2,-6 + 458: -2,-5 + 465: -1,-6 + 471: -1,-5 + 478: -20,-2 + 481: -17,-4 + 484: -21,1 + 488: -21,5 + 491: -19,10 + 502: 0,5 + 510: 1,5 + 518: 1,6 + 523: 2,5 + 531: 2,6 + 536: 3,5 + 544: 3,6 + 559: -6,13 + 562: -3,5 + 570: -3,6 + 575: -2,5 + 583: -2,6 + 588: -1,5 + 596: -1,6 + 601: 0,-5 + 608: 1,-6 + 614: 1,-5 + 621: 2,-6 + 627: 2,-5 + 634: 3,-6 + 640: 3,-5 + 654: -13,-7 + 657: -6,-9 + 661: -3,-6 + 667: -3,-5 + 674: -2,-6 + 680: -2,-5 + 687: -1,-6 + 693: -1,-5 + 700: -20,-2 + 703: -17,-4 + 706: -21,1 + 710: -21,5 + 713: -19,10 + 758: 0,5 + 766: 1,5 + 774: 1,6 + 779: 2,5 + 787: 2,6 + 792: 3,5 + 800: 3,6 + 830: -6,13 + 833: -3,5 + 841: -3,6 + 846: -2,5 + 854: -2,6 + 859: -1,5 + 867: -1,6 + 872: 0,-5 + 879: 1,-6 + 885: 1,-5 + 892: 2,-6 + 898: 2,-5 + 905: 3,-6 + 911: 3,-5 + 934: -13,-7 + 937: -6,-9 + 941: -3,-6 + 947: -3,-5 + 954: -2,-6 + 960: -2,-5 + 967: -1,-6 + 973: -1,-5 + 980: -20,-2 + 983: -17,-4 + 986: -21,1 + 990: -21,5 + 993: -19,10 + 1064: 0,5 + 1080: 1,5 + 1088: 1,6 + 1097: 2,5 + 1105: 2,6 + 1114: 3,5 + 1122: 3,6 + 1152: -6,13 + 1159: -3,5 + 1167: -3,6 + 1176: -2,5 + 1184: -2,6 + 1197: -1,5 + 1205: -1,6 + 1210: 0,-5 + 1217: 1,-6 + 1223: 1,-5 + 1238: 2,-6 + 1244: 2,-5 + 1254: 3,-6 + 1260: 3,-5 + 1286: -13,-7 + 1289: -6,-9 + 1293: -3,-6 + 1299: -3,-5 + 1309: -2,-6 + 1315: -2,-5 + 1325: -1,-6 + 1331: -1,-5 + 1346: -20,-2 + 1349: -17,-4 + 1352: -21,1 + 1356: -21,5 + 1359: -19,10 + 1370: 0,5 + 1386: 1,5 + 1394: 1,6 + 1403: 2,5 + 1411: 2,6 + 1420: 3,5 + 1428: 3,6 + 1458: -6,13 + 1465: -3,5 + 1473: -3,6 + 1482: -2,5 + 1490: -2,6 + 1503: -1,5 + 1511: -1,6 + 1516: 0,-5 + 1523: 1,-6 + 1529: 1,-5 + 1544: 2,-6 + 1550: 2,-5 + 1560: 3,-6 + 1566: 3,-5 + 1592: -13,-7 + 1595: -6,-9 + 1599: -3,-6 + 1605: -3,-5 + 1615: -2,-6 + 1621: -2,-5 + 1631: -1,-6 + 1637: -1,-5 + 1652: -20,-2 + 1655: -17,-4 + 1658: -21,1 + 1662: -21,5 + 1665: -19,10 + 1676: 0,5 + 1692: 1,5 + 1700: 1,6 + 1709: 2,5 + 1717: 2,6 + 1726: 3,5 + 1734: 3,6 + 1764: -6,13 + 1771: -3,5 + 1779: -3,6 + 1788: -2,5 + 1796: -2,6 + 1809: -1,5 + 1817: -1,6 + 1822: 0,-5 + 1829: 1,-6 + 1835: 1,-5 + 1850: 2,-6 + 1856: 2,-5 + 1866: 3,-6 + 1872: 3,-5 + 1898: -13,-7 + 1901: -6,-9 + 1905: -3,-6 + 1911: -3,-5 + 1921: -2,-6 + 1927: -2,-5 + 1937: -1,-6 + 1943: -1,-5 + 1958: -20,-2 + 1961: -17,-4 + 1964: -21,1 + 1968: -21,5 + 1971: -19,10 + 1982: 0,5 + 1998: 1,5 + 2006: 1,6 + 2015: 2,5 + 2023: 2,6 + 2032: 3,5 + 2040: 3,6 + 2070: -6,13 + 2077: -3,5 + 2085: -3,6 + 2094: -2,5 + 2102: -2,6 + 2115: -1,5 + 2123: -1,6 + 2128: 0,-5 + 2135: 1,-6 + 2141: 1,-5 + 2156: 2,-6 + 2162: 2,-5 + 2172: 3,-6 + 2178: 3,-5 + 2204: -13,-7 + 2207: -6,-9 + 2211: -3,-6 + 2217: -3,-5 + 2227: -2,-6 + 2233: -2,-5 + 2243: -1,-6 + 2249: -1,-5 + 2264: -20,-2 + 2267: -21,1 + 2271: -21,5 + 2274: -19,10 + 2284: -17,-4 + 2288: 0,5 + 2304: 1,5 + 2312: 1,6 + 2321: 2,5 + 2329: 2,6 + 2338: 3,5 + 2346: 3,6 + 2376: -6,13 + 2383: -3,5 + 2391: -3,6 + 2400: -2,5 + 2408: -2,6 + 2421: -1,5 + 2429: -1,6 + 2434: 0,-5 + 2441: 1,-6 + 2447: 1,-5 + 2462: 2,-6 + 2468: 2,-5 + 2478: 3,-6 + 2484: 3,-5 + 2510: -13,-7 + 2513: -6,-9 + 2517: -3,-6 + 2523: -3,-5 + 2533: -2,-6 + 2539: -2,-5 + 2549: -1,-6 + 2555: -1,-5 + 2570: -20,-2 + 2573: -17,-4 + 2576: -21,1 + 2580: -21,5 + 2583: -19,10 - node: id: LatticeEdgeN decals: - 291: 0,5 - 299: 1,5 - 312: 2,5 - 325: 3,5 - 351: -3,5 - 364: -2,5 - 377: -1,5 - 390: 0,-5 - 396: 1,-6 - 403: 1,-5 - 409: 2,-6 - 416: 2,-5 - 422: 3,-6 - 429: 3,-5 - 434: 4,-12 - 435: 6,-9 - 438: 14,-7 - 442: -13,-7 - 445: -6,-9 - 447: -4,-11 - 449: -3,-6 - 456: -3,-5 - 462: -2,-6 - 469: -2,-5 - 475: -1,-6 - 482: -1,-5 - 488: -20,-2 - 491: -17,-4 - 494: -21,1 - 507: 16,-2 - 513: 0,5 - 521: 1,5 - 534: 2,5 - 547: 3,5 - 573: -3,5 - 586: -2,5 - 599: -1,5 - 612: 0,-5 - 618: 1,-6 - 625: 1,-5 - 631: 2,-6 - 638: 2,-5 - 644: 3,-6 - 651: 3,-5 - 656: 4,-12 - 657: 6,-9 - 660: 14,-7 - 664: -13,-7 - 667: -6,-9 - 669: -4,-11 - 671: -3,-6 - 678: -3,-5 - 684: -2,-6 - 691: -2,-5 - 697: -1,-6 - 704: -1,-5 - 710: -20,-2 - 713: -17,-4 - 716: -21,1 - 729: 16,-2 - 769: 0,5 - 777: 1,5 - 790: 2,5 - 803: 3,5 - 844: -3,5 - 857: -2,5 - 870: -1,5 - 883: 0,-5 - 889: 1,-6 - 896: 1,-5 - 902: 2,-6 - 909: 2,-5 - 915: 3,-6 - 922: 3,-5 - 927: 4,-12 - 928: 6,-9 - 940: 14,-7 - 944: -13,-7 - 947: -6,-9 - 949: -4,-11 - 951: -3,-6 - 958: -3,-5 - 964: -2,-6 - 971: -2,-5 - 977: -1,-6 - 984: -1,-5 - 990: -20,-2 - 993: -17,-4 - 996: -21,1 - 1009: 16,-2 - 1075: 0,5 - 1091: 1,5 - 1108: 2,5 - 1125: 3,5 - 1170: -3,5 - 1187: -2,5 - 1208: -1,5 - 1221: 0,-5 - 1227: 1,-6 - 1234: 1,-5 - 1248: 2,-6 - 1255: 2,-5 - 1264: 3,-6 - 1271: 3,-5 - 1279: 4,-12 - 1280: 6,-9 - 1292: 14,-7 - 1296: -13,-7 - 1299: -6,-9 - 1301: -4,-11 - 1303: -3,-6 - 1310: -3,-5 - 1319: -2,-6 - 1326: -2,-5 - 1335: -1,-6 - 1342: -1,-5 - 1356: -20,-2 - 1359: -17,-4 - 1362: -21,1 - 1375: 16,-2 - 1381: 0,5 - 1397: 1,5 - 1414: 2,5 - 1431: 3,5 - 1476: -3,5 - 1493: -2,5 - 1514: -1,5 - 1527: 0,-5 - 1533: 1,-6 - 1540: 1,-5 - 1554: 2,-6 - 1561: 2,-5 - 1570: 3,-6 - 1577: 3,-5 - 1585: 4,-12 - 1586: 6,-9 - 1598: 14,-7 - 1602: -13,-7 - 1605: -6,-9 - 1607: -4,-11 - 1609: -3,-6 - 1616: -3,-5 - 1625: -2,-6 - 1632: -2,-5 - 1641: -1,-6 - 1648: -1,-5 - 1662: -20,-2 - 1665: -17,-4 - 1668: -21,1 - 1681: 16,-2 + 282: 0,5 + 290: 1,5 + 303: 2,5 + 316: 3,5 + 342: -3,5 + 355: -2,5 + 368: -1,5 + 381: 0,-5 + 387: 1,-6 + 394: 1,-5 + 400: 2,-6 + 407: 2,-5 + 413: 3,-6 + 420: 3,-5 + 425: 4,-12 + 426: 6,-9 + 429: 14,-7 + 433: -13,-7 + 436: -6,-9 + 438: -4,-11 + 440: -3,-6 + 447: -3,-5 + 453: -2,-6 + 460: -2,-5 + 466: -1,-6 + 473: -1,-5 + 479: -20,-2 + 482: -17,-4 + 485: -21,1 + 498: 16,-2 + 504: 0,5 + 512: 1,5 + 525: 2,5 + 538: 3,5 + 564: -3,5 + 577: -2,5 + 590: -1,5 + 603: 0,-5 + 609: 1,-6 + 616: 1,-5 + 622: 2,-6 + 629: 2,-5 + 635: 3,-6 + 642: 3,-5 + 647: 4,-12 + 648: 6,-9 + 651: 14,-7 + 655: -13,-7 + 658: -6,-9 + 660: -4,-11 + 662: -3,-6 + 669: -3,-5 + 675: -2,-6 + 682: -2,-5 + 688: -1,-6 + 695: -1,-5 + 701: -20,-2 + 704: -17,-4 + 707: -21,1 + 720: 16,-2 + 760: 0,5 + 768: 1,5 + 781: 2,5 + 794: 3,5 + 835: -3,5 + 848: -2,5 + 861: -1,5 + 874: 0,-5 + 880: 1,-6 + 887: 1,-5 + 893: 2,-6 + 900: 2,-5 + 906: 3,-6 + 913: 3,-5 + 918: 4,-12 + 919: 6,-9 + 931: 14,-7 + 935: -13,-7 + 938: -6,-9 + 940: -4,-11 + 942: -3,-6 + 949: -3,-5 + 955: -2,-6 + 962: -2,-5 + 968: -1,-6 + 975: -1,-5 + 981: -20,-2 + 984: -17,-4 + 987: -21,1 + 1000: 16,-2 + 1066: 0,5 + 1082: 1,5 + 1099: 2,5 + 1116: 3,5 + 1161: -3,5 + 1178: -2,5 + 1199: -1,5 + 1212: 0,-5 + 1218: 1,-6 + 1225: 1,-5 + 1239: 2,-6 + 1246: 2,-5 + 1255: 3,-6 + 1262: 3,-5 + 1270: 4,-12 + 1271: 6,-9 + 1283: 14,-7 + 1287: -13,-7 + 1290: -6,-9 + 1292: -4,-11 + 1294: -3,-6 + 1301: -3,-5 + 1310: -2,-6 + 1317: -2,-5 + 1326: -1,-6 + 1333: -1,-5 + 1347: -20,-2 + 1350: -17,-4 + 1353: -21,1 + 1366: 16,-2 + 1372: 0,5 + 1388: 1,5 + 1405: 2,5 + 1422: 3,5 + 1467: -3,5 + 1484: -2,5 + 1505: -1,5 + 1518: 0,-5 + 1524: 1,-6 + 1531: 1,-5 + 1545: 2,-6 + 1552: 2,-5 + 1561: 3,-6 + 1568: 3,-5 + 1576: 4,-12 + 1577: 6,-9 + 1589: 14,-7 + 1593: -13,-7 + 1596: -6,-9 + 1598: -4,-11 + 1600: -3,-6 + 1607: -3,-5 + 1616: -2,-6 + 1623: -2,-5 + 1632: -1,-6 + 1639: -1,-5 + 1653: -20,-2 + 1656: -17,-4 + 1659: -21,1 + 1672: 16,-2 + 1678: 0,5 + 1694: 1,5 + 1711: 2,5 + 1728: 3,5 + 1773: -3,5 + 1790: -2,5 + 1811: -1,5 + 1824: 0,-5 + 1830: 1,-6 + 1837: 1,-5 + 1851: 2,-6 + 1858: 2,-5 + 1867: 3,-6 + 1874: 3,-5 + 1882: 4,-12 + 1883: 6,-9 + 1895: 14,-7 + 1899: -13,-7 + 1902: -6,-9 + 1904: -4,-11 + 1906: -3,-6 + 1913: -3,-5 + 1922: -2,-6 + 1929: -2,-5 + 1938: -1,-6 + 1945: -1,-5 + 1959: -20,-2 + 1962: -17,-4 + 1965: -21,1 + 1978: 16,-2 + 1984: 0,5 + 2000: 1,5 + 2017: 2,5 + 2034: 3,5 + 2079: -3,5 + 2096: -2,5 + 2117: -1,5 + 2130: 0,-5 + 2136: 1,-6 + 2143: 1,-5 + 2157: 2,-6 + 2164: 2,-5 + 2173: 3,-6 + 2180: 3,-5 + 2188: 4,-12 + 2189: 6,-9 + 2201: 14,-7 + 2205: -13,-7 + 2208: -6,-9 + 2210: -4,-11 + 2212: -3,-6 + 2219: -3,-5 + 2228: -2,-6 + 2235: -2,-5 + 2244: -1,-6 + 2251: -1,-5 + 2265: -20,-2 + 2268: -21,1 + 2281: 16,-2 + 2285: -17,-4 + 2290: 0,5 + 2306: 1,5 + 2323: 2,5 + 2340: 3,5 + 2385: -3,5 + 2402: -2,5 + 2423: -1,5 + 2436: 0,-5 + 2442: 1,-6 + 2449: 1,-5 + 2463: 2,-6 + 2470: 2,-5 + 2479: 3,-6 + 2486: 3,-5 + 2494: 4,-12 + 2495: 6,-9 + 2507: 14,-7 + 2511: -13,-7 + 2514: -6,-9 + 2516: -4,-11 + 2518: -3,-6 + 2525: -3,-5 + 2534: -2,-6 + 2541: -2,-5 + 2550: -1,-6 + 2557: -1,-5 + 2571: -20,-2 + 2574: -17,-4 + 2577: -21,1 + 2590: 16,-2 - node: id: LatticeEdgeS decals: - 288: 0,5 - 296: 1,5 - 304: 1,6 - 309: 2,5 - 317: 2,6 - 322: 3,5 - 330: 3,6 - 335: 4,15 - 336: 10,15 - 339: 14,10 - 342: 15,9 - 345: -6,13 - 348: -3,5 - 356: -3,6 - 361: -2,5 - 369: -2,6 - 374: -1,5 - 382: -1,6 - 387: 0,-5 - 400: 1,-5 - 413: 2,-5 - 426: 3,-5 - 453: -3,-5 - 466: -2,-5 - 479: -1,-5 - 496: -21,5 - 499: -19,10 - 502: -4,16 - 503: 8,18 - 504: 16,6 - 510: 0,5 - 518: 1,5 - 526: 1,6 - 531: 2,5 - 539: 2,6 - 544: 3,5 - 552: 3,6 - 557: 4,15 - 558: 10,15 - 561: 14,10 - 564: 15,9 - 567: -6,13 - 570: -3,5 - 578: -3,6 - 583: -2,5 - 591: -2,6 - 596: -1,5 - 604: -1,6 - 609: 0,-5 - 622: 1,-5 - 635: 2,-5 - 648: 3,-5 - 675: -3,-5 - 688: -2,-5 - 701: -1,-5 - 718: -21,5 - 721: -19,10 - 724: -4,16 - 725: 8,18 - 726: 16,6 - 766: 0,5 - 774: 1,5 - 782: 1,6 - 787: 2,5 - 795: 2,6 - 800: 3,5 - 808: 3,6 - 813: 4,15 - 829: 10,15 - 832: 14,10 - 835: 15,9 - 838: -6,13 - 841: -3,5 - 849: -3,6 - 854: -2,5 - 862: -2,6 - 867: -1,5 - 875: -1,6 - 880: 0,-5 - 893: 1,-5 - 906: 2,-5 - 919: 3,-5 - 955: -3,-5 - 968: -2,-5 - 981: -1,-5 - 998: -21,5 - 1001: -19,10 - 1004: -4,16 - 1005: 8,18 - 1006: 16,6 - 1072: 0,5 - 1088: 1,5 - 1096: 1,6 - 1105: 2,5 - 1113: 2,6 - 1122: 3,5 - 1130: 3,6 - 1135: 4,15 - 1151: 10,15 - 1154: 14,10 - 1157: 15,9 - 1160: -6,13 - 1167: -3,5 - 1175: -3,6 - 1184: -2,5 - 1192: -2,6 - 1205: -1,5 - 1213: -1,6 - 1218: 0,-5 - 1231: 1,-5 - 1252: 2,-5 - 1268: 3,-5 - 1307: -3,-5 - 1323: -2,-5 - 1339: -1,-5 - 1364: -21,5 - 1367: -19,10 - 1370: -4,16 - 1371: 8,18 - 1372: 16,6 - 1378: 0,5 - 1394: 1,5 - 1402: 1,6 - 1411: 2,5 - 1419: 2,6 - 1428: 3,5 - 1436: 3,6 - 1441: 4,15 - 1457: 10,15 - 1460: 14,10 - 1463: 15,9 - 1466: -6,13 - 1473: -3,5 - 1481: -3,6 - 1490: -2,5 - 1498: -2,6 - 1511: -1,5 - 1519: -1,6 - 1524: 0,-5 - 1537: 1,-5 - 1558: 2,-5 - 1574: 3,-5 - 1613: -3,-5 - 1629: -2,-5 - 1645: -1,-5 - 1670: -21,5 - 1673: -19,10 - 1676: -4,16 - 1677: 8,18 - 1678: 16,6 + 279: 0,5 + 287: 1,5 + 295: 1,6 + 300: 2,5 + 308: 2,6 + 313: 3,5 + 321: 3,6 + 326: 4,15 + 327: 10,15 + 330: 14,10 + 333: 15,9 + 336: -6,13 + 339: -3,5 + 347: -3,6 + 352: -2,5 + 360: -2,6 + 365: -1,5 + 373: -1,6 + 378: 0,-5 + 391: 1,-5 + 404: 2,-5 + 417: 3,-5 + 444: -3,-5 + 457: -2,-5 + 470: -1,-5 + 487: -21,5 + 490: -19,10 + 493: -4,16 + 494: 8,18 + 495: 16,6 + 501: 0,5 + 509: 1,5 + 517: 1,6 + 522: 2,5 + 530: 2,6 + 535: 3,5 + 543: 3,6 + 548: 4,15 + 549: 10,15 + 552: 14,10 + 555: 15,9 + 558: -6,13 + 561: -3,5 + 569: -3,6 + 574: -2,5 + 582: -2,6 + 587: -1,5 + 595: -1,6 + 600: 0,-5 + 613: 1,-5 + 626: 2,-5 + 639: 3,-5 + 666: -3,-5 + 679: -2,-5 + 692: -1,-5 + 709: -21,5 + 712: -19,10 + 715: -4,16 + 716: 8,18 + 717: 16,6 + 757: 0,5 + 765: 1,5 + 773: 1,6 + 778: 2,5 + 786: 2,6 + 791: 3,5 + 799: 3,6 + 804: 4,15 + 820: 10,15 + 823: 14,10 + 826: 15,9 + 829: -6,13 + 832: -3,5 + 840: -3,6 + 845: -2,5 + 853: -2,6 + 858: -1,5 + 866: -1,6 + 871: 0,-5 + 884: 1,-5 + 897: 2,-5 + 910: 3,-5 + 946: -3,-5 + 959: -2,-5 + 972: -1,-5 + 989: -21,5 + 992: -19,10 + 995: -4,16 + 996: 8,18 + 997: 16,6 + 1063: 0,5 + 1079: 1,5 + 1087: 1,6 + 1096: 2,5 + 1104: 2,6 + 1113: 3,5 + 1121: 3,6 + 1126: 4,15 + 1142: 10,15 + 1145: 14,10 + 1148: 15,9 + 1151: -6,13 + 1158: -3,5 + 1166: -3,6 + 1175: -2,5 + 1183: -2,6 + 1196: -1,5 + 1204: -1,6 + 1209: 0,-5 + 1222: 1,-5 + 1243: 2,-5 + 1259: 3,-5 + 1298: -3,-5 + 1314: -2,-5 + 1330: -1,-5 + 1355: -21,5 + 1358: -19,10 + 1361: -4,16 + 1362: 8,18 + 1363: 16,6 + 1369: 0,5 + 1385: 1,5 + 1393: 1,6 + 1402: 2,5 + 1410: 2,6 + 1419: 3,5 + 1427: 3,6 + 1432: 4,15 + 1448: 10,15 + 1451: 14,10 + 1454: 15,9 + 1457: -6,13 + 1464: -3,5 + 1472: -3,6 + 1481: -2,5 + 1489: -2,6 + 1502: -1,5 + 1510: -1,6 + 1515: 0,-5 + 1528: 1,-5 + 1549: 2,-5 + 1565: 3,-5 + 1604: -3,-5 + 1620: -2,-5 + 1636: -1,-5 + 1661: -21,5 + 1664: -19,10 + 1667: -4,16 + 1668: 8,18 + 1669: 16,6 + 1675: 0,5 + 1691: 1,5 + 1699: 1,6 + 1708: 2,5 + 1716: 2,6 + 1725: 3,5 + 1733: 3,6 + 1738: 4,15 + 1754: 10,15 + 1757: 14,10 + 1760: 15,9 + 1763: -6,13 + 1770: -3,5 + 1778: -3,6 + 1787: -2,5 + 1795: -2,6 + 1808: -1,5 + 1816: -1,6 + 1821: 0,-5 + 1834: 1,-5 + 1855: 2,-5 + 1871: 3,-5 + 1910: -3,-5 + 1926: -2,-5 + 1942: -1,-5 + 1967: -21,5 + 1970: -19,10 + 1973: -4,16 + 1974: 8,18 + 1975: 16,6 + 1981: 0,5 + 1997: 1,5 + 2005: 1,6 + 2014: 2,5 + 2022: 2,6 + 2031: 3,5 + 2039: 3,6 + 2044: 4,15 + 2060: 10,15 + 2063: 14,10 + 2066: 15,9 + 2069: -6,13 + 2076: -3,5 + 2084: -3,6 + 2093: -2,5 + 2101: -2,6 + 2114: -1,5 + 2122: -1,6 + 2127: 0,-5 + 2140: 1,-5 + 2161: 2,-5 + 2177: 3,-5 + 2216: -3,-5 + 2232: -2,-5 + 2248: -1,-5 + 2270: -21,5 + 2273: -19,10 + 2276: -4,16 + 2277: 8,18 + 2278: 16,6 + 2287: 0,5 + 2303: 1,5 + 2311: 1,6 + 2320: 2,5 + 2328: 2,6 + 2337: 3,5 + 2345: 3,6 + 2350: 4,15 + 2366: 10,15 + 2369: 14,10 + 2372: 15,9 + 2375: -6,13 + 2382: -3,5 + 2390: -3,6 + 2399: -2,5 + 2407: -2,6 + 2420: -1,5 + 2428: -1,6 + 2433: 0,-5 + 2446: 1,-5 + 2467: 2,-5 + 2483: 3,-5 + 2522: -3,-5 + 2538: -2,-5 + 2554: -1,-5 + 2579: -21,5 + 2582: -19,10 + 2585: -4,16 + 2586: 8,18 + 2587: 16,6 - node: id: LatticeEdgeW decals: - 293: 0,5 - 301: 1,5 - 307: 1,6 - 314: 2,5 - 320: 2,6 - 327: 3,5 - 333: 3,6 - 337: 10,15 - 340: 14,10 - 343: 15,9 - 353: -3,5 - 359: -3,6 - 366: -2,5 - 372: -2,6 - 379: -1,5 - 385: -1,6 - 392: 0,-5 - 398: 1,-6 - 405: 1,-5 - 411: 2,-6 - 418: 2,-5 - 424: 3,-6 - 431: 3,-5 - 436: 6,-9 - 439: 14,-7 - 451: -3,-6 - 458: -3,-5 - 464: -2,-6 - 471: -2,-5 - 477: -1,-6 - 484: -1,-5 - 505: 16,6 - 508: 16,-2 - 515: 0,5 - 523: 1,5 - 529: 1,6 - 536: 2,5 - 542: 2,6 - 549: 3,5 - 555: 3,6 - 559: 10,15 - 562: 14,10 - 565: 15,9 - 575: -3,5 - 581: -3,6 - 588: -2,5 - 594: -2,6 - 601: -1,5 - 607: -1,6 - 614: 0,-5 - 620: 1,-6 - 627: 1,-5 - 633: 2,-6 - 640: 2,-5 - 646: 3,-6 - 653: 3,-5 - 658: 6,-9 - 661: 14,-7 - 673: -3,-6 - 680: -3,-5 - 686: -2,-6 - 693: -2,-5 - 699: -1,-6 - 706: -1,-5 - 727: 16,6 - 730: 16,-2 - 771: 0,5 - 779: 1,5 - 785: 1,6 - 792: 2,5 - 798: 2,6 - 805: 3,5 - 811: 3,6 - 830: 10,15 - 833: 14,10 - 836: 15,9 - 846: -3,5 - 852: -3,6 - 859: -2,5 - 865: -2,6 - 872: -1,5 - 878: -1,6 - 885: 0,-5 - 891: 1,-6 - 898: 1,-5 - 904: 2,-6 - 911: 2,-5 - 917: 3,-6 - 924: 3,-5 - 929: 6,-9 - 941: 14,-7 - 953: -3,-6 - 960: -3,-5 - 966: -2,-6 - 973: -2,-5 - 979: -1,-6 - 986: -1,-5 - 1007: 16,6 - 1010: 16,-2 - 1077: 0,5 - 1093: 1,5 - 1099: 1,6 - 1110: 2,5 - 1116: 2,6 - 1127: 3,5 - 1133: 3,6 - 1152: 10,15 - 1155: 14,10 - 1158: 15,9 - 1172: -3,5 - 1178: -3,6 - 1189: -2,5 - 1195: -2,6 - 1210: -1,5 - 1216: -1,6 - 1223: 0,-5 - 1229: 1,-6 - 1236: 1,-5 - 1250: 2,-6 - 1257: 2,-5 - 1266: 3,-6 - 1273: 3,-5 - 1281: 6,-9 - 1293: 14,-7 - 1305: -3,-6 - 1312: -3,-5 - 1321: -2,-6 - 1328: -2,-5 - 1337: -1,-6 - 1344: -1,-5 - 1373: 16,6 - 1376: 16,-2 - 1383: 0,5 - 1399: 1,5 - 1405: 1,6 - 1416: 2,5 - 1422: 2,6 - 1433: 3,5 - 1439: 3,6 - 1458: 10,15 - 1461: 14,10 - 1464: 15,9 - 1478: -3,5 - 1484: -3,6 - 1495: -2,5 - 1501: -2,6 - 1516: -1,5 - 1522: -1,6 - 1529: 0,-5 - 1535: 1,-6 - 1542: 1,-5 - 1556: 2,-6 - 1563: 2,-5 - 1572: 3,-6 - 1579: 3,-5 - 1587: 6,-9 - 1599: 14,-7 - 1611: -3,-6 - 1618: -3,-5 - 1627: -2,-6 - 1634: -2,-5 - 1643: -1,-6 - 1650: -1,-5 - 1679: 16,6 - 1682: 16,-2 + 284: 0,5 + 292: 1,5 + 298: 1,6 + 305: 2,5 + 311: 2,6 + 318: 3,5 + 324: 3,6 + 328: 10,15 + 331: 14,10 + 334: 15,9 + 344: -3,5 + 350: -3,6 + 357: -2,5 + 363: -2,6 + 370: -1,5 + 376: -1,6 + 383: 0,-5 + 389: 1,-6 + 396: 1,-5 + 402: 2,-6 + 409: 2,-5 + 415: 3,-6 + 422: 3,-5 + 427: 6,-9 + 430: 14,-7 + 442: -3,-6 + 449: -3,-5 + 455: -2,-6 + 462: -2,-5 + 468: -1,-6 + 475: -1,-5 + 496: 16,6 + 499: 16,-2 + 506: 0,5 + 514: 1,5 + 520: 1,6 + 527: 2,5 + 533: 2,6 + 540: 3,5 + 546: 3,6 + 550: 10,15 + 553: 14,10 + 556: 15,9 + 566: -3,5 + 572: -3,6 + 579: -2,5 + 585: -2,6 + 592: -1,5 + 598: -1,6 + 605: 0,-5 + 611: 1,-6 + 618: 1,-5 + 624: 2,-6 + 631: 2,-5 + 637: 3,-6 + 644: 3,-5 + 649: 6,-9 + 652: 14,-7 + 664: -3,-6 + 671: -3,-5 + 677: -2,-6 + 684: -2,-5 + 690: -1,-6 + 697: -1,-5 + 718: 16,6 + 721: 16,-2 + 762: 0,5 + 770: 1,5 + 776: 1,6 + 783: 2,5 + 789: 2,6 + 796: 3,5 + 802: 3,6 + 821: 10,15 + 824: 14,10 + 827: 15,9 + 837: -3,5 + 843: -3,6 + 850: -2,5 + 856: -2,6 + 863: -1,5 + 869: -1,6 + 876: 0,-5 + 882: 1,-6 + 889: 1,-5 + 895: 2,-6 + 902: 2,-5 + 908: 3,-6 + 915: 3,-5 + 920: 6,-9 + 932: 14,-7 + 944: -3,-6 + 951: -3,-5 + 957: -2,-6 + 964: -2,-5 + 970: -1,-6 + 977: -1,-5 + 998: 16,6 + 1001: 16,-2 + 1068: 0,5 + 1084: 1,5 + 1090: 1,6 + 1101: 2,5 + 1107: 2,6 + 1118: 3,5 + 1124: 3,6 + 1143: 10,15 + 1146: 14,10 + 1149: 15,9 + 1163: -3,5 + 1169: -3,6 + 1180: -2,5 + 1186: -2,6 + 1201: -1,5 + 1207: -1,6 + 1214: 0,-5 + 1220: 1,-6 + 1227: 1,-5 + 1241: 2,-6 + 1248: 2,-5 + 1257: 3,-6 + 1264: 3,-5 + 1272: 6,-9 + 1284: 14,-7 + 1296: -3,-6 + 1303: -3,-5 + 1312: -2,-6 + 1319: -2,-5 + 1328: -1,-6 + 1335: -1,-5 + 1364: 16,6 + 1367: 16,-2 + 1374: 0,5 + 1390: 1,5 + 1396: 1,6 + 1407: 2,5 + 1413: 2,6 + 1424: 3,5 + 1430: 3,6 + 1449: 10,15 + 1452: 14,10 + 1455: 15,9 + 1469: -3,5 + 1475: -3,6 + 1486: -2,5 + 1492: -2,6 + 1507: -1,5 + 1513: -1,6 + 1520: 0,-5 + 1526: 1,-6 + 1533: 1,-5 + 1547: 2,-6 + 1554: 2,-5 + 1563: 3,-6 + 1570: 3,-5 + 1578: 6,-9 + 1590: 14,-7 + 1602: -3,-6 + 1609: -3,-5 + 1618: -2,-6 + 1625: -2,-5 + 1634: -1,-6 + 1641: -1,-5 + 1670: 16,6 + 1673: 16,-2 + 1680: 0,5 + 1696: 1,5 + 1702: 1,6 + 1713: 2,5 + 1719: 2,6 + 1730: 3,5 + 1736: 3,6 + 1755: 10,15 + 1758: 14,10 + 1761: 15,9 + 1775: -3,5 + 1781: -3,6 + 1792: -2,5 + 1798: -2,6 + 1813: -1,5 + 1819: -1,6 + 1826: 0,-5 + 1832: 1,-6 + 1839: 1,-5 + 1853: 2,-6 + 1860: 2,-5 + 1869: 3,-6 + 1876: 3,-5 + 1884: 6,-9 + 1896: 14,-7 + 1908: -3,-6 + 1915: -3,-5 + 1924: -2,-6 + 1931: -2,-5 + 1940: -1,-6 + 1947: -1,-5 + 1976: 16,6 + 1979: 16,-2 + 1986: 0,5 + 2002: 1,5 + 2008: 1,6 + 2019: 2,5 + 2025: 2,6 + 2036: 3,5 + 2042: 3,6 + 2061: 10,15 + 2064: 14,10 + 2067: 15,9 + 2081: -3,5 + 2087: -3,6 + 2098: -2,5 + 2104: -2,6 + 2119: -1,5 + 2125: -1,6 + 2132: 0,-5 + 2138: 1,-6 + 2145: 1,-5 + 2159: 2,-6 + 2166: 2,-5 + 2175: 3,-6 + 2182: 3,-5 + 2190: 6,-9 + 2202: 14,-7 + 2214: -3,-6 + 2221: -3,-5 + 2230: -2,-6 + 2237: -2,-5 + 2246: -1,-6 + 2253: -1,-5 + 2279: 16,6 + 2282: 16,-2 + 2292: 0,5 + 2308: 1,5 + 2314: 1,6 + 2325: 2,5 + 2331: 2,6 + 2342: 3,5 + 2348: 3,6 + 2367: 10,15 + 2370: 14,10 + 2373: 15,9 + 2387: -3,5 + 2393: -3,6 + 2404: -2,5 + 2410: -2,6 + 2425: -1,5 + 2431: -1,6 + 2438: 0,-5 + 2444: 1,-6 + 2451: 1,-5 + 2465: 2,-6 + 2472: 2,-5 + 2481: 3,-6 + 2488: 3,-5 + 2496: 6,-9 + 2508: 14,-7 + 2520: -3,-6 + 2527: -3,-5 + 2536: -2,-6 + 2543: -2,-5 + 2552: -1,-6 + 2559: -1,-5 + 2588: 16,6 + 2591: 16,-2 - node: color: '#FFFFFFFF' id: TechE decals: 104: 15,2 - 118: 5,-8 - 119: 5,-7 - 120: 5,-6 - 121: 5,-4 - 144: -10,6 - 166: 2,0 - 183: 14,-1 - 220: 5,4 - 221: 5,5 - 222: 5,6 - 223: 5,8 - 224: 5,9 - 225: 5,10 - 271: -14,11 - 272: 6,13 - 275: 6,14 - 278: -10,12 + 109: 5,-8 + 110: 5,-7 + 111: 5,-6 + 112: 5,-4 + 135: -10,6 + 157: 2,0 + 174: 14,-1 + 211: 5,4 + 212: 5,5 + 213: 5,6 + 214: 5,8 + 215: 5,9 + 216: 5,10 + 262: -14,11 + 263: 6,13 + 266: 6,14 + 269: -10,12 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechE decals: - 761: 13,-1 - 762: 13,0 - 763: 13,1 - 764: 13,2 - 765: 13,3 + 752: 13,-1 + 753: 13,0 + 754: 13,1 + 755: 13,2 + 756: 13,3 - node: color: '#FFFFFFFF' id: TechN @@ -1678,40 +2593,38 @@ entities: 98: 17,1 99: 16,1 100: 15,1 - 106: -17,-2 - 107: -16,-2 - 137: -5,6 - 147: -10,-1 - 149: -9,-1 - 186: 9,8 - 187: 10,8 - 188: 11,8 - 199: 13,7 - 206: -12,-5 - 207: -11,-5 - 208: -10,-5 - 209: -9,-5 - 210: -8,-5 - 211: -7,-5 - 264: -13,10 - 265: -12,10 - 266: -11,10 - 267: -9,11 - 268: -8,11 - 269: -7,11 + 128: -5,6 + 138: -10,-1 + 140: -9,-1 + 177: 9,8 + 178: 10,8 + 179: 11,8 + 190: 13,7 + 197: -12,-5 + 198: -11,-5 + 199: -10,-5 + 200: -9,-5 + 201: -8,-5 + 202: -7,-5 + 255: -13,10 + 256: -12,10 + 257: -11,10 + 258: -9,11 + 259: -8,11 + 260: -7,11 - node: color: '#FFFFFFFF' id: TechNE decals: - 151: -8,-1 - 163: 2,1 + 142: -8,-1 + 154: 2,1 - node: color: '#FFFFFFFF' id: TechNW decals: - 145: -11,-1 - 164: -2,1 - 189: 8,8 + 136: -11,-1 + 155: -2,1 + 180: 8,8 - node: color: '#FFFFFFFF' id: TechS @@ -1722,93 +2635,93 @@ entities: 101: 17,3 102: 16,3 103: 15,3 - 142: -9,7 - 143: -8,7 - 148: -10,-2 - 152: -9,-2 - 200: -18,7 - 201: -17,7 - 202: -16,7 + 133: -9,7 + 134: -8,7 + 139: -10,-2 + 143: -9,-2 + 191: -18,7 + 192: -17,7 + 193: -16,7 - node: color: '#FFFFFFFF' id: TechSE decals: - 150: -8,-2 - 162: 2,-1 + 141: -8,-2 + 153: 2,-1 - node: color: '#FFFFFFFF' id: TechSW decals: - 146: -11,-2 - 161: -2,-1 + 137: -11,-2 + 152: -2,-1 - node: color: '#FFFFFFFF' id: TechW decals: 85: -18,3 - 115: -5,-8 - 116: -5,-7 - 117: -5,-6 - 136: -5,5 - 138: -5,6 - 139: -5,7 - 165: -2,0 - 171: 8,-5 - 172: 8,-4 - 177: -5,-4 - 184: 12,-2 - 203: -15,6 - 204: -15,8 - 205: -15,7 - 217: -5,9 - 218: -5,10 - 219: -5,11 - 270: -14,11 - 273: 6,13 - 274: 6,14 - 279: -10,12 + 106: -5,-8 + 107: -5,-7 + 108: -5,-6 + 127: -5,5 + 129: -5,6 + 130: -5,7 + 156: -2,0 + 162: 8,-5 + 163: 8,-4 + 168: -5,-4 + 175: 12,-2 + 194: -15,6 + 195: -15,8 + 196: -15,7 + 208: -5,9 + 209: -5,10 + 210: -5,11 + 261: -14,11 + 264: 6,13 + 265: 6,14 + 270: -10,12 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 756: 12,-1 - 757: 12,0 - 758: 12,1 - 759: 12,2 - 760: 12,3 + 747: 12,-1 + 748: 12,0 + 749: 12,1 + 750: 12,2 + 751: 12,3 - node: color: '#EFB34196' id: WarnBox decals: - 287: -8,0 + 278: -8,0 - node: color: '#EFB34196' id: WarnCornerSmallNE decals: - 234: 7,4 - 243: 9,5 + 225: 7,4 + 234: 9,5 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: - 192: 11,8 - 194: 8,8 - 233: 7,6 - 237: 9,5 + 183: 11,8 + 185: 8,8 + 224: 7,6 + 228: 9,5 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: - 193: 10,8 + 184: 10,8 - node: color: '#EFB34196' id: WarnFull decals: 89: -20,3 97: 17,2 - 276: -12,9 - 277: -8,10 + 267: -12,9 + 268: -8,10 - node: color: '#EFB34196' id: WarnLineE @@ -1839,17 +2752,17 @@ entities: 95: 17,1 96: 17,3 105: 16,2 - 153: -16,8 - 154: -16,9 - 159: -18,8 - 160: -18,9 - 191: 11,7 - 197: 13,9 - 198: 13,8 - 232: 7,5 - 238: 9,4 - 242: 9,6 - 286: 14,5 + 144: -16,8 + 145: -16,9 + 150: -18,8 + 151: -18,9 + 182: 11,7 + 188: 13,9 + 189: 13,8 + 223: 7,5 + 229: 9,4 + 233: 9,6 + 277: 14,5 - node: color: '#EFB34196' id: WarnLineN @@ -1872,26 +2785,26 @@ entities: 59: 9,10 79: 11,4 81: 13,10 - 180: 11,-2 - 181: 12,-2 - 182: 13,-2 - 185: 10,-2 - 190: 9,8 - 235: 11,5 - 236: 10,5 - 247: 12,5 - 248: -7,-4 - 249: -8,-4 - 250: -9,-4 - 251: -10,-4 - 252: -11,-4 - 253: -12,-4 - 280: -13,10 - 281: -12,10 - 282: -11,10 - 283: -9,11 - 284: -8,11 - 285: -7,11 + 171: 11,-2 + 172: 12,-2 + 173: 13,-2 + 176: 10,-2 + 181: 9,8 + 226: 11,5 + 227: 10,5 + 238: 12,5 + 239: -7,-4 + 240: -8,-4 + 241: -9,-4 + 242: -10,-4 + 243: -11,-4 + 244: -12,-4 + 271: -13,10 + 272: -12,10 + 273: -11,10 + 274: -9,11 + 275: -8,11 + 276: -7,11 - node: color: '#EFB34196' id: WarnLineS @@ -1919,21 +2832,21 @@ entities: 90: -19,3 91: -20,2 92: -20,4 - 155: -16,8 - 156: -16,9 - 157: -18,8 - 158: -18,9 - 195: 13,8 - 196: 13,9 - 226: 7,4 - 227: 6,5 - 228: 7,5 - 229: 7,6 - 230: 6,4 - 231: 6,6 - 239: 9,4 - 240: 9,5 - 241: 9,6 + 146: -16,8 + 147: -16,9 + 148: -18,8 + 149: -18,9 + 186: 13,8 + 187: 13,9 + 217: 7,4 + 218: 6,5 + 219: 7,5 + 220: 7,6 + 221: 6,4 + 222: 6,6 + 230: 9,4 + 231: 9,5 + 232: 9,6 - node: color: '#EFB34196' id: WarnLineW @@ -1956,19 +2869,19 @@ entities: 64: 9,10 80: 11,4 82: 13,10 - 244: 10,5 - 245: 11,5 - 246: 12,5 - 254: -12,-4 - 255: -11,-4 - 256: -10,-4 - 257: -9,-4 - 258: -8,-4 - 259: -7,-4 - 260: 7,10 - 261: 5,12 - 262: 9,15 - 263: -5,13 + 235: 10,5 + 236: 11,5 + 237: 12,5 + 245: -12,-4 + 246: -11,-4 + 247: -10,-4 + 248: -9,-4 + 249: -8,-4 + 250: -7,-4 + 251: 7,10 + 252: 5,12 + 253: 9,15 + 254: -5,13 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -2141,20 +3054,22 @@ entities: - type: GasTileOverlay - type: BecomesStation id: Gargut + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 45 + - uid: 2 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,8.5 + rot: -3.141591547927584 rad + pos: -17.5,9.5 parent: 1 - type: DeviceLinkSink links: - - 298 + - 707 - type: Physics + fixedRotation: False canCollide: False - - uid: 94 + - uid: 3 components: - type: Transform rot: 3.141592653589793 rad @@ -2162,21 +3077,22 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 298 + - 707 - type: Physics canCollide: False - - uid: 121 + - uid: 4 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 + rot: -3.141591334627151 rad + pos: -15.5,9.5 parent: 1 - type: DeviceLinkSink links: - - 298 + - 707 - type: Physics + fixedRotation: False canCollide: False - - uid: 521 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad @@ -2184,36 +3100,34 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 298 + - 707 - type: Physics canCollide: False -- proto: AAAHardpointMediumBallistic - entities: - - uid: 71 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 1 + - type: DeviceLinkSink + links: + - 707 - type: Physics canCollide: False - - uid: 125 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,10.5 parent: 1 + - type: DeviceLinkSink + links: + - 707 - type: Physics canCollide: False - - uid: 202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 1 - - type: Physics - canCollide: False - - uid: 222 +- proto: AAAHardpointSmallBallistic + entities: + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad @@ -2221,45 +3135,36 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 429 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 1 - - type: Physics - canCollide: False - - uid: 525 + - uid: 9 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,13.5 + pos: -9.5,12.5 parent: 1 - type: Physics canCollide: False - - uid: 1351 + - uid: 10 components: - type: Transform - pos: -15.5,-4.5 + pos: 17.5,-0.5 parent: 1 - type: Physics canCollide: False -- proto: AAAHardpointSmallBallistic - entities: - - uid: 244 + - uid: 11 components: - type: Transform pos: -18.5,-2.5 parent: 1 - type: Physics canCollide: False - - uid: 388 + - uid: 12 components: - type: Transform pos: 5.5,-9.5 parent: 1 - type: Physics canCollide: False - - uid: 696 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad @@ -2267,7 +3172,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 700 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad @@ -2275,7 +3180,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 702 + - uid: 15 components: - type: Transform rot: 3.141592653589793 rad @@ -2283,37 +3188,53 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 703 + - uid: 16 components: - type: Transform pos: -6.5,-7.5 parent: 1 - type: Physics canCollide: False - - uid: 712 + - uid: 17 components: - type: Transform pos: 15.5,-5.5 parent: 1 - type: Physics canCollide: False - - uid: 717 + - uid: 18 components: - type: Transform pos: -4.5,-9.5 parent: 1 - type: Physics canCollide: False - - uid: 1003 + - uid: 19 components: - type: Transform pos: 8.5,-7.5 parent: 1 - type: Physics canCollide: False + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 1 + - type: Physics + canCollide: False - proto: AirCanister entities: - - uid: 511 + - uid: 22 components: - type: Transform anchored: True @@ -2325,44 +3246,44 @@ entities: bodyType: Static - proto: AirlockCommand entities: - - uid: 291 + - uid: 23 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,8.5 parent: 1 - - uid: 293 + - uid: 24 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,7.5 parent: 1 - - uid: 311 + - uid: 25 components: - type: Transform pos: -11.5,5.5 parent: 1 - proto: AirlockCommandHorizontal entities: - - uid: 65 + - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,9.5 parent: 1 - - uid: 176 + - uid: 27 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,8.5 parent: 1 - - uid: 288 + - uid: 28 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-0.5 parent: 1 - - uid: 707 + - uid: 29 components: - type: Transform rot: -1.5707963267948966 rad @@ -2370,150 +3291,150 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWL entities: - - uid: 299 + - uid: 30 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 31 components: - type: Transform pos: -14.5,5.5 parent: 1 - - uid: 301 + - uid: 32 components: - type: Transform pos: -13.5,1.5 parent: 1 - - uid: 305 + - uid: 33 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 332 + - uid: 34 components: - type: Transform pos: -4.5,-4.5 parent: 1 - - uid: 391 + - uid: 35 components: - type: Transform pos: 11.5,4.5 parent: 1 - - uid: 447 + - uid: 36 components: - type: Transform pos: 7.5,-2.5 parent: 1 - - uid: 448 + - uid: 37 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 492 + - uid: 38 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 496 + - uid: 39 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 689 - components: - - type: Transform - pos: 9.5,10.5 - parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 32 + - uid: 40 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 33 + - uid: 41 components: - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 193 + - uid: 42 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 289 + - uid: 43 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 290 + - uid: 44 components: - type: Transform pos: -16.5,3.5 parent: 1 - - uid: 319 + - uid: 45 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 410 + - uid: 46 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 443 + - uid: 47 components: - type: Transform pos: -12.5,-3.5 parent: 1 - - uid: 445 + - uid: 48 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 446 + - uid: 49 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 1399 + - uid: 50 components: - type: Transform pos: 12.5,7.5 parent: 1 - - uid: 1433 + - uid: 51 components: - type: Transform pos: -6.5,6.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 273 + - uid: 52 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 274 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 parent: 1 - - uid: 275 + - uid: 54 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 1 - - uid: 276 + - uid: 55 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,3.5 parent: 1 - - uid: 282 + - uid: 56 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,2.5 parent: 1 - - uid: 357 + - uid: 57 components: - type: Transform rot: -1.5707963267948966 rad @@ -2521,7 +3442,7 @@ entities: parent: 1 - proto: AmeController entities: - - uid: 342 + - uid: 58 components: - type: Transform pos: 12.5,-1.5 @@ -2533,40 +3454,40 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 343 + ent: 59 - proto: AmeJar entities: - - uid: 343 + - uid: 59 components: - type: Transform - parent: 342 + parent: 58 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 510 + - uid: 60 components: - type: Transform pos: 14.223116,-0.65093017 parent: 1 - - uid: 737 + - uid: 61 components: - type: Transform pos: 14.762178,-0.25249267 parent: 1 - proto: AmeShielding entities: - - uid: 320 + - uid: 62 components: - type: Transform pos: 13.5,-3.5 parent: 1 - - uid: 321 + - uid: 63 components: - type: Transform pos: 11.5,-4.5 parent: 1 - - uid: 322 + - uid: 64 components: - type: Transform pos: 11.5,-3.5 @@ -2574,37 +3495,37 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 323 + - uid: 65 components: - type: Transform pos: 13.5,-4.5 parent: 1 - - uid: 324 + - uid: 66 components: - type: Transform pos: 13.5,-2.5 parent: 1 - - uid: 325 + - uid: 67 components: - type: Transform pos: 12.5,-2.5 parent: 1 - - uid: 326 + - uid: 68 components: - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 327 + - uid: 69 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 328 + - uid: 70 components: - type: Transform pos: 10.5,-4.5 parent: 1 - - uid: 329 + - uid: 71 components: - type: Transform pos: 12.5,-3.5 @@ -2612,33 +3533,33 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 330 + - uid: 72 components: - type: Transform pos: 10.5,-2.5 parent: 1 - - uid: 331 + - uid: 73 components: - type: Transform pos: 12.5,-4.5 parent: 1 - proto: APCBasic entities: - - uid: 747 + - uid: 74 components: - type: Transform pos: 8.5,9.5 parent: 1 - proto: APCHighCapacity entities: - - uid: 569 + - uid: 75 components: - type: Transform pos: 10.5,4.5 parent: 1 - proto: Ashtray entities: - - uid: 576 + - uid: 76 components: - type: Transform pos: -11.702169,-1.0455792 @@ -2648,268 +3569,148 @@ entities: linearDamping: 0 - proto: AtmosDeviceFanTiny entities: - - uid: 524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - - uid: 640 + - uid: 77 components: - type: Transform pos: -20.5,2.5 parent: 1 - - uid: 641 + - uid: 78 components: - type: Transform pos: -20.5,3.5 parent: 1 - - uid: 642 + - uid: 79 components: - type: Transform pos: -20.5,4.5 parent: 1 - - uid: 643 + - uid: 80 components: - type: Transform pos: -17.5,10.5 parent: 1 - - uid: 644 + - uid: 81 components: - type: Transform pos: -15.5,10.5 parent: 1 - - uid: 645 + - uid: 82 components: - type: Transform pos: -13.5,8.5 parent: 1 - - uid: 646 + - uid: 83 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 647 + - uid: 84 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 648 + - uid: 85 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 649 + - uid: 86 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 650 + - uid: 87 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 651 + - uid: 88 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 652 + - uid: 89 components: - type: Transform pos: 18.5,1.5 parent: 1 - - uid: 653 + - uid: 90 components: - type: Transform pos: 18.5,2.5 parent: 1 - - uid: 654 + - uid: 91 components: - type: Transform pos: 18.5,3.5 parent: 1 - - uid: 655 + - uid: 92 components: - type: Transform pos: 13.5,10.5 parent: 1 - - uid: 711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 1 - - uid: 746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 1 -- proto: BarricadeBlock - entities: - - uid: 509 +- proto: BarricadeBlock + entities: + - uid: 93 components: - type: Transform pos: 5.5,7.5 parent: 1 - proto: BaseAPC entities: - - uid: 745 + - uid: 94 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 1001 + - uid: 95 components: - type: Transform pos: -13.5,5.5 parent: 1 -- proto: BaseWeaponTurretSlugspitter - entities: - - uid: 362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointCannon - linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 526 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointCannon - linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointCannon - linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,11.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointCannon - linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 718 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointCannon - linkedConsoleIds: - - 407 - linkedConsoleId: 407 - proto: BlastDoor entities: - - uid: 60 + - uid: 96 components: - type: Transform pos: -17.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 686 - - 685 - - uid: 61 + - 1070 + - uid: 97 components: - type: Transform pos: -15.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 687 - - 685 - - uid: 86 + - 1070 + - uid: 98 components: - type: Transform pos: 0.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 732 - - uid: 87 + - 1071 + - uid: 99 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 732 - - uid: 88 + - 1071 + - uid: 100 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 732 - - uid: 89 + - 1071 + - uid: 101 components: - type: Transform rot: 3.141592653589793 rad @@ -2917,8 +3718,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 733 - - uid: 90 + - 1072 + - uid: 102 components: - type: Transform rot: 3.141592653589793 rad @@ -2926,8 +3727,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 733 - - uid: 91 + - 1072 + - uid: 103 components: - type: Transform rot: 3.141592653589793 rad @@ -2935,17 +3736,14 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 733 - - uid: 280 + - 1072 + - uid: 104 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,2.5 parent: 1 - - type: DeviceLinkSink - links: - - 1341 - - uid: 356 + - uid: 105 components: - type: Transform rot: 1.5707963267948966 rad @@ -2953,68 +3751,41 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1342 - - uid: 484 + - 1073 + - uid: 106 components: - type: Transform pos: 7.5,11.5 parent: 1 - type: DeviceLinkSink links: - - 626 - - uid: 523 + - 1069 + - uid: 107 components: - type: Transform pos: 13.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 688 - - 1343 - - uid: 706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - - type: DeviceLinkSink - links: - - 527 - - uid: 1356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1359 - - uid: 1357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1358 + - 1136 + - 1074 - proto: Bookshelf entities: - - uid: 552 + - uid: 108 components: - type: Transform pos: -7.5,2.5 parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 402 + - uid: 109 components: - type: Transform pos: -11.5,-4.5 parent: 1 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 384 + - uid: 110 components: - type: Transform pos: -7.5,7.5 @@ -3025,88 +3796,65 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 589 + - uid: 111 components: - type: Transform pos: -17.67577,-0.4951434 parent: 1 - proto: BoxFolderBlack entities: - - uid: 573 + - uid: 112 components: - type: Transform pos: -11.624044,-1.4801016 parent: 1 - proto: BoxFolderYellow entities: - - uid: 574 + - uid: 113 components: - type: Transform pos: -11.264669,-1.4957266 parent: 1 - proto: BoxPillCanister entities: - - uid: 590 + - uid: 114 components: - type: Transform pos: -17.26952,-0.5107684 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 567 + - uid: 115 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - - uid: 709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 1 - - uid: 730 + - uid: 116 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 731 + - uid: 117 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1202 + - uid: 118 components: - type: Transform pos: -19.5,5.5 parent: 1 - - uid: 1340 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1 - - uid: 1344 + - uid: 119 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,7.5 parent: 1 - - uid: 1397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - - uid: 1398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 467 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad @@ -3114,2268 +3862,2268 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 339 + - uid: 121 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 340 + - uid: 122 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 354 + - uid: 123 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 519 + - uid: 124 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 625 + - uid: 125 components: - type: Transform pos: 7.5,-4.5 parent: 1 - - uid: 639 + - uid: 126 components: - type: Transform pos: -7.5,10.5 parent: 1 - - uid: 658 + - uid: 127 components: - type: Transform pos: -11.5,9.5 parent: 1 - - uid: 744 + - uid: 128 components: - type: Transform pos: -12.5,-4.5 parent: 1 - - uid: 810 + - uid: 129 components: - type: Transform pos: -12.5,-5.5 parent: 1 - - uid: 846 + - uid: 130 components: - type: Transform pos: -14.5,-3.5 parent: 1 - - uid: 848 + - uid: 131 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 849 + - uid: 132 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 850 + - uid: 133 components: - type: Transform pos: -12.5,-3.5 parent: 1 - - uid: 851 + - uid: 134 components: - type: Transform pos: -12.5,-2.5 parent: 1 - - uid: 852 + - uid: 135 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 853 + - uid: 136 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 854 + - uid: 137 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 855 + - uid: 138 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 856 + - uid: 139 components: - type: Transform pos: -12.5,2.5 parent: 1 - - uid: 857 + - uid: 140 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 858 + - uid: 141 components: - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 859 + - uid: 142 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 860 + - uid: 143 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 861 + - uid: 144 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 862 + - uid: 145 components: - type: Transform pos: -12.5,8.5 parent: 1 - - uid: 863 + - uid: 146 components: - type: Transform pos: -12.5,9.5 parent: 1 - - uid: 864 + - uid: 147 components: - type: Transform pos: -12.5,10.5 parent: 1 - - uid: 865 + - uid: 148 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 866 + - uid: 149 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 867 + - uid: 150 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 868 + - uid: 151 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 869 + - uid: 152 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 870 + - uid: 153 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 871 + - uid: 154 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 872 + - uid: 155 components: - type: Transform pos: -9.5,0.5 parent: 1 - - uid: 873 + - uid: 156 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 874 + - uid: 157 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 875 + - uid: 158 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 876 + - uid: 159 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 877 + - uid: 160 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 878 + - uid: 161 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 879 + - uid: 162 components: - type: Transform pos: -9.5,7.5 parent: 1 - - uid: 880 + - uid: 163 components: - type: Transform pos: -9.5,8.5 parent: 1 - - uid: 881 + - uid: 164 components: - type: Transform pos: -9.5,9.5 parent: 1 - - uid: 882 + - uid: 165 components: - type: Transform pos: -9.5,10.5 parent: 1 - - uid: 883 + - uid: 166 components: - type: Transform pos: -9.5,11.5 parent: 1 - - uid: 884 + - uid: 167 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 885 + - uid: 168 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 886 + - uid: 169 components: - type: Transform pos: -6.5,-5.5 parent: 1 - - uid: 887 + - uid: 170 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 888 + - uid: 171 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 889 + - uid: 172 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 890 + - uid: 173 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 891 + - uid: 174 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 892 + - uid: 175 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 893 + - uid: 176 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 894 + - uid: 177 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 895 + - uid: 178 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 896 + - uid: 179 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 897 + - uid: 180 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 898 + - uid: 181 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 899 + - uid: 182 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 900 + - uid: 183 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 901 + - uid: 184 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 902 + - uid: 185 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 903 + - uid: 186 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 904 + - uid: 187 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 905 + - uid: 188 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 906 + - uid: 189 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 907 + - uid: 190 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 908 + - uid: 191 components: - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 909 + - uid: 192 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 910 + - uid: 193 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 911 + - uid: 194 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 912 + - uid: 195 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 913 + - uid: 196 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 914 + - uid: 197 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 915 + - uid: 198 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 916 + - uid: 199 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 917 + - uid: 200 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 918 + - uid: 201 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 919 + - uid: 202 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 920 + - uid: 203 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 921 + - uid: 204 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 922 + - uid: 205 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 923 + - uid: 206 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 924 + - uid: 207 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 925 + - uid: 208 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 926 + - uid: 209 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 927 + - uid: 210 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 928 + - uid: 211 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 929 + - uid: 212 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 930 + - uid: 213 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 931 + - uid: 214 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 932 + - uid: 215 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 933 + - uid: 216 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 934 + - uid: 217 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 935 + - uid: 218 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 936 + - uid: 219 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 937 + - uid: 220 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 938 + - uid: 221 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 939 + - uid: 222 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 940 + - uid: 223 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 941 + - uid: 224 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 942 + - uid: 225 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 943 + - uid: 226 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 944 + - uid: 227 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 945 + - uid: 228 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 946 + - uid: 229 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 947 + - uid: 230 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 948 + - uid: 231 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 949 + - uid: 232 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 950 + - uid: 233 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 951 + - uid: 234 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 952 + - uid: 235 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 953 + - uid: 236 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 954 + - uid: 237 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 955 + - uid: 238 components: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 956 + - uid: 239 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 957 + - uid: 240 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 958 + - uid: 241 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 959 + - uid: 242 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 960 + - uid: 243 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 961 + - uid: 244 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 962 + - uid: 245 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 963 + - uid: 246 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 964 + - uid: 247 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 965 + - uid: 248 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 966 + - uid: 249 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 967 + - uid: 250 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 968 + - uid: 251 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 969 + - uid: 252 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 970 + - uid: 253 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 971 + - uid: 254 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 972 + - uid: 255 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 973 + - uid: 256 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 974 + - uid: 257 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 975 + - uid: 258 components: - type: Transform pos: 8.5,-7.5 parent: 1 - - uid: 976 + - uid: 259 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 977 + - uid: 260 components: - type: Transform pos: 8.5,-5.5 parent: 1 - - uid: 978 + - uid: 261 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 979 + - uid: 262 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 980 + - uid: 263 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 981 + - uid: 264 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 982 + - uid: 265 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 983 + - uid: 266 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 984 + - uid: 267 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 985 + - uid: 268 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 986 + - uid: 269 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 987 + - uid: 270 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 988 + - uid: 271 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 989 + - uid: 272 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 990 + - uid: 273 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 991 + - uid: 274 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 992 + - uid: 275 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 993 + - uid: 276 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 994 + - uid: 277 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 995 + - uid: 278 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 996 + - uid: 279 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 997 + - uid: 280 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 998 + - uid: 281 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 999 + - uid: 282 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 1000 + - uid: 283 components: - type: Transform pos: 8.5,17.5 parent: 1 - - uid: 1002 + - uid: 284 components: - type: Transform pos: -13.5,5.5 parent: 1 - - uid: 1004 + - uid: 285 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 1005 + - uid: 286 components: - type: Transform pos: 11.5,-6.5 parent: 1 - - uid: 1006 + - uid: 287 components: - type: Transform pos: 11.5,-5.5 parent: 1 - - uid: 1007 + - uid: 288 components: - type: Transform pos: 11.5,-4.5 parent: 1 - - uid: 1008 + - uid: 289 components: - type: Transform pos: 11.5,-3.5 parent: 1 - - uid: 1009 + - uid: 290 components: - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 1010 + - uid: 291 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 1011 + - uid: 292 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 1012 + - uid: 293 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 1013 + - uid: 294 components: - type: Transform pos: 11.5,2.5 parent: 1 - - uid: 1014 + - uid: 295 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 1015 + - uid: 296 components: - type: Transform pos: 11.5,4.5 parent: 1 - - uid: 1016 + - uid: 297 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 1017 + - uid: 298 components: - type: Transform pos: 11.5,6.5 parent: 1 - - uid: 1018 + - uid: 299 components: - type: Transform pos: 11.5,7.5 parent: 1 - - uid: 1019 + - uid: 300 components: - type: Transform pos: 11.5,8.5 parent: 1 - - uid: 1020 + - uid: 301 components: - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 1021 + - uid: 302 components: - type: Transform pos: 11.5,10.5 parent: 1 - - uid: 1022 + - uid: 303 components: - type: Transform pos: 11.5,11.5 parent: 1 - - uid: 1023 + - uid: 304 components: - type: Transform pos: 11.5,12.5 parent: 1 - - uid: 1024 + - uid: 305 components: - type: Transform pos: 11.5,13.5 parent: 1 - - uid: 1025 + - uid: 306 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 1026 + - uid: 307 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 1027 + - uid: 308 components: - type: Transform pos: 14.5,7.5 parent: 1 - - uid: 1028 + - uid: 309 components: - type: Transform pos: 14.5,6.5 parent: 1 - - uid: 1029 + - uid: 310 components: - type: Transform pos: 14.5,5.5 parent: 1 - - uid: 1030 + - uid: 311 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 1031 + - uid: 312 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 1032 + - uid: 313 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 1033 + - uid: 314 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 1034 + - uid: 315 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 1035 + - uid: 316 components: - type: Transform pos: 14.5,-0.5 parent: 1 - - uid: 1036 + - uid: 317 components: - type: Transform pos: 14.5,-1.5 parent: 1 - - uid: 1037 + - uid: 318 components: - type: Transform pos: 14.5,-2.5 parent: 1 - - uid: 1038 + - uid: 319 components: - type: Transform pos: 14.5,-3.5 parent: 1 - - uid: 1039 + - uid: 320 components: - type: Transform pos: 14.5,-4.5 parent: 1 - - uid: 1040 + - uid: 321 components: - type: Transform pos: 14.5,-5.5 parent: 1 - - uid: 1041 + - uid: 322 components: - type: Transform pos: 17.5,-0.5 parent: 1 - - uid: 1042 + - uid: 323 components: - type: Transform pos: 17.5,0.5 parent: 1 - - uid: 1043 + - uid: 324 components: - type: Transform pos: 17.5,1.5 parent: 1 - - uid: 1044 + - uid: 325 components: - type: Transform pos: 17.5,2.5 parent: 1 - - uid: 1045 + - uid: 326 components: - type: Transform pos: 17.5,3.5 parent: 1 - - uid: 1046 + - uid: 327 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 1047 + - uid: 328 components: - type: Transform pos: 17.5,5.5 parent: 1 - - uid: 1048 + - uid: 329 components: - type: Transform pos: -15.5,-4.5 parent: 1 - - uid: 1049 + - uid: 330 components: - type: Transform pos: -15.5,-3.5 parent: 1 - - uid: 1050 + - uid: 331 components: - type: Transform pos: -15.5,-2.5 parent: 1 - - uid: 1051 + - uid: 332 components: - type: Transform pos: -15.5,-1.5 parent: 1 - - uid: 1052 + - uid: 333 components: - type: Transform pos: -15.5,-0.5 parent: 1 - - uid: 1053 + - uid: 334 components: - type: Transform pos: -15.5,0.5 parent: 1 - - uid: 1054 + - uid: 335 components: - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 1055 + - uid: 336 components: - type: Transform pos: -15.5,2.5 parent: 1 - - uid: 1056 + - uid: 337 components: - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 1057 + - uid: 338 components: - type: Transform pos: -15.5,4.5 parent: 1 - - uid: 1058 + - uid: 339 components: - type: Transform pos: -15.5,5.5 parent: 1 - - uid: 1059 + - uid: 340 components: - type: Transform pos: -15.5,6.5 parent: 1 - - uid: 1060 + - uid: 341 components: - type: Transform pos: -15.5,7.5 parent: 1 - - uid: 1061 + - uid: 342 components: - type: Transform pos: -15.5,8.5 parent: 1 - - uid: 1062 + - uid: 343 components: - type: Transform pos: -15.5,9.5 parent: 1 - - uid: 1063 + - uid: 344 components: - type: Transform pos: -15.5,10.5 parent: 1 - - uid: 1064 + - uid: 345 components: - type: Transform pos: -18.5,-1.5 parent: 1 - - uid: 1065 + - uid: 346 components: - type: Transform pos: -18.5,-0.5 parent: 1 - - uid: 1066 + - uid: 347 components: - type: Transform pos: -18.5,0.5 parent: 1 - - uid: 1067 + - uid: 348 components: - type: Transform pos: -18.5,1.5 parent: 1 - - uid: 1068 + - uid: 349 components: - type: Transform pos: -18.5,2.5 parent: 1 - - uid: 1069 + - uid: 350 components: - type: Transform pos: -18.5,3.5 parent: 1 - - uid: 1070 + - uid: 351 components: - type: Transform pos: -18.5,4.5 parent: 1 - - uid: 1071 + - uid: 352 components: - type: Transform pos: -18.5,5.5 parent: 1 - - uid: 1072 + - uid: 353 components: - type: Transform pos: -18.5,6.5 parent: 1 - - uid: 1073 + - uid: 354 components: - type: Transform pos: -18.5,7.5 parent: 1 - - uid: 1074 + - uid: 355 components: - type: Transform pos: -18.5,8.5 parent: 1 - - uid: 1075 + - uid: 356 components: - type: Transform pos: -18.5,9.5 parent: 1 - - uid: 1076 + - uid: 357 components: - type: Transform pos: 13.5,-3.5 parent: 1 - - uid: 1077 + - uid: 358 components: - type: Transform pos: 12.5,-3.5 parent: 1 - - uid: 1078 + - uid: 359 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 1079 + - uid: 360 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 1080 + - uid: 361 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 1081 + - uid: 362 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1082 + - uid: 363 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1083 + - uid: 364 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1084 + - uid: 365 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1085 + - uid: 366 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1086 + - uid: 367 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1087 + - uid: 368 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1088 + - uid: 369 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1089 + - uid: 370 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 1090 + - uid: 371 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 1091 + - uid: 372 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 1092 + - uid: 373 components: - type: Transform pos: -11.5,-3.5 parent: 1 - - uid: 1093 + - uid: 374 components: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 1094 + - uid: 375 components: - type: Transform pos: -13.5,-3.5 parent: 1 - - uid: 1095 + - uid: 376 components: - type: Transform pos: -19.5,-0.5 parent: 1 - - uid: 1096 + - uid: 377 components: - type: Transform pos: -17.5,-0.5 parent: 1 - - uid: 1097 + - uid: 378 components: - type: Transform pos: -16.5,-0.5 parent: 1 - - uid: 1098 + - uid: 379 components: - type: Transform pos: -14.5,-0.5 parent: 1 - - uid: 1099 + - uid: 380 components: - type: Transform pos: -13.5,-0.5 parent: 1 - - uid: 1100 + - uid: 381 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 1101 + - uid: 382 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 1102 + - uid: 383 components: - type: Transform pos: -8.5,-0.5 parent: 1 - - uid: 1103 + - uid: 384 components: - type: Transform pos: -7.5,-0.5 parent: 1 - - uid: 1104 + - uid: 385 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1105 + - uid: 386 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1106 + - uid: 387 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1107 + - uid: 388 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1108 + - uid: 389 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1109 + - uid: 390 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1110 + - uid: 391 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 1111 + - uid: 392 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1112 + - uid: 393 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1113 + - uid: 394 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 1114 + - uid: 395 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 1115 + - uid: 396 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 1116 + - uid: 397 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 1117 + - uid: 398 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 1118 + - uid: 399 components: - type: Transform pos: 16.5,2.5 parent: 1 - - uid: 1119 + - uid: 400 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 1120 + - uid: 401 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 1121 + - uid: 402 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 1122 + - uid: 403 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 1123 + - uid: 404 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 1124 + - uid: 405 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 1125 + - uid: 406 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1126 + - uid: 407 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1127 + - uid: 408 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1128 + - uid: 409 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1129 + - uid: 410 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1130 + - uid: 411 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1131 + - uid: 412 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1132 + - uid: 413 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1133 + - uid: 414 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1134 + - uid: 415 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1135 + - uid: 416 components: - type: Transform pos: -8.5,2.5 parent: 1 - - uid: 1136 + - uid: 417 components: - type: Transform pos: -10.5,2.5 parent: 1 - - uid: 1137 + - uid: 418 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 1138 + - uid: 419 components: - type: Transform pos: -13.5,2.5 parent: 1 - - uid: 1139 + - uid: 420 components: - type: Transform pos: -14.5,2.5 parent: 1 - - uid: 1140 + - uid: 421 components: - type: Transform pos: -16.5,2.5 parent: 1 - - uid: 1141 + - uid: 422 components: - type: Transform pos: -17.5,2.5 parent: 1 - - uid: 1142 + - uid: 423 components: - type: Transform pos: -20.5,2.5 parent: 1 - - uid: 1143 + - uid: 424 components: - type: Transform pos: -19.5,2.5 parent: 1 - - uid: 1144 + - uid: 425 components: - type: Transform pos: -19.5,5.5 parent: 1 - - uid: 1145 + - uid: 426 components: - type: Transform pos: -17.5,5.5 parent: 1 - - uid: 1146 + - uid: 427 components: - type: Transform pos: -16.5,5.5 parent: 1 - - uid: 1147 + - uid: 428 components: - type: Transform pos: -14.5,5.5 parent: 1 - - uid: 1148 + - uid: 429 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 1149 + - uid: 430 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 1150 + - uid: 431 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 1151 + - uid: 432 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1152 + - uid: 433 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1153 + - uid: 434 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 1154 + - uid: 435 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1155 + - uid: 436 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1156 + - uid: 437 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 1157 + - uid: 438 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 1158 + - uid: 439 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 1159 + - uid: 440 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 1160 + - uid: 441 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 1161 + - uid: 442 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 1162 + - uid: 443 components: - type: Transform pos: 16.5,5.5 parent: 1 - - uid: 1163 + - uid: 444 components: - type: Transform pos: 15.5,8.5 parent: 1 - - uid: 1164 + - uid: 445 components: - type: Transform pos: 13.5,8.5 parent: 1 - - uid: 1165 + - uid: 446 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 1166 + - uid: 447 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 1167 + - uid: 448 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 1168 + - uid: 449 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 1169 + - uid: 450 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1170 + - uid: 451 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1171 + - uid: 452 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1172 + - uid: 453 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1173 + - uid: 454 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1174 + - uid: 455 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 1175 + - uid: 456 components: - type: Transform pos: -10.5,8.5 parent: 1 - - uid: 1176 + - uid: 457 components: - type: Transform pos: -11.5,8.5 parent: 1 - - uid: 1177 + - uid: 458 components: - type: Transform pos: -13.5,8.5 parent: 1 - - uid: 1178 + - uid: 459 components: - type: Transform pos: -14.5,8.5 parent: 1 - - uid: 1179 + - uid: 460 components: - type: Transform pos: -17.5,8.5 parent: 1 - - uid: 1180 + - uid: 461 components: - type: Transform pos: -16.5,8.5 parent: 1 - - uid: 1181 + - uid: 462 components: - type: Transform pos: -19.5,8.5 parent: 1 - - uid: 1182 + - uid: 463 components: - type: Transform pos: -18.5,10.5 parent: 1 - - uid: 1183 + - uid: 464 components: - type: Transform pos: -17.5,10.5 parent: 1 - - uid: 1184 + - uid: 465 components: - type: Transform pos: -16.5,10.5 parent: 1 - - uid: 1185 + - uid: 466 components: - type: Transform pos: -14.5,10.5 parent: 1 - - uid: 1186 + - uid: 467 components: - type: Transform pos: -13.5,10.5 parent: 1 - - uid: 1187 + - uid: 468 components: - type: Transform pos: -11.5,10.5 parent: 1 - - uid: 1188 + - uid: 469 components: - type: Transform pos: -10.5,10.5 parent: 1 - - uid: 1189 + - uid: 470 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 1190 + - uid: 471 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 1191 + - uid: 472 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 1192 + - uid: 473 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 1193 + - uid: 474 components: - type: Transform pos: -4.5,12.5 parent: 1 - proto: CableHV entities: - - uid: 749 + - uid: 475 components: - type: Transform pos: 12.5,-1.5 parent: 1 - - uid: 750 + - uid: 476 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 751 + - uid: 477 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 752 + - uid: 478 components: - type: Transform pos: 14.5,-0.5 parent: 1 - - uid: 753 + - uid: 479 components: - type: Transform pos: 15.5,-0.5 parent: 1 - - uid: 754 + - uid: 480 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 755 + - uid: 481 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 756 + - uid: 482 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 757 + - uid: 483 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 758 + - uid: 484 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 759 + - uid: 485 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 760 + - uid: 486 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 761 + - uid: 487 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 762 + - uid: 488 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 763 + - uid: 489 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 764 + - uid: 490 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 765 + - uid: 491 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 766 + - uid: 492 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 767 + - uid: 493 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 768 + - uid: 494 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 769 + - uid: 495 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 770 + - uid: 496 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 771 + - uid: 497 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 772 + - uid: 498 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 773 + - uid: 499 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 774 + - uid: 500 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 775 + - uid: 501 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 776 + - uid: 502 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 777 + - uid: 503 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 778 + - uid: 504 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 779 + - uid: 505 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 780 + - uid: 506 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 781 + - uid: 507 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 782 + - uid: 508 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 783 + - uid: 509 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 784 + - uid: 510 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 785 + - uid: 511 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 786 + - uid: 512 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 787 + - uid: 513 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 788 + - uid: 514 components: - type: Transform pos: 15.5,1.5 parent: 1 - - uid: 789 + - uid: 515 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 790 + - uid: 516 components: - type: Transform pos: 15.5,3.5 parent: 1 - - uid: 791 + - uid: 517 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 792 + - uid: 518 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 793 + - uid: 519 components: - type: Transform pos: 13.5,-1.5 parent: 1 - proto: CableMV entities: - - uid: 794 + - uid: 520 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 795 + - uid: 521 components: - type: Transform pos: 14.5,5.5 parent: 1 - - uid: 796 + - uid: 522 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 797 + - uid: 523 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 798 + - uid: 524 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 799 + - uid: 525 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 800 + - uid: 526 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 801 + - uid: 527 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 802 + - uid: 528 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 803 + - uid: 529 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 804 + - uid: 530 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 805 + - uid: 531 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 806 + - uid: 532 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 807 + - uid: 533 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 808 + - uid: 534 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 809 + - uid: 535 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 811 + - uid: 536 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 812 + - uid: 537 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 813 + - uid: 538 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 814 + - uid: 539 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 815 + - uid: 540 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 816 + - uid: 541 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 817 + - uid: 542 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 818 + - uid: 543 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 819 + - uid: 544 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 820 + - uid: 545 components: - type: Transform pos: -9.5,0.5 parent: 1 - - uid: 821 + - uid: 546 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 822 + - uid: 547 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 823 + - uid: 548 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 824 + - uid: 549 components: - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 825 + - uid: 550 components: - type: Transform pos: -7.5,-1.5 parent: 1 - - uid: 826 + - uid: 551 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 827 + - uid: 552 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 828 + - uid: 553 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 829 + - uid: 554 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 830 + - uid: 555 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 831 + - uid: 556 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 832 + - uid: 557 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 833 + - uid: 558 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 834 + - uid: 559 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 835 + - uid: 560 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 836 + - uid: 561 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 837 + - uid: 562 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 838 + - uid: 563 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 839 + - uid: 564 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 840 + - uid: 565 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 841 + - uid: 566 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 842 + - uid: 567 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 843 + - uid: 568 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 844 + - uid: 569 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 845 + - uid: 570 components: - type: Transform pos: 10.5,0.5 parent: 1 - - uid: 847 + - uid: 571 components: - type: Transform pos: -13.5,5.5 parent: 1 - proto: CableTerminal entities: - - uid: 335 + - uid: 572 components: - type: Transform rot: 1.5707963267948966 rad @@ -5383,716 +6131,614 @@ entities: parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 420 + - uid: 573 components: - type: Transform pos: 10.300504,9.287634 parent: 1 - - uid: 431 + - uid: 574 components: - type: Transform pos: 10.347379,9.381384 parent: 1 - - uid: 487 + - uid: 575 components: - type: Transform pos: 10.605191,9.592321 parent: 1 - - uid: 517 + - uid: 576 components: - type: Transform pos: 10.300504,9.264196 parent: 1 - - uid: 518 + - uid: 577 components: - type: Transform pos: 10.605191,9.756384 parent: 1 - - uid: 520 + - uid: 578 components: - type: Transform pos: 10.370816,9.475134 parent: 1 - - uid: 531 + - uid: 579 components: - type: Transform pos: 10.370816,9.615759 parent: 1 - - uid: 564 + - uid: 580 components: - type: Transform pos: 10.394254,9.756384 parent: 1 - - uid: 1370 - components: - - type: Transform - pos: -16.82869,6.9305615 - parent: 1 - - uid: 1371 - components: - - type: Transform - pos: -16.805252,6.860249 - parent: 1 - - uid: 1372 - components: - - type: Transform - pos: -16.805252,6.8368115 - parent: 1 - - uid: 1373 - components: - - type: Transform - pos: -16.82869,6.719624 - parent: 1 - - uid: 1374 - components: - - type: Transform - pos: -16.82869,6.6493115 - parent: 1 - - uid: 1375 - components: - - type: Transform - pos: -16.852127,6.5555615 - parent: 1 - - uid: 1376 - components: - - type: Transform - pos: -16.852127,6.4149365 - parent: 1 - - uid: 1377 - components: - - type: Transform - pos: -16.852127,6.2743115 - parent: 1 - - uid: 1378 - components: - - type: Transform - pos: -16.35994,6.9305615 - parent: 1 - - uid: 1379 - components: - - type: Transform - pos: -16.35994,6.813374 - parent: 1 - - uid: 1380 - components: - - type: Transform - pos: -16.35994,6.7430615 - parent: 1 - - uid: 1381 - components: - - type: Transform - pos: -16.35994,6.672749 - parent: 1 - - uid: 1382 - components: - - type: Transform - pos: -16.35994,6.578999 - parent: 1 - - uid: 1383 - components: - - type: Transform - pos: -16.35994,6.4618115 - parent: 1 - - uid: 1384 - components: - - type: Transform - pos: -16.383377,6.344624 - parent: 1 - - uid: 1385 - components: - - type: Transform - pos: -16.383377,6.250874 - parent: 1 - - uid: 1386 + - uid: 581 components: - type: Transform pos: 11.218553,9.919592 parent: 1 - - uid: 1387 + - uid: 582 components: - type: Transform pos: 11.218553,9.778967 parent: 1 - - uid: 1388 + - uid: 583 components: - type: Transform pos: 11.218553,9.708654 parent: 1 - - uid: 1389 + - uid: 584 components: - type: Transform pos: 11.218553,9.591467 parent: 1 - - uid: 1390 + - uid: 585 components: - type: Transform pos: 11.218553,9.544592 parent: 1 - - uid: 1391 + - uid: 586 components: - type: Transform pos: 11.218553,9.427404 parent: 1 - - uid: 1392 + - uid: 587 components: - type: Transform pos: 11.195115,9.310217 parent: 1 - - uid: 1393 + - uid: 588 components: - type: Transform pos: 11.14824,9.216467 parent: 1 - - uid: 1394 + - uid: 589 components: - type: Transform pos: 11.124803,9.146154 parent: 1 - - uid: 1395 + - uid: 590 components: - type: Transform pos: 11.640428,9.778967 parent: 1 - - uid: 1396 + - uid: 591 components: - type: Transform pos: 11.640428,9.685217 parent: 1 -- proto: CartridgeShellHighExplosive - entities: - - uid: 1366 - components: - - type: Transform - pos: -17.625565,6.3680615 - parent: 1 - - uid: 1367 - components: - - type: Transform - pos: -17.602127,6.625874 - parent: 1 - - uid: 1368 - components: - - type: Transform - pos: -15.563065,6.3211865 - parent: 1 - - uid: 1369 - components: - - type: Transform - pos: -15.539627,6.672749 - parent: 1 - proto: Catwalk entities: - - uid: 42 + - uid: 592 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 248 + - uid: 593 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 249 + - uid: 594 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 250 + - uid: 595 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 251 + - uid: 596 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 252 + - uid: 597 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 253 + - uid: 598 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 254 + - uid: 599 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 255 + - uid: 600 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 256 + - uid: 601 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 257 + - uid: 602 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 258 + - uid: 603 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 259 + - uid: 604 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 260 + - uid: 605 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 261 + - uid: 606 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 262 + - uid: 607 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 263 + - uid: 608 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 264 + - uid: 609 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 355 + - uid: 610 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 416 + - uid: 611 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 417 + - uid: 612 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 418 + - uid: 613 components: - type: Transform pos: 10.5,-1.5 parent: 1 - - uid: 481 + - uid: 614 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 482 + - uid: 615 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 539 + - uid: 616 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 565 + - uid: 617 components: - type: Transform pos: 11.5,2.5 parent: 1 - - uid: 566 + - uid: 618 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 621 + - uid: 619 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 622 + - uid: 620 components: - type: Transform pos: 9.5,-1.5 parent: 1 - - uid: 624 + - uid: 621 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 659 + - uid: 622 components: - type: Transform pos: -11.5,-3.5 parent: 1 - - uid: 660 + - uid: 623 components: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 661 + - uid: 624 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 662 + - uid: 625 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 663 + - uid: 626 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 664 + - uid: 627 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 665 + - uid: 628 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 666 + - uid: 629 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 667 + - uid: 630 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 668 + - uid: 631 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 669 + - uid: 632 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 670 + - uid: 633 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 674 + - uid: 634 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 675 + - uid: 635 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 676 + - uid: 636 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 699 + - uid: 637 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 708 + - uid: 638 components: - type: Transform pos: 9.5,13.5 parent: 1 - - uid: 738 + - uid: 639 components: - type: Transform pos: 9.5,12.5 parent: 1 - - uid: 1400 + - uid: 640 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1401 + - uid: 641 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 1402 + - uid: 642 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1403 + - uid: 643 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1404 + - uid: 644 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1405 + - uid: 645 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1406 + - uid: 646 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1407 + - uid: 647 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1408 + - uid: 648 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1409 + - uid: 649 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1410 + - uid: 650 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 1411 + - uid: 651 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 1412 + - uid: 652 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 1413 + - uid: 653 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1414 + - uid: 654 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1415 + - uid: 655 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1416 + - uid: 656 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1417 + - uid: 657 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1418 + - uid: 658 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1419 + - uid: 659 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1420 + - uid: 660 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1421 + - uid: 661 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1422 + - uid: 662 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 1423 + - uid: 663 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 1424 + - uid: 664 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1425 + - uid: 665 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1426 + - uid: 666 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1427 + - uid: 667 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1428 + - uid: 668 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1429 + - uid: 669 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1430 + - uid: 670 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1431 + - uid: 671 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 1432 + - uid: 672 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 1434 + - uid: 673 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1435 + - uid: 674 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1436 + - uid: 675 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 1437 + - uid: 676 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1438 + - uid: 677 components: - type: Transform pos: -13.5,2.5 parent: 1 - - uid: 1439 + - uid: 678 components: - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 1440 + - uid: 679 components: - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 1441 + - uid: 680 components: - type: Transform pos: -14.5,4.5 parent: 1 - - uid: 1442 + - uid: 681 components: - type: Transform pos: -14.5,3.5 parent: 1 - - uid: 1443 + - uid: 682 components: - type: Transform pos: -13.5,4.5 parent: 1 - - uid: 1444 + - uid: 683 components: - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 1445 + - uid: 684 components: - type: Transform pos: -13.5,-2.5 parent: 1 - - uid: 1446 + - uid: 685 components: - type: Transform pos: -13.5,-1.5 parent: 1 - - uid: 1447 + - uid: 686 components: - type: Transform pos: -13.5,-0.5 parent: 1 - - uid: 1448 + - uid: 687 components: - type: Transform pos: -13.5,0.5 parent: 1 - - uid: 1449 + - uid: 688 components: - type: Transform pos: -13.5,-3.5 parent: 1 - - uid: 1450 + - uid: 689 components: - type: Transform pos: -5.5,-3.5 parent: 1 - proto: ChairFolding entities: - - uid: 555 + - uid: 690 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.081799,4.6427064 parent: 1 - - uid: 556 + - uid: 691 components: - type: Transform rot: 3.141592653589793 rad pos: -10.034924,4.0177064 parent: 1 - - uid: 557 + - uid: 692 components: - type: Transform rot: 3.141592653589793 rad pos: -8.823165,4.0487595 parent: 1 - - uid: 558 + - uid: 693 components: - type: Transform rot: -1.5707963267948966 rad @@ -6100,13 +6746,13 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 581 + - uid: 694 components: - type: Transform rot: 3.141592653589793 rad pos: -10.139519,-0.22563303 parent: 1 - - uid: 582 + - uid: 695 components: - type: Transform rot: 3.141592653589793 rad @@ -6114,61 +6760,61 @@ entities: parent: 1 - proto: ChemMaster entities: - - uid: 296 + - uid: 696 components: - type: Transform pos: -16.5,0.5 parent: 1 - proto: ChessBoard entities: - - uid: 562 + - uid: 697 components: - type: Transform pos: -9.589531,4.6029716 parent: 1 - proto: Cigar entities: - - uid: 577 + - uid: 698 components: - type: Transform pos: -11.264669,-0.7018292 parent: 1 - - uid: 578 + - uid: 699 components: - type: Transform pos: -11.233419,-0.8268292 parent: 1 - proto: ClothingBeltUtilityAtmos entities: - - uid: 427 + - uid: 700 components: - type: Transform pos: 8.489134,-4.7251415 parent: 1 - proto: ClothingHeadHatWelding entities: - - uid: 428 + - uid: 701 components: - type: Transform pos: 8.348509,-4.2251415 parent: 1 - proto: Cobweb1 entities: - - uid: 734 + - uid: 702 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: ComputerAdvancedRadar entities: - - uid: 300 + - uid: 703 components: - type: Transform pos: -9.5,0.5 parent: 1 - proto: ComputerPowerMonitoring entities: - - uid: 350 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad @@ -6176,20 +6822,20 @@ entities: parent: 1 - proto: ComputerRadar entities: - - uid: 444 + - uid: 705 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 466 + - uid: 706 components: - type: Transform pos: -14.5,9.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 298 + - uid: 707 components: - type: Transform pos: -10.5,0.5 @@ -6210,24 +6856,34 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 45: - - Group1: SpaceArtilleryFire - 121: - - Group1: SpaceArtilleryFire - 94: - - Group2: SpaceArtilleryFire - 521: - - Group2: SpaceArtilleryFire + 2: + - - Group1 + - Toggle + 4: + - - Group1 + - Toggle + 3: + - - Group2 + - SpaceArtilleryFire + 5: + - - Group2 + - SpaceArtilleryFire + 7: + - - Group3 + - Toggle + 6: + - - Group3 + - Toggle - type: NamedModules buttonNames: - - Fire left 120mm - - Fire right 120mm - - Module C + - Toggle Plasma Bolt Repeater + - Fire 120mm + - Toggle 90mm Heavy Mortar - Module D - Module E - proto: ComputerTabletopComms entities: - - uid: 583 + - uid: 708 components: - type: Transform rot: 3.141592653589793 rad @@ -6235,35 +6891,21 @@ entities: parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 382 + - uid: 709 components: - type: Transform pos: -8.5,7.5 parent: 1 - proto: ComputerTargeting entities: - - uid: 407 + - uid: 710 components: - type: Transform pos: -8.5,0.5 parent: 1 - - type: TargetingConsole - cannonGroups: - all: - - 362 - - 526 - - 690 - - 714 - - 718 - SHI 43mm "Hullpiercer" slugspitter: - - 362 - - 526 - - 690 - - 714 - - 718 - proto: ConveyorBelt entities: - - uid: 283 + - uid: 711 components: - type: Transform rot: 1.5707963267948966 rad @@ -6271,8 +6913,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 656 - - uid: 284 + - 1133 + - uid: 712 components: - type: Transform rot: -1.5707963267948966 rad @@ -6280,8 +6922,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 657 - - uid: 285 + - 1134 + - uid: 713 components: - type: Transform rot: 1.5707963267948966 rad @@ -6289,8 +6931,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 656 - - uid: 286 + - 1133 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad @@ -6298,38 +6940,38 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 657 + - 1134 - proto: CrateEngineeringCableBulk entities: - - uid: 406 + - uid: 715 components: - type: Transform pos: -7.5,-4.5 parent: 1 - proto: CrateMaterialSteel entities: - - uid: 433 + - uid: 716 components: - type: Transform pos: -8.5,-4.5 parent: 1 - proto: d6Dice entities: - - uid: 561 + - uid: 717 components: - type: Transform pos: -10.495781,4.7904716 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 287 + - uid: 718 components: - type: Transform pos: -7.5,-0.5 parent: 1 - proto: DefibrillatorCabinet entities: - - uid: 587 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad @@ -6337,48 +6979,48 @@ entities: parent: 1 - proto: DrinkMugMetal entities: - - uid: 504 + - uid: 720 components: - type: Transform pos: -4.822939,5.7628555 parent: 1 - - uid: 505 + - uid: 721 components: - type: Transform pos: -4.572939,5.8566055 parent: 1 - - uid: 506 + - uid: 722 components: - type: Transform pos: -4.729189,5.5128555 parent: 1 - - uid: 507 + - uid: 723 components: - type: Transform pos: -4.510439,5.6691055 parent: 1 - proto: DrinkVodkaBottleFull entities: - - uid: 508 + - uid: 724 components: - type: Transform pos: -4.166689,5.4816055 parent: 1 - - uid: 563 + - uid: 725 components: - type: Transform pos: -10.072244,4.6810966 parent: 1 - proto: FaxMachineShip entities: - - uid: 572 + - uid: 726 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: GasPassiveVent entities: - - uid: 1227 + - uid: 727 components: - type: Transform pos: 6.5,13.5 @@ -6387,28 +7029,28 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 671 + - uid: 728 components: - type: Transform pos: 6.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1208 + - uid: 729 components: - type: Transform pos: 16.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1217 + - uid: 730 components: - type: Transform pos: 10.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1243 + - uid: 731 components: - type: Transform rot: -1.5707963267948966 rad @@ -6416,7 +7058,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1244 + - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad @@ -6424,14 +7066,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1250 + - uid: 733 components: - type: Transform pos: -8.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1271 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad @@ -6439,7 +7081,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1283 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad @@ -6447,14 +7089,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1286 + - uid: 736 components: - type: Transform pos: -15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1287 + - uid: 737 components: - type: Transform rot: 3.141592653589793 rad @@ -6462,7 +7104,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1304 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad @@ -6470,7 +7112,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1318 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad @@ -6478,7 +7120,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1330 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad @@ -6486,7 +7128,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1331 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad @@ -6494,7 +7136,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1337 + - uid: 742 components: - type: Transform pos: 9.5,4.5 @@ -6503,7 +7145,7 @@ entities: color: '#0055CCFF' - proto: GasPipeFourway entities: - - uid: 1316 + - uid: 743 components: - type: Transform pos: 6.5,-1.5 @@ -6512,49 +7154,49 @@ entities: color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 1197 + - uid: 744 components: - type: Transform pos: 7.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1198 + - uid: 745 components: - type: Transform pos: 7.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1199 + - uid: 746 components: - type: Transform pos: 7.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1200 + - uid: 747 components: - type: Transform pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1201 + - uid: 748 components: - type: Transform pos: 7.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1203 + - uid: 749 components: - type: Transform pos: 10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1206 + - uid: 750 components: - type: Transform rot: -1.5707963267948966 rad @@ -6562,7 +7204,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1207 + - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad @@ -6570,21 +7212,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1209 + - uid: 752 components: - type: Transform pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1210 + - uid: 753 components: - type: Transform pos: 10.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1211 + - uid: 754 components: - type: Transform rot: -1.5707963267948966 rad @@ -6592,7 +7234,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1212 + - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad @@ -6600,7 +7242,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1213 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad @@ -6608,7 +7250,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1214 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad @@ -6616,7 +7258,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1215 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad @@ -6624,7 +7266,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1216 + - uid: 759 components: - type: Transform rot: 3.141592653589793 rad @@ -6632,7 +7274,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1218 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad @@ -6640,7 +7282,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1219 + - uid: 761 components: - type: Transform rot: -1.5707963267948966 rad @@ -6648,7 +7290,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1220 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad @@ -6656,7 +7298,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1221 + - uid: 763 components: - type: Transform rot: 3.141592653589793 rad @@ -6664,7 +7306,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1222 + - uid: 764 components: - type: Transform rot: 3.141592653589793 rad @@ -6672,7 +7314,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1223 + - uid: 765 components: - type: Transform rot: 3.141592653589793 rad @@ -6680,7 +7322,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1224 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad @@ -6688,7 +7330,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1225 + - uid: 767 components: - type: Transform rot: 3.141592653589793 rad @@ -6696,7 +7338,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1226 + - uid: 768 components: - type: Transform rot: 3.141592653589793 rad @@ -6704,7 +7346,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1228 + - uid: 769 components: - type: Transform rot: -1.5707963267948966 rad @@ -6712,7 +7354,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1229 + - uid: 770 components: - type: Transform rot: -1.5707963267948966 rad @@ -6720,7 +7362,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1230 + - uid: 771 components: - type: Transform rot: -1.5707963267948966 rad @@ -6728,7 +7370,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1231 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad @@ -6736,7 +7378,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1232 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad @@ -6744,7 +7386,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1233 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad @@ -6752,7 +7394,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1234 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad @@ -6760,7 +7402,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1235 + - uid: 776 components: - type: Transform rot: -1.5707963267948966 rad @@ -6768,7 +7410,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1236 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad @@ -6776,7 +7418,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1237 + - uid: 778 components: - type: Transform rot: -1.5707963267948966 rad @@ -6784,7 +7426,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1238 + - uid: 779 components: - type: Transform rot: -1.5707963267948966 rad @@ -6792,7 +7434,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1239 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -6800,7 +7442,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1240 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad @@ -6808,7 +7450,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1241 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad @@ -6816,7 +7458,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1245 + - uid: 783 components: - type: Transform rot: 1.5707963267948966 rad @@ -6824,7 +7466,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1246 + - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad @@ -6832,7 +7474,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1247 + - uid: 785 components: - type: Transform rot: 1.5707963267948966 rad @@ -6840,7 +7482,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1248 + - uid: 786 components: - type: Transform rot: 1.5707963267948966 rad @@ -6848,7 +7490,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1249 + - uid: 787 components: - type: Transform rot: 1.5707963267948966 rad @@ -6856,28 +7498,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1251 + - uid: 788 components: - type: Transform pos: -8.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1252 + - uid: 789 components: - type: Transform pos: -8.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1253 + - uid: 790 components: - type: Transform pos: -8.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1255 + - uid: 791 components: - type: Transform rot: 1.5707963267948966 rad @@ -6885,7 +7527,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1256 + - uid: 792 components: - type: Transform rot: 1.5707963267948966 rad @@ -6893,7 +7535,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1269 + - uid: 793 components: - type: Transform rot: -1.5707963267948966 rad @@ -6901,7 +7543,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1270 + - uid: 794 components: - type: Transform rot: -1.5707963267948966 rad @@ -6909,7 +7551,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1272 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad @@ -6917,7 +7559,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1273 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad @@ -6925,7 +7567,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1274 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad @@ -6933,7 +7575,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1275 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad @@ -6941,7 +7583,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1276 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad @@ -6949,7 +7591,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1277 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad @@ -6957,7 +7599,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1278 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad @@ -6965,7 +7607,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1279 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad @@ -6973,7 +7615,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1280 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad @@ -6981,7 +7623,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1281 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad @@ -6989,7 +7631,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1282 + - uid: 805 components: - type: Transform rot: 3.141592653589793 rad @@ -6997,7 +7639,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1284 + - uid: 806 components: - type: Transform rot: 1.5707963267948966 rad @@ -7005,7 +7647,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1285 + - uid: 807 components: - type: Transform rot: 1.5707963267948966 rad @@ -7013,7 +7655,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1288 + - uid: 808 components: - type: Transform rot: 1.5707963267948966 rad @@ -7021,7 +7663,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1290 + - uid: 809 components: - type: Transform rot: 3.141592653589793 rad @@ -7029,7 +7671,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1291 + - uid: 810 components: - type: Transform rot: 3.141592653589793 rad @@ -7037,7 +7679,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1292 + - uid: 811 components: - type: Transform rot: 3.141592653589793 rad @@ -7045,7 +7687,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1293 + - uid: 812 components: - type: Transform rot: 3.141592653589793 rad @@ -7053,7 +7695,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1294 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad @@ -7061,7 +7703,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1295 + - uid: 814 components: - type: Transform rot: 3.141592653589793 rad @@ -7069,7 +7711,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1296 + - uid: 815 components: - type: Transform rot: 1.5707963267948966 rad @@ -7077,7 +7719,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1297 + - uid: 816 components: - type: Transform rot: 1.5707963267948966 rad @@ -7085,7 +7727,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1300 + - uid: 817 components: - type: Transform rot: 1.5707963267948966 rad @@ -7093,7 +7735,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1301 + - uid: 818 components: - type: Transform rot: 1.5707963267948966 rad @@ -7101,7 +7743,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1302 + - uid: 819 components: - type: Transform rot: 1.5707963267948966 rad @@ -7109,7 +7751,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1303 + - uid: 820 components: - type: Transform rot: 1.5707963267948966 rad @@ -7117,7 +7759,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1306 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad @@ -7125,14 +7767,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1307 + - uid: 822 components: - type: Transform pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1308 + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad @@ -7140,7 +7782,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1309 + - uid: 824 components: - type: Transform rot: -1.5707963267948966 rad @@ -7148,7 +7790,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1310 + - uid: 825 components: - type: Transform rot: -1.5707963267948966 rad @@ -7156,7 +7798,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1311 + - uid: 826 components: - type: Transform rot: -1.5707963267948966 rad @@ -7164,7 +7806,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1312 + - uid: 827 components: - type: Transform rot: -1.5707963267948966 rad @@ -7172,7 +7814,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1313 + - uid: 828 components: - type: Transform rot: -1.5707963267948966 rad @@ -7180,7 +7822,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1314 + - uid: 829 components: - type: Transform rot: -1.5707963267948966 rad @@ -7188,7 +7830,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1317 + - uid: 830 components: - type: Transform rot: 1.5707963267948966 rad @@ -7196,14 +7838,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1319 + - uid: 831 components: - type: Transform pos: 6.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1320 + - uid: 832 components: - type: Transform rot: -1.5707963267948966 rad @@ -7211,7 +7853,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1321 + - uid: 833 components: - type: Transform rot: -1.5707963267948966 rad @@ -7219,7 +7861,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1325 + - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad @@ -7227,7 +7869,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1326 + - uid: 835 components: - type: Transform rot: 1.5707963267948966 rad @@ -7235,7 +7877,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1327 + - uid: 836 components: - type: Transform rot: 1.5707963267948966 rad @@ -7243,14 +7885,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1328 + - uid: 837 components: - type: Transform pos: 14.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1329 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad @@ -7258,7 +7900,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1332 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad @@ -7266,7 +7908,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1333 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad @@ -7274,7 +7916,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1334 + - uid: 841 components: - type: Transform rot: 3.141592653589793 rad @@ -7282,7 +7924,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1335 + - uid: 842 components: - type: Transform rot: 3.141592653589793 rad @@ -7290,7 +7932,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1336 + - uid: 843 components: - type: Transform rot: 3.141592653589793 rad @@ -7298,7 +7940,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1338 + - uid: 844 components: - type: Transform rot: -1.5707963267948966 rad @@ -7306,7 +7948,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1339 + - uid: 845 components: - type: Transform rot: -1.5707963267948966 rad @@ -7316,7 +7958,7 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 672 + - uid: 846 components: - type: Transform rot: 3.141592653589793 rad @@ -7324,7 +7966,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 673 + - uid: 847 components: - type: Transform rot: 3.141592653589793 rad @@ -7332,28 +7974,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1194 + - uid: 848 components: - type: Transform pos: -3.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1195 + - uid: 849 components: - type: Transform pos: 4.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1196 + - uid: 850 components: - type: Transform pos: 7.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1204 + - uid: 851 components: - type: Transform rot: -1.5707963267948966 rad @@ -7361,7 +8003,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1205 + - uid: 852 components: - type: Transform rot: 1.5707963267948966 rad @@ -7369,14 +8011,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1242 + - uid: 853 components: - type: Transform pos: -15.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1254 + - uid: 854 components: - type: Transform rot: 1.5707963267948966 rad @@ -7384,7 +8026,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1289 + - uid: 855 components: - type: Transform rot: 3.141592653589793 rad @@ -7392,7 +8034,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1298 + - uid: 856 components: - type: Transform rot: 3.141592653589793 rad @@ -7400,7 +8042,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1299 + - uid: 857 components: - type: Transform rot: 3.141592653589793 rad @@ -7408,7 +8050,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1305 + - uid: 858 components: - type: Transform rot: 1.5707963267948966 rad @@ -7416,7 +8058,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1315 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad @@ -7424,7 +8066,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1322 + - uid: 860 components: - type: Transform rot: 3.141592653589793 rad @@ -7432,7 +8074,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1323 + - uid: 861 components: - type: Transform rot: 3.141592653589793 rad @@ -7440,7 +8082,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1324 + - uid: 862 components: - type: Transform rot: 3.141592653589793 rad @@ -7450,7 +8092,7 @@ entities: color: '#0055CCFF' - proto: GasPort entities: - - uid: 514 + - uid: 863 components: - type: Transform rot: 1.5707963267948966 rad @@ -7458,7 +8100,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 515 + - uid: 864 components: - type: Transform rot: 1.5707963267948966 rad @@ -7468,49 +8110,49 @@ entities: color: '#990000FF' - proto: GasVentPump entities: - - uid: 1257 + - uid: 865 components: - type: Transform pos: -3.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1258 + - uid: 866 components: - type: Transform pos: -13.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1259 + - uid: 867 components: - type: Transform pos: -15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1260 + - uid: 868 components: - type: Transform pos: -8.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1261 + - uid: 869 components: - type: Transform pos: -10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1262 + - uid: 870 components: - type: Transform pos: 4.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1263 + - uid: 871 components: - type: Transform rot: 3.141592653589793 rad @@ -7518,14 +8160,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1264 + - uid: 872 components: - type: Transform pos: 10.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1265 + - uid: 873 components: - type: Transform rot: -1.5707963267948966 rad @@ -7533,14 +8175,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1266 + - uid: 874 components: - type: Transform pos: 16.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1267 + - uid: 875 components: - type: Transform pos: -18.5,2.5 @@ -7549,7 +8191,7 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 735 + - uid: 876 components: - type: Transform rot: 3.141592653589793 rad @@ -7557,7 +8199,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 736 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad @@ -7565,7 +8207,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 739 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad @@ -7573,7 +8215,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 740 + - uid: 879 components: - type: Transform rot: 3.141592653589793 rad @@ -7581,7 +8223,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 741 + - uid: 880 components: - type: Transform rot: 3.141592653589793 rad @@ -7589,7 +8231,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 742 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad @@ -7597,7 +8239,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 743 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -7605,7 +8247,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 748 + - uid: 883 components: - type: Transform rot: 3.141592653589793 rad @@ -7613,7 +8255,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1268 + - uid: 884 components: - type: Transform pos: -18.5,4.5 @@ -7622,97 +8264,97 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 348 + - uid: 885 components: - type: Transform pos: 7.5,-5.5 parent: 1 - proto: Grille entities: - - uid: 43 + - uid: 886 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 44 + - uid: 887 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 77 + - uid: 888 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 217 + - uid: 889 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 453 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,8.5 parent: 1 - - uid: 454 + - uid: 891 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,9.5 parent: 1 - - uid: 677 + - uid: 892 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 678 + - uid: 893 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 679 + - uid: 894 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 680 + - uid: 895 components: - type: Transform pos: 3.5,-2.5 parent: 1 - proto: Gyroscope entities: - - uid: 38 + - uid: 896 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 46 + - uid: 897 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 47 + - uid: 898 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 48 + - uid: 899 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 316 + - uid: 900 components: - type: Transform pos: -12.5,6.5 parent: 1 - proto: KitchenKnife entities: - - uid: 503 + - uid: 901 components: - type: Transform pos: -4.6396704,5.235371 @@ -7722,28 +8364,28 @@ entities: linearDamping: 0 - proto: KitchenMicrowave entities: - - uid: 502 + - uid: 902 components: - type: Transform pos: -4.5,4.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 585 + - uid: 903 components: - type: Transform pos: -17.5,0.5 parent: 1 - proto: Lighter entities: - - uid: 579 + - uid: 904 components: - type: Transform pos: -11.780294,-0.8424542 parent: 1 - proto: LightStripInner entities: - - uid: 1461 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad @@ -7752,7 +8394,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1463 + - uid: 906 components: - type: Transform rot: 3.141592653589793 rad @@ -7761,7 +8403,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1466 + - uid: 907 components: - type: Transform rot: -1.5707963267948966 rad @@ -7770,7 +8412,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1467 + - uid: 908 components: - type: Transform pos: 7.5,2.5 @@ -7778,7 +8420,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1471 + - uid: 909 components: - type: Transform rot: 1.5707963267948966 rad @@ -7789,7 +8431,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1462 + - uid: 910 components: - type: Transform pos: 8.5,0.5 @@ -7797,7 +8439,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1468 + - uid: 911 components: - type: Transform rot: -1.5707963267948966 rad @@ -7806,7 +8448,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1469 + - uid: 912 components: - type: Transform rot: 3.141592653589793 rad @@ -7815,7 +8457,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1470 + - uid: 913 components: - type: Transform rot: 1.5707963267948966 rad @@ -7826,156 +8468,212 @@ entities: - type: TurretIFF - proto: LockerSyndicate entities: - - uid: 580 + - uid: 914 components: - type: Transform pos: -7.5,0.5 parent: 1 - proto: MagazineLightRifleBoxSlug entities: - - uid: 694 + - uid: 915 components: - type: Transform pos: 2.8241913,1.2496314 parent: 1 - - uid: 695 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 916 components: - type: Transform pos: 2.2619355,1.2222095 parent: 1 - - uid: 697 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 917 components: - type: Transform pos: 2.4539254,1.2359204 parent: 1 - - uid: 698 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 918 components: - type: Transform pos: 2.6322014,1.2496314 parent: 1 - - uid: 1453 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 919 components: - type: Transform pos: 2.220794,1.414165 parent: 1 - - uid: 1454 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 920 components: - type: Transform pos: 2.5499222,1.414165 parent: 1 - - uid: 1455 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 921 components: - type: Transform pos: 2.7144845,1.4415879 parent: 1 - - uid: 1456 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 922 components: - type: Transform pos: 2.9338982,1.4415879 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MagazineLightRifleBoxSlugHE entities: - - uid: 1457 + - uid: 923 components: - type: Transform pos: 2.4264977,1.8803449 parent: 1 - - uid: 1458 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 924 components: - type: Transform pos: 2.673343,1.852922 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MagazineMortar entities: - - uid: 692 + - uid: 925 components: - type: Transform pos: -1.3213925,1.3181872 parent: 1 - - uid: 693 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 926 components: - type: Transform pos: -1.8013654,1.3181872 parent: 1 - - uid: 1451 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 927 components: - type: Transform pos: -1.2665372,1.7295222 parent: 1 - - uid: 1452 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 928 components: - type: Transform pos: -1.7602239,1.7569442 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MedkitAdvancedFilled entities: - - uid: 591 + - uid: 929 components: - type: Transform pos: -17.722645,0.34860665 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 593 + - uid: 930 components: - type: Transform pos: -17.722645,0.004856646 parent: 1 - proto: MedkitFilled entities: - - uid: 592 + - uid: 931 components: - type: Transform pos: -17.285145,0.31735665 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 594 + - uid: 932 components: - type: Transform pos: -17.20702,0.020481646 parent: 1 - proto: Multitool entities: - - uid: 426 + - uid: 933 components: - type: Transform pos: 8.692259,-4.3501415 parent: 1 - proto: N14Bed entities: - - uid: 361 + - uid: 934 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 546 + - uid: 935 components: - type: Transform pos: -9.5,2.5 parent: 1 - proto: N14BedWoodBunk entities: - - uid: 547 + - uid: 936 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 550 + - uid: 937 components: - type: Transform pos: -11.5,2.5 parent: 1 - proto: N14ClosetFridgeDirty entities: - - uid: 501 + - uid: 938 components: - type: Transform pos: -4.5,6.5 parent: 1 - proto: NCWLPoster2 entities: - - uid: 728 + - uid: 939 components: - type: Transform rot: 1.5707963267948966 rad @@ -7983,7 +8681,7 @@ entities: parent: 1 - proto: NCWLPoster3 entities: - - uid: 729 + - uid: 940 components: - type: Transform rot: 1.5707963267948966 rad @@ -7991,47 +8689,76 @@ entities: parent: 1 - proto: NFHolopadShip entities: - - uid: 588 + - uid: 941 components: - type: Transform pos: -9.5,-0.5 parent: 1 - proto: OxygenCanister entities: - - uid: 434 + - uid: 942 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 435 + - uid: 943 components: - type: Transform pos: -10.5,-4.5 parent: 1 +- proto: Paper + entities: + - uid: 944 + components: + - type: Transform + pos: -9.493941,0.40271473 + parent: 1 + - type: Paper + content: >- + From: Battalion Engineering Section + + + Comrade Commander, + + + Since the loss of our station we have received no supplies, and we have been travelling for a considerable time. I understand that your expectation of me is to keep this vessel operational. However, without resupply for much longer, I fear the ship will eventually lose its ability to function if we do not reach our new home soon. + + + My intention is not to damage morale. The engineering team is already working tirelessly to keep the ship together, and I am doing my best to maintain their spirits. This information remains strictly between you and me. I have not informed them of the situation. To keep morale high, I continue to assure them that everything is under control. + + + Everything for the Cause. - proto: PaperBin20 entities: - - uid: 575 + - uid: 945 components: - type: Transform pos: -11.5,-0.5 parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 279 + - uid: 946 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,3.5 parent: 1 - - uid: 281 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,2.5 parent: 1 +- proto: PlushiePearCat + entities: + - uid: 948 + components: + - type: Transform + pos: 9.529344,13.346688 + parent: 1 - proto: PortableScrubber entities: - - uid: 512 + - uid: 949 components: - type: Transform anchored: True @@ -8043,91 +8770,91 @@ entities: bodyType: Static - proto: Poweredlight entities: - - uid: 364 + - uid: 950 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,2.5 parent: 1 - - uid: 366 + - uid: 951 components: - type: Transform pos: -16.5,0.5 parent: 1 - - uid: 601 + - uid: 952 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 602 + - uid: 953 components: - type: Transform pos: -8.5,0.5 parent: 1 - - uid: 606 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,6.5 parent: 1 - - uid: 607 + - uid: 955 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 1 - - uid: 608 + - uid: 956 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,6.5 parent: 1 - - uid: 609 + - uid: 957 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 613 + - uid: 958 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 614 + - uid: 959 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 615 + - uid: 960 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 616 + - uid: 961 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 627 + - uid: 962 components: - type: Transform pos: -18.5,4.5 parent: 1 - - uid: 628 + - uid: 963 components: - type: Transform pos: 16.5,3.5 parent: 1 - - uid: 629 + - uid: 964 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,1.5 parent: 1 - - uid: 631 + - uid: 965 components: - type: Transform rot: 3.141592653589793 rad @@ -8135,7 +8862,7 @@ entities: parent: 1 - proto: PoweredlightSodium entities: - - uid: 617 + - uid: 966 components: - type: Transform rot: 1.5707963267948966 rad @@ -8143,7 +8870,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 618 + - uid: 967 components: - type: Transform rot: -1.5707963267948966 rad @@ -8151,7 +8878,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 619 + - uid: 968 components: - type: Transform rot: -1.5707963267948966 rad @@ -8159,7 +8886,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 620 + - uid: 969 components: - type: Transform rot: 1.5707963267948966 rad @@ -8167,7 +8894,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 633 + - uid: 970 components: - type: Transform rot: 3.141592653589793 rad @@ -8175,35 +8902,35 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 634 + - uid: 971 components: - type: Transform pos: -8.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 635 + - uid: 972 components: - type: Transform pos: 9.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 636 + - uid: 973 components: - type: Transform pos: 13.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 637 + - uid: 974 components: - type: Transform pos: -11.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 638 + - uid: 975 components: - type: Transform rot: 3.141592653589793 rad @@ -8211,13 +8938,13 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 1459 + - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 1460 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad @@ -8225,104 +8952,104 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 395 + - uid: 978 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 595 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,3.5 parent: 1 - - uid: 596 + - uid: 980 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 1 - - uid: 597 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 1 - - uid: 598 + - uid: 982 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 1 - - uid: 599 + - uid: 983 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 600 + - uid: 984 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 603 + - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 parent: 1 - - uid: 604 + - uid: 986 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 605 + - uid: 987 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,2.5 parent: 1 - - uid: 610 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,6.5 parent: 1 - - uid: 611 + - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 1 - - uid: 612 + - uid: 990 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 1 - - uid: 623 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - - uid: 630 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 1 - - uid: 632 + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,5.5 parent: 1 - - uid: 1464 + - uid: 994 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 1465 + - uid: 995 components: - type: Transform rot: -1.5707963267948966 rad @@ -8330,439 +9057,452 @@ entities: parent: 1 - proto: Rack entities: - - uid: 97 + - uid: 996 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 371 + - uid: 997 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 499 + - uid: 998 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - - uid: 516 + - uid: 999 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 522 + - uid: 1000 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 533 + - uid: 1001 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 1364 + - uid: 1002 components: - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 1365 + - uid: 1003 components: - type: Transform pos: -16.5,6.5 parent: 1 - proto: Railing entities: - - uid: 4 + - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - - uid: 269 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 270 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 271 + - uid: 1007 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 272 + - uid: 1008 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 337 + - uid: 1009 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-0.5 parent: 1 - - uid: 338 + - uid: 1010 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,5.5 parent: 1 - - uid: 341 + - uid: 1011 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 344 + - uid: 1012 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 353 + - uid: 1013 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - - uid: 396 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 1 - - uid: 408 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 1 - - uid: 421 + - uid: 1016 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 430 + - uid: 1017 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,9.5 - parent: 1 - - uid: 456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,8.5 - parent: 1 - - uid: 457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - - uid: 458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1 - - uid: 459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,7.5 - parent: 1 - - uid: 462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - - uid: 463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1 - - uid: 464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 1 - - uid: 465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 1 - - uid: 468 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,10.5 parent: 1 - - uid: 469 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 parent: 1 - - uid: 470 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,10.5 parent: 1 - - uid: 471 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 1 - - uid: 472 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,11.5 parent: 1 - - uid: 474 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,11.5 parent: 1 - - uid: 475 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 1 - - uid: 476 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - - uid: 477 + - uid: 1026 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 478 + - uid: 1027 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 483 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-1.5 parent: 1 - - uid: 486 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 - - uid: 513 + - uid: 1030 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - - uid: 548 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 1 - - uid: 549 + - uid: 1032 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,2.5 parent: 1 - - uid: 681 + - uid: 1033 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 682 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 1 - - uid: 683 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 1 - - uid: 684 + - uid: 1036 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 713 + - uid: 1037 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,14.5 parent: 1 - - uid: 721 + - uid: 1038 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,13.5 parent: 1 - - uid: 722 + - uid: 1039 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 1 - - uid: 723 + - uid: 1040 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 1 - - uid: 724 +- proto: RailingCorner + entities: + - uid: 1041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,12.5 + pos: 11.5,13.5 parent: 1 - - uid: 725 + - uid: 1042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,12.5 + pos: 8.5,-7.5 parent: 1 - - uid: 726 + - uid: 1043 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,11.5 + pos: -4.5,-9.5 parent: 1 - - uid: 727 + - uid: 1045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 + rot: 3.141592653589793 rad + pos: -19.5,9.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 265 + - uid: 1046 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 1 - - uid: 266 + - uid: 1047 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-5.5 parent: 1 - - uid: 267 + - uid: 1048 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 268 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 1 - - uid: 497 + - uid: 1050 components: - type: Transform pos: 10.5,-0.5 parent: 1 -- proto: RailingCornerSmall - entities: - - uid: 352 + - uid: 1051 components: - type: Transform - pos: 12.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 parent: 1 - - uid: 460 + - uid: 1052 components: - type: Transform - pos: -15.5,7.5 + pos: 5.5,-9.5 parent: 1 - - uid: 461 + - uid: 1053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,7.5 + rot: 1.5707963267948966 rad + pos: 17.5,5.5 parent: 1 -- proto: ReinforcedGirder - entities: - - uid: 401 + - uid: 1054 components: - type: Transform - pos: -1.5,0.5 + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 parent: 1 - - uid: 405 + - uid: 1055 components: - type: Transform - pos: 2.5,0.5 + pos: 15.5,-5.5 parent: 1 -- proto: ShipVoucherUnionfallBroadsword - entities: - - uid: 1362 + - uid: 1056 components: - type: Transform - pos: 2.3486624,-0.72085404 + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 parent: 1 - - uid: 1363 +- proto: RailingCornerSmall + entities: + - uid: 1057 components: - type: Transform - pos: 2.7705374,-0.27554154 + pos: 12.5,-2.5 parent: 1 -- proto: ShipVoucherUnionfallKhopesh +- proto: RailingRound entities: - - uid: 1360 + - uid: 1058 components: - type: Transform - pos: -1.7230849,-0.64961827 + rot: 3.141592653589793 rad + pos: -9.5,12.5 parent: 1 - - uid: 1361 + - uid: 1059 components: - type: Transform - pos: -1.2308975,-0.29805577 + rot: 3.141592653589793 rad + pos: -13.5,11.5 parent: 1 -- proto: SignalButton - entities: - - uid: 527 + - uid: 1060 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,0.5 + pos: 6.5,15.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 706: - - Pressed: Toggle - - uid: 626 +- proto: ReinforcedGirder + entities: + - uid: 1061 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: ShipVoucherUnionfallBroadsword + entities: + - uid: 1063 + components: + - type: Transform + pos: 2.3486624,-0.72085404 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 2.7705374,-0.27554154 + parent: 1 +- proto: ShipVoucherUnionfallKhopesh + entities: + - uid: 1065 + components: + - type: Transform + pos: -1.7230849,-0.64961827 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: -1.2308975,-0.29805577 + parent: 1 +- proto: ShuttleGunPlasmaRepeater + entities: + - uid: 1067 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -17.5,9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 15743.933 + - type: ApcPowerReceiverBattery + enabled: True + - type: Physics + fixedRotation: False + - uid: 1068 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 15747.439 + - type: ApcPowerReceiverBattery + enabled: True + - type: Physics + fixedRotation: False +- proto: SignalButton + entities: + - uid: 1069 components: - type: Transform rot: 1.5707963267948966 rad @@ -8770,9 +9510,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 484: - - Pressed: Toggle - - uid: 685 + 106: + - - Pressed + - Toggle + - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad @@ -8780,11 +9521,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 61: - - Pressed: Toggle - 60: - - Pressed: Toggle - - uid: 732 + 97: + - - Pressed + - Toggle + 96: + - - Pressed + - Toggle + - uid: 1071 components: - type: Transform rot: 3.141592653589793 rad @@ -8792,171 +9535,191 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 88: - - Pressed: Toggle - 86: - - Pressed: Toggle - 87: - - Pressed: Toggle - - uid: 733 + 100: + - - Pressed + - Toggle + 98: + - - Pressed + - Toggle + 99: + - - Pressed + - Toggle + - uid: 1072 components: - type: Transform pos: 2.5,3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 89: - - Pressed: Toggle - 90: - - Pressed: Toggle - 91: - - Pressed: Toggle - - uid: 1341 + 101: + - - Pressed + - Toggle + 102: + - - Pressed + - Toggle + 103: + - - Pressed + - Toggle + - uid: 1073 components: - type: Transform - pos: 17.5,4.5 + pos: -19.5,5.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 280: - - Pressed: Toggle - - uid: 1342 + 105: + - - Pressed + - Toggle + - uid: 1074 components: - type: Transform - pos: -19.5,5.5 + rot: -1.5707963267948966 rad + pos: 14.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 356: - - Pressed: Toggle - - uid: 1343 + 107: + - - Pressed + - Toggle +- proto: SignBridge + entities: + - uid: 1075 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 1077 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 1078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,7.5 + pos: 12.5,4.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 523: - - Pressed: Toggle - - uid: 1358 + - uid: 1079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,12.5 + pos: 5.5,-0.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1357: - - Pressed: Toggle - - uid: 1359 +- proto: SignSalvage + entities: + - uid: 1080 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-2.5 + pos: -4.5,-0.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1356: - - Pressed: Toggle - proto: Sink entities: - - uid: 314 + - uid: 1081 components: - type: Transform pos: -11.5,6.5 parent: 1 - proto: SMESBasic entities: - - uid: 333 + - uid: 1082 components: - type: Transform pos: 15.5,-0.5 parent: 1 - proto: SoapHomemade entities: - - uid: 315 + - uid: 1083 components: - type: Transform pos: -11.754425,6.6113987 parent: 1 - proto: SpaceCash entities: - - uid: 559 + - uid: 1084 components: - type: Transform pos: -8.714531,4.8373466 parent: 1 - - uid: 560 + - uid: 1085 components: - type: Transform pos: -8.714531,4.6029716 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 1346 + - uid: 1086 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 1347 + - uid: 1087 components: - type: Transform pos: -11.5,2.5 parent: 1 - proto: StationMap entities: - - uid: 1345 + - uid: 1088 components: - type: Transform pos: -18.5,5.5 parent: 1 - - uid: 1348 + - uid: 1089 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1349 + - uid: 1090 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1350 + - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 1 - - uid: 1353 + - uid: 1092 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 1355 + - uid: 1093 components: - type: Transform pos: 16.5,4.5 parent: 1 - proto: SubstationBasic entities: - - uid: 336 + - uid: 1094 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 389 + - uid: 1095 components: - type: Transform pos: -9.5,6.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 367 + - uid: 1096 components: - type: Transform pos: 15.5,1.5 parent: 1 - - uid: 368 + - uid: 1097 components: - type: Transform pos: -17.5,2.5 @@ -8965,199 +9728,199 @@ entities: locked: False - proto: TableReinforced entities: - - uid: 190 + - uid: 1098 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,0.5 parent: 1 - - uid: 192 + - uid: 1099 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,1.5 parent: 1 - - uid: 334 + - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,7.5 parent: 1 - - uid: 369 + - uid: 1101 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-0.5 parent: 1 - - uid: 380 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 425 + - uid: 1103 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 436 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 1 - - uid: 494 + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 1 - - uid: 500 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 553 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,4.5 parent: 1 - - uid: 554 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,4.5 parent: 1 - - uid: 568 + - uid: 1109 components: - type: Transform pos: -11.5,0.5 parent: 1 - - uid: 570 + - uid: 1110 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 571 + - uid: 1111 components: - type: Transform pos: -11.5,-1.5 parent: 1 - - uid: 584 + - uid: 1112 components: - type: Transform pos: -10.5,-1.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 2 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-0.5 parent: 1 - - uid: 10 + - uid: 1114 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 1 - - uid: 20 + - uid: 1115 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 1 - - uid: 49 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 1 - - uid: 50 + - uid: 1117 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-6.5 parent: 1 - - uid: 51 + - uid: 1118 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 1 - - uid: 56 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,6.5 parent: 1 - - uid: 57 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,7.5 parent: 1 - - uid: 68 + - uid: 1121 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 69 + - uid: 1122 components: - type: Transform pos: 9.5,15.5 parent: 1 - - uid: 95 + - uid: 1123 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 124 + - uid: 1124 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 1 - - uid: 152 + - uid: 1125 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 1 - - uid: 153 + - uid: 1126 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-2.5 parent: 1 - - uid: 160 + - uid: 1127 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 161 + - uid: 1128 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 1 - - uid: 162 + - uid: 1129 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-6.5 parent: 1 - - uid: 164 + - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 1 - - uid: 214 + - uid: 1131 components: - type: Transform rot: 3.141592653589793 rad @@ -9165,7 +9928,7 @@ entities: parent: 1 - proto: ToiletEmpty entities: - - uid: 313 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad @@ -9173,74 +9936,58 @@ entities: parent: 1 - proto: TwoWayLever entities: - - uid: 656 + - uid: 1133 components: - type: Transform pos: -18.5,3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 283: - - Left: Reverse - - Right: Forward - - Middle: Off - 285: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 657 + 711: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 713: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 1134 components: - type: Transform pos: 16.5,2.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 286: - - Left: Forward - - Right: Reverse - - Middle: Off - 284: - - Left: Forward - - Right: Reverse - - Middle: Off + 714: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 712: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - proto: Type99Artillery entities: - - uid: 530 + - uid: 1135 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 1 - - uid: 686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: DeviceLinkSource - linkedPorts: - 60: - - SpaceArtilleryDetectedFiring: Open - - uid: 687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9255,16 +10002,22 @@ entities: showEnts: False occludes: True ents: [] - - type: DeviceLinkSource - linkedPorts: - 61: - - SpaceArtilleryDetectedFiring: Open - - uid: 688 + - type: Battery + startingCharge: 15497.953 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1136 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 15497.953 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9281,63 +10034,64 @@ entities: ents: [] - type: DeviceLinkSource linkedPorts: - 523: - - SpaceArtilleryDetectedFiring: Open + 107: + - - SpaceArtilleryDetectedFiring + - Open - proto: UnionfallClementineMothershipComputer entities: - - uid: 538 + - uid: 1137 components: - type: Transform pos: 0.5,-0.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 351 + - uid: 1138 components: - type: Transform pos: 8.5,1.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 363 + - uid: 1139 components: - type: Transform pos: -16.5,-1.5 parent: 1 - proto: VendingMachineEngivend entities: - - uid: 490 + - uid: 1140 components: - type: Transform pos: 13.5,3.5 parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 544 + - uid: 1141 components: - type: Transform pos: -15.5,4.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 365 + - uid: 1142 components: - type: Transform pos: 15.5,3.5 parent: 1 - - uid: 370 + - uid: 1143 components: - type: Transform pos: -17.5,4.5 parent: 1 - - uid: 419 + - uid: 1144 components: - type: Transform pos: 12.5,3.5 parent: 1 - proto: VendingMachineWallMedical entities: - - uid: 586 + - uid: 1145 components: - type: Transform rot: -1.5707963267948966 rad @@ -9345,1516 +10099,1537 @@ entities: parent: 1 - proto: VendingMachineYouTool entities: - - uid: 424 + - uid: 1146 components: - type: Transform pos: 8.5,-3.5 parent: 1 +- proto: WallPlastitanium + entities: + - uid: 1147 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 233 + - uid: 1150 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 278 + - uid: 1151 components: - type: Transform pos: -20.5,5.5 parent: 1 - - uid: 309 + - uid: 1152 components: - type: Transform pos: -18.5,10.5 parent: 1 - - uid: 452 + - uid: 1153 components: - type: Transform pos: -3.5,16.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 21 + - uid: 1154 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 108 + - uid: 1155 components: - type: Transform pos: 8.5,18.5 parent: 1 - - uid: 120 + - uid: 1156 components: - type: Transform pos: 10.5,15.5 parent: 1 - - uid: 131 + - uid: 1157 components: - type: Transform pos: 14.5,10.5 parent: 1 - - uid: 138 + - uid: 1158 components: - type: Transform pos: 16.5,6.5 parent: 1 - - uid: 691 + - uid: 1159 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 96 + - uid: 1160 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 107 + - uid: 1161 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 194 + - uid: 1162 components: - type: Transform pos: -12.5,-6.5 parent: 1 - - uid: 201 + - uid: 1163 components: - type: Transform pos: -16.5,-3.5 parent: 1 - - uid: 208 + - uid: 1164 components: - type: Transform pos: -19.5,-1.5 parent: 1 - - uid: 277 + - uid: 1165 components: - type: Transform pos: -20.5,1.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 67 + - uid: 1166 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 143 + - uid: 1167 components: - type: Transform pos: 16.5,-1.5 parent: 1 - - uid: 154 + - uid: 1168 components: - type: Transform pos: 14.5,-6.5 parent: 1 - - uid: 216 + - uid: 1169 components: - type: Transform pos: 6.5,-8.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 40 + - uid: 1170 components: - type: Transform pos: 7.5,-7.5 parent: 1 - proto: WallPlastitaniumNCWL entities: - - uid: 5 + - uid: 1171 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 6 + - uid: 1172 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 7 + - uid: 1173 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 8 + - uid: 1174 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 9 + - uid: 1175 components: - type: Transform pos: 15.5,4.5 parent: 1 - - uid: 11 + - uid: 1176 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 12 + - uid: 1177 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 13 + - uid: 1178 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 14 + - uid: 1179 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 15 + - uid: 1180 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 16 + - uid: 1181 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 17 + - uid: 1182 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 18 + - uid: 1183 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 19 + - uid: 1184 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 22 + - uid: 1185 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 23 + - uid: 1186 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 24 + - uid: 1187 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 25 + - uid: 1188 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 26 + - uid: 1189 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 27 + - uid: 1190 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 28 + - uid: 1191 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 29 + - uid: 1192 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 30 + - uid: 1193 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 31 + - uid: 1194 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 34 + - uid: 1195 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 35 + - uid: 1196 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 36 + - uid: 1197 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 37 + - uid: 1198 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 39 + - uid: 1199 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 1 - - uid: 41 + - uid: 1200 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 52 + - uid: 1201 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 1 - - uid: 53 + - uid: 1202 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,1.5 parent: 1 - - uid: 54 + - uid: 1203 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,5.5 parent: 1 - - uid: 55 + - uid: 1204 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,8.5 parent: 1 - - uid: 58 + - uid: 1205 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 1 - - uid: 59 + - uid: 1206 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,9.5 parent: 1 - - uid: 62 + - uid: 1207 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 1 - - uid: 63 + - uid: 1208 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 64 + - uid: 1209 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,8.5 parent: 1 - - uid: 66 + - uid: 1210 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 1 - - uid: 70 + - uid: 1211 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 72 + - uid: 1212 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 73 + - uid: 1213 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 74 + - uid: 1214 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 75 + - uid: 1215 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 76 + - uid: 1216 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 78 + - uid: 1217 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 79 + - uid: 1218 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 80 + - uid: 1219 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 81 + - uid: 1220 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 82 + - uid: 1221 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 83 + - uid: 1222 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 84 + - uid: 1223 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 85 + - uid: 1224 components: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 92 + - uid: 1225 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 93 + - uid: 1226 components: - type: Transform pos: 18.5,4.5 parent: 1 - - uid: 98 + - uid: 1227 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 99 + - uid: 1228 components: - type: Transform pos: 4.5,-5.5 parent: 1 - - uid: 100 + - uid: 1229 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 101 + - uid: 1230 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 102 + - uid: 1231 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 103 + - uid: 1232 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 1 - - uid: 104 + - uid: 1233 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 105 + - uid: 1234 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 106 + - uid: 1235 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 109 + - uid: 1236 components: - type: Transform pos: 8.5,17.5 parent: 1 - - uid: 110 + - uid: 1237 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 111 + - uid: 1238 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 112 + - uid: 1239 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 113 + - uid: 1240 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 114 + - uid: 1241 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 115 + - uid: 1242 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 116 + - uid: 1243 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 117 + - uid: 1244 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 118 + - uid: 1245 components: - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 119 + - uid: 1246 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 122 + - uid: 1247 components: - type: Transform pos: 9.5,14.5 parent: 1 - - uid: 123 + - uid: 1248 components: - type: Transform pos: 10.5,14.5 parent: 1 - - uid: 126 + - uid: 1249 components: - type: Transform pos: 10.5,12.5 parent: 1 - - uid: 127 + - uid: 1250 components: - type: Transform pos: 11.5,12.5 parent: 1 - - uid: 128 + - uid: 1251 components: - type: Transform pos: 11.5,11.5 parent: 1 - - uid: 129 + - uid: 1252 components: - type: Transform pos: 11.5,10.5 parent: 1 - - uid: 130 + - uid: 1253 components: - type: Transform pos: 12.5,10.5 parent: 1 - - uid: 132 + - uid: 1254 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 133 + - uid: 1255 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 134 + - uid: 1256 components: - type: Transform pos: 14.5,7.5 parent: 1 - - uid: 135 + - uid: 1257 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 1 - - uid: 136 + - uid: 1258 components: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 137 + - uid: 1259 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 139 + - uid: 1260 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 parent: 1 - - uid: 140 + - uid: 1261 components: - type: Transform pos: 16.5,5.5 parent: 1 - - uid: 141 + - uid: 1262 components: - type: Transform pos: 16.5,0.5 parent: 1 - - uid: 142 + - uid: 1263 components: - type: Transform pos: 16.5,-0.5 parent: 1 - - uid: 144 + - uid: 1264 components: - type: Transform pos: 15.5,-1.5 parent: 1 - - uid: 145 + - uid: 1265 components: - type: Transform pos: 14.5,-1.5 parent: 1 - - uid: 146 + - uid: 1266 components: - type: Transform pos: 14.5,-2.5 parent: 1 - - uid: 147 + - uid: 1267 components: - type: Transform pos: 14.5,-3.5 parent: 1 - - uid: 148 + - uid: 1268 components: - type: Transform pos: 14.5,-4.5 parent: 1 - - uid: 149 + - uid: 1269 components: - type: Transform pos: 14.5,-5.5 parent: 1 - - uid: 150 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 1 - - uid: 151 + - uid: 1271 components: - type: Transform pos: 15.5,-4.5 parent: 1 - - uid: 155 + - uid: 1272 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 156 + - uid: 1273 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 1 - - uid: 157 + - uid: 1274 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 1 - - uid: 158 + - uid: 1275 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 1 - - uid: 159 + - uid: 1276 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 1 - - uid: 163 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 165 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 1 - - uid: 166 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 167 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 1 - - uid: 168 + - uid: 1281 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 169 + - uid: 1282 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 170 + - uid: 1283 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 171 + - uid: 1284 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 172 + - uid: 1285 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 173 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 1 - - uid: 174 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 1 - - uid: 175 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 1 - - uid: 177 + - uid: 1289 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,7.5 parent: 1 - - uid: 178 + - uid: 1290 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 1 - - uid: 179 + - uid: 1291 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 1 - - uid: 180 + - uid: 1292 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 1 - - uid: 181 + - uid: 1293 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 1 - - uid: 182 + - uid: 1294 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 183 + - uid: 1295 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 184 + - uid: 1296 components: - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 185 + - uid: 1297 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 1 - - uid: 186 + - uid: 1298 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 1 - - uid: 187 + - uid: 1299 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 1 - - uid: 188 + - uid: 1300 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 1 - - uid: 189 + - uid: 1301 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 1 - - uid: 191 + - uid: 1302 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 1 - - uid: 195 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-1.5 parent: 1 - - uid: 196 + - uid: 1304 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-0.5 parent: 1 - - uid: 197 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 1 - - uid: 198 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 parent: 1 - - uid: 199 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-2.5 parent: 1 - - uid: 200 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-2.5 parent: 1 - - uid: 203 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-3.5 parent: 1 - - uid: 204 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-4.5 parent: 1 - - uid: 205 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-4.5 parent: 1 - - uid: 206 + - uid: 1312 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-4.5 parent: 1 - - uid: 207 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-5.5 parent: 1 - - uid: 209 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 1 - - uid: 210 + - uid: 1315 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 1 - - uid: 211 + - uid: 1316 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 1 - - uid: 212 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-5.5 parent: 1 - - uid: 213 + - uid: 1318 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 215 + - uid: 1319 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 1 - - uid: 218 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 219 + - uid: 1321 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 220 + - uid: 1322 components: - type: Transform pos: 16.5,4.5 parent: 1 - - uid: 221 + - uid: 1323 components: - type: Transform pos: 18.5,0.5 parent: 1 - - uid: 223 + - uid: 1324 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 224 + - uid: 1325 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 225 + - uid: 1326 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 226 + - uid: 1327 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 227 + - uid: 1328 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 228 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 229 + - uid: 1330 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 230 + - uid: 1331 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 231 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 232 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 parent: 1 - - uid: 234 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 235 + - uid: 1335 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 1 - - uid: 236 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 237 + - uid: 1337 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 238 + - uid: 1338 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 239 + - uid: 1339 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 240 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 241 + - uid: 1341 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 242 + - uid: 1342 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 1 - - uid: 243 + - uid: 1343 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 245 + - uid: 1344 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 246 + - uid: 1345 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 247 + - uid: 1346 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 292 + - uid: 1347 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 294 + - uid: 1348 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 1 - - uid: 295 + - uid: 1349 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,5.5 parent: 1 - - uid: 297 + - uid: 1350 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,1.5 parent: 1 - - uid: 302 + - uid: 1351 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 303 + - uid: 1352 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 304 + - uid: 1353 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 306 + - uid: 1354 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 307 + - uid: 1355 components: - type: Transform pos: -13.5,10.5 parent: 1 - - uid: 308 + - uid: 1356 components: - type: Transform pos: -16.5,10.5 parent: 1 - - uid: 310 + - uid: 1357 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 312 + - uid: 1358 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 317 + - uid: 1359 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 318 + - uid: 1360 components: - type: Transform pos: -10.5,6.5 parent: 1 - - uid: 345 + - uid: 1361 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 1 - - uid: 346 + - uid: 1362 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 347 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 349 + - uid: 1364 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 358 + - uid: 1365 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,4.5 parent: 1 - - uid: 359 + - uid: 1366 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,2.5 parent: 1 - - uid: 360 + - uid: 1367 components: - type: Transform pos: -14.5,10.5 parent: 1 - - uid: 372 + - uid: 1368 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 373 + - uid: 1369 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 374 + - uid: 1370 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 375 + - uid: 1371 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 376 + - uid: 1372 components: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 377 + - uid: 1373 components: - type: Transform pos: -8.5,1.5 parent: 1 - - uid: 378 + - uid: 1374 components: - type: Transform pos: -11.5,1.5 parent: 1 - - uid: 379 + - uid: 1375 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 381 + - uid: 1376 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 383 + - uid: 1377 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 385 + - uid: 1378 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 387 + - uid: 1379 components: - type: Transform pos: 10.5,10.5 parent: 1 - - uid: 392 + - uid: 1380 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 393 + - uid: 1381 components: - type: Transform pos: -8.5,-2.5 parent: 1 - - uid: 394 + - uid: 1382 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 397 + - uid: 1383 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 398 + - uid: 1384 components: - type: Transform pos: -10.5,-2.5 parent: 1 - - uid: 399 + - uid: 1385 components: - type: Transform pos: -12.5,-2.5 parent: 1 - - uid: 400 + - uid: 1386 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 403 + - uid: 1387 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 404 + - uid: 1388 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 409 + - uid: 1389 components: - type: Transform pos: -11.5,-2.5 parent: 1 - - uid: 411 + - uid: 1390 components: - type: Transform pos: -7.5,-2.5 parent: 1 - - uid: 412 + - uid: 1391 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 413 + - uid: 1392 components: - type: Transform pos: -14.5,-1.5 parent: 1 - - uid: 414 + - uid: 1393 components: - type: Transform pos: -14.5,0.5 parent: 1 - - uid: 415 + - uid: 1394 components: - type: Transform pos: -14.5,-2.5 parent: 1 - - uid: 422 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - - uid: 423 + - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 432 + - uid: 1397 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 437 + - uid: 1398 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 438 + - uid: 1399 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 439 + - uid: 1400 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 440 + - uid: 1401 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 441 + - uid: 1402 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 442 + - uid: 1403 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 451 + - uid: 1404 components: - type: Transform pos: -15.5,5.5 parent: 1 - - uid: 473 + - uid: 1405 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 1 - - uid: 479 + - uid: 1406 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 480 + - uid: 1407 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 485 + - uid: 1408 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 488 + - uid: 1409 components: - type: Transform pos: 13.5,4.5 parent: 1 - - uid: 489 + - uid: 1410 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 491 + - uid: 1411 components: - type: Transform pos: 13.5,6.5 parent: 1 - - uid: 493 + - uid: 1412 components: - type: Transform pos: 12.5,6.5 parent: 1 - - uid: 495 + - uid: 1413 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 498 + - uid: 1414 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 528 + - uid: 1415 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 529 + - uid: 1416 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 532 + - uid: 1417 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 534 + - uid: 1418 components: - type: Transform pos: 11.5,6.5 parent: 1 - - uid: 535 + - uid: 1419 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 536 + - uid: 1420 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 537 + - uid: 1421 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 540 + - uid: 1422 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 541 + - uid: 1423 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 542 + - uid: 1424 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 543 + - uid: 1425 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 705 + - uid: 1426 components: - type: Transform pos: 10.5,11.5 parent: 1 - proto: WardrobeGrey entities: - - uid: 545 + - uid: 1427 components: - type: Transform pos: -8.5,2.5 parent: 1 - - uid: 551 + - uid: 1428 components: - type: Transform pos: -10.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 3 + - uid: 1429 components: + - type: MetaData + name: NCWL Gargut - type: Transform pos: 0.5,0.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 1352 + - uid: 1430 components: - type: Transform rot: 3.141592653589793 rad @@ -10866,6 +11641,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -10874,7 +11657,11 @@ entities: showEnts: False occludes: True ent: null - - uid: 1354 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1431 components: - type: Transform rot: 3.141592653589793 rad @@ -10886,6 +11673,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -10894,74 +11689,349 @@ entities: showEnts: False occludes: True ent: null + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - proto: WeaponTurretPDT entities: - - uid: 386 + - uid: 1432 components: - type: Transform - pos: -4.5,-9.5 + pos: -6.5,-7.5 parent: 1 - - uid: 390 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1433 components: - type: Transform - pos: 5.5,-9.5 + rot: 3.141592653589793 rad + pos: -13.5,11.5 parent: 1 - - uid: 701 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 523.10846 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 518.10785 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1435 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,9.5 parent: 1 - - type: PointCannon - linkedConsoleId: 407 - - uid: 704 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 527.27563 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1436 components: - type: Transform - pos: 15.5,-5.5 + rot: 3.141592653589793 rad + pos: 17.5,5.5 parent: 1 - - uid: 710 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 + - uid: 1437 components: - type: Transform - pos: 8.5,-7.5 + pos: -15.5,-4.5 parent: 1 - - uid: 715 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1438 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 1 - - type: PointCannon - linkedConsoleId: 407 - - uid: 716 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 507.6074 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,5.5 + pos: 17.5,-0.5 parent: 1 - - type: PointCannon - linkedConsoleId: 407 - - uid: 719 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 54.286404 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1440 components: - type: Transform - pos: -6.5,-7.5 + rot: 3.141592653589793 rad + pos: 11.5,13.5 parent: 1 - - type: PointCannon - linkedConsoleId: 407 - - uid: 720 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 504.44092 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1441 components: - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,-2.5 parent: 1 - - type: PointCannon - linkedConsoleId: 407 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1442 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 + - uid: 1443 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 + - uid: 1444 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 + - uid: 1445 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - proto: WindoorSecure entities: - - uid: 449 + - uid: 1446 components: - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 450 + - uid: 1447 components: - type: Transform rot: 3.141592653589793 rad diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml index e5bffd94bb3..6af90459dcb 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 23:44:05 + entityCount: 1163 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 33: FloorDark @@ -17,7 +28,7 @@ tilemap: entities: - proto: "" entities: - - uid: 2 + - uid: 1 components: - type: MetaData name: grid @@ -28,28 +39,28 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BgAAAAAABgAAAAAABwAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABwAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAABwAAAAAABQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABQAAAAAABwAAAAAABQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABgAAAAAABgAAAAAABQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAPQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAPQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BgAAAAAAAAYAAAAAAAAHAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABwAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAHAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAAUAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAPQAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAD0AAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAABgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAABQAAAAAABgAAAAAABQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABwAAAAAABQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABgAAAAAABwAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAPQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAPQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAACCAAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAAAHAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAAcAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAD0AAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAA9AAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAABgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAABgAAAAAAAgAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAggAAAAAAIQAAAAAAggAAAAAABgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAAggAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAABQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABQAAAAAAggAAAAAABgAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAAAAAIAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAAGAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAAAggAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAABgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAAgAAAAAABgAAAAAABQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAIQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAIQAAAAAAIQAAAAAABgAAAAAAggAAAAAAggAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAIQAAAAAAIQAAAAAABgAAAAAAggAAAAAAIQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAABgAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABQAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAABgAAAAAAggAAAAAABQAAAAAABwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAYAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAABQAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAYAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAGAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAD0AAAAAAAA9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -139,39 +150,67 @@ entities: 186: -7,0 191: -6,10 199: -5,12 - 219: -8,-11 - 225: -8,-7 - 228: -6,-17 - 231: -5,-19 - 237: -2,-20 - 319: -8,1 - 324: -7,0 - 332: -5,12 - 352: -8,-11 - 358: -8,-7 - 361: -5,-19 - 369: -6,10 - 420: -8,1 - 425: -7,0 - 430: -6,10 - 438: -5,12 - 458: -8,-11 - 464: -8,-7 - 467: -5,-19 - 504: -8,1 - 509: -7,0 - 514: -6,10 - 522: -5,12 - 542: -8,-11 - 548: -8,-7 - 551: -5,-19 - 588: -8,1 - 593: -7,0 - 598: -6,10 - 606: -5,12 - 626: -8,-11 - 632: -8,-7 - 635: -5,-19 + 216: -8,-11 + 219: -8,-7 + 222: -6,-17 + 225: -5,-19 + 231: -2,-20 + 313: -8,1 + 318: -7,0 + 326: -5,12 + 343: -8,-11 + 346: -8,-7 + 349: -5,-19 + 357: -6,10 + 408: -8,1 + 413: -7,0 + 418: -6,10 + 426: -5,12 + 443: -8,-11 + 446: -8,-7 + 449: -5,-19 + 486: -8,1 + 491: -7,0 + 496: -6,10 + 504: -5,12 + 521: -8,-11 + 524: -8,-7 + 527: -5,-19 + 564: -8,1 + 569: -7,0 + 574: -6,10 + 582: -5,12 + 599: -8,-11 + 602: -8,-7 + 605: -5,-19 + 642: -8,1 + 647: -7,0 + 652: -6,10 + 660: -5,12 + 677: -8,-11 + 680: -8,-7 + 683: -5,-19 + 720: -8,1 + 725: -7,0 + 730: -6,10 + 738: -5,12 + 755: -8,-11 + 758: -8,-7 + 761: -5,-19 + 798: -8,1 + 803: -7,0 + 808: -6,10 + 816: -5,12 + 833: -8,-11 + 836: -8,-7 + 839: -5,-19 + 876: -8,1 + 881: -7,0 + 886: -6,10 + 894: -5,12 + 911: -8,-11 + 914: -8,-7 + 917: -5,-19 - node: zIndex: 1 id: LatticeCornerNW @@ -181,38 +220,66 @@ entities: 175: 7,0 178: 8,1 210: 8,-11 - 216: 8,-7 - 243: 2,-20 - 246: 5,-19 - 249: 6,-17 - 302: 5,12 - 313: 7,0 - 316: 8,1 - 343: 8,-11 - 349: 8,-7 - 364: 5,-19 - 374: 6,10 - 398: 5,12 - 406: 6,10 - 414: 7,0 - 417: 8,1 - 449: 8,-11 - 455: 8,-7 - 470: 5,-19 - 482: 5,12 - 490: 6,10 - 498: 7,0 - 501: 8,1 - 533: 8,-11 - 539: 8,-7 - 554: 5,-19 - 566: 5,12 - 574: 6,10 - 582: 7,0 - 585: 8,1 - 617: 8,-11 - 623: 8,-7 - 638: 5,-19 + 213: 8,-7 + 237: 2,-20 + 240: 5,-19 + 243: 6,-17 + 296: 5,12 + 307: 7,0 + 310: 8,1 + 337: 8,-11 + 340: 8,-7 + 352: 5,-19 + 362: 6,10 + 386: 5,12 + 394: 6,10 + 402: 7,0 + 405: 8,1 + 437: 8,-11 + 440: 8,-7 + 452: 5,-19 + 464: 5,12 + 472: 6,10 + 480: 7,0 + 483: 8,1 + 515: 8,-11 + 518: 8,-7 + 530: 5,-19 + 542: 5,12 + 550: 6,10 + 558: 7,0 + 561: 8,1 + 593: 8,-11 + 596: 8,-7 + 608: 5,-19 + 620: 5,12 + 628: 6,10 + 636: 7,0 + 639: 8,1 + 671: 8,-11 + 674: 8,-7 + 686: 5,-19 + 698: 5,12 + 706: 6,10 + 714: 7,0 + 717: 8,1 + 749: 8,-11 + 752: 8,-7 + 764: 5,-19 + 776: 5,12 + 784: 6,10 + 792: 7,0 + 795: 8,1 + 827: 8,-11 + 830: 8,-7 + 842: 5,-19 + 854: 5,12 + 862: 6,10 + 870: 7,0 + 873: 8,1 + 905: 8,-11 + 908: 8,-7 + 920: 5,-19 - node: zIndex: 1 id: LatticeCornerSE @@ -223,36 +290,55 @@ entities: 197: -5,12 202: -5,13 205: -4,14 - 222: -8,-9 - 235: -2,-20 - 322: -7,0 - 327: -6,11 - 330: -5,12 - 335: -5,13 - 338: -4,14 - 355: -8,-9 - 367: -6,10 - 423: -7,0 - 428: -6,10 - 433: -6,11 - 436: -5,12 - 441: -5,13 - 444: -4,14 - 461: -8,-9 - 507: -7,0 - 512: -6,10 - 517: -6,11 - 520: -5,12 - 525: -5,13 - 528: -4,14 - 545: -8,-9 - 591: -7,0 - 596: -6,10 - 601: -6,11 - 604: -5,12 - 609: -5,13 - 612: -4,14 - 629: -8,-9 + 229: -2,-20 + 316: -7,0 + 321: -6,11 + 324: -5,12 + 329: -5,13 + 332: -4,14 + 355: -6,10 + 411: -7,0 + 416: -6,10 + 421: -6,11 + 424: -5,12 + 429: -5,13 + 432: -4,14 + 489: -7,0 + 494: -6,10 + 499: -6,11 + 502: -5,12 + 507: -5,13 + 510: -4,14 + 567: -7,0 + 572: -6,10 + 577: -6,11 + 580: -5,12 + 585: -5,13 + 588: -4,14 + 645: -7,0 + 650: -6,10 + 655: -6,11 + 658: -5,12 + 663: -5,13 + 666: -4,14 + 723: -7,0 + 728: -6,10 + 733: -6,11 + 736: -5,12 + 741: -5,13 + 744: -4,14 + 801: -7,0 + 806: -6,10 + 811: -6,11 + 814: -5,12 + 819: -5,13 + 822: -4,14 + 879: -7,0 + 884: -6,10 + 889: -6,11 + 892: -5,12 + 897: -5,13 + 900: -4,14 - node: zIndex: 1 id: LatticeCornerSW @@ -263,36 +349,55 @@ entities: 166: 6,10 170: 6,11 174: 7,0 - 213: 8,-9 - 242: 2,-20 - 297: 4,14 - 301: 5,12 - 305: 5,13 - 308: 6,11 - 312: 7,0 - 346: 8,-9 - 373: 6,10 - 393: 4,14 - 397: 5,12 - 401: 5,13 - 405: 6,10 - 409: 6,11 - 413: 7,0 - 452: 8,-9 - 477: 4,14 - 481: 5,12 - 485: 5,13 - 489: 6,10 - 493: 6,11 - 497: 7,0 - 536: 8,-9 - 561: 4,14 - 565: 5,12 - 569: 5,13 - 573: 6,10 - 577: 6,11 - 581: 7,0 - 620: 8,-9 + 236: 2,-20 + 291: 4,14 + 295: 5,12 + 299: 5,13 + 302: 6,11 + 306: 7,0 + 361: 6,10 + 381: 4,14 + 385: 5,12 + 389: 5,13 + 393: 6,10 + 397: 6,11 + 401: 7,0 + 459: 4,14 + 463: 5,12 + 467: 5,13 + 471: 6,10 + 475: 6,11 + 479: 7,0 + 537: 4,14 + 541: 5,12 + 545: 5,13 + 549: 6,10 + 553: 6,11 + 557: 7,0 + 615: 4,14 + 619: 5,12 + 623: 5,13 + 627: 6,10 + 631: 6,11 + 635: 7,0 + 693: 4,14 + 697: 5,12 + 701: 5,13 + 705: 6,10 + 709: 6,11 + 713: 7,0 + 771: 4,14 + 775: 5,12 + 779: 5,13 + 783: 6,10 + 787: 6,11 + 791: 7,0 + 849: 4,14 + 853: 5,12 + 857: 5,13 + 861: 6,10 + 865: 6,11 + 869: 7,0 - node: id: LatticeEdgeE decals: @@ -306,68 +411,115 @@ entities: 201: -5,13 204: -4,14 206: -1,12 - 217: -8,-11 - 221: -8,-9 - 223: -8,-7 - 226: -6,-17 - 229: -5,-19 - 234: -2,-20 - 291: 0,12 - 293: 1,12 - 317: -8,1 - 321: -7,0 - 326: -6,11 - 329: -5,12 - 334: -5,13 - 337: -4,14 - 339: -1,12 - 350: -8,-11 - 354: -8,-9 - 356: -8,-7 - 359: -5,-19 - 366: -6,10 - 387: 0,12 - 389: 1,12 - 418: -8,1 - 422: -7,0 - 427: -6,10 - 432: -6,11 - 435: -5,12 - 440: -5,13 - 443: -4,14 - 445: -1,12 - 456: -8,-11 - 460: -8,-9 - 462: -8,-7 - 465: -5,-19 - 471: 0,12 - 473: 1,12 - 502: -8,1 - 506: -7,0 - 511: -6,10 - 516: -6,11 - 519: -5,12 - 524: -5,13 - 527: -4,14 - 529: -1,12 - 540: -8,-11 - 544: -8,-9 - 546: -8,-7 - 549: -5,-19 - 555: 0,12 - 557: 1,12 - 586: -8,1 - 590: -7,0 - 595: -6,10 - 600: -6,11 - 603: -5,12 - 608: -5,13 - 611: -4,14 - 613: -1,12 - 624: -8,-11 - 628: -8,-9 - 630: -8,-7 - 633: -5,-19 + 214: -8,-11 + 217: -8,-7 + 220: -6,-17 + 223: -5,-19 + 228: -2,-20 + 285: 0,12 + 287: 1,12 + 311: -8,1 + 315: -7,0 + 320: -6,11 + 323: -5,12 + 328: -5,13 + 331: -4,14 + 333: -1,12 + 341: -8,-11 + 344: -8,-7 + 347: -5,-19 + 354: -6,10 + 375: 0,12 + 377: 1,12 + 406: -8,1 + 410: -7,0 + 415: -6,10 + 420: -6,11 + 423: -5,12 + 428: -5,13 + 431: -4,14 + 433: -1,12 + 441: -8,-11 + 444: -8,-7 + 447: -5,-19 + 453: 0,12 + 455: 1,12 + 484: -8,1 + 488: -7,0 + 493: -6,10 + 498: -6,11 + 501: -5,12 + 506: -5,13 + 509: -4,14 + 511: -1,12 + 519: -8,-11 + 522: -8,-7 + 525: -5,-19 + 531: 0,12 + 533: 1,12 + 562: -8,1 + 566: -7,0 + 571: -6,10 + 576: -6,11 + 579: -5,12 + 584: -5,13 + 587: -4,14 + 589: -1,12 + 597: -8,-11 + 600: -8,-7 + 603: -5,-19 + 609: 0,12 + 611: 1,12 + 640: -8,1 + 644: -7,0 + 649: -6,10 + 654: -6,11 + 657: -5,12 + 662: -5,13 + 665: -4,14 + 667: -1,12 + 675: -8,-11 + 678: -8,-7 + 681: -5,-19 + 687: 0,12 + 689: 1,12 + 718: -8,1 + 722: -7,0 + 727: -6,10 + 732: -6,11 + 735: -5,12 + 740: -5,13 + 743: -4,14 + 745: -1,12 + 753: -8,-11 + 756: -8,-7 + 759: -5,-19 + 765: 0,12 + 767: 1,12 + 796: -8,1 + 800: -7,0 + 805: -6,10 + 810: -6,11 + 813: -5,12 + 818: -5,13 + 821: -4,14 + 823: -1,12 + 831: -8,-11 + 834: -8,-7 + 837: -5,-19 + 843: 0,12 + 845: 1,12 + 874: -8,1 + 878: -7,0 + 883: -6,10 + 888: -6,11 + 891: -5,12 + 896: -5,13 + 899: -4,14 + 901: -1,12 + 909: -8,-11 + 912: -8,-7 + 915: -5,-19 - node: id: LatticeEdgeN decals: @@ -380,73 +532,129 @@ entities: 190: -6,10 198: -5,12 208: 8,-11 - 214: 8,-7 - 218: -8,-11 - 224: -8,-7 - 227: -6,-17 - 230: -5,-19 - 232: -2,-21 - 236: -2,-20 - 238: 2,-21 - 240: 2,-20 - 244: 5,-19 - 247: 6,-17 - 299: 5,12 - 310: 7,0 - 314: 8,1 - 318: -8,1 - 323: -7,0 - 331: -5,12 - 341: 8,-11 - 347: 8,-7 - 351: -8,-11 - 357: -8,-7 - 360: -5,-19 - 362: 5,-19 - 368: -6,10 - 371: 6,10 - 395: 5,12 - 403: 6,10 - 411: 7,0 - 415: 8,1 - 419: -8,1 - 424: -7,0 - 429: -6,10 - 437: -5,12 - 447: 8,-11 - 453: 8,-7 - 457: -8,-11 - 463: -8,-7 - 466: -5,-19 - 468: 5,-19 - 479: 5,12 - 487: 6,10 - 495: 7,0 - 499: 8,1 - 503: -8,1 - 508: -7,0 - 513: -6,10 - 521: -5,12 - 531: 8,-11 - 537: 8,-7 - 541: -8,-11 - 547: -8,-7 - 550: -5,-19 - 552: 5,-19 - 563: 5,12 - 571: 6,10 - 579: 7,0 - 583: 8,1 - 587: -8,1 - 592: -7,0 - 597: -6,10 - 605: -5,12 - 615: 8,-11 - 621: 8,-7 - 625: -8,-11 - 631: -8,-7 - 634: -5,-19 - 636: 5,-19 + 211: 8,-7 + 215: -8,-11 + 218: -8,-7 + 221: -6,-17 + 224: -5,-19 + 226: -2,-21 + 230: -2,-20 + 232: 2,-21 + 234: 2,-20 + 238: 5,-19 + 241: 6,-17 + 293: 5,12 + 304: 7,0 + 308: 8,1 + 312: -8,1 + 317: -7,0 + 325: -5,12 + 335: 8,-11 + 338: 8,-7 + 342: -8,-11 + 345: -8,-7 + 348: -5,-19 + 350: 5,-19 + 356: -6,10 + 359: 6,10 + 383: 5,12 + 391: 6,10 + 399: 7,0 + 403: 8,1 + 407: -8,1 + 412: -7,0 + 417: -6,10 + 425: -5,12 + 435: 8,-11 + 438: 8,-7 + 442: -8,-11 + 445: -8,-7 + 448: -5,-19 + 450: 5,-19 + 461: 5,12 + 469: 6,10 + 477: 7,0 + 481: 8,1 + 485: -8,1 + 490: -7,0 + 495: -6,10 + 503: -5,12 + 513: 8,-11 + 516: 8,-7 + 520: -8,-11 + 523: -8,-7 + 526: -5,-19 + 528: 5,-19 + 539: 5,12 + 547: 6,10 + 555: 7,0 + 559: 8,1 + 563: -8,1 + 568: -7,0 + 573: -6,10 + 581: -5,12 + 591: 8,-11 + 594: 8,-7 + 598: -8,-11 + 601: -8,-7 + 604: -5,-19 + 606: 5,-19 + 617: 5,12 + 625: 6,10 + 633: 7,0 + 637: 8,1 + 641: -8,1 + 646: -7,0 + 651: -6,10 + 659: -5,12 + 669: 8,-11 + 672: 8,-7 + 676: -8,-11 + 679: -8,-7 + 682: -5,-19 + 684: 5,-19 + 695: 5,12 + 703: 6,10 + 711: 7,0 + 715: 8,1 + 719: -8,1 + 724: -7,0 + 729: -6,10 + 737: -5,12 + 747: 8,-11 + 750: 8,-7 + 754: -8,-11 + 757: -8,-7 + 760: -5,-19 + 762: 5,-19 + 773: 5,12 + 781: 6,10 + 789: 7,0 + 793: 8,1 + 797: -8,1 + 802: -7,0 + 807: -6,10 + 815: -5,12 + 825: 8,-11 + 828: 8,-7 + 832: -8,-11 + 835: -8,-7 + 838: -5,-19 + 840: 5,-19 + 851: 5,12 + 859: 6,10 + 867: 7,0 + 871: 8,1 + 875: -8,1 + 880: -7,0 + 885: -6,10 + 893: -5,12 + 903: 8,-11 + 906: 8,-7 + 910: -8,-11 + 913: -8,-7 + 916: -5,-19 + 918: 5,-19 - node: id: LatticeEdgeS decals: @@ -462,66 +670,104 @@ entities: 195: -5,12 200: -5,13 203: -4,14 - 211: 8,-9 - 220: -8,-9 - 233: -2,-20 - 239: 2,-20 - 295: 4,14 - 298: 5,12 - 303: 5,13 - 306: 6,11 - 309: 7,0 - 320: -7,0 - 325: -6,11 - 328: -5,12 - 333: -5,13 - 336: -4,14 - 344: 8,-9 - 353: -8,-9 - 365: -6,10 - 370: 6,10 - 391: 4,14 - 394: 5,12 - 399: 5,13 - 402: 6,10 - 407: 6,11 - 410: 7,0 - 421: -7,0 - 426: -6,10 - 431: -6,11 - 434: -5,12 - 439: -5,13 - 442: -4,14 - 450: 8,-9 - 459: -8,-9 - 475: 4,14 - 478: 5,12 - 483: 5,13 - 486: 6,10 - 491: 6,11 - 494: 7,0 - 505: -7,0 - 510: -6,10 - 515: -6,11 - 518: -5,12 - 523: -5,13 - 526: -4,14 - 534: 8,-9 - 543: -8,-9 - 559: 4,14 - 562: 5,12 - 567: 5,13 - 570: 6,10 - 575: 6,11 - 578: 7,0 - 589: -7,0 - 594: -6,10 - 599: -6,11 - 602: -5,12 - 607: -5,13 - 610: -4,14 - 618: 8,-9 - 627: -8,-9 + 227: -2,-20 + 233: 2,-20 + 289: 4,14 + 292: 5,12 + 297: 5,13 + 300: 6,11 + 303: 7,0 + 314: -7,0 + 319: -6,11 + 322: -5,12 + 327: -5,13 + 330: -4,14 + 353: -6,10 + 358: 6,10 + 379: 4,14 + 382: 5,12 + 387: 5,13 + 390: 6,10 + 395: 6,11 + 398: 7,0 + 409: -7,0 + 414: -6,10 + 419: -6,11 + 422: -5,12 + 427: -5,13 + 430: -4,14 + 457: 4,14 + 460: 5,12 + 465: 5,13 + 468: 6,10 + 473: 6,11 + 476: 7,0 + 487: -7,0 + 492: -6,10 + 497: -6,11 + 500: -5,12 + 505: -5,13 + 508: -4,14 + 535: 4,14 + 538: 5,12 + 543: 5,13 + 546: 6,10 + 551: 6,11 + 554: 7,0 + 565: -7,0 + 570: -6,10 + 575: -6,11 + 578: -5,12 + 583: -5,13 + 586: -4,14 + 613: 4,14 + 616: 5,12 + 621: 5,13 + 624: 6,10 + 629: 6,11 + 632: 7,0 + 643: -7,0 + 648: -6,10 + 653: -6,11 + 656: -5,12 + 661: -5,13 + 664: -4,14 + 691: 4,14 + 694: 5,12 + 699: 5,13 + 702: 6,10 + 707: 6,11 + 710: 7,0 + 721: -7,0 + 726: -6,10 + 731: -6,11 + 734: -5,12 + 739: -5,13 + 742: -4,14 + 769: 4,14 + 772: 5,12 + 777: 5,13 + 780: 6,10 + 785: 6,11 + 788: 7,0 + 799: -7,0 + 804: -6,10 + 809: -6,11 + 812: -5,12 + 817: -5,13 + 820: -4,14 + 847: 4,14 + 850: 5,12 + 855: 5,13 + 858: 6,10 + 863: 6,11 + 866: 7,0 + 877: -7,0 + 882: -6,10 + 887: -6,11 + 890: -5,12 + 895: -5,13 + 898: -4,14 - node: id: LatticeEdgeW decals: @@ -536,67 +782,114 @@ entities: 177: 8,1 207: -1,12 209: 8,-11 - 212: 8,-9 - 215: 8,-7 - 241: 2,-20 - 245: 5,-19 - 248: 6,-17 - 292: 0,12 - 294: 1,12 - 296: 4,14 - 300: 5,12 - 304: 5,13 - 307: 6,11 - 311: 7,0 - 315: 8,1 - 340: -1,12 - 342: 8,-11 - 345: 8,-9 - 348: 8,-7 - 363: 5,-19 - 372: 6,10 - 388: 0,12 - 390: 1,12 - 392: 4,14 - 396: 5,12 - 400: 5,13 - 404: 6,10 - 408: 6,11 - 412: 7,0 - 416: 8,1 - 446: -1,12 - 448: 8,-11 - 451: 8,-9 - 454: 8,-7 - 469: 5,-19 - 472: 0,12 - 474: 1,12 - 476: 4,14 - 480: 5,12 - 484: 5,13 - 488: 6,10 - 492: 6,11 - 496: 7,0 - 500: 8,1 - 530: -1,12 - 532: 8,-11 - 535: 8,-9 - 538: 8,-7 - 553: 5,-19 - 556: 0,12 - 558: 1,12 - 560: 4,14 - 564: 5,12 - 568: 5,13 - 572: 6,10 - 576: 6,11 - 580: 7,0 - 584: 8,1 - 614: -1,12 - 616: 8,-11 - 619: 8,-9 - 622: 8,-7 - 637: 5,-19 + 212: 8,-7 + 235: 2,-20 + 239: 5,-19 + 242: 6,-17 + 286: 0,12 + 288: 1,12 + 290: 4,14 + 294: 5,12 + 298: 5,13 + 301: 6,11 + 305: 7,0 + 309: 8,1 + 334: -1,12 + 336: 8,-11 + 339: 8,-7 + 351: 5,-19 + 360: 6,10 + 376: 0,12 + 378: 1,12 + 380: 4,14 + 384: 5,12 + 388: 5,13 + 392: 6,10 + 396: 6,11 + 400: 7,0 + 404: 8,1 + 434: -1,12 + 436: 8,-11 + 439: 8,-7 + 451: 5,-19 + 454: 0,12 + 456: 1,12 + 458: 4,14 + 462: 5,12 + 466: 5,13 + 470: 6,10 + 474: 6,11 + 478: 7,0 + 482: 8,1 + 512: -1,12 + 514: 8,-11 + 517: 8,-7 + 529: 5,-19 + 532: 0,12 + 534: 1,12 + 536: 4,14 + 540: 5,12 + 544: 5,13 + 548: 6,10 + 552: 6,11 + 556: 7,0 + 560: 8,1 + 590: -1,12 + 592: 8,-11 + 595: 8,-7 + 607: 5,-19 + 610: 0,12 + 612: 1,12 + 614: 4,14 + 618: 5,12 + 622: 5,13 + 626: 6,10 + 630: 6,11 + 634: 7,0 + 638: 8,1 + 668: -1,12 + 670: 8,-11 + 673: 8,-7 + 685: 5,-19 + 688: 0,12 + 690: 1,12 + 692: 4,14 + 696: 5,12 + 700: 5,13 + 704: 6,10 + 708: 6,11 + 712: 7,0 + 716: 8,1 + 746: -1,12 + 748: 8,-11 + 751: 8,-7 + 763: 5,-19 + 766: 0,12 + 768: 1,12 + 770: 4,14 + 774: 5,12 + 778: 5,13 + 782: 6,10 + 786: 6,11 + 790: 7,0 + 794: 8,1 + 824: -1,12 + 826: 8,-11 + 829: 8,-7 + 841: 5,-19 + 844: 0,12 + 846: 1,12 + 848: 4,14 + 852: 5,12 + 856: 5,13 + 860: 6,10 + 864: 6,11 + 868: 7,0 + 872: 8,1 + 902: -1,12 + 904: 8,-11 + 907: 8,-7 + 919: 5,-19 - node: angle: -1.5707963267948966 rad color: '#EFB34196' @@ -619,97 +912,97 @@ entities: color: '#FFFFFFFF' id: TechE decals: - 382: -5,7 - 383: -5,8 - 384: -5,9 + 370: -5,7 + 371: -5,8 + 372: -5,9 - node: color: '#FFFFFFFF' id: TechN decals: - 271: -2,3 - 272: -1,3 - 273: 0,3 - 274: 1,3 - 275: 2,3 - 276: 6,2 - 277: -6,2 + 265: -2,3 + 266: -1,3 + 267: 0,3 + 268: 1,3 + 269: 2,3 + 270: 6,2 + 271: -6,2 - node: color: '#FFFFFFFF' id: TechNE decals: - 263: -5,2 - 270: 3,3 - 284: 3,2 - 375: 3,8 + 257: -5,2 + 264: 3,3 + 278: 3,2 + 363: 3,8 - node: color: '#FFFFFFFF' id: TechNW decals: - 262: 5,2 - 269: -3,3 - 283: -3,2 - 376: -3,8 + 256: 5,2 + 263: -3,3 + 277: -3,2 + 364: -3,8 - node: color: '#FFFFFFFF' id: TechS decals: - 278: -6,5 - 279: -2,5 - 280: -1,5 - 281: 2,5 - 282: 6,5 - 289: 2,-4 - 290: -2,-4 + 272: -6,5 + 273: -2,5 + 274: -1,5 + 275: 2,5 + 276: 6,5 + 283: 2,-4 + 284: -2,-4 - node: color: '#FFFFFFFF' id: TechSE decals: - 267: -5,5 - 268: 3,5 - 286: 3,-4 - 287: -1,-4 - 378: 3,7 + 261: -5,5 + 262: 3,5 + 280: 3,-4 + 281: -1,-4 + 366: 3,7 - node: color: '#FFFFFFFF' id: TechSW decals: - 264: 5,5 - 265: 1,5 - 266: -3,5 - 285: -3,-4 - 288: 1,-4 - 377: -3,7 + 258: 5,5 + 259: 1,5 + 260: -3,5 + 279: -3,-4 + 282: 1,-4 + 365: -3,7 - node: color: '#FFFFFFFF' id: TechW decals: - 250: 5,-6 - 251: 5,-5 - 252: 5,-4 - 253: 5,-3 - 254: 5,-2 - 379: 5,7 - 380: 5,8 - 381: 5,9 + 244: 5,-6 + 245: 5,-5 + 246: 5,-4 + 247: 5,-3 + 248: 5,-2 + 367: 5,7 + 368: 5,8 + 369: 5,9 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechW decals: - 255: -5,-6 - 256: -5,-5 - 257: -5,-4 - 258: -5,-3 - 259: -5,-2 - 260: -5,0 - 385: -5,-1 + 249: -5,-6 + 250: -5,-5 + 251: -5,-4 + 252: -5,-3 + 253: -5,-2 + 254: -5,0 + 373: -5,-1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 261: 5,0 - 386: 5,-1 + 255: 5,0 + 374: 5,-1 - node: color: '#EFB34196' id: WarnCornerSE @@ -1028,321 +1321,327 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Sasha + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 1081 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 1099 + - 629 - type: Physics canCollide: False - - uid: 1082 + - uid: 3 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 1099 + - 629 - type: Physics canCollide: False - proto: AAAHardpointLargeBallistic entities: - - uid: 354 + - uid: 4 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 606 + - uid: 5 components: - type: Transform pos: 0.5,10.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 1080 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 55 + - uid: 7 components: - type: Transform pos: -5.5,-17.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 122 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 123 + - uid: 9 components: - type: Transform pos: 7.5,-13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 357 + - uid: 10 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 361 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 365 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 367 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 376 + - uid: 14 components: - type: Transform pos: -1.5,-20.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 377 + - uid: 15 components: - type: Transform pos: 2.5,-20.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 925 + - uid: 16 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 970 + - uid: 17 components: - type: Transform pos: -6.5,-13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 971 + - uid: 18 components: - type: Transform pos: 6.5,-17.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - proto: AirlockCommandLockedNCWL entities: - - uid: 128 + - uid: 19 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 - parent: 2 - - uid: 131 + parent: 1 + - uid: 20 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 - parent: 2 - - uid: 139 + parent: 1 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-9.5 - parent: 2 - - uid: 163 + parent: 1 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-12.5 - parent: 2 - - uid: 164 + parent: 1 + - uid: 23 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 - parent: 2 - - uid: 220 + parent: 1 + - uid: 24 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 - parent: 2 - - uid: 227 + parent: 1 + - uid: 25 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 - parent: 2 - - uid: 230 + parent: 1 + - uid: 26 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,1.5 - parent: 2 - - uid: 236 + parent: 1 + - uid: 27 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 - parent: 2 - - uid: 239 + parent: 1 + - uid: 28 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 - parent: 2 - - uid: 250 + parent: 1 + - uid: 29 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 2 - - uid: 253 + parent: 1 + - uid: 30 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 - parent: 2 - - uid: 263 + parent: 1 + - uid: 31 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 - parent: 2 - - uid: 284 + parent: 1 + - uid: 32 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 - parent: 2 - - uid: 996 + parent: 1 + - uid: 33 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 - parent: 2 - - uid: 1110 + parent: 1 + - uid: 34 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-16.5 - parent: 2 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 142 + - uid: 36 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 - parent: 2 - - uid: 175 + parent: 1 + - uid: 37 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 - parent: 2 - - uid: 187 + parent: 1 + - uid: 38 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 - parent: 2 - - uid: 254 + parent: 1 + - uid: 39 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 - parent: 2 - - uid: 384 + parent: 1 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-14.5 - parent: 2 + parent: 1 - proto: AirlockMaint entities: - - uid: 959 + - uid: 41 components: - type: Transform pos: 4.5,-15.5 - parent: 2 + parent: 1 - proto: AirlockShuttle entities: - - uid: 137 + - uid: 42 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 - parent: 2 - - uid: 146 + parent: 1 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-5.5 - parent: 2 + parent: 1 - proto: AirTankFilled entities: - - uid: 452 + - uid: 45 components: - type: Transform - parent: 447 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 458 + - uid: 52 components: - type: Transform - parent: 454 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 296 + - uid: 58 components: - type: Transform pos: -0.5,-10.5 - parent: 2 + parent: 1 - type: AmeController injecting: True - type: ContainerContainer @@ -1350,3052 +1649,3156 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 297 + ent: 59 - proto: AmeJar entities: - - uid: 297 + - uid: 59 components: - type: Transform - parent: 296 + parent: 58 - type: Physics canCollide: False - proto: AmeShielding entities: - - uid: 138 + - uid: 60 components: - type: Transform pos: 0.5,-11.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 140 + - uid: 61 components: - type: Transform pos: 2.5,-11.5 - parent: 2 - - uid: 141 + parent: 1 + - uid: 62 components: - type: Transform pos: 1.5,-11.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 150 + - uid: 63 components: - type: Transform pos: 1.5,-12.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 184 + - uid: 64 components: - type: Transform pos: -0.5,-11.5 - parent: 2 - - uid: 185 + parent: 1 + - uid: 65 components: - type: Transform pos: -0.5,-12.5 - parent: 2 - - uid: 205 + parent: 1 + - uid: 66 components: - type: Transform pos: 1.5,-13.5 - parent: 2 - - uid: 257 + parent: 1 + - uid: 67 components: - type: Transform pos: 2.5,-13.5 - parent: 2 - - uid: 265 + parent: 1 + - uid: 68 components: - type: Transform pos: 2.5,-10.5 - parent: 2 - - uid: 302 + parent: 1 + - uid: 69 components: - type: Transform pos: 0.5,-12.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 325 + - uid: 70 components: - type: Transform pos: -0.5,-10.5 - parent: 2 - - uid: 326 + parent: 1 + - uid: 71 components: - type: Transform pos: 0.5,-10.5 - parent: 2 - - uid: 327 + parent: 1 + - uid: 72 components: - type: Transform pos: 2.5,-12.5 - parent: 2 - - uid: 328 + parent: 1 + - uid: 73 components: - type: Transform pos: 0.5,-13.5 - parent: 2 - - uid: 347 + parent: 1 + - uid: 74 components: - type: Transform pos: 1.5,-10.5 - parent: 2 - - uid: 434 + parent: 1 + - uid: 75 components: - type: Transform pos: -0.5,-13.5 - parent: 2 + parent: 1 - proto: APCBasic entities: - - uid: 309 + - uid: 76 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 - parent: 2 - - uid: 603 + parent: 1 + - uid: 77 components: - type: Transform pos: -3.5,10.5 - parent: 2 - - uid: 604 + parent: 1 + - uid: 78 components: - type: Transform pos: 4.5,10.5 - parent: 2 - - uid: 605 + parent: 1 + - uid: 79 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 - parent: 2 - - uid: 607 + parent: 1 + - uid: 80 components: - type: Transform pos: -2.5,-2.5 - parent: 2 - - uid: 608 + parent: 1 + - uid: 81 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 - parent: 2 - - uid: 609 + parent: 1 + - uid: 82 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 - parent: 2 - - uid: 610 + parent: 1 + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-8.5 - parent: 2 + parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 36 + - uid: 84 components: - type: Transform pos: -5.5,-2.5 - parent: 2 - - uid: 42 + parent: 1 + - uid: 85 components: - type: Transform pos: 6.5,-2.5 - parent: 2 - - uid: 43 + parent: 1 + - uid: 86 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 - parent: 2 - - uid: 70 + parent: 1 + - uid: 87 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-1.5 - parent: 2 - - uid: 101 + parent: 1 + - uid: 88 components: - type: Transform pos: -5.5,-3.5 - parent: 2 - - uid: 104 + parent: 1 + - uid: 89 components: - type: Transform pos: 6.5,-3.5 - parent: 2 - - uid: 147 + parent: 1 + - uid: 90 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,14.5 - parent: 2 - - uid: 148 + parent: 1 + - uid: 91 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 - parent: 2 - - uid: 151 + parent: 1 + - uid: 92 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-5.5 - parent: 2 - - uid: 154 + parent: 1 + - uid: 93 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,14.5 - parent: 2 - - uid: 401 + parent: 1 + - uid: 94 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 2 - - uid: 402 + parent: 1 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 2 - - uid: 403 + parent: 1 + - uid: 96 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,4.5 - parent: 2 - - uid: 404 + parent: 1 + - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 - parent: 2 - - uid: 1041 + parent: 1 + - uid: 98 components: - type: Transform pos: 0.5,8.5 - parent: 2 + parent: 1 - proto: BaseWeaponTurretBattlemortar entities: - - uid: 580 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon linkedConsoleIds: - - 1100 - linkedConsoleId: 1100 - - uid: 715 + - 630 + linkedConsoleId: 630 + - uid: 100 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,10.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon linkedConsoleIds: - - 1100 - linkedConsoleId: 1100 - - uid: 718 + - 630 + linkedConsoleId: 630 + - uid: 101 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon linkedConsoleIds: - - 1100 - linkedConsoleId: 1100 + - 630 + linkedConsoleId: 630 - proto: BedsheetMedical entities: - - uid: 416 + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 - parent: 2 - - uid: 417 + parent: 1 + - uid: 103 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 - parent: 2 + parent: 1 - proto: BenchSteelLeft entities: - - uid: 387 + - uid: 104 components: - type: Transform pos: -1.5,-3.5 - parent: 2 + parent: 1 - proto: BenchSteelRight entities: - - uid: 388 + - uid: 105 components: - type: Transform pos: -0.5,-3.5 - parent: 2 + parent: 1 - proto: BlastDoor entities: - - uid: 44 + - uid: 106 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 363 - - uid: 50 + - 898 + - uid: 107 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-1.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 364 - - uid: 53 + - 899 + - uid: 108 components: - type: Transform pos: 0.5,8.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 1048 - - uid: 188 + - 903 + - uid: 109 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 364 - - uid: 189 + - 899 + - uid: 110 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 364 - - uid: 190 + - 899 + - uid: 111 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 363 - - uid: 191 + - 898 + - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 363 - - uid: 192 + - 898 + - uid: 113 components: - type: Transform pos: -2.5,14.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 360 - - uid: 193 + - 896 + - uid: 114 components: - type: Transform pos: 3.5,14.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 362 + - 897 - proto: BoxT3SuperCapacitor entities: - - uid: 430 + - uid: 116 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 431 + - uid: 117 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ButtonFrameCaution entities: - - uid: 8 + - uid: 129 components: - type: Transform pos: 1.5,6.5 - parent: 2 - - uid: 355 + parent: 1 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 - parent: 2 - - uid: 356 + parent: 1 + - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 2 - - uid: 358 + parent: 1 + - uid: 132 components: - type: Transform pos: 4.5,12.5 - parent: 2 - - uid: 359 + parent: 1 + - uid: 133 components: - type: Transform pos: -3.5,12.5 - parent: 2 - - uid: 480 + parent: 1 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 - - uid: 964 + parent: 1 + - uid: 135 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 - parent: 2 - - uid: 965 + parent: 1 + - uid: 136 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 2 + parent: 1 - proto: CableApcExtension entities: - - uid: 4 + - uid: 137 components: - type: Transform pos: 5.5,13.5 - parent: 2 - - uid: 7 + parent: 1 + - uid: 138 components: - type: Transform pos: 5.5,11.5 - parent: 2 - - uid: 9 + parent: 1 + - uid: 139 components: - type: Transform pos: -4.5,12.5 - parent: 2 - - uid: 11 + parent: 1 + - uid: 140 components: - type: Transform pos: 2.5,-20.5 - parent: 2 - - uid: 12 + parent: 1 + - uid: 141 components: - type: Transform pos: 8.5,6.5 - parent: 2 - - uid: 13 + parent: 1 + - uid: 142 components: - type: Transform pos: 7.5,5.5 - parent: 2 - - uid: 14 + parent: 1 + - uid: 143 components: - type: Transform pos: -1.5,-20.5 - parent: 2 - - uid: 15 + parent: 1 + - uid: 144 components: - type: Transform pos: -7.5,6.5 - parent: 2 - - uid: 16 + parent: 1 + - uid: 145 components: - type: Transform pos: -5.5,6.5 - parent: 2 - - uid: 17 + parent: 1 + - uid: 146 components: - type: Transform pos: -4.5,11.5 - parent: 2 - - uid: 18 + parent: 1 + - uid: 147 components: - type: Transform pos: 3.5,0.5 - parent: 2 - - uid: 19 + parent: 1 + - uid: 148 components: - type: Transform pos: -1.5,-19.5 - parent: 2 - - uid: 20 + parent: 1 + - uid: 149 components: - type: Transform pos: 2.5,-19.5 - parent: 2 - - uid: 25 + parent: 1 + - uid: 150 components: - type: Transform pos: -1.5,1.5 - parent: 2 - - uid: 270 + parent: 1 + - uid: 151 components: - type: Transform pos: 0.5,-9.5 - parent: 2 - - uid: 281 + parent: 1 + - uid: 152 components: - type: Transform pos: 0.5,-12.5 - parent: 2 - - uid: 290 + parent: 1 + - uid: 153 components: - type: Transform pos: 0.5,-11.5 - parent: 2 - - uid: 303 + parent: 1 + - uid: 154 components: - type: Transform pos: 0.5,-8.5 - parent: 2 - - uid: 306 + parent: 1 + - uid: 155 components: - type: Transform pos: 1.5,-8.5 - parent: 2 - - uid: 314 + parent: 1 + - uid: 156 components: - type: Transform pos: -4.5,13.5 - parent: 2 - - uid: 315 + parent: 1 + - uid: 157 components: - type: Transform pos: -6.5,6.5 - parent: 2 - - uid: 317 + parent: 1 + - uid: 158 components: - type: Transform pos: 6.5,11.5 - parent: 2 - - uid: 318 + parent: 1 + - uid: 159 components: - type: Transform pos: 7.5,6.5 - parent: 2 - - uid: 321 + parent: 1 + - uid: 160 components: - type: Transform pos: 6.5,6.5 - parent: 2 - - uid: 350 + parent: 1 + - uid: 161 components: - type: Transform pos: -5.5,11.5 - parent: 2 - - uid: 351 + parent: 1 + - uid: 162 components: - type: Transform pos: 5.5,12.5 - parent: 2 - - uid: 509 + parent: 1 + - uid: 163 components: - type: Transform pos: 5.5,-7.5 - parent: 2 - - uid: 581 + parent: 1 + - uid: 164 components: - type: Transform pos: -4.5,-13.5 - parent: 2 - - uid: 587 + parent: 1 + - uid: 165 components: - type: Transform pos: 3.5,10.5 - parent: 2 - - uid: 613 + parent: 1 + - uid: 166 components: - type: Transform pos: 6.5,-2.5 - parent: 2 - - uid: 614 + parent: 1 + - uid: 167 components: - type: Transform pos: 7.5,-2.5 - parent: 2 - - uid: 615 + parent: 1 + - uid: 168 components: - type: Transform pos: 7.5,-1.5 - parent: 2 - - uid: 625 + parent: 1 + - uid: 169 components: - type: Transform pos: 6.5,-1.5 - parent: 2 - - uid: 673 + parent: 1 + - uid: 170 components: - type: Transform pos: -6.5,-2.5 - parent: 2 - - uid: 710 + parent: 1 + - uid: 171 components: - type: Transform pos: 3.5,-8.5 - parent: 2 - - uid: 711 + parent: 1 + - uid: 172 components: - type: Transform pos: 2.5,-8.5 - parent: 2 - - uid: 712 + parent: 1 + - uid: 173 components: - type: Transform pos: -6.5,-1.5 - parent: 2 - - uid: 713 + parent: 1 + - uid: 174 components: - type: Transform pos: -5.5,-1.5 - parent: 2 - - uid: 714 + parent: 1 + - uid: 175 components: - type: Transform pos: -5.5,-2.5 - parent: 2 - - uid: 716 + parent: 1 + - uid: 176 components: - type: Transform pos: 0.5,-7.5 - parent: 2 - - uid: 717 + parent: 1 + - uid: 177 components: - type: Transform pos: 0.5,-6.5 - parent: 2 - - uid: 719 + parent: 1 + - uid: 178 components: - type: Transform pos: 0.5,-10.5 - parent: 2 - - uid: 720 + parent: 1 + - uid: 179 components: - type: Transform pos: -7.5,-2.5 - parent: 2 - - uid: 721 + parent: 1 + - uid: 180 components: - type: Transform pos: 8.5,-2.5 - parent: 2 - - uid: 723 + parent: 1 + - uid: 181 components: - type: Transform pos: 0.5,8.5 - parent: 2 - - uid: 724 + parent: 1 + - uid: 182 components: - type: Transform pos: 0.5,9.5 - parent: 2 - - uid: 725 + parent: 1 + - uid: 183 components: - type: Transform pos: -0.5,-6.5 - parent: 2 - - uid: 726 + parent: 1 + - uid: 184 components: - type: Transform pos: -1.5,-6.5 - parent: 2 - - uid: 727 + parent: 1 + - uid: 185 components: - type: Transform pos: 1.5,-6.5 - parent: 2 - - uid: 728 + parent: 1 + - uid: 186 components: - type: Transform pos: 2.5,-6.5 - parent: 2 - - uid: 729 + parent: 1 + - uid: 187 components: - type: Transform pos: 0.5,10.5 - parent: 2 - - uid: 730 + parent: 1 + - uid: 188 components: - type: Transform pos: -0.5,10.5 - parent: 2 - - uid: 731 + parent: 1 + - uid: 189 components: - type: Transform pos: -4.5,-8.5 - parent: 2 - - uid: 732 + parent: 1 + - uid: 190 components: - type: Transform pos: -3.5,-8.5 - parent: 2 - - uid: 733 + parent: 1 + - uid: 191 components: - type: Transform pos: -5.5,-8.5 - parent: 2 - - uid: 734 + parent: 1 + - uid: 192 components: - type: Transform pos: -5.5,-7.5 - parent: 2 - - uid: 735 + parent: 1 + - uid: 193 components: - type: Transform pos: -3.5,-9.5 - parent: 2 - - uid: 736 + parent: 1 + - uid: 194 components: - type: Transform pos: -3.5,-10.5 - parent: 2 - - uid: 737 + parent: 1 + - uid: 195 components: - type: Transform pos: -3.5,-11.5 - parent: 2 - - uid: 738 + parent: 1 + - uid: 196 components: - type: Transform pos: -4.5,-11.5 - parent: 2 - - uid: 739 + parent: 1 + - uid: 197 components: - type: Transform pos: -3.5,-7.5 - parent: 2 - - uid: 740 + parent: 1 + - uid: 198 components: - type: Transform pos: 7.5,-9.5 - parent: 2 - - uid: 741 + parent: 1 + - uid: 199 components: - type: Transform pos: 6.5,-9.5 - parent: 2 - - uid: 742 + parent: 1 + - uid: 200 components: - type: Transform pos: 5.5,-9.5 - parent: 2 - - uid: 743 + parent: 1 + - uid: 201 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 744 + parent: 1 + - uid: 202 components: - type: Transform pos: 5.5,-8.5 - parent: 2 - - uid: 745 + parent: 1 + - uid: 203 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 746 + parent: 1 + - uid: 204 components: - type: Transform pos: 5.5,-10.5 - parent: 2 - - uid: 747 + parent: 1 + - uid: 205 components: - type: Transform pos: 5.5,-11.5 - parent: 2 - - uid: 748 + parent: 1 + - uid: 206 components: - type: Transform pos: 6.5,-11.5 - parent: 2 - - uid: 756 + parent: 1 + - uid: 207 components: - type: Transform pos: 0.5,-13.5 - parent: 2 - - uid: 757 + parent: 1 + - uid: 208 components: - type: Transform pos: 0.5,-14.5 - parent: 2 - - uid: 758 + parent: 1 + - uid: 209 components: - type: Transform pos: 0.5,-15.5 - parent: 2 - - uid: 759 + parent: 1 + - uid: 210 components: - type: Transform pos: 0.5,-16.5 - parent: 2 - - uid: 760 + parent: 1 + - uid: 211 components: - type: Transform pos: 0.5,-17.5 - parent: 2 - - uid: 761 + parent: 1 + - uid: 212 components: - type: Transform pos: 1.5,-16.5 - parent: 2 - - uid: 762 + parent: 1 + - uid: 213 components: - type: Transform pos: 2.5,-16.5 - parent: 2 - - uid: 763 + parent: 1 + - uid: 214 components: - type: Transform pos: 3.5,-16.5 - parent: 2 - - uid: 764 + parent: 1 + - uid: 215 components: - type: Transform pos: 4.5,-16.5 - parent: 2 - - uid: 765 + parent: 1 + - uid: 216 components: - type: Transform pos: -0.5,-16.5 - parent: 2 - - uid: 766 + parent: 1 + - uid: 217 components: - type: Transform pos: -1.5,-16.5 - parent: 2 - - uid: 767 + parent: 1 + - uid: 218 components: - type: Transform pos: -2.5,-16.5 - parent: 2 - - uid: 768 + parent: 1 + - uid: 219 components: - type: Transform pos: -3.5,-16.5 - parent: 2 - - uid: 769 + parent: 1 + - uid: 220 components: - type: Transform pos: 0.5,-18.5 - parent: 2 - - uid: 770 + parent: 1 + - uid: 221 components: - type: Transform pos: 0.5,-19.5 - parent: 2 - - uid: 771 + parent: 1 + - uid: 222 components: - type: Transform pos: 1.5,-19.5 - parent: 2 - - uid: 772 + parent: 1 + - uid: 223 components: - type: Transform pos: -0.5,-19.5 - parent: 2 - - uid: 773 + parent: 1 + - uid: 224 components: - type: Transform pos: -0.5,-18.5 - parent: 2 - - uid: 774 + parent: 1 + - uid: 225 components: - type: Transform pos: -1.5,-18.5 - parent: 2 - - uid: 775 + parent: 1 + - uid: 226 components: - type: Transform pos: -2.5,-18.5 - parent: 2 - - uid: 776 + parent: 1 + - uid: 227 components: - type: Transform pos: -3.5,-18.5 - parent: 2 - - uid: 777 + parent: 1 + - uid: 228 components: - type: Transform pos: 1.5,-18.5 - parent: 2 - - uid: 778 + parent: 1 + - uid: 229 components: - type: Transform pos: 2.5,-18.5 - parent: 2 - - uid: 779 + parent: 1 + - uid: 230 components: - type: Transform pos: 3.5,-18.5 - parent: 2 - - uid: 780 + parent: 1 + - uid: 231 components: - type: Transform pos: 4.5,-18.5 - parent: 2 - - uid: 781 + parent: 1 + - uid: 232 components: - type: Transform pos: 1.5,-14.5 - parent: 2 - - uid: 782 + parent: 1 + - uid: 233 components: - type: Transform pos: 2.5,-14.5 - parent: 2 - - uid: 783 + parent: 1 + - uid: 234 components: - type: Transform pos: 3.5,-14.5 - parent: 2 - - uid: 784 + parent: 1 + - uid: 235 components: - type: Transform pos: 4.5,-14.5 - parent: 2 - - uid: 785 + parent: 1 + - uid: 236 components: - type: Transform pos: 5.5,-14.5 - parent: 2 - - uid: 786 + parent: 1 + - uid: 237 components: - type: Transform pos: 5.5,-13.5 - parent: 2 - - uid: 787 + parent: 1 + - uid: 238 components: - type: Transform pos: -0.5,-14.5 - parent: 2 - - uid: 788 + parent: 1 + - uid: 239 components: - type: Transform pos: -1.5,-14.5 - parent: 2 - - uid: 789 + parent: 1 + - uid: 240 components: - type: Transform pos: -2.5,-14.5 - parent: 2 - - uid: 790 + parent: 1 + - uid: 241 components: - type: Transform pos: -3.5,-14.5 - parent: 2 - - uid: 791 + parent: 1 + - uid: 242 components: - type: Transform pos: -4.5,-14.5 - parent: 2 - - uid: 792 + parent: 1 + - uid: 243 components: - type: Transform pos: -4.5,-13.5 - parent: 2 - - uid: 793 + parent: 1 + - uid: 244 components: - type: Transform pos: 8.5,-9.5 - parent: 2 - - uid: 794 + parent: 1 + - uid: 245 components: - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 795 + pos: -7.5,-10.5 + parent: 1 + - uid: 246 components: - type: Transform pos: -6.5,-8.5 - parent: 2 - - uid: 796 + parent: 1 + - uid: 247 components: - type: Transform - pos: -7.5,-8.5 - parent: 2 - - uid: 797 + pos: -6.5,-9.5 + parent: 1 + - uid: 248 components: - type: Transform pos: -7.5,-9.5 - parent: 2 - - uid: 798 + parent: 1 + - uid: 249 components: - type: Transform pos: -5.5,-8.5 - parent: 2 - - uid: 799 + parent: 1 + - uid: 250 components: - type: Transform pos: -2.5,-2.5 - parent: 2 - - uid: 800 + parent: 1 + - uid: 251 components: - type: Transform pos: -2.5,-3.5 - parent: 2 - - uid: 801 + parent: 1 + - uid: 252 components: - type: Transform pos: -2.5,-4.5 - parent: 2 - - uid: 802 + parent: 1 + - uid: 253 components: - type: Transform pos: -3.5,-4.5 - parent: 2 - - uid: 803 + parent: 1 + - uid: 254 components: - type: Transform pos: -4.5,-4.5 - parent: 2 - - uid: 804 + parent: 1 + - uid: 255 components: - type: Transform pos: -4.5,-5.5 - parent: 2 - - uid: 805 + parent: 1 + - uid: 256 components: - type: Transform pos: -5.5,-5.5 - parent: 2 - - uid: 806 + parent: 1 + - uid: 257 components: - type: Transform pos: -6.5,-5.5 - parent: 2 - - uid: 807 + parent: 1 + - uid: 258 components: - type: Transform pos: -7.5,-5.5 - parent: 2 - - uid: 808 + parent: 1 + - uid: 259 components: - type: Transform pos: -4.5,-3.5 - parent: 2 - - uid: 809 + parent: 1 + - uid: 260 components: - type: Transform pos: -5.5,-3.5 - parent: 2 - - uid: 810 + parent: 1 + - uid: 261 components: - type: Transform pos: -6.5,-3.5 - parent: 2 - - uid: 811 + parent: 1 + - uid: 262 components: - type: Transform pos: -1.5,-4.5 - parent: 2 - - uid: 812 + parent: 1 + - uid: 263 components: - type: Transform pos: -0.5,-4.5 - parent: 2 - - uid: 813 + parent: 1 + - uid: 264 components: - type: Transform pos: 0.5,-4.5 - parent: 2 - - uid: 814 + parent: 1 + - uid: 265 components: - type: Transform pos: 1.5,-4.5 - parent: 2 - - uid: 815 + parent: 1 + - uid: 266 components: - type: Transform pos: 2.5,-4.5 - parent: 2 - - uid: 816 + parent: 1 + - uid: 267 components: - type: Transform pos: 3.5,-4.5 - parent: 2 - - uid: 817 + parent: 1 + - uid: 268 components: - type: Transform pos: 4.5,-4.5 - parent: 2 - - uid: 818 + parent: 1 + - uid: 269 components: - type: Transform pos: 5.5,-4.5 - parent: 2 - - uid: 819 + parent: 1 + - uid: 270 components: - type: Transform pos: 5.5,-5.5 - parent: 2 - - uid: 820 + parent: 1 + - uid: 271 components: - type: Transform pos: 6.5,-5.5 - parent: 2 - - uid: 821 + parent: 1 + - uid: 272 components: - type: Transform pos: 7.5,-5.5 - parent: 2 - - uid: 822 + parent: 1 + - uid: 273 components: - type: Transform pos: 8.5,-5.5 - parent: 2 - - uid: 823 + parent: 1 + - uid: 274 components: - type: Transform pos: 5.5,-3.5 - parent: 2 - - uid: 824 + parent: 1 + - uid: 275 components: - type: Transform pos: 6.5,-3.5 - parent: 2 - - uid: 825 + parent: 1 + - uid: 276 components: - type: Transform pos: 7.5,-3.5 - parent: 2 - - uid: 826 + parent: 1 + - uid: 277 components: - type: Transform pos: 5.5,-2.5 - parent: 2 - - uid: 827 + parent: 1 + - uid: 278 components: - type: Transform pos: 5.5,-1.5 - parent: 2 - - uid: 828 + parent: 1 + - uid: 279 components: - type: Transform pos: 5.5,-0.5 - parent: 2 - - uid: 829 + parent: 1 + - uid: 280 components: - type: Transform pos: 6.5,-0.5 - parent: 2 - - uid: 830 + parent: 1 + - uid: 281 components: - type: Transform pos: 7.5,-0.5 - parent: 2 - - uid: 831 + parent: 1 + - uid: 282 components: - type: Transform pos: 7.5,0.5 - parent: 2 - - uid: 832 + parent: 1 + - uid: 283 components: - type: Transform pos: -4.5,-2.5 - parent: 2 - - uid: 833 + parent: 1 + - uid: 284 components: - type: Transform pos: -4.5,-1.5 - parent: 2 - - uid: 834 + parent: 1 + - uid: 285 components: - type: Transform pos: -4.5,-0.5 - parent: 2 - - uid: 835 + parent: 1 + - uid: 286 components: - type: Transform pos: -5.5,-0.5 - parent: 2 - - uid: 836 + parent: 1 + - uid: 287 components: - type: Transform pos: -6.5,-0.5 - parent: 2 - - uid: 837 + parent: 1 + - uid: 288 components: - type: Transform pos: -6.5,0.5 - parent: 2 - - uid: 838 + parent: 1 + - uid: 289 components: - type: Transform pos: 2.5,1.5 - parent: 2 - - uid: 839 + parent: 1 + - uid: 290 components: - type: Transform pos: 2.5,0.5 - parent: 2 - - uid: 840 + parent: 1 + - uid: 291 components: - type: Transform pos: 2.5,-0.5 - parent: 2 - - uid: 841 + parent: 1 + - uid: 292 components: - type: Transform pos: 2.5,-1.5 - parent: 2 - - uid: 842 + parent: 1 + - uid: 293 components: - type: Transform pos: 1.5,-1.5 - parent: 2 - - uid: 843 + parent: 1 + - uid: 294 components: - type: Transform pos: 0.5,-1.5 - parent: 2 - - uid: 844 + parent: 1 + - uid: 295 components: - type: Transform pos: -0.5,-1.5 - parent: 2 - - uid: 845 + parent: 1 + - uid: 296 components: - type: Transform pos: -1.5,-1.5 - parent: 2 - - uid: 846 + parent: 1 + - uid: 297 components: - type: Transform pos: 0.5,-0.5 - parent: 2 - - uid: 847 + parent: 1 + - uid: 298 components: - type: Transform pos: 0.5,0.5 - parent: 2 - - uid: 848 + parent: 1 + - uid: 299 components: - type: Transform pos: 0.5,1.5 - parent: 2 - - uid: 849 + parent: 1 + - uid: 300 components: - type: Transform pos: -0.5,1.5 - parent: 2 - - uid: 850 + parent: 1 + - uid: 301 components: - type: Transform pos: 1.5,1.5 - parent: 2 - - uid: 851 + parent: 1 + - uid: 302 components: - type: Transform pos: -1.5,0.5 - parent: 2 - - uid: 852 + parent: 1 + - uid: 303 components: - type: Transform pos: -1.5,-0.5 - parent: 2 - - uid: 853 + parent: 1 + - uid: 304 components: - type: Transform pos: -1.5,10.5 - parent: 2 - - uid: 854 + parent: 1 + - uid: 305 components: - type: Transform pos: 5.5,0.5 - parent: 2 - - uid: 855 + parent: 1 + - uid: 306 components: - type: Transform pos: -4.5,0.5 - parent: 2 - - uid: 856 + parent: 1 + - uid: 307 components: - type: Transform pos: -3.5,10.5 - parent: 2 - - uid: 857 + parent: 1 + - uid: 308 components: - type: Transform pos: -3.5,9.5 - parent: 2 - - uid: 858 + parent: 1 + - uid: 309 components: - type: Transform pos: -3.5,8.5 - parent: 2 - - uid: 859 + parent: 1 + - uid: 310 components: - type: Transform pos: -3.5,7.5 - parent: 2 - - uid: 860 + parent: 1 + - uid: 311 components: - type: Transform pos: -4.5,8.5 - parent: 2 - - uid: 861 + parent: 1 + - uid: 312 components: - type: Transform pos: -2.5,8.5 - parent: 2 - - uid: 862 + parent: 1 + - uid: 313 components: - type: Transform pos: -2.5,10.5 - parent: 2 - - uid: 863 + parent: 1 + - uid: 314 components: - type: Transform pos: -2.5,11.5 - parent: 2 - - uid: 864 + parent: 1 + - uid: 315 components: - type: Transform pos: -2.5,12.5 - parent: 2 - - uid: 865 + parent: 1 + - uid: 316 components: - type: Transform pos: -2.5,13.5 - parent: 2 - - uid: 866 + parent: 1 + - uid: 317 components: - type: Transform pos: -4.5,7.5 - parent: 2 - - uid: 867 + parent: 1 + - uid: 318 components: - type: Transform pos: -5.5,7.5 - parent: 2 - - uid: 868 + parent: 1 + - uid: 319 components: - type: Transform pos: -6.5,7.5 - parent: 2 - - uid: 869 + parent: 1 + - uid: 320 components: - type: Transform pos: 4.5,10.5 - parent: 2 - - uid: 870 + parent: 1 + - uid: 321 components: - type: Transform pos: 4.5,9.5 - parent: 2 - - uid: 871 + parent: 1 + - uid: 322 components: - type: Transform pos: 4.5,8.5 - parent: 2 - - uid: 872 + parent: 1 + - uid: 323 components: - type: Transform pos: 4.5,7.5 - parent: 2 - - uid: 873 + parent: 1 + - uid: 324 components: - type: Transform pos: 3.5,7.5 - parent: 2 - - uid: 874 + parent: 1 + - uid: 325 components: - type: Transform pos: 5.5,8.5 - parent: 2 - - uid: 875 + parent: 1 + - uid: 326 components: - type: Transform pos: 6.5,8.5 - parent: 2 - - uid: 876 + parent: 1 + - uid: 327 components: - type: Transform pos: 6.5,7.5 - parent: 2 - - uid: 877 + parent: 1 + - uid: 328 components: - type: Transform pos: 7.5,7.5 - parent: 2 - - uid: 878 + parent: 1 + - uid: 329 components: - type: Transform pos: 3.5,11.5 - parent: 2 - - uid: 879 + parent: 1 + - uid: 330 components: - type: Transform pos: 3.5,12.5 - parent: 2 - - uid: 880 + parent: 1 + - uid: 331 components: - type: Transform pos: 3.5,13.5 - parent: 2 - - uid: 881 + parent: 1 + - uid: 332 components: - type: Transform pos: 4.5,11.5 - parent: 2 - - uid: 882 + parent: 1 + - uid: 333 components: - type: Transform pos: -3.5,11.5 - parent: 2 - - uid: 883 + parent: 1 + - uid: 334 components: - type: Transform pos: -6.5,5.5 - parent: 2 - - uid: 884 + parent: 1 + - uid: 335 components: - type: Transform pos: -5.5,5.5 - parent: 2 - - uid: 885 + parent: 1 + - uid: 336 components: - type: Transform pos: -4.5,5.5 - parent: 2 - - uid: 886 + parent: 1 + - uid: 337 components: - type: Transform pos: -3.5,5.5 - parent: 2 - - uid: 887 + parent: 1 + - uid: 338 components: - type: Transform pos: -2.5,5.5 - parent: 2 - - uid: 888 + parent: 1 + - uid: 339 components: - type: Transform pos: -1.5,5.5 - parent: 2 - - uid: 889 + parent: 1 + - uid: 340 components: - type: Transform pos: -0.5,5.5 - parent: 2 - - uid: 890 + parent: 1 + - uid: 341 components: - type: Transform pos: 0.5,5.5 - parent: 2 - - uid: 891 + parent: 1 + - uid: 342 components: - type: Transform pos: 1.5,5.5 - parent: 2 - - uid: 892 + parent: 1 + - uid: 343 components: - type: Transform pos: 2.5,5.5 - parent: 2 - - uid: 893 + parent: 1 + - uid: 344 components: - type: Transform pos: 3.5,5.5 - parent: 2 - - uid: 894 + parent: 1 + - uid: 345 components: - type: Transform pos: 4.5,5.5 - parent: 2 - - uid: 895 + parent: 1 + - uid: 346 components: - type: Transform pos: 5.5,5.5 - parent: 2 - - uid: 896 + parent: 1 + - uid: 347 components: - type: Transform pos: 6.5,5.5 - parent: 2 - - uid: 897 + parent: 1 + - uid: 348 components: - type: Transform pos: 6.5,4.5 - parent: 2 - - uid: 898 + parent: 1 + - uid: 349 components: - type: Transform pos: 6.5,3.5 - parent: 2 - - uid: 899 + parent: 1 + - uid: 350 components: - type: Transform pos: 6.5,2.5 - parent: 2 - - uid: 900 + parent: 1 + - uid: 351 components: - type: Transform pos: 5.5,4.5 - parent: 2 - - uid: 901 + parent: 1 + - uid: 352 components: - type: Transform pos: 5.5,3.5 - parent: 2 - - uid: 902 + parent: 1 + - uid: 353 components: - type: Transform pos: 5.5,2.5 - parent: 2 - - uid: 903 + parent: 1 + - uid: 354 components: - type: Transform pos: 5.5,2.5 - parent: 2 - - uid: 904 + parent: 1 + - uid: 355 components: - type: Transform pos: 4.5,2.5 - parent: 2 - - uid: 905 + parent: 1 + - uid: 356 components: - type: Transform pos: 3.5,2.5 - parent: 2 - - uid: 906 + parent: 1 + - uid: 357 components: - type: Transform pos: 3.5,3.5 - parent: 2 - - uid: 907 + parent: 1 + - uid: 358 components: - type: Transform pos: 2.5,3.5 - parent: 2 - - uid: 908 + parent: 1 + - uid: 359 components: - type: Transform pos: 1.5,3.5 - parent: 2 - - uid: 909 + parent: 1 + - uid: 360 components: - type: Transform pos: 0.5,3.5 - parent: 2 - - uid: 910 + parent: 1 + - uid: 361 components: - type: Transform pos: -0.5,3.5 - parent: 2 - - uid: 911 + parent: 1 + - uid: 362 components: - type: Transform pos: -1.5,3.5 - parent: 2 - - uid: 912 + parent: 1 + - uid: 363 components: - type: Transform pos: -2.5,3.5 - parent: 2 - - uid: 913 + parent: 1 + - uid: 364 components: - type: Transform pos: -3.5,3.5 - parent: 2 - - uid: 914 + parent: 1 + - uid: 365 components: - type: Transform pos: -4.5,3.5 - parent: 2 - - uid: 915 + parent: 1 + - uid: 366 components: - type: Transform pos: -5.5,3.5 - parent: 2 - - uid: 916 + parent: 1 + - uid: 367 components: - type: Transform pos: -5.5,2.5 - parent: 2 - - uid: 917 + parent: 1 + - uid: 368 components: - type: Transform pos: -5.5,4.5 - parent: 2 - - uid: 918 + parent: 1 + - uid: 369 components: - type: Transform pos: 0.5,4.5 - parent: 2 - - uid: 919 + parent: 1 + - uid: 370 components: - type: Transform pos: 0.5,6.5 - parent: 2 - - uid: 920 + parent: 1 + - uid: 371 components: - type: Transform pos: 0.5,7.5 - parent: 2 - - uid: 921 + parent: 1 + - uid: 372 components: - type: Transform pos: 0.5,8.5 - parent: 2 - - uid: 922 + parent: 1 + - uid: 373 components: - type: Transform pos: 1.5,8.5 - parent: 2 - - uid: 923 + parent: 1 + - uid: 374 components: - type: Transform pos: -0.5,8.5 - parent: 2 - - uid: 928 + parent: 1 + - uid: 375 components: - type: Transform pos: 1.5,10.5 - parent: 2 - - uid: 929 + parent: 1 + - uid: 376 components: - type: Transform pos: 2.5,10.5 - parent: 2 - - uid: 943 + parent: 1 + - uid: 377 components: - type: Transform pos: 2.5,11.5 - parent: 2 - - uid: 945 + parent: 1 + - uid: 378 components: - type: Transform pos: -1.5,11.5 - parent: 2 - - uid: 977 + parent: 1 + - uid: 379 components: - type: Transform pos: -5.5,-13.5 - parent: 2 - - uid: 978 + parent: 1 + - uid: 380 components: - type: Transform pos: -6.5,-13.5 - parent: 2 - - uid: 979 + parent: 1 + - uid: 381 components: - type: Transform pos: 6.5,-13.5 - parent: 2 - - uid: 980 + parent: 1 + - uid: 382 components: - type: Transform pos: 7.5,-13.5 - parent: 2 - - uid: 981 + parent: 1 + - uid: 383 components: - type: Transform pos: 6.5,9.5 - parent: 2 - - uid: 982 + parent: 1 + - uid: 384 components: - type: Transform pos: 6.5,10.5 - parent: 2 - - uid: 984 + parent: 1 + - uid: 385 components: - type: Transform pos: -5.5,8.5 - parent: 2 - - uid: 985 + parent: 1 + - uid: 386 components: - type: Transform pos: -5.5,9.5 - parent: 2 - - uid: 986 + parent: 1 + - uid: 387 components: - type: Transform pos: -5.5,10.5 - parent: 2 -- proto: CableHV - entities: - - uid: 96 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 +- proto: CableHV + entities: + - uid: 398 components: - type: Transform pos: -1.5,-11.5 - parent: 2 - - uid: 136 + parent: 1 + - uid: 399 components: - type: Transform pos: -1.5,-10.5 - parent: 2 - - uid: 292 + parent: 1 + - uid: 400 components: - type: Transform pos: -1.5,-12.5 - parent: 2 - - uid: 298 + parent: 1 + - uid: 401 components: - type: Transform pos: -1.5,-14.5 - parent: 2 - - uid: 304 + parent: 1 + - uid: 402 components: - type: Transform pos: -0.5,-14.5 - parent: 2 - - uid: 305 + parent: 1 + - uid: 403 components: - type: Transform pos: -1.5,-13.5 - parent: 2 - - uid: 320 + parent: 1 + - uid: 404 components: - type: Transform pos: 0.5,-14.5 - parent: 2 - - uid: 322 + parent: 1 + - uid: 405 components: - type: Transform pos: 0.5,-15.5 - parent: 2 - - uid: 369 + parent: 1 + - uid: 406 components: - type: Transform pos: -0.5,-10.5 - parent: 2 - - uid: 616 + parent: 1 + - uid: 407 components: - type: Transform pos: 0.5,-16.5 - parent: 2 - - uid: 617 + parent: 1 + - uid: 408 components: - type: Transform pos: 1.5,-16.5 - parent: 2 - - uid: 618 + parent: 1 + - uid: 409 components: - type: Transform pos: 2.5,-16.5 - parent: 2 - - uid: 619 + parent: 1 + - uid: 410 components: - type: Transform pos: 3.5,-16.5 - parent: 2 - - uid: 620 + parent: 1 + - uid: 411 components: - type: Transform pos: 4.5,-16.5 - parent: 2 - - uid: 621 + parent: 1 + - uid: 412 components: - type: Transform pos: -0.5,-16.5 - parent: 2 - - uid: 622 + parent: 1 + - uid: 413 components: - type: Transform pos: -1.5,-16.5 - parent: 2 - - uid: 623 + parent: 1 + - uid: 414 components: - type: Transform pos: -2.5,-16.5 - parent: 2 - - uid: 624 + parent: 1 + - uid: 415 components: - type: Transform pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: CableMV entities: - - uid: 102 + - uid: 416 components: - type: Transform pos: -3.5,-15.5 - parent: 2 - - uid: 283 + parent: 1 + - uid: 417 components: - type: Transform pos: 0.5,-14.5 - parent: 2 - - uid: 299 + parent: 1 + - uid: 418 components: - type: Transform pos: -0.5,-15.5 - parent: 2 - - uid: 312 + parent: 1 + - uid: 419 components: - type: Transform pos: 3.5,0.5 - parent: 2 - - uid: 433 + parent: 1 + - uid: 420 components: - type: Transform pos: -1.5,-15.5 - parent: 2 - - uid: 626 + parent: 1 + - uid: 421 components: - type: Transform pos: 0.5,-13.5 - parent: 2 - - uid: 627 + parent: 1 + - uid: 422 components: - type: Transform pos: 1.5,-14.5 - parent: 2 - - uid: 628 + parent: 1 + - uid: 423 components: - type: Transform pos: 2.5,-14.5 - parent: 2 - - uid: 629 + parent: 1 + - uid: 424 components: - type: Transform pos: 3.5,-14.5 - parent: 2 - - uid: 630 + parent: 1 + - uid: 425 components: - type: Transform pos: 4.5,-14.5 - parent: 2 - - uid: 631 + parent: 1 + - uid: 426 components: - type: Transform pos: 4.5,-13.5 - parent: 2 - - uid: 632 + parent: 1 + - uid: 427 components: - type: Transform pos: 4.5,-12.5 - parent: 2 - - uid: 633 + parent: 1 + - uid: 428 components: - type: Transform pos: 4.5,-11.5 - parent: 2 - - uid: 634 + parent: 1 + - uid: 429 components: - type: Transform pos: 4.5,-10.5 - parent: 2 - - uid: 635 + parent: 1 + - uid: 430 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 636 + parent: 1 + - uid: 431 components: - type: Transform pos: 5.5,-9.5 - parent: 2 - - uid: 637 + parent: 1 + - uid: 432 components: - type: Transform pos: 6.5,-9.5 - parent: 2 - - uid: 638 + parent: 1 + - uid: 433 components: - type: Transform pos: 7.5,-9.5 - parent: 2 - - uid: 639 + parent: 1 + - uid: 434 components: - type: Transform pos: 4.5,-8.5 - parent: 2 - - uid: 640 + parent: 1 + - uid: 435 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 641 + parent: 1 + - uid: 436 components: - type: Transform pos: 4.5,-6.5 - parent: 2 - - uid: 642 + parent: 1 + - uid: 437 components: - type: Transform pos: 4.5,-5.5 - parent: 2 - - uid: 643 + parent: 1 + - uid: 438 components: - type: Transform pos: 4.5,-4.5 - parent: 2 - - uid: 644 + parent: 1 + - uid: 439 components: - type: Transform pos: 3.5,-4.5 - parent: 2 - - uid: 645 + parent: 1 + - uid: 440 components: - type: Transform pos: 2.5,-4.5 - parent: 2 - - uid: 646 + parent: 1 + - uid: 441 components: - type: Transform pos: 1.5,-4.5 - parent: 2 - - uid: 647 + parent: 1 + - uid: 442 components: - type: Transform pos: 0.5,-4.5 - parent: 2 - - uid: 648 + parent: 1 + - uid: 443 components: - type: Transform pos: -0.5,-4.5 - parent: 2 - - uid: 649 + parent: 1 + - uid: 444 components: - type: Transform pos: -1.5,-4.5 - parent: 2 - - uid: 650 + parent: 1 + - uid: 445 components: - type: Transform pos: -2.5,-4.5 - parent: 2 - - uid: 651 + parent: 1 + - uid: 446 components: - type: Transform pos: -3.5,-4.5 - parent: 2 - - uid: 652 + parent: 1 + - uid: 447 components: - type: Transform pos: -3.5,-5.5 - parent: 2 - - uid: 653 + parent: 1 + - uid: 448 components: - type: Transform pos: -3.5,-6.5 - parent: 2 - - uid: 654 + parent: 1 + - uid: 449 components: - type: Transform pos: -3.5,-7.5 - parent: 2 - - uid: 655 + parent: 1 + - uid: 450 components: - type: Transform pos: -3.5,-8.5 - parent: 2 - - uid: 656 + parent: 1 + - uid: 451 components: - type: Transform pos: -3.5,-9.5 - parent: 2 - - uid: 657 + parent: 1 + - uid: 452 components: - type: Transform pos: -3.5,-10.5 - parent: 2 - - uid: 658 + parent: 1 + - uid: 453 components: - type: Transform pos: -3.5,-11.5 - parent: 2 - - uid: 659 + parent: 1 + - uid: 454 components: - type: Transform pos: -3.5,-12.5 - parent: 2 - - uid: 660 + parent: 1 + - uid: 455 components: - type: Transform pos: -3.5,-13.5 - parent: 2 - - uid: 661 + parent: 1 + - uid: 456 components: - type: Transform pos: -3.5,-14.5 - parent: 2 - - uid: 662 + parent: 1 + - uid: 457 components: - type: Transform pos: -2.5,-14.5 - parent: 2 - - uid: 663 + parent: 1 + - uid: 458 components: - type: Transform pos: -1.5,-14.5 - parent: 2 - - uid: 664 + parent: 1 + - uid: 459 components: - type: Transform pos: -0.5,-14.5 - parent: 2 - - uid: 665 + parent: 1 + - uid: 460 components: - type: Transform pos: -4.5,-8.5 - parent: 2 - - uid: 666 + parent: 1 + - uid: 461 components: - type: Transform pos: -2.5,-3.5 - parent: 2 - - uid: 667 + parent: 1 + - uid: 462 components: - type: Transform pos: -2.5,-2.5 - parent: 2 - - uid: 668 + parent: 1 + - uid: 463 components: - type: Transform pos: 2.5,-3.5 - parent: 2 - - uid: 669 + parent: 1 + - uid: 464 components: - type: Transform pos: 2.5,-2.5 - parent: 2 - - uid: 670 + parent: 1 + - uid: 465 components: - type: Transform pos: 2.5,-1.5 - parent: 2 - - uid: 671 + parent: 1 + - uid: 466 components: - type: Transform pos: 2.5,-0.5 - parent: 2 - - uid: 672 + parent: 1 + - uid: 467 components: - type: Transform pos: 2.5,0.5 - parent: 2 - - uid: 674 + parent: 1 + - uid: 468 components: - type: Transform pos: 5.5,-4.5 - parent: 2 - - uid: 675 + parent: 1 + - uid: 469 components: - type: Transform pos: 5.5,-3.5 - parent: 2 - - uid: 676 + parent: 1 + - uid: 470 components: - type: Transform pos: 5.5,-2.5 - parent: 2 - - uid: 677 + parent: 1 + - uid: 471 components: - type: Transform pos: 5.5,-1.5 - parent: 2 - - uid: 678 + parent: 1 + - uid: 472 components: - type: Transform pos: 5.5,-0.5 - parent: 2 - - uid: 679 + parent: 1 + - uid: 473 components: - type: Transform pos: 5.5,0.5 - parent: 2 - - uid: 680 + parent: 1 + - uid: 474 components: - type: Transform pos: 5.5,1.5 - parent: 2 - - uid: 681 + parent: 1 + - uid: 475 components: - type: Transform pos: 5.5,2.5 - parent: 2 - - uid: 682 + parent: 1 + - uid: 476 components: - type: Transform pos: 5.5,3.5 - parent: 2 - - uid: 683 + parent: 1 + - uid: 477 components: - type: Transform pos: 5.5,4.5 - parent: 2 - - uid: 684 + parent: 1 + - uid: 478 components: - type: Transform pos: 5.5,5.5 - parent: 2 - - uid: 685 + parent: 1 + - uid: 479 components: - type: Transform pos: 5.5,6.5 - parent: 2 - - uid: 686 + parent: 1 + - uid: 480 components: - type: Transform pos: 5.5,7.5 - parent: 2 - - uid: 687 + parent: 1 + - uid: 481 components: - type: Transform pos: 5.5,8.5 - parent: 2 - - uid: 688 + parent: 1 + - uid: 482 components: - type: Transform pos: 4.5,8.5 - parent: 2 - - uid: 689 + parent: 1 + - uid: 483 components: - type: Transform pos: 4.5,9.5 - parent: 2 - - uid: 690 + parent: 1 + - uid: 484 components: - type: Transform pos: 4.5,10.5 - parent: 2 - - uid: 691 + parent: 1 + - uid: 485 components: - type: Transform pos: -4.5,-2.5 - parent: 2 - - uid: 692 + parent: 1 + - uid: 486 components: - type: Transform pos: -4.5,-3.5 - parent: 2 - - uid: 693 + parent: 1 + - uid: 487 components: - type: Transform pos: -4.5,-4.5 - parent: 2 - - uid: 694 + parent: 1 + - uid: 488 components: - type: Transform pos: -4.5,-1.5 - parent: 2 - - uid: 695 + parent: 1 + - uid: 489 components: - type: Transform pos: -4.5,-0.5 - parent: 2 - - uid: 696 + parent: 1 + - uid: 490 components: - type: Transform pos: -4.5,0.5 - parent: 2 - - uid: 697 + parent: 1 + - uid: 491 components: - type: Transform pos: -4.5,1.5 - parent: 2 - - uid: 698 + parent: 1 + - uid: 492 components: - type: Transform pos: -4.5,2.5 - parent: 2 - - uid: 699 + parent: 1 + - uid: 493 components: - type: Transform pos: -4.5,3.5 - parent: 2 - - uid: 700 + parent: 1 + - uid: 494 components: - type: Transform pos: -4.5,4.5 - parent: 2 - - uid: 701 + parent: 1 + - uid: 495 components: - type: Transform pos: -4.5,5.5 - parent: 2 - - uid: 702 + parent: 1 + - uid: 496 components: - type: Transform pos: -5.5,5.5 - parent: 2 - - uid: 703 + parent: 1 + - uid: 497 components: - type: Transform pos: -6.5,5.5 - parent: 2 - - uid: 704 + parent: 1 + - uid: 498 components: - type: Transform pos: -3.5,5.5 - parent: 2 - - uid: 705 + parent: 1 + - uid: 499 components: - type: Transform pos: -3.5,6.5 - parent: 2 - - uid: 706 + parent: 1 + - uid: 500 components: - type: Transform pos: -3.5,7.5 - parent: 2 - - uid: 707 + parent: 1 + - uid: 501 components: - type: Transform pos: -3.5,8.5 - parent: 2 - - uid: 708 + parent: 1 + - uid: 502 components: - type: Transform pos: -3.5,9.5 - parent: 2 - - uid: 709 + parent: 1 + - uid: 503 components: - type: Transform pos: -3.5,10.5 - parent: 2 - - uid: 972 + parent: 1 + - uid: 504 components: - type: Transform pos: 2.5,-5.5 - parent: 2 - - uid: 973 + parent: 1 + - uid: 505 components: - type: Transform pos: 2.5,-6.5 - parent: 2 - - uid: 974 + parent: 1 + - uid: 506 components: - type: Transform pos: 2.5,-7.5 - parent: 2 - - uid: 975 + parent: 1 + - uid: 507 components: - type: Transform pos: 2.5,-8.5 - parent: 2 - - uid: 976 + parent: 1 + - uid: 508 components: - type: Transform pos: 3.5,-8.5 - parent: 2 - - uid: 1025 + parent: 1 + - uid: 509 components: - type: Transform pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: CableTerminal entities: - - uid: 226 + - uid: 510 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 - parent: 2 + parent: 1 - proto: Catwalk entities: - - uid: 30 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-5.5 - parent: 2 - - uid: 31 + parent: 1 + - uid: 512 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 2 - - uid: 32 + parent: 1 + - uid: 513 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 - parent: 2 - - uid: 33 + parent: 1 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 - parent: 2 - - uid: 34 + parent: 1 + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 - parent: 2 - - uid: 35 + parent: 1 + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 - parent: 2 - - uid: 37 + parent: 1 + - uid: 517 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 - parent: 2 - - uid: 39 + parent: 1 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 - parent: 2 - - uid: 40 + parent: 1 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 - parent: 2 - - uid: 41 + parent: 1 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 - parent: 2 - - uid: 46 + parent: 1 + - uid: 521 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 2 - - uid: 49 + parent: 1 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 - parent: 2 - - uid: 54 + parent: 1 + - uid: 523 components: - type: Transform pos: -6.5,0.5 - parent: 2 - - uid: 69 + parent: 1 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-4.5 - parent: 2 - - uid: 94 + parent: 1 + - uid: 525 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 - parent: 2 - - uid: 170 + parent: 1 + - uid: 526 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,11.5 - parent: 2 - - uid: 186 + parent: 1 + - uid: 527 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 - parent: 2 - - uid: 199 + parent: 1 + - uid: 528 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 - parent: 2 - - uid: 266 + parent: 1 + - uid: 529 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 - parent: 2 - - uid: 285 + parent: 1 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 - parent: 2 - - uid: 300 + parent: 1 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 2 - - uid: 310 + parent: 1 + - uid: 532 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 2 - - uid: 319 + parent: 1 + - uid: 533 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-9.5 - parent: 2 - - uid: 323 + parent: 1 + - uid: 534 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 - parent: 2 - - uid: 346 + parent: 1 + - uid: 535 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-12.5 - parent: 2 - - uid: 348 + parent: 1 + - uid: 536 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-11.5 - parent: 2 - - uid: 349 + parent: 1 + - uid: 537 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 - parent: 2 - - uid: 353 + parent: 1 + - uid: 538 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-3.5 - parent: 2 - - uid: 366 + parent: 1 + - uid: 539 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-13.5 - parent: 2 - - uid: 373 + parent: 1 + - uid: 540 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 2 - - uid: 375 + parent: 1 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 - parent: 2 - - uid: 381 + parent: 1 + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 - parent: 2 - - uid: 382 + parent: 1 + - uid: 543 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 - parent: 2 - - uid: 385 + parent: 1 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 2 - - uid: 386 + parent: 1 + - uid: 545 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 - parent: 2 - - uid: 393 + parent: 1 + - uid: 546 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 - parent: 2 - - uid: 436 + parent: 1 + - uid: 547 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 - parent: 2 - - uid: 437 + parent: 1 + - uid: 548 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-15.5 - parent: 2 - - uid: 438 + parent: 1 + - uid: 549 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-15.5 - parent: 2 - - uid: 439 + parent: 1 + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-16.5 - parent: 2 - - uid: 441 + parent: 1 + - uid: 551 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 - parent: 2 - - uid: 442 + parent: 1 + - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-15.5 - parent: 2 - - uid: 446 + parent: 1 + - uid: 553 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-14.5 - parent: 2 - - uid: 463 + parent: 1 + - uid: 554 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-17.5 - parent: 2 - - uid: 465 + parent: 1 + - uid: 555 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-17.5 - parent: 2 - - uid: 486 + parent: 1 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-17.5 - parent: 2 - - uid: 722 + parent: 1 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 2 - - uid: 750 + parent: 1 + - uid: 558 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 751 + parent: 1 + - uid: 559 components: - type: Transform pos: 4.5,-8.5 - parent: 2 - - uid: 752 + parent: 1 + - uid: 560 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 753 + parent: 1 + - uid: 561 components: - type: Transform pos: 4.5,-10.5 - parent: 2 - - uid: 754 + parent: 1 + - uid: 562 components: - type: Transform pos: 4.5,-11.5 - parent: 2 - - uid: 1002 + parent: 1 + - uid: 563 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,10.5 - parent: 2 - - uid: 1006 + parent: 1 + - uid: 564 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 2 - - uid: 1016 + parent: 1 + - uid: 565 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-4.5 - parent: 2 - - uid: 1019 + parent: 1 + - uid: 566 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 - parent: 2 - - uid: 1020 + parent: 1 + - uid: 567 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 - parent: 2 - - uid: 1021 + parent: 1 + - uid: 568 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 - parent: 2 - - uid: 1023 + parent: 1 + - uid: 569 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 2 - - uid: 1024 + parent: 1 + - uid: 570 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 - parent: 2 - - uid: 1027 + parent: 1 + - uid: 571 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 - parent: 2 - - uid: 1040 + parent: 1 + - uid: 572 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 - parent: 2 - - uid: 1042 + parent: 1 + - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,4.5 - parent: 2 - - uid: 1043 + parent: 1 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 2 - - uid: 1044 + parent: 1 + - uid: 575 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 - parent: 2 - - uid: 1045 + parent: 1 + - uid: 576 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 - parent: 2 - - uid: 1046 + parent: 1 + - uid: 577 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 - parent: 2 - - uid: 1049 + parent: 1 + - uid: 578 components: - type: Transform pos: -7.5,1.5 - parent: 2 - - uid: 1050 + parent: 1 + - uid: 579 components: - type: Transform pos: -4.5,12.5 - parent: 2 - - uid: 1051 + parent: 1 + - uid: 580 components: - type: Transform pos: 8.5,1.5 - parent: 2 - - uid: 1052 + parent: 1 + - uid: 581 components: - type: Transform pos: 7.5,0.5 - parent: 2 - - uid: 1054 + parent: 1 + - uid: 582 components: - type: Transform pos: 5.5,13.5 - parent: 2 - - uid: 1056 + parent: 1 + - uid: 583 components: - type: Transform pos: 5.5,12.5 - parent: 2 - - uid: 1058 + parent: 1 + - uid: 584 components: - type: Transform pos: -4.5,13.5 - parent: 2 - - uid: 1059 + parent: 1 + - uid: 585 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 - parent: 2 - - uid: 1060 + parent: 1 + - uid: 586 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 - parent: 2 - - uid: 1061 + parent: 1 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 - parent: 2 - - uid: 1062 + parent: 1 + - uid: 588 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 - parent: 2 - - uid: 1063 + parent: 1 + - uid: 589 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 - parent: 2 - - uid: 1064 + parent: 1 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 - parent: 2 - - uid: 1065 + parent: 1 + - uid: 591 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 - parent: 2 - - uid: 1066 + parent: 1 + - uid: 592 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 - parent: 2 - - uid: 1069 + parent: 1 + - uid: 593 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 - parent: 2 - - uid: 1070 + parent: 1 + - uid: 594 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 - parent: 2 - - uid: 1071 + parent: 1 + - uid: 595 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,4.5 - parent: 2 - - uid: 1072 + parent: 1 + - uid: 596 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,4.5 - parent: 2 - - uid: 1073 + parent: 1 + - uid: 597 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,4.5 - parent: 2 - - uid: 1074 + parent: 1 + - uid: 598 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 - parent: 2 - - uid: 1075 + parent: 1 + - uid: 599 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,5.5 - parent: 2 - - uid: 1076 + parent: 1 + - uid: 600 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 - parent: 2 - - uid: 1077 + parent: 1 + - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 - parent: 2 - - uid: 1089 + parent: 1 + - uid: 602 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 - parent: 2 - - uid: 1090 + parent: 1 + - uid: 603 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 - parent: 2 - - uid: 1091 + parent: 1 + - uid: 604 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 - parent: 2 - - uid: 1092 + parent: 1 + - uid: 605 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 - parent: 2 - - uid: 1104 + parent: 1 + - uid: 606 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 - parent: 2 - - uid: 1105 + parent: 1 + - uid: 607 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 - parent: 2 - - uid: 1106 + parent: 1 + - uid: 608 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 - parent: 2 - - uid: 1107 + parent: 1 + - uid: 609 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 - parent: 2 - - uid: 1111 + parent: 1 + - uid: 610 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 - parent: 2 - - uid: 1112 + parent: 1 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-11.5 - parent: 2 - - uid: 1113 + parent: 1 + - uid: 612 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-11.5 - parent: 2 - - uid: 1114 + parent: 1 + - uid: 613 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-10.5 - parent: 2 - - uid: 1115 + parent: 1 + - uid: 614 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 - parent: 2 - - uid: 1116 + parent: 1 + - uid: 615 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 - parent: 2 - - uid: 1117 + parent: 1 + - uid: 616 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 - parent: 2 - - uid: 1118 + parent: 1 + - uid: 617 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-14.5 - parent: 2 - - uid: 1119 + parent: 1 + - uid: 618 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-15.5 - parent: 2 - - uid: 1120 + parent: 1 + - uid: 619 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 - parent: 2 - - uid: 1121 + parent: 1 + - uid: 620 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-13.5 - parent: 2 + parent: 1 - proto: ChairPilotSeat entities: - - uid: 1108 + - uid: 621 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 2 - - uid: 1109 + parent: 1 + - uid: 622 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 2 + parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 390 + - uid: 623 components: - type: Transform pos: 1.5,-3.5 - parent: 2 + parent: 1 - proto: ClosetFireFilled entities: - - uid: 392 + - uid: 624 components: - type: Transform pos: 3.5,-3.5 - parent: 2 + parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 450 + - uid: 46 components: - type: Transform - parent: 447 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 456 + - uid: 53 components: - type: Transform - parent: 454 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 448 + - uid: 47 components: - type: Transform - parent: 447 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 457 + - uid: 54 components: - type: Transform - parent: 454 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 451 + - uid: 48 components: - type: Transform - parent: 447 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 459 + - uid: 55 components: - type: Transform - parent: 454 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 449 + - uid: 49 components: - type: Transform - parent: 447 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 460 + - uid: 56 components: - type: Transform - parent: 454 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 1098 + - uid: 625 components: - type: Transform pos: 0.5,0.5 - parent: 2 + parent: 1 - proto: ComputerTabletopAlert entities: - - uid: 1103 + - uid: 626 components: - type: Transform pos: 2.5,1.5 - parent: 2 + parent: 1 - proto: ComputerTabletopComms entities: - - uid: 1101 + - uid: 627 components: - type: Transform pos: -1.5,1.5 - parent: 2 + parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 276 + - uid: 628 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 - parent: 2 + parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 1099 + - uid: 629 components: - type: Transform pos: -0.5,1.5 - parent: 2 + parent: 1 - type: ContainerContainer containers: board: !type:Container @@ -4412,10 +4815,12 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 1082: - - Group1: Toggle - 1081: - - Group1: Toggle + 3: + - - Group1 + - Toggle + 2: + - - Group1 + - Toggle - type: NamedModules buttonNames: - Fire Slugthrowers @@ -4425,52 +4830,52 @@ entities: - Module E - proto: ComputerTabletopTargeting entities: - - uid: 1100 + - uid: 630 components: - type: Transform pos: 1.5,1.5 - parent: 2 + parent: 1 - type: TargetingConsole cannonGroups: all: - - 580 - - 715 - - 718 + - 99 + - 100 + - 101 230mm 'Hephaeustus' assault artillery platform: - - 580 - - 715 - - 718 + - 99 + - 100 + - 101 - proto: ComputerTelevision entities: - - uid: 1102 + - uid: 631 components: - type: Transform pos: 0.5,1.5 - parent: 2 + parent: 1 - proto: CrateAssaultMortarAmmo entities: - - uid: 1083 + - uid: 632 components: - type: Transform pos: -1.5,5.5 - parent: 2 - - uid: 1084 + parent: 1 + - uid: 633 components: - type: Transform pos: -1.5,3.5 - parent: 2 - - uid: 1085 + parent: 1 + - uid: 634 components: - type: Transform pos: 2.5,5.5 - parent: 2 + parent: 1 - proto: CrateMaterials entities: - - uid: 429 + - uid: 115 components: - type: Transform pos: -2.5,7.5 - parent: 2 + parent: 1 - type: EntityStorage air: volume: 200 @@ -4495,1706 +4900,1874 @@ entities: showEnts: False occludes: True ents: - - 483 - - 482 - - 484 - - 485 - - 755 - - 990 - - 991 - - 992 - - 431 - - 993 - - 430 - - 994 - - 995 + - 119 + - 118 + - 120 + - 121 + - 122 + - 123 + - 124 + - 125 + - 117 + - 126 + - 116 + - 127 + - 128 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateSlugthrowerAmmo entities: - - uid: 1088 + - uid: 635 components: - type: Transform pos: 2.5,3.5 - parent: 2 + parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 330 + - uid: 636 components: - type: Transform pos: 6.5,-7.5 - parent: 2 - - uid: 331 + parent: 1 + - uid: 637 components: - type: Transform pos: 6.5,-11.5 - parent: 2 + parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 946 + - uid: 638 components: - type: Transform pos: 0.5,-0.5 - parent: 2 + parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 474 + - uid: 639 components: - type: Transform pos: -4.5,-9.5 - parent: 2 + parent: 1 - proto: FaxMachineShip entities: - - uid: 307 + - uid: 640 components: - type: Transform pos: -0.5,-1.5 - parent: 2 + parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 963 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 - parent: 2 + parent: 1 - proto: Firelock entities: - - uid: 241 + - uid: 642 components: - type: Transform pos: 0.5,-2.5 - parent: 2 - - uid: 242 + parent: 1 + - uid: 643 components: - type: Transform pos: 4.5,-6.5 - parent: 2 - - uid: 243 + parent: 1 + - uid: 644 components: - type: Transform pos: -3.5,-6.5 - parent: 2 - - uid: 244 + parent: 1 + - uid: 645 components: - type: Transform pos: -3.5,6.5 - parent: 2 - - uid: 245 + parent: 1 + - uid: 646 components: - type: Transform pos: 4.5,6.5 - parent: 2 - - uid: 246 + parent: 1 + - uid: 647 components: - type: Transform pos: -4.5,1.5 - parent: 2 - - uid: 247 + parent: 1 + - uid: 648 components: - type: Transform pos: -3.5,1.5 - parent: 2 - - uid: 248 + parent: 1 + - uid: 649 components: - type: Transform pos: 5.5,1.5 - parent: 2 - - uid: 249 + parent: 1 + - uid: 650 components: - type: Transform pos: 4.5,1.5 - parent: 2 + parent: 1 - proto: GasMixer entities: - - uid: 279 + - uid: 651 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 - parent: 2 + parent: 1 - proto: GasPassiveVent entities: - - uid: 498 + - uid: 652 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,12.5 - parent: 2 + parent: 1 - proto: GasPipeBend entities: - - uid: 280 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 - parent: 2 - - uid: 499 + parent: 1 + - uid: 654 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-14.5 - parent: 2 - - uid: 501 + parent: 1 + - uid: 655 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-11.5 - parent: 2 - - uid: 504 + parent: 1 + - uid: 656 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 - parent: 2 - - uid: 530 + parent: 1 + - uid: 657 components: - type: Transform pos: 0.5,-6.5 - parent: 2 - - uid: 531 + parent: 1 + - uid: 658 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 - parent: 2 - - uid: 532 + parent: 1 + - uid: 659 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 - parent: 2 - - uid: 533 + parent: 1 + - uid: 660 components: - type: Transform pos: -0.5,-5.5 - parent: 2 - - uid: 535 + parent: 1 + - uid: 661 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-4.5 - parent: 2 - - uid: 552 + parent: 1 + - uid: 662 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 - parent: 2 - - uid: 554 + parent: 1 + - uid: 663 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,3.5 - parent: 2 - - uid: 561 + parent: 1 + - uid: 664 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 - parent: 2 - - uid: 562 + parent: 1 + - uid: 665 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 - parent: 2 - - uid: 565 + parent: 1 + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 - parent: 2 - - uid: 566 + parent: 1 + - uid: 667 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 - parent: 2 - - uid: 571 + parent: 1 + - uid: 668 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,7.5 - parent: 2 - - uid: 573 + parent: 1 + - uid: 669 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 - parent: 2 + parent: 1 - proto: GasPipeStraight entities: - - uid: 1 + - uid: 670 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 - - uid: 56 + parent: 1 + - uid: 671 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-0.5 - parent: 2 - - uid: 252 + parent: 1 + - uid: 672 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,7.5 - parent: 2 - - uid: 502 + parent: 1 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 - parent: 2 - - uid: 503 + parent: 1 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-12.5 - parent: 2 - - uid: 505 + parent: 1 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 - parent: 2 - - uid: 506 + parent: 1 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 - parent: 2 - - uid: 507 + parent: 1 + - uid: 677 components: - type: Transform pos: 4.5,-10.5 - parent: 2 - - uid: 508 + parent: 1 + - uid: 678 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 510 + parent: 1 + - uid: 679 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 511 + parent: 1 + - uid: 680 components: - type: Transform pos: 4.5,-6.5 - parent: 2 - - uid: 512 + parent: 1 + - uid: 681 components: - type: Transform pos: 4.5,-5.5 - parent: 2 - - uid: 516 + parent: 1 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 - parent: 2 - - uid: 517 + parent: 1 + - uid: 683 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 - parent: 2 - - uid: 518 + parent: 1 + - uid: 684 components: - type: Transform pos: 4.5,-3.5 - parent: 2 - - uid: 519 + parent: 1 + - uid: 685 components: - type: Transform pos: 4.5,-2.5 - parent: 2 - - uid: 520 + parent: 1 + - uid: 686 components: - type: Transform pos: 4.5,-1.5 - parent: 2 - - uid: 521 + parent: 1 + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 2 - - uid: 522 + parent: 1 + - uid: 688 components: - type: Transform pos: 4.5,0.5 - parent: 2 - - uid: 523 + parent: 1 + - uid: 689 components: - type: Transform pos: 4.5,1.5 - parent: 2 - - uid: 524 + parent: 1 + - uid: 690 components: - type: Transform pos: 4.5,2.5 - parent: 2 - - uid: 525 + parent: 1 + - uid: 691 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 2 - - uid: 526 + parent: 1 + - uid: 692 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 - parent: 2 - - uid: 527 + parent: 1 + - uid: 693 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 - parent: 2 - - uid: 529 + parent: 1 + - uid: 694 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 - parent: 2 - - uid: 536 + parent: 1 + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 - parent: 2 - - uid: 537 + parent: 1 + - uid: 696 components: - type: Transform pos: -3.5,-3.5 - parent: 2 - - uid: 538 + parent: 1 + - uid: 697 components: - type: Transform pos: -3.5,-2.5 - parent: 2 - - uid: 539 + parent: 1 + - uid: 698 components: - type: Transform pos: -3.5,-1.5 - parent: 2 - - uid: 541 + parent: 1 + - uid: 699 components: - type: Transform pos: -3.5,0.5 - parent: 2 - - uid: 542 + parent: 1 + - uid: 700 components: - type: Transform pos: -3.5,1.5 - parent: 2 - - uid: 543 + parent: 1 + - uid: 701 components: - type: Transform pos: -3.5,2.5 - parent: 2 - - uid: 544 + parent: 1 + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 - parent: 2 - - uid: 545 + parent: 1 + - uid: 703 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,5.5 - parent: 2 - - uid: 546 + parent: 1 + - uid: 704 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,5.5 - parent: 2 - - uid: 547 + parent: 1 + - uid: 705 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 - parent: 2 - - uid: 548 + parent: 1 + - uid: 706 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,5.5 - parent: 2 - - uid: 549 + parent: 1 + - uid: 707 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,5.5 - parent: 2 - - uid: 550 + parent: 1 + - uid: 708 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,5.5 - parent: 2 - - uid: 551 + parent: 1 + - uid: 709 components: - type: Transform pos: -3.5,6.5 - parent: 2 - - uid: 555 + parent: 1 + - uid: 710 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 2 - - uid: 556 + parent: 1 + - uid: 711 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 - parent: 2 - - uid: 557 + parent: 1 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 - parent: 2 - - uid: 558 + parent: 1 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 - parent: 2 - - uid: 559 + parent: 1 + - uid: 714 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,6.5 - parent: 2 - - uid: 560 + parent: 1 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 - parent: 2 - - uid: 563 + parent: 1 + - uid: 716 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 - parent: 2 - - uid: 567 + parent: 1 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 - parent: 2 - - uid: 568 + parent: 1 + - uid: 718 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,7.5 - parent: 2 - - uid: 569 + parent: 1 + - uid: 719 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,7.5 - parent: 2 - - uid: 570 + parent: 1 + - uid: 720 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,7.5 - parent: 2 - - uid: 575 + parent: 1 + - uid: 721 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,12.5 - parent: 2 - - uid: 576 + parent: 1 + - uid: 722 components: - type: Transform pos: -2.5,10.5 - parent: 2 - - uid: 578 + parent: 1 + - uid: 723 components: - type: Transform pos: -1.5,8.5 - parent: 2 - - uid: 579 + parent: 1 + - uid: 724 components: - type: Transform pos: -1.5,9.5 - parent: 2 - - uid: 600 + parent: 1 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 2 - - uid: 749 + parent: 1 + - uid: 726 components: - type: Transform pos: 4.5,-8.5 - parent: 2 + parent: 1 - proto: GasPipeTJunction entities: - - uid: 500 + - uid: 727 components: - type: Transform pos: 3.5,-11.5 - parent: 2 - - uid: 513 + parent: 1 + - uid: 728 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 2 - - uid: 514 + parent: 1 + - uid: 729 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 2 - - uid: 515 + parent: 1 + - uid: 730 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 - parent: 2 - - uid: 528 + parent: 1 + - uid: 731 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 - parent: 2 - - uid: 534 + parent: 1 + - uid: 732 components: - type: Transform pos: -1.5,-4.5 - parent: 2 - - uid: 540 + parent: 1 + - uid: 733 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-0.5 - parent: 2 - - uid: 553 + parent: 1 + - uid: 734 components: - type: Transform pos: -3.5,3.5 - parent: 2 - - uid: 564 + parent: 1 + - uid: 735 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 - parent: 2 - - uid: 572 + parent: 1 + - uid: 736 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 - parent: 2 + parent: 1 - proto: GasPort entities: - - uid: 272 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 - parent: 2 - - uid: 273 + parent: 1 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 - parent: 2 + parent: 1 - proto: GasVentPump entities: - - uid: 291 + - uid: 739 components: - type: Transform pos: 0.5,-10.5 - parent: 2 - - uid: 487 + parent: 1 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-4.5 - parent: 2 - - uid: 488 + parent: 1 + - uid: 741 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 - parent: 2 - - uid: 489 + parent: 1 + - uid: 742 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-0.5 - parent: 2 - - uid: 490 + parent: 1 + - uid: 743 components: - type: Transform pos: 4.5,7.5 - parent: 2 - - uid: 491 + parent: 1 + - uid: 744 components: - type: Transform pos: -3.5,7.5 - parent: 2 + parent: 1 - proto: GasVentScrubber entities: - - uid: 492 + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 2 - - uid: 493 + parent: 1 + - uid: 746 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 - parent: 2 - - uid: 494 + parent: 1 + - uid: 747 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 - parent: 2 - - uid: 495 + parent: 1 + - uid: 748 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,3.5 - parent: 2 - - uid: 496 + parent: 1 + - uid: 749 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 - parent: 2 - - uid: 497 + parent: 1 + - uid: 750 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 - parent: 2 + parent: 1 - proto: GravityGeneratorMini entities: - - uid: 444 + - uid: 751 components: - type: Transform pos: 0.5,-14.5 - parent: 2 + parent: 1 - proto: Grille entities: - - uid: 21 + - uid: 752 components: - type: Transform pos: -0.5,2.5 - parent: 2 - - uid: 22 + parent: 1 + - uid: 753 components: - type: Transform pos: 0.5,2.5 - parent: 2 - - uid: 23 + parent: 1 + - uid: 754 components: - type: Transform pos: 1.5,2.5 - parent: 2 - - uid: 396 + parent: 1 + - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-5.5 - parent: 2 - - uid: 412 + parent: 1 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-5.5 - parent: 2 - - uid: 423 + parent: 1 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 - parent: 2 - - uid: 428 + parent: 1 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-7.5 - parent: 2 - - uid: 467 + parent: 1 + - uid: 759 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-5.5 - parent: 2 - - uid: 468 + parent: 1 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 - parent: 2 - - uid: 469 + parent: 1 + - uid: 761 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-11.5 - parent: 2 - - uid: 470 + parent: 1 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 - parent: 2 + parent: 1 - proto: GyroscopeNfsd entities: - - uid: 48 + - uid: 763 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-16.5 - parent: 2 - - uid: 1055 + parent: 1 + - uid: 764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 - parent: 2 - - uid: 1057 + parent: 1 + - uid: 765 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,7.5 - parent: 2 + parent: 1 - proto: HandheldGPSBasic entities: - - uid: 453 + - uid: 50 components: - type: Transform - parent: 447 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 455 + - uid: 57 components: - type: Transform - parent: 454 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: HandHeldMassScannerEE entities: - - uid: 345 + - uid: 766 components: - type: Transform pos: 6.5530076,-8.431362 - parent: 2 + parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 418 + - uid: 767 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 - parent: 2 - - uid: 419 + parent: 1 + - uid: 768 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 - parent: 2 + parent: 1 - proto: JugBoriaticFuel entities: - - uid: 482 + - uid: 118 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 483 + - uid: 119 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 484 + - uid: 120 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 485 + - uid: 121 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 755 + - uid: 122 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 990 + - uid: 123 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 991 + - uid: 124 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 992 + - uid: 125 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 993 + - uid: 126 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 994 + - uid: 127 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 995 + - uid: 128 components: - type: Transform - parent: 429 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LightStripCorner entities: - - uid: 1122 + - uid: 769 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-8.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1123 + - uid: 770 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-8.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1124 + - uid: 771 components: - type: Transform pos: -0.5,-6.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1125 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - proto: LightStripInner entities: - - uid: 1130 + - uid: 773 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-7.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1126 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-8.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1127 + - uid: 775 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-7.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1128 + - uid: 776 components: - type: Transform pos: 0.5,-6.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1129 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF +- proto: MagazineLightRifleBoxSlugHE + entities: + - uid: 778 + components: + - type: Transform + pos: -3.5658886,11.69824 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 779 + components: + - type: Transform + pos: 4.5558558,11.681964 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MedicalBed entities: - - uid: 414 + - uid: 780 components: - type: Transform pos: -5.5,-10.5 - parent: 2 - - uid: 415 + parent: 1 + - uid: 781 components: - type: Transform pos: -5.5,-11.5 - parent: 2 + parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 464 + - uid: 782 components: - type: Transform pos: -5.201176,-8.571467 - parent: 2 + parent: 1 - proto: MedkitBruteFilled entities: - - uid: 475 + - uid: 783 components: - type: Transform pos: -5.2309003,-8.17008 - parent: 2 + parent: 1 - proto: MedkitBurnFilled entities: - - uid: 472 + - uid: 784 components: - type: Transform pos: -5.201176,-8.333609 - parent: 2 + parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 471 + - uid: 785 components: - type: Transform pos: -5.736208,-8.184947 - parent: 2 + parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 477 + - uid: 786 components: - type: Transform pos: -5.736208,-8.333609 - parent: 2 + parent: 1 - proto: MedkitToxinFilled entities: - - uid: 473 + - uid: 787 components: - type: Transform pos: -5.736208,-8.556602 - parent: 2 + parent: 1 - proto: N14TableMetalGrate entities: - - uid: 311 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 - parent: 2 - - uid: 1093 + parent: 1 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 - parent: 2 - - uid: 1094 + parent: 1 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 - parent: 2 - - uid: 1095 + parent: 1 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 - parent: 2 - - uid: 1096 + parent: 1 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,1.5 - parent: 2 - - uid: 1097 + parent: 1 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,1.5 - parent: 2 + parent: 1 - proto: NitrogenCanister entities: - - uid: 275 + - uid: 794 components: - type: Transform anchored: True pos: 5.5,-14.5 - parent: 2 + parent: 1 - type: Physics bodyType: Static - proto: OxygenCanister entities: - - uid: 274 + - uid: 795 components: - type: Transform anchored: True pos: 5.5,-13.5 - parent: 2 + parent: 1 - type: Physics bodyType: Static - proto: PlastitaniumWindow entities: - - uid: 26 + - uid: 796 components: - type: Transform pos: -0.5,2.5 - parent: 2 - - uid: 27 + parent: 1 + - uid: 797 components: - type: Transform pos: 0.5,2.5 - parent: 2 - - uid: 28 + parent: 1 + - uid: 798 components: - type: Transform pos: 1.5,2.5 - parent: 2 - - uid: 368 + parent: 1 + - uid: 799 components: - type: Transform pos: 1.5,-5.5 - parent: 2 - - uid: 370 + parent: 1 + - uid: 800 components: - type: Transform pos: -2.5,-7.5 - parent: 2 - - uid: 378 + parent: 1 + - uid: 801 components: - type: Transform pos: 3.5,-7.5 - parent: 2 - - uid: 379 + parent: 1 + - uid: 802 components: - type: Transform pos: 3.5,-11.5 - parent: 2 - - uid: 380 + parent: 1 + - uid: 803 components: - type: Transform pos: 0.5,-5.5 - parent: 2 - - uid: 394 + parent: 1 + - uid: 804 components: - type: Transform pos: -0.5,-5.5 - parent: 2 - - uid: 601 + parent: 1 + - uid: 805 components: - type: Transform pos: -2.5,-11.5 - parent: 2 - - uid: 602 + parent: 1 + - uid: 806 components: - type: Transform pos: -5.5,-9.5 - parent: 2 + parent: 1 - proto: PottedPlantRandom entities: - - uid: 352 + - uid: 807 components: - type: Transform pos: 2.5,-1.5 - parent: 2 - - uid: 389 + parent: 1 + - uid: 808 components: - type: Transform pos: -2.5,-3.5 - parent: 2 + parent: 1 - proto: Poweredlight entities: - - uid: 45 + - uid: 809 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-16.5 - parent: 2 + parent: 1 - proto: PoweredlightLED entities: - - uid: 577 + - uid: 810 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,11.5 - parent: 2 - - uid: 582 + parent: 1 + - uid: 811 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 - parent: 2 - - uid: 583 + parent: 1 + - uid: 812 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 - parent: 2 - - uid: 584 + parent: 1 + - uid: 813 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,13.5 - parent: 2 - - uid: 585 + parent: 1 + - uid: 814 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,13.5 - parent: 2 - - uid: 586 + parent: 1 + - uid: 815 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 - parent: 2 - - uid: 588 + parent: 1 + - uid: 816 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,8.5 - parent: 2 - - uid: 589 + parent: 1 + - uid: 817 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,8.5 - parent: 2 - - uid: 590 + parent: 1 + - uid: 818 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,5.5 - parent: 2 - - uid: 591 + parent: 1 + - uid: 819 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 - parent: 2 - - uid: 592 + parent: 1 + - uid: 820 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,2.5 - parent: 2 - - uid: 593 + parent: 1 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 - parent: 2 - - uid: 594 + parent: 1 + - uid: 822 components: - type: Transform pos: -1.5,5.5 - parent: 2 - - uid: 595 + parent: 1 + - uid: 823 components: - type: Transform pos: 2.5,5.5 - parent: 2 - - uid: 598 + parent: 1 + - uid: 824 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 - parent: 2 - - uid: 599 + parent: 1 + - uid: 825 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 2 - - uid: 932 + parent: 1 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 - parent: 2 - - uid: 933 + parent: 1 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 - parent: 2 - - uid: 934 + parent: 1 + - uid: 828 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-2.5 - parent: 2 - - uid: 935 + parent: 1 + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 - parent: 2 - - uid: 936 + parent: 1 + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-5.5 - parent: 2 - - uid: 937 + parent: 1 + - uid: 831 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 2 - - uid: 938 + parent: 1 + - uid: 832 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 - parent: 2 - - uid: 939 + parent: 1 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 2 - - uid: 940 + parent: 1 + - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 - parent: 2 - - uid: 941 + parent: 1 + - uid: 835 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 - parent: 2 - - uid: 942 + parent: 1 + - uid: 836 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-9.5 - parent: 2 - - uid: 944 + parent: 1 + - uid: 837 components: - type: Transform pos: -0.5,-6.5 - parent: 2 - - uid: 947 + parent: 1 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 - parent: 2 - - uid: 948 + parent: 1 + - uid: 839 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 - parent: 2 - - uid: 949 + parent: 1 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-8.5 - parent: 2 - - uid: 950 + parent: 1 + - uid: 841 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 - parent: 2 - - uid: 951 + parent: 1 + - uid: 842 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 - parent: 2 - - uid: 954 + parent: 1 + - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: PoweredlightRed entities: - - uid: 930 + - uid: 844 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,12.5 - parent: 2 - - uid: 931 + parent: 1 + - uid: 845 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,12.5 - parent: 2 - - uid: 968 + parent: 1 + - uid: 846 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,3.5 - parent: 2 - - uid: 969 + parent: 1 + - uid: 847 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 - parent: 2 + parent: 1 - proto: Rack entities: - - uid: 413 + - uid: 848 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 - parent: 2 - - uid: 432 + parent: 1 + - uid: 849 components: - type: Transform - pos: 3.5,7.5 - parent: 2 - - uid: 466 + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - uid: 850 components: - type: Transform - pos: 3.5,8.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 - proto: RadioHandheld entities: - - uid: 342 + - uid: 851 components: - type: Transform pos: 6.389526,-10.380689 - parent: 2 - - uid: 343 + parent: 1 + - uid: 852 components: - type: Transform pos: 6.64218,-10.380689 - parent: 2 - - uid: 344 + parent: 1 + - uid: 853 components: - type: Transform pos: 6.5084214,-10.276625 - parent: 2 + parent: 1 - proto: Railing entities: - - uid: 282 + - uid: 854 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-8.5 - parent: 2 - - uid: 293 + parent: 1 + - uid: 855 components: - type: Transform pos: 0.5,-9.5 - parent: 2 - - uid: 294 + parent: 1 + - uid: 856 components: - type: Transform pos: 1.5,-9.5 - parent: 2 - - uid: 295 + parent: 1 + - uid: 857 components: - type: Transform pos: 2.5,-9.5 - parent: 2 - - uid: 338 + parent: 1 + - uid: 858 components: - type: Transform pos: 6.5,-9.5 - parent: 2 - - uid: 339 + parent: 1 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 - parent: 2 - - uid: 374 + parent: 1 + - uid: 860 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-1.5 - parent: 2 + parent: 1 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 - proto: RailingCorner entities: - - uid: 301 + - uid: 870 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 - parent: 2 - - uid: 334 + parent: 1 + - uid: 871 components: - type: Transform pos: 5.5,-10.5 - parent: 2 - - uid: 335 + parent: 1 + - uid: 872 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-8.5 - parent: 2 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 - proto: RailingCornerSmall entities: - - uid: 336 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-9.5 - parent: 2 - - uid: 337 + parent: 1 + - uid: 884 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 - parent: 2 + parent: 1 +- proto: RailingRound + entities: + - uid: 885 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 - proto: RCD entities: - - uid: 277 + - uid: 887 components: - type: Transform pos: -4.4877124,-14.409616 - parent: 2 + parent: 1 - type: RCD constructionDirection: West - proto: RCDAmmo entities: - - uid: 278 + - uid: 888 components: - type: Transform pos: -4.333141,-14.535783 - parent: 2 + parent: 1 - proto: ShuttersNormal entities: - - uid: 405 + - uid: 889 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,4.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 966 - - uid: 406 + - 901 + - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 966 - - uid: 407 + - 901 + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 967 - - uid: 408 + - 902 + - uid: 892 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 967 + - 902 - proto: ShuttersNormalOpen entities: - - uid: 476 + - uid: 893 components: - type: Transform pos: -0.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 481 - - uid: 478 + - 900 + - uid: 894 components: - type: Transform pos: 0.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 481 - - uid: 479 + - 900 + - uid: 895 components: - type: Transform pos: 1.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 481 + - 900 - proto: SignalButton entities: - - uid: 360 + - uid: 896 components: - type: Transform pos: -3.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 192: - - Pressed: Toggle - - uid: 362 + 113: + - - Pressed + - Toggle + - uid: 897 components: - type: Transform pos: 4.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 193: - - Pressed: Toggle - - uid: 363 + 114: + - - Pressed + - Toggle + - uid: 898 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 191: - - Pressed: Toggle - 190: - - Pressed: Toggle - 44: - - Pressed: Toggle - - uid: 364 + 112: + - - Pressed + - Toggle + 111: + - - Pressed + - Toggle + 106: + - - Pressed + - Toggle + - uid: 899 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 189: - - Pressed: Toggle - 188: - - Pressed: Toggle - 50: - - Pressed: Toggle - - uid: 481 + 110: + - - Pressed + - Toggle + 109: + - - Pressed + - Toggle + 107: + - - Pressed + - Toggle + - uid: 900 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 476: - - Pressed: Toggle - 478: - - Pressed: Toggle - 479: - - Pressed: Toggle - - uid: 966 + 893: + - - Pressed + - Toggle + 894: + - - Pressed + - Toggle + 895: + - - Pressed + - Toggle + - uid: 901 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 406: - - Pressed: Toggle - 405: - - Pressed: Toggle - - uid: 967 + 890: + - - Pressed + - Toggle + 889: + - - Pressed + - Toggle + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 408: - - Pressed: Toggle - 407: - - Pressed: Toggle - - uid: 1048 + 892: + - - Pressed + - Toggle + 891: + - - Pressed + - Toggle + - uid: 903 components: - type: Transform pos: 1.5,6.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 53: - - Pressed: Toggle + 108: + - - Pressed + - Toggle - proto: SlugthrowerCannon entities: - - uid: 1086 + - uid: 904 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 17509.434 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -6209,14 +6782,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - - uid: 1087 + - uid: 905 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 17509.434 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -6231,141 +6818,149 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - proto: SMESBasic entities: - - uid: 324 + - uid: 906 components: - type: Transform pos: -0.5,-14.5 - parent: 2 + parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 957 + - uid: 907 components: - type: Transform pos: 6.5,-9.5 - parent: 2 + parent: 1 - proto: StairDark entities: - - uid: 57 + - uid: 908 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 - parent: 2 - - uid: 91 + parent: 1 + - uid: 909 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,4.5 - parent: 2 - - uid: 240 + parent: 1 + - uid: 910 components: - type: Transform pos: -1.5,-8.5 - parent: 2 - - uid: 397 + parent: 1 + - uid: 911 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 - parent: 2 - - uid: 398 + parent: 1 + - uid: 912 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,4.5 - parent: 2 + parent: 1 - proto: StairStageDark entities: - - uid: 332 + - uid: 913 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-7.5 - parent: 2 - - uid: 333 + parent: 1 + - uid: 914 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-11.5 - parent: 2 + parent: 1 - proto: StationMap entities: - - uid: 38 + - uid: 915 components: - type: Transform pos: 1.5,-2.5 - parent: 2 - - uid: 171 + parent: 1 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 - parent: 2 - - uid: 316 + parent: 1 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-16.5 - parent: 2 - - uid: 952 + parent: 1 + - uid: 918 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 - parent: 2 - - uid: 953 + parent: 1 + - uid: 919 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-6.5 - parent: 2 - - uid: 956 + parent: 1 + - uid: 920 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-6.5 - parent: 2 - - uid: 960 + parent: 1 + - uid: 921 components: - type: Transform pos: -4.5,6.5 - parent: 2 - - uid: 961 + parent: 1 + - uid: 922 components: - type: Transform pos: 5.5,6.5 - parent: 2 - - uid: 962 + parent: 1 + - uid: 923 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 - parent: 2 - - uid: 997 + parent: 1 + - uid: 924 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,9.5 - parent: 2 + parent: 1 - proto: SubstationBasic entities: - - uid: 1000 + - uid: 925 components: - type: Transform pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: SuitStorageWallmount entities: - - uid: 447 + - uid: 44 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,8.5 - parent: 2 + parent: 1 - type: EntityStorage air: volume: 200 @@ -6390,20 +6985,20 @@ entities: showEnts: False occludes: True ents: - - 452 - - 451 - - 450 - - 449 - - 448 - - 453 + - 45 + - 48 + - 46 + - 49 + - 47 + - 50 - type: Physics canCollide: False - - uid: 454 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 - parent: 2 + parent: 1 - type: EntityStorage air: volume: 200 @@ -6428,1480 +7023,1692 @@ entities: showEnts: False occludes: True ents: - - 459 - - 458 - - 457 - - 456 - - 455 - - 460 + - 55 + - 52 + - 54 + - 53 + - 57 + - 56 - type: Lock locked: False - type: Physics canCollide: False - proto: SuitStorageWallmountEVAEmergency entities: - - uid: 461 + - uid: 926 components: - type: Transform pos: 7.5,-4.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 462 + - uid: 927 components: - type: Transform pos: -6.5,-4.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - proto: SurveillanceCameraGeneral entities: - - uid: 152 + - uid: 928 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 - parent: 2 - - uid: 267 + parent: 1 + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 2 - - uid: 268 + parent: 1 + - uid: 930 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 - parent: 2 - - uid: 1007 + parent: 1 + - uid: 931 components: - type: Transform pos: 1.5,-1.5 - parent: 2 - - uid: 1008 + parent: 1 + - uid: 932 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,9.5 - parent: 2 - - uid: 1009 + parent: 1 + - uid: 933 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 - parent: 2 - - uid: 1010 + parent: 1 + - uid: 934 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 - parent: 2 - - uid: 1011 + parent: 1 + - uid: 935 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,11.5 - parent: 2 - - uid: 1012 + parent: 1 + - uid: 936 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 - parent: 2 - - uid: 1013 + parent: 1 + - uid: 937 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 - parent: 2 - - uid: 1014 + parent: 1 + - uid: 938 components: - type: Transform pos: 8.5,3.5 - parent: 2 - - uid: 1015 + parent: 1 + - uid: 939 components: - type: Transform pos: -7.5,3.5 - parent: 2 - - uid: 1018 + parent: 1 + - uid: 940 components: - type: Transform pos: 1.5,-4.5 - parent: 2 - - uid: 1022 + parent: 1 + - uid: 941 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 - parent: 2 + parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 260 + - uid: 942 components: - type: Transform pos: -2.5,8.5 - parent: 2 + parent: 1 - proto: TableReinforced entities: - - uid: 255 + - uid: 943 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 - parent: 2 - - uid: 256 + parent: 1 + - uid: 944 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-13.5 - parent: 2 - - uid: 340 + parent: 1 + - uid: 945 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 - parent: 2 - - uid: 341 + parent: 1 + - uid: 946 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-10.5 - parent: 2 - - uid: 371 + parent: 1 + - uid: 947 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 - parent: 2 - - uid: 372 + parent: 1 + - uid: 948 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 - parent: 2 + parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 5 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 - parent: 2 - - uid: 6 + parent: 1 + - uid: 950 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 - parent: 2 - - uid: 89 + parent: 1 + - uid: 951 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 - parent: 2 - - uid: 90 + parent: 1 + - uid: 952 components: - type: Transform pos: -7.5,-9.5 - parent: 2 - - uid: 92 + parent: 1 + - uid: 953 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 - parent: 2 - - uid: 93 + parent: 1 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-18.5 - parent: 2 - - uid: 157 + parent: 1 + - uid: 955 components: - type: Transform pos: -6.5,7.5 - parent: 2 - - uid: 159 + parent: 1 + - uid: 956 components: - type: Transform pos: 7.5,7.5 - parent: 2 - - uid: 173 + parent: 1 + - uid: 957 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-18.5 - parent: 2 - - uid: 213 + parent: 1 + - uid: 958 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-19.5 - parent: 2 - - uid: 224 + parent: 1 + - uid: 959 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 - parent: 2 - - uid: 251 + parent: 1 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 - parent: 2 - - uid: 400 + parent: 1 + - uid: 961 components: - type: Transform pos: 8.5,-9.5 - parent: 2 + parent: 1 - type: Thruster enabled: False - - uid: 1039 + - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 - parent: 2 - - uid: 1053 + parent: 1 + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,1.5 - parent: 2 + parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 47 + - uid: 964 components: - type: Transform pos: 0.5,-7.5 - parent: 2 + parent: 1 - proto: VendingMachineCoffee entities: - - uid: 391 + - uid: 965 components: - type: Transform pos: 2.5,-3.5 - parent: 2 + parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 435 + - uid: 966 components: - type: Transform pos: 1.5,-17.5 - parent: 2 + parent: 1 - proto: VendingMachineYouTool entities: - - uid: 445 + - uid: 967 components: - type: Transform pos: 1.5,-14.5 - parent: 2 + parent: 1 - proto: WallPlastitanium entities: - - uid: 3 + - uid: 968 components: - type: Transform pos: 2.5,-5.5 - parent: 2 - - uid: 51 + parent: 1 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 - parent: 2 - - uid: 52 + parent: 1 + - uid: 970 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-0.5 - parent: 2 - - uid: 58 + parent: 1 + - uid: 971 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 - parent: 2 - - uid: 59 + parent: 1 + - uid: 972 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 - parent: 2 - - uid: 60 + parent: 1 + - uid: 973 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 - parent: 2 - - uid: 61 + parent: 1 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 - parent: 2 - - uid: 62 + parent: 1 + - uid: 975 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 2 - - uid: 63 + parent: 1 + - uid: 976 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 - parent: 2 - - uid: 64 + parent: 1 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 - parent: 2 - - uid: 65 + parent: 1 + - uid: 978 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 - parent: 2 - - uid: 66 + parent: 1 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 - parent: 2 - - uid: 68 + parent: 1 + - uid: 980 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 - parent: 2 - - uid: 71 + parent: 1 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 2 - - uid: 72 + parent: 1 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 - parent: 2 - - uid: 73 + parent: 1 + - uid: 983 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 - parent: 2 - - uid: 74 + parent: 1 + - uid: 984 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 - parent: 2 - - uid: 75 + parent: 1 + - uid: 985 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 - parent: 2 - - uid: 76 + parent: 1 + - uid: 986 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,0.5 - parent: 2 - - uid: 77 + parent: 1 + - uid: 987 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 - parent: 2 - - uid: 78 + parent: 1 + - uid: 988 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,1.5 - parent: 2 - - uid: 79 + parent: 1 + - uid: 989 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-0.5 - parent: 2 - - uid: 80 + parent: 1 + - uid: 990 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 - parent: 2 - - uid: 81 + parent: 1 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 - parent: 2 - - uid: 82 + parent: 1 + - uid: 992 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 - parent: 2 - - uid: 83 + parent: 1 + - uid: 993 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 - parent: 2 - - uid: 84 + parent: 1 + - uid: 994 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 2 - - uid: 85 + parent: 1 + - uid: 995 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 - parent: 2 - - uid: 86 + parent: 1 + - uid: 996 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 2 - - uid: 87 + parent: 1 + - uid: 997 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 - parent: 2 - - uid: 88 + parent: 1 + - uid: 998 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 - parent: 2 - - uid: 95 + parent: 1 + - uid: 999 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,7.5 - parent: 2 - - uid: 97 + parent: 1 + - uid: 1000 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 2 - - uid: 98 + parent: 1 + - uid: 1001 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 2 - - uid: 99 + parent: 1 + - uid: 1002 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 - parent: 2 - - uid: 100 + parent: 1 + - uid: 1003 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,14.5 - parent: 2 - - uid: 103 + parent: 1 + - uid: 1004 components: - type: Transform pos: -1.5,9.5 - parent: 2 - - uid: 105 + parent: 1 + - uid: 1005 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 - parent: 2 - - uid: 106 + parent: 1 + - uid: 1006 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 2 - - uid: 107 + parent: 1 + - uid: 1007 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 - parent: 2 - - uid: 108 + parent: 1 + - uid: 1008 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 - parent: 2 - - uid: 109 + parent: 1 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,6.5 - parent: 2 - - uid: 110 + parent: 1 + - uid: 1010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 - parent: 2 - - uid: 111 + parent: 1 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,8.5 - parent: 2 - - uid: 112 + parent: 1 + - uid: 1012 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,9.5 - parent: 2 - - uid: 113 + parent: 1 + - uid: 1013 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,14.5 - parent: 2 - - uid: 114 + parent: 1 + - uid: 1014 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,6.5 - parent: 2 - - uid: 115 + parent: 1 + - uid: 1015 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 - parent: 2 - - uid: 116 + parent: 1 + - uid: 1016 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 - parent: 2 - - uid: 117 + parent: 1 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 - parent: 2 - - uid: 118 + parent: 1 + - uid: 1018 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,10.5 - parent: 2 - - uid: 119 + parent: 1 + - uid: 1019 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,9.5 - parent: 2 - - uid: 120 + parent: 1 + - uid: 1020 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 - parent: 2 - - uid: 121 + parent: 1 + - uid: 1021 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 - parent: 2 - - uid: 124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 2 - - uid: 125 + parent: 1 + - uid: 1022 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 - parent: 2 - - uid: 126 + parent: 1 + - uid: 1023 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 - parent: 2 - - uid: 127 + parent: 1 + - uid: 1024 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 2 - - uid: 129 + parent: 1 + - uid: 1025 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-18.5 - parent: 2 - - uid: 132 + parent: 1 + - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 - parent: 2 - - uid: 134 + parent: 1 + - uid: 1027 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-12.5 - parent: 2 - - uid: 135 + parent: 1 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 - parent: 2 - - uid: 143 + parent: 1 + - uid: 1029 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-18.5 - parent: 2 - - uid: 144 + parent: 1 + - uid: 1030 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-17.5 - parent: 2 - - uid: 145 + parent: 1 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-18.5 - parent: 2 - - uid: 149 + parent: 1 + - uid: 1032 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-17.5 - parent: 2 - - uid: 153 + parent: 1 + - uid: 1033 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 - parent: 2 - - uid: 155 + parent: 1 + - uid: 1034 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 - parent: 2 - - uid: 156 + parent: 1 + - uid: 1035 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 - parent: 2 - - uid: 158 + parent: 1 + - uid: 1036 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-4.5 - parent: 2 - - uid: 160 + parent: 1 + - uid: 1037 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 - parent: 2 - - uid: 161 + parent: 1 + - uid: 1038 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 - parent: 2 - - uid: 162 + parent: 1 + - uid: 1039 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,2.5 - parent: 2 - - uid: 165 + parent: 1 + - uid: 1040 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-6.5 - parent: 2 - - uid: 166 + parent: 1 + - uid: 1041 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 - parent: 2 - - uid: 167 + parent: 1 + - uid: 1042 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 2 - - uid: 169 + parent: 1 + - uid: 1043 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-4.5 - parent: 2 - - uid: 172 + parent: 1 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 - parent: 2 - - uid: 174 + parent: 1 + - uid: 1045 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-12.5 - parent: 2 - - uid: 176 + parent: 1 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-12.5 - parent: 2 - - uid: 177 + parent: 1 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-12.5 - parent: 2 - - uid: 178 + parent: 1 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 - parent: 2 - - uid: 179 + parent: 1 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-10.5 - parent: 2 - - uid: 180 + parent: 1 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-9.5 - parent: 2 - - uid: 181 + parent: 1 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-11.5 - parent: 2 - - uid: 182 + parent: 1 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 - parent: 2 - - uid: 194 + parent: 1 + - uid: 1053 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 - parent: 2 - - uid: 195 + parent: 1 + - uid: 1054 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-8.5 - parent: 2 - - uid: 196 + parent: 1 + - uid: 1055 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 2 - - uid: 197 + parent: 1 + - uid: 1056 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-15.5 - parent: 2 - - uid: 200 + parent: 1 + - uid: 1057 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-17.5 - parent: 2 - - uid: 201 + parent: 1 + - uid: 1058 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-17.5 - parent: 2 - - uid: 202 + parent: 1 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-15.5 - parent: 2 - - uid: 203 + parent: 1 + - uid: 1060 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-15.5 - parent: 2 - - uid: 204 + parent: 1 + - uid: 1061 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-14.5 - parent: 2 - - uid: 206 + parent: 1 + - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-13.5 - parent: 2 - - uid: 207 + parent: 1 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-13.5 - parent: 2 - - uid: 208 + parent: 1 + - uid: 1064 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-16.5 - parent: 2 - - uid: 209 + parent: 1 + - uid: 1065 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-17.5 - parent: 2 - - uid: 211 + parent: 1 + - uid: 1066 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-17.5 - parent: 2 - - uid: 212 + parent: 1 + - uid: 1067 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-18.5 - parent: 2 - - uid: 215 + parent: 1 + - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 - parent: 2 - - uid: 216 + parent: 1 + - uid: 1069 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 - parent: 2 - - uid: 217 + parent: 1 + - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 - parent: 2 - - uid: 218 + parent: 1 + - uid: 1071 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-17.5 - parent: 2 - - uid: 219 + parent: 1 + - uid: 1072 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-18.5 - parent: 2 - - uid: 221 + parent: 1 + - uid: 1073 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 - parent: 2 - - uid: 222 + parent: 1 + - uid: 1074 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,6.5 - parent: 2 - - uid: 223 + parent: 1 + - uid: 1075 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,8.5 - parent: 2 - - uid: 225 + parent: 1 + - uid: 1076 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,8.5 - parent: 2 - - uid: 228 + parent: 1 + - uid: 1077 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 - parent: 2 - - uid: 229 + parent: 1 + - uid: 1078 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 - parent: 2 - - uid: 231 + parent: 1 + - uid: 1079 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-9.5 - parent: 2 - - uid: 232 + parent: 1 + - uid: 1080 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-8.5 - parent: 2 - - uid: 233 + parent: 1 + - uid: 1081 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 - parent: 2 - - uid: 234 + parent: 1 + - uid: 1082 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 - parent: 2 - - uid: 235 + parent: 1 + - uid: 1083 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-6.5 - parent: 2 - - uid: 237 + parent: 1 + - uid: 1084 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 - - uid: 238 + parent: 1 + - uid: 1085 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 - parent: 2 - - uid: 258 + parent: 1 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 - parent: 2 - - uid: 259 + parent: 1 + - uid: 1087 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 2 - - uid: 261 + parent: 1 + - uid: 1088 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-9.5 - parent: 2 - - uid: 262 + parent: 1 + - uid: 1089 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-15.5 - parent: 2 - - uid: 264 + parent: 1 + - uid: 1090 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 - parent: 2 - - uid: 271 + parent: 1 + - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-8.5 - parent: 2 - - uid: 286 + parent: 1 + - uid: 1092 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 - parent: 2 - - uid: 287 + parent: 1 + - uid: 1093 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,5.5 - parent: 2 - - uid: 288 + parent: 1 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,5.5 - parent: 2 - - uid: 289 + parent: 1 + - uid: 1095 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 - parent: 2 - - uid: 308 + parent: 1 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 - parent: 2 - - uid: 313 + parent: 1 + - uid: 1097 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 - parent: 2 - - uid: 383 + parent: 1 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 - parent: 2 - - uid: 395 + parent: 1 + - uid: 1099 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-8.5 - parent: 2 - - uid: 399 + parent: 1 + - uid: 1100 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 - parent: 2 - - uid: 409 + parent: 1 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 - parent: 2 - - uid: 410 + parent: 1 + - uid: 1102 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 - parent: 2 - - uid: 411 + parent: 1 + - uid: 1103 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,12.5 - parent: 2 - - uid: 426 + parent: 1 + - uid: 1104 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 - parent: 2 - - uid: 427 + parent: 1 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 - parent: 2 - - uid: 440 + parent: 1 + - uid: 1106 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 - parent: 2 - - uid: 596 + parent: 1 + - uid: 1107 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 - parent: 2 - - uid: 597 + parent: 1 + - uid: 1108 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,13.5 - parent: 2 - - uid: 612 + parent: 1 + - uid: 1109 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-16.5 - parent: 2 - - uid: 926 + parent: 1 + - uid: 1110 components: - type: Transform pos: -1.5,10.5 - parent: 2 - - uid: 927 + parent: 1 + - uid: 1111 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,11.5 - parent: 2 - - uid: 955 + parent: 1 + - uid: 1112 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 - parent: 2 - - uid: 983 + parent: 1 + - uid: 1113 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 - parent: 2 - - uid: 987 + parent: 1 + - uid: 1114 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 - parent: 2 - - uid: 988 + parent: 1 + - uid: 1115 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 - parent: 2 - - uid: 989 + parent: 1 + - uid: 1116 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 1003 + - uid: 1117 components: - type: Transform pos: -4.5,12.5 - parent: 2 - - uid: 1005 + parent: 1 + - uid: 1118 components: - type: Transform pos: -3.5,14.5 - parent: 2 - - uid: 1047 + parent: 1 + - uid: 1119 components: - type: Transform pos: -5.5,10.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNortheastHollow entities: - - uid: 1068 + - uid: 1120 components: - type: Transform pos: 1.5,9.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 999 + - uid: 1121 components: - type: Transform pos: 5.5,12.5 - parent: 2 - - uid: 1001 + parent: 1 + - uid: 1122 components: - type: Transform pos: 4.5,14.5 - parent: 2 - - uid: 1004 + parent: 1 + - uid: 1123 components: - type: Transform pos: 6.5,10.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 1067 + - uid: 1124 components: - type: Transform pos: -0.5,9.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1017 + - uid: 1125 components: - type: Transform pos: -7.5,-6.5 - parent: 2 - - uid: 1028 + parent: 1 + - uid: 1126 components: - type: Transform pos: -1.5,-19.5 - parent: 2 - - uid: 1029 + parent: 1 + - uid: 1127 components: - type: Transform pos: -6.5,-12.5 - parent: 2 - - uid: 1031 + parent: 1 + - uid: 1128 components: - type: Transform pos: -7.5,-10.5 - parent: 2 - - uid: 1032 + parent: 1 + - uid: 1129 components: - type: Transform pos: -4.5,-18.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 1030 + - uid: 1130 components: - type: Transform pos: -5.5,-16.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1033 + - uid: 1131 components: - type: Transform pos: 8.5,-6.5 - parent: 2 - - uid: 1034 + parent: 1 + - uid: 1132 components: - type: Transform pos: 5.5,-18.5 - parent: 2 - - uid: 1035 + parent: 1 + - uid: 1133 components: - type: Transform pos: 2.5,-19.5 - parent: 2 - - uid: 1037 + parent: 1 + - uid: 1134 components: - type: Transform pos: 8.5,-10.5 - parent: 2 - - uid: 1038 + parent: 1 + - uid: 1135 components: - type: Transform pos: 7.5,-12.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1036 + - uid: 1136 components: - type: Transform pos: 6.5,-16.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumNCWL entities: - - uid: 443 + - uid: 1137 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 - parent: 2 - - uid: 611 + parent: 1 + - uid: 1138 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 - parent: 2 + parent: 1 - proto: WallReinforced entities: - - uid: 133 + - uid: 1139 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 - parent: 2 - - uid: 168 + parent: 1 + - uid: 1140 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 - parent: 2 - - uid: 198 + parent: 1 + - uid: 1141 components: - type: Transform pos: 5.5,-15.5 - parent: 2 - - uid: 210 + parent: 1 + - uid: 1142 components: - type: Transform pos: 5.5,-16.5 - parent: 2 - - uid: 214 + parent: 1 + - uid: 1143 components: - type: Transform pos: 5.5,-17.5 - parent: 2 + parent: 1 - proto: WallSolidDiagonalCurved entities: - - uid: 24 + - uid: 1144 components: - type: Transform pos: -2.5,2.5 - parent: 2 - - uid: 67 + parent: 1 + - uid: 1145 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 2 + parent: 1 - proto: WarpPointShip entities: - - uid: 958 + - uid: 1146 components: + - type: MetaData + name: NCWL Sasha - type: Transform pos: 0.5,-0.5 - parent: 2 + parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 269 + - uid: 1147 components: - type: Transform pos: -1.5,-1.5 - parent: 2 + parent: 1 - proto: WeaponMakeshiftLaser entities: - - uid: 29 + - uid: 1148 components: - type: Transform pos: -1.4766476,-1.3366694 - parent: 2 + parent: 1 - proto: WeaponTurretPDT entities: - - uid: 10 + - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 420 + linkedConsoleId: 630 + - uid: 1150 components: - type: Transform pos: -1.5,-20.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 421 + linkedConsoleId: 630 + - uid: 1151 components: - type: Transform pos: 2.5,-20.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 422 + linkedConsoleId: 630 + - uid: 1152 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 424 + linkedConsoleId: 630 + - uid: 1153 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,13.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 425 + linkedConsoleId: 630 + - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 574 + linkedConsoleId: 630 + - uid: 1155 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 924 + linkedConsoleId: 630 + - uid: 1156 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,6.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 998 + linkedConsoleId: 630 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-13.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 1026 + linkedConsoleId: 630 + - uid: 1158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 1078 + linkedConsoleId: 630 + - uid: 1159 components: - type: Transform pos: -5.5,-17.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 - - uid: 1079 + linkedConsoleId: 630 + - uid: 1160 components: - type: Transform pos: 6.5,-17.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 1100 + linkedConsoleId: 630 - proto: WindoorSecure entities: - - uid: 130 + - uid: 1161 components: - type: Transform pos: 3.5,12.5 - parent: 2 - - uid: 183 + parent: 1 + - uid: 1162 components: - type: Transform pos: -2.5,12.5 - parent: 2 + parent: 1 - proto: Wrench entities: - - uid: 329 + - uid: 1163 components: - type: Transform pos: -4.599214,-14.035264 - parent: 2 + parent: 1 ... diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml index 77ed20a2f9c..f552f97483f 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 00:20:02 + entityCount: 203 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 38: FloorDark @@ -24,20 +35,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: xAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAxAAAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAJgAAAAAAFAEAAAAARAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAAFwEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: xAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAABcBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAJgAAAAAAAMQAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAACYAAAAAAAAUAQAAAAAARAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBAAAAAAAXAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAARAAAAAAAxAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAARAAAAAAAFAEAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFwEAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAMQAAAAAAAAmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAEQAAAAAAAAUAQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABcBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFAEAAAAAFAEAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABQBAAAAAAAUAQAAAAAAFwEAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAXAQAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAFwEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAFwEAAAAAABQBAAAAAAAUAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAABcBAAAAAAAUAQAAAAAAFwEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -115,19 +126,19 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 251: 0,-4 - 252: 1,-4 - 253: -1,-4 + 199: 0,-4 + 200: 1,-4 + 201: -1,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 257: -1,-4 - 258: 0,-4 - 259: 1,-4 - 260: 1,-4 - 261: -1,-4 + 205: -1,-4 + 206: 0,-4 + 207: 1,-4 + 208: 1,-4 + 209: -1,-4 - node: zIndex: 1 id: LatticeCornerNE @@ -137,12 +148,19 @@ entities: 122: -5,-3 137: -5,-3 164: -5,-3 - 198: -2,-6 - 203: -3,-6 - 206: -1,-6 - 222: 0,-6 - 240: 2,-6 + 170: -2,-6 + 175: -3,-6 + 178: -1,-6 + 183: 0,-6 + 188: 2,-6 + 193: 1,-6 + 224: -5,-3 + 227: -3,-6 + 230: -2,-6 + 235: -1,-6 + 240: 0,-6 245: 1,-6 + 250: 2,-6 - node: zIndex: 1 id: LatticeCornerNW @@ -151,13 +169,20 @@ entities: 113: 5,-3 128: 5,-3 143: 5,-3 - 170: 5,-3 - 200: -2,-6 - 208: -1,-6 - 224: 0,-6 - 242: 2,-6 + 167: 5,-3 + 172: -2,-6 + 180: -1,-6 + 185: 0,-6 + 190: 2,-6 + 195: 1,-6 + 198: 3,-6 + 232: -2,-6 + 237: -1,-6 + 242: 0,-6 247: 1,-6 - 250: 3,-6 + 252: 2,-6 + 255: 3,-6 + 258: 5,-3 - node: zIndex: 1 id: LatticeCornerSE @@ -169,6 +194,8 @@ entities: 146: -2,4 158: -4,3 161: -2,4 + 218: -4,3 + 221: -2,4 - node: zIndex: 1 id: LatticeCornerSW @@ -180,6 +207,8 @@ entities: 149: 2,4 152: 2,4 155: 4,3 + 212: 2,4 + 215: 4,3 - node: id: LatticeEdgeE decals: @@ -195,12 +224,21 @@ entities: 157: -4,3 160: -2,4 162: -5,-3 - 196: -2,-6 - 201: -3,-6 - 204: -1,-6 - 220: 0,-6 - 238: 2,-6 + 168: -2,-6 + 173: -3,-6 + 176: -1,-6 + 181: 0,-6 + 186: 2,-6 + 191: 1,-6 + 217: -4,3 + 220: -2,4 + 222: -5,-3 + 225: -3,-6 + 228: -2,-6 + 233: -1,-6 + 238: 0,-6 243: 1,-6 + 248: 2,-6 - node: id: LatticeEdgeN decals: @@ -225,14 +263,23 @@ entities: 140: 3,-6 141: 5,-3 163: -5,-3 - 168: 5,-3 - 197: -2,-6 - 202: -3,-6 - 205: -1,-6 - 221: 0,-6 - 239: 2,-6 + 165: 5,-3 + 169: -2,-6 + 174: -3,-6 + 177: -1,-6 + 182: 0,-6 + 187: 2,-6 + 192: 1,-6 + 196: 3,-6 + 223: -5,-3 + 226: -3,-6 + 229: -2,-6 + 234: -1,-6 + 239: 0,-6 244: 1,-6 - 248: 3,-6 + 249: 2,-6 + 253: 3,-6 + 256: 5,-3 - node: id: LatticeEdgeS decals: @@ -250,6 +297,10 @@ entities: 153: 4,3 156: -4,3 159: -2,4 + 210: 2,4 + 213: 4,3 + 216: -4,3 + 219: -2,4 - node: id: LatticeEdgeW decals: @@ -264,13 +315,22 @@ entities: 148: 2,4 151: 2,4 154: 4,3 - 169: 5,-3 - 199: -2,-6 - 207: -1,-6 - 223: 0,-6 - 241: 2,-6 + 166: 5,-3 + 171: -2,-6 + 179: -1,-6 + 184: 0,-6 + 189: 2,-6 + 194: 1,-6 + 197: 3,-6 + 211: 2,4 + 214: 4,3 + 231: -2,-6 + 236: -1,-6 + 241: 0,-6 246: 1,-6 - 249: 3,-6 + 251: 2,-6 + 254: 3,-6 + 257: 5,-3 - node: color: '#FFFFFFFF' id: TechCornerE @@ -314,19 +374,19 @@ entities: color: '#FFFFFFFF' id: TechS decals: - 256: 0,-4 + 204: 0,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSE decals: - 255: 1,-4 + 203: 1,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSW decals: - 254: -1,-4 + 202: -1,-4 - node: color: '#FFFFFFFF' id: TechW @@ -465,6 +525,7 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Vanguard + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - uid: 2 @@ -475,7 +536,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 188 + - 107 - type: Physics canCollide: False - uid: 3 @@ -486,7 +547,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 188 + - 107 - type: Physics canCollide: False - proto: AirlockCommand @@ -557,7 +618,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 146 + - 137 - uid: 14 components: - type: Transform @@ -565,7 +626,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 145 + - 136 - proto: BoriaticGeneratorHerculesShuttle entities: - uid: 15 @@ -976,7 +1037,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 135 + - uid: 93 components: - type: Transform rot: 3.141592653589793 rad @@ -984,19 +1045,19 @@ entities: parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 94 + - uid: 95 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 100 + - uid: 101 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1004,19 +1065,19 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 95 + - uid: 96 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 101 + - uid: 102 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1024,19 +1085,19 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 96 + - uid: 97 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 102 + - uid: 103 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1044,14 +1105,14 @@ entities: - type: InsideEntityStorage - proto: ComputerAdvancedRadar entities: - - uid: 121 + - uid: 106 components: - type: Transform - pos: 0.5,3.5 + pos: 1.5,-3.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 188 + - uid: 107 components: - type: Transform pos: 0.5,-2.5 @@ -1073,9 +1134,11 @@ entities: - type: DeviceLinkSource linkedPorts: 3: - - Group1: Toggle + - - Group1 + - Toggle 2: - - Group1: Toggle + - - Group1 + - Toggle - type: NamedModules buttonNames: - Toggle Slugthrowers @@ -1085,19 +1148,19 @@ entities: - Module E - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 97 + - uid: 98 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 103 + - uid: 104 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1105,49 +1168,49 @@ entities: - type: InsideEntityStorage - proto: GasPipeStraight entities: - - uid: 107 + - uid: 108 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 108 + - uid: 109 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 109 + - uid: 110 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 110 + - uid: 111 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 111 + - uid: 112 components: - type: Transform pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 112 + - uid: 113 components: - type: Transform pos: 0.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 113 + - uid: 114 components: - type: Transform pos: 0.5,-4.5 @@ -1156,14 +1219,14 @@ entities: color: '#990000FF' - proto: GasVentScrubber entities: - - uid: 114 + - uid: 115 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 115 + - uid: 116 components: - type: Transform pos: 0.5,-1.5 @@ -1172,33 +1235,33 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 116 + - uid: 117 components: - type: Transform pos: -1.5,-1.5 parent: 1 - proto: Gyroscope entities: - - uid: 120 + - uid: 118 components: - type: Transform pos: 2.5,-1.5 parent: 1 - proto: JetpackBlackFilled entities: - - uid: 98 + - uid: 99 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 104 + - uid: 105 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1206,7 +1269,7 @@ entities: - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 117 + - uid: 119 components: - type: Transform pos: -1.609375,-2.546875 @@ -1216,79 +1279,59 @@ entities: linearDamping: 0 - proto: MagazineLightRifleBoxSlug entities: - - uid: 123 + - uid: 121 components: - type: Transform - parent: 122 + parent: 120 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 124 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 122 components: - type: Transform - parent: 122 + parent: 120 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 125 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 124 components: - type: Transform - parent: 122 + parent: 123 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - type: InsideEntityStorage + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - uid: 126 components: - type: Transform - parent: 122 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 127 - components: - - type: Transform - parent: 122 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 128 - components: - - type: Transform - parent: 122 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 130 - components: - - type: Transform - parent: 129 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 132 - components: - - type: Transform - parent: 131 + parent: 125 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: N14CrateAluminium entities: - - uid: 122 + - uid: 120 components: - type: Transform pos: -0.5,3.5 @@ -1299,41 +1342,37 @@ entities: showEnts: False occludes: True ents: - - 123 - - 124 - - 125 - - 126 - - 127 - - 128 + - 122 + - 121 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: PoweredSmallLight entities: - - uid: 134 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 1 - - uid: 137 + - uid: 128 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 138 + - uid: 129 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 139 + - uid: 130 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 140 + - uid: 131 components: - type: Transform rot: 3.141592653589793 rad @@ -1341,25 +1380,25 @@ entities: parent: 1 - proto: Railing entities: - - uid: 141 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 142 + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 143 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 144 + - uid: 135 components: - type: Transform rot: 1.5707963267948966 rad @@ -1367,7 +1406,7 @@ entities: parent: 1 - proto: SignalButton entities: - - uid: 145 + - uid: 136 components: - type: Transform pos: -1.5,3.5 @@ -1375,8 +1414,9 @@ entities: - type: DeviceLinkSource linkedPorts: 14: - - Pressed: Toggle - - uid: 146 + - - Pressed + - Toggle + - uid: 137 components: - type: Transform pos: 2.5,3.5 @@ -1384,15 +1424,22 @@ entities: - type: DeviceLinkSource linkedPorts: 13: - - Pressed: Toggle + - - Pressed + - Toggle - proto: SlugthrowerCannon entities: - - uid: 129 + - uid: 123 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 19611.025 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1402,19 +1449,33 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: 130 + ent: 124 gun_chamber: !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: [] - type: ChamberMagazineAmmoProvider boltClosed: True - - uid: 131 + - uid: 125 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 19611.025 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1424,16 +1485,24 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: 132 + ent: 126 gun_chamber: !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: [] - type: ChamberMagazineAmmoProvider boltClosed: True - proto: SubstationBasic entities: - - uid: 147 + - uid: 138 components: - type: Transform pos: 2.5,-2.5 @@ -1442,7 +1511,7 @@ entities: - Explosive - proto: SuitStorageWallmount entities: - - uid: 93 + - uid: 94 components: - type: Transform pos: -1.5,1.5 @@ -1453,14 +1522,14 @@ entities: showEnts: False occludes: True ents: - - 98 - - 94 - 96 + - 98 - 97 - 95 + - 99 - type: Physics canCollide: False - - uid: 99 + - uid: 100 components: - type: Transform pos: 2.5,1.5 @@ -1471,68 +1540,68 @@ entities: showEnts: False occludes: True ents: + - 104 - 103 - 102 + - 105 - 101 - - 104 - - 100 - type: Physics canCollide: False - proto: ThrusterNCWLFighter entities: - - uid: 106 + - uid: 139 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 133 + - uid: 140 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 1 - - uid: 136 + - uid: 141 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 1 - - uid: 152 + - uid: 142 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - - uid: 153 + - uid: 143 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 - - uid: 154 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 1 - - uid: 155 + - uid: 145 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 156 + - uid: 146 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 157 + - uid: 147 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 187 + - uid: 148 components: - type: Transform rot: 3.141592653589793 rad @@ -1540,7 +1609,7 @@ entities: parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 158 + - uid: 149 components: - type: Transform pos: 1.367957,3.4839787 @@ -1550,43 +1619,43 @@ entities: linearDamping: 0 - proto: WallPlastitanium entities: - - uid: 105 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - - uid: 163 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 165 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 1 - - uid: 174 + - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - - uid: 200 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,4.5 parent: 1 - - uid: 201 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 1 - - uid: 202 + - uid: 156 components: - type: Transform rot: 1.5707963267948966 rad @@ -1594,178 +1663,178 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 118 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 119 + - uid: 158 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 1 - - uid: 166 + - uid: 159 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 199 + - uid: 160 components: - type: Transform pos: -1.5,4.5 parent: 1 - proto: WallReinforcedNCWL entities: - - uid: 148 + - uid: 161 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 149 + - uid: 162 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 150 + - uid: 163 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 151 + - uid: 164 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 159 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 160 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 161 + - uid: 167 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 162 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 - - uid: 164 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 167 + - uid: 170 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - uid: 168 + - uid: 171 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 - - uid: 169 + - uid: 172 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 170 + - uid: 173 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 171 + - uid: 174 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 172 + - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - uid: 173 + - uid: 176 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 1 - - uid: 175 + - uid: 177 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 176 + - uid: 178 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 177 + - uid: 179 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 178 + - uid: 180 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 179 + - uid: 181 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 180 + - uid: 182 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 181 + - uid: 183 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 182 + - uid: 184 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 183 + - uid: 185 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 184 + - uid: 186 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 185 + - uid: 187 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 186 + - uid: 188 components: - type: Transform pos: -1.5,-4.5 @@ -1826,31 +1895,31 @@ entities: parent: 1 - proto: WallSolidDiagonalSoutheastCurved entities: - - uid: 203 + - uid: 199 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 204 + - uid: 200 components: - type: Transform pos: -4.5,-2.5 parent: 1 - proto: WallSolidDiagonalSouthwestCurved entities: - - uid: 205 + - uid: 201 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 206 + - uid: 202 components: - type: Transform pos: 5.5,-2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 207 + - uid: 203 components: - type: Transform pos: 0.5,0.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml index b113ba5ee2c..cae645bed7f 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml @@ -1,11 +1,23 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 12:01:09 + entityCount: 2203 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 4: FloorBlueCircuit 23: FloorBrokenWood 33: FloorDark + 14: FloorDarkDiagonal 2: FloorHullReinforced 5: FloorMiningDark 6: FloorMiningLight @@ -37,44 +49,44 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAggAAAAAAIQAAAAAABQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAIQAAAAAAggAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAAIQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAggAAAAAACwAAAAAABQAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAACwAAAAAABQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAACwAAAAAAggAAAAAABQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAABQAAAAAAIQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAggAAAAAAIQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAggAAAAAAggAAAAAAIQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABAAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAAACwAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAAggAAAAAACwAAAAAAIQAAAAAAIQAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAABQAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAQAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAAgAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAALAAAAAAAABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAABwAAAAAAggAAAAAAIQAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAABwAAAAAACAAAAAAAIQAAAAAABwAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAAAgAAAAAACAAAAAAAIQAAAAAABwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAABwAAAAAABwAAAAAAIQAAAAAACAAAAAAAggAAAAAAggAAAAAAfgAAAAAAggAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAAIQAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAABQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIQAAAAAAggAAAAAAgQAAAAAAggAAAAAACwAAAAAACwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAACCAAAAAAAAIQAAAAAAAAgAAAAAAAAIAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAABQAAAAAAAAcAAAAAAAAIAAAAAAAAIQAAAAAAAAcAAAAAAAAIAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAUAAAAAAAACAAAAAAAACAAAAAAAACEAAAAAAAAHAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAAcAAAAAAAAhAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAAAAIIAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAfgAAAAAAAH4AAAAAAACCAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAH4AAAAAAAB+AAAAAAAAggAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAFMAAAAAAABTAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAABTAAAAAAAAUwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAUwAAAAAAAFMAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAABTAAAAAAAAUwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAFAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAUwAAAAAAAFMAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: BwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAfgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAABQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAAggAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAAAAgAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAHAAAAAAAACAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAfgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAABTAAAAAAAAUwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAAAAAALAAAAAAAAUwAAAAAAAFMAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAACwAAAAAAAFMAAAAAAABTAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAALAAAAAAAAUwAAAAAAAFMAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAFMAAAAAAABTAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAABQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: ggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAgQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAggAAAAAAgQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAggAAAAAACAAAAAAABQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAABwAAAAAAAQAAAAAAIQAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAggAAAAAAIQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAggAAAAAAIQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAgQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACBAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAIAAAAAAAAggAAAAAAAIEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAAggAAAAAAACEAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAAACAAAAAAAggAAAAAAIQAAAAAAAQAAAAAACAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAACAAAAAAABwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAACAAAAAAACAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAAIQAAAAAAIQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAACwAAAAAACwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAoAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAIAAAAAAAABwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: CAAAAAAACAAAAAAAfgAAAAAAAQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAggAAAAAACAAAAAAACwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAACAAAAAAACwAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: CAAAAAAAAAgAAAAAAAB+AAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAggAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAACwAAAAAAIQAAAAAAAQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAABQAAAAAACwAAAAAAIQAAAAAAggAAAAAAggAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAACwAAAAAAIQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACAAAAAAACwAAAAAACAAAAAAAggAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAUAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAACwAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAABQAAAAAAAAsAAAAAAAAhAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -100,4366 +112,6904 @@ entities: color: '#FFFFFF6D' id: Arrows decals: - 978: 2,26 + 876: 2,26 - node: angle: 4.71238898038469 rad color: '#FFFFFF6D' id: Arrows decals: - 979: -2,26 + 877: -2,26 - node: color: '#EFB34196' id: BotLeftGreyscale decals: - 63: 3,26 + 55: 3,26 + - node: + color: '#EFB34196' + id: BoxGreyscale + decals: + 5386: 0,26 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: BoxGreyscale + decals: + 6656: 6,8 - node: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 229: -5,7 - 373: 4,28 - 502: -5,-2 - 531: 7,-6 - 534: -5,-6 - 574: -2,-13 - 575: -3,-12 - 582: -2,-16 + 220: -5,7 + 318: 4,28 + 446: -5,-2 + 475: 7,-6 + 478: -5,-6 + 518: -2,-13 + 519: -3,-12 + 526: -2,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 230: -8,7 - 374: -4,28 - 501: 5,-2 - 533: -7,-6 - 535: 5,-6 - 581: -6,-16 + 221: -8,7 + 319: -4,28 + 445: 5,-2 + 477: -7,-6 + 479: 5,-6 + 525: -6,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 228: -5,5 - 237: 1,5 - 526: -5,2 - 537: -5,-7 - 538: 7,-7 - 573: -2,-14 - 583: -2,-17 - 584: -5,-17 + 219: -5,5 + 228: 1,5 + 470: -5,2 + 481: -5,-7 + 482: 7,-7 + 517: -2,-14 + 527: -2,-17 + 528: -5,-17 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 234: -8,5 - 236: -1,5 - 375: -4,20 - 525: 5,2 - 532: -7,-7 - 536: 5,-7 - 571: -6,-14 - 585: -3,-17 - 586: -6,-17 + 225: -8,5 + 227: -1,5 + 320: -4,20 + 469: 5,2 + 476: -7,-7 + 480: 5,-7 + 515: -6,-14 + 529: -3,-17 + 530: -6,-17 - node: color: '#EFB34196' id: BrickTileSteelEndN decals: - 568: -6,-9 + 512: -6,-9 - node: color: '#EFB34196' id: BrickTileSteelInnerNe decals: - 488: -1,-7 - 520: -6,-2 - 579: -6,-12 - 580: -3,-13 + 432: -1,-7 + 464: -6,-2 + 523: -6,-12 + 524: -3,-13 - node: color: '#EFB34196' id: BrickTileSteelInnerNw decals: - 487: 1,-7 - 521: 6,-2 + 431: 1,-7 + 465: 6,-2 - node: color: '#EFB34196' id: BrickTileSteelInnerSe decals: - 486: -1,-4 - 527: -6,2 + 430: -1,-4 + 471: -6,2 - node: color: '#EFB34196' id: BrickTileSteelInnerSw decals: - 485: 1,-4 - 528: 6,2 + 429: 1,-4 + 472: 6,2 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 233: -5,6 - 240: 1,6 - 369: 4,21 - 370: 4,22 - 371: 4,23 - 372: 4,24 - 478: -1,-6 - 479: -1,-5 - 484: -2,-4 - 499: -5,-3 - 503: -6,-1 - 504: -6,0 - 505: -6,1 - 569: -6,-10 - 578: -6,-11 + 224: -5,6 + 231: 1,6 + 314: 4,21 + 315: 4,22 + 316: 4,23 + 317: 4,24 + 422: -1,-6 + 423: -1,-5 + 428: -2,-4 + 443: -5,-3 + 447: -6,-1 + 448: -6,0 + 449: -6,1 + 513: -6,-10 + 522: -6,-11 - node: color: '#EFB34196' id: BrickTileSteelLineN decals: - 226: -7,7 - 227: -6,7 - 381: 3,28 - 382: 2,28 - 383: 1,28 - 384: -3,28 - 385: -2,28 - 386: -1,28 - 477: 0,-7 - 540: 6,-6 - 542: -6,-6 - 576: -4,-12 - 577: -5,-12 + 217: -7,7 + 218: -6,7 + 326: 3,28 + 327: 2,28 + 328: 1,28 + 329: -3,28 + 330: -2,28 + 331: -1,28 + 421: 0,-7 + 484: 6,-6 + 486: -6,-6 + 520: -4,-12 + 521: -5,-12 - node: color: '#EFB34196' id: BrickTileSteelLineS decals: - 231: -6,5 - 235: -7,5 - 239: 0,5 - 358: -3,20 - 359: -2,20 - 360: -1,20 - 361: 1,20 - 362: 2,20 - 363: 3,20 - 480: 0,-4 - 539: 6,-7 - 541: -6,-7 - 572: -4,-14 + 222: -6,5 + 226: -7,5 + 230: 0,5 + 303: -3,20 + 304: -2,20 + 305: -1,20 + 306: 1,20 + 307: 2,20 + 308: 3,20 + 424: 0,-4 + 483: 6,-7 + 485: -6,-7 + 516: -4,-14 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: - 232: -8,6 - 238: -1,6 - 365: -4,21 - 366: -4,22 - 367: -4,23 - 368: -4,24 - 481: 1,-6 - 482: 1,-5 - 483: 2,-4 - 500: 5,-3 - 522: 6,-1 - 523: 6,0 - 524: 6,1 - 570: -6,-10 + 223: -8,6 + 229: -1,6 + 310: -4,21 + 311: -4,22 + 312: -4,23 + 313: -4,24 + 425: 1,-6 + 426: 1,-5 + 427: 2,-4 + 444: 5,-3 + 466: 6,-1 + 467: 6,0 + 468: 6,1 + 514: -6,-10 - node: color: '#FFFFFFFF' id: Damaged decals: - 882: -6,10 + 793: -6,10 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 5371: 1,23 + 5372: 0,23 + 5385: -1,23 - node: color: '#FFFFFFFF' id: Dirt decals: - 880: 0,6 - 881: 0,9 + 791: 0,6 + 792: 0,9 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 537: -8,25 + 538: -7,27 + 539: -6,27 + 540: -7,26 + 541: -7,26 + 542: -5,26 + 543: -2,27 + 544: -3,28 + 545: -4,26 + 546: -5,25 + 547: -2,25 + 548: -3,23 + 549: -4,22 + 550: 2,26 + 551: 4,27 + 552: -3,22 + 553: -4,20 + 554: -3,21 + 555: 4,27 + 556: -4,20 + 557: -4,20 + 558: -3,21 + 559: 3,26 + 560: 4,26 + 561: 3,24 + 562: -1,20 + 563: 3,24 + 564: 4,25 + 565: 5,26 + 566: 5,25 + 567: 4,23 + 568: 0,20 + 569: 0,20 + 570: 2,20 + 571: 4,21 + 572: 4,22 + 573: 1,20 + 574: 1,29 + 575: 2,30 + 576: 0,31 + 577: -1,31 + 578: -2,31 + 579: 0,31 + 580: 2,32 + 581: 2,32 + 582: 0,30 + 583: 0,30 + 584: -5,30 + 585: -5,30 + 586: -4,31 + 587: -4,32 + 588: -4,34 + 589: -5,34 + 590: -5,32 + 591: -6,31 + 592: -6,30 + 593: -4,30 + 594: -5,32 + 595: -5,34 + 596: -6,33 + 597: -7,32 + 598: -5,34 + 599: -4,37 + 600: -4,36 + 601: -4,36 + 602: 5,33 + 603: 5,33 + 604: 5,34 + 605: 4,31 + 606: 6,31 + 607: 5,31 + 608: 6,30 + 609: 5,32 + 610: 3,31 + 611: 3,31 + 612: 0,32 + 613: 0,33 + 614: 7,26 + 615: 7,27 + 616: 5,27 + 617: 7,26 + 618: 6,27 + 619: 7,25 + 620: 8,25 + 621: 6,25 + 622: 6,26 + 623: 6,25 + 624: 7,24 + 625: 6,26 + 626: 2,25 + 627: 3,21 + 628: 1,20 + 629: -1,19 + 630: -3,17 + 631: -3,16 + 632: -3,18 + 633: -2,14 + 634: -3,15 + 635: -3,17 + 636: -1,15 + 637: 3,18 + 638: 1,17 + 639: 3,18 + 640: 1,17 + 641: 3,15 + 642: 3,17 + 643: 2,16 + 644: 3,16 + 645: 2,16 + 646: -5,16 + 647: -7,20 + 648: -6,14 + 649: -6,12 + 650: -6,14 + 651: -6,13 + 652: -4,12 + 653: -4,9 + 654: -6,10 + 655: -8,11 + 656: -8,8 + 657: -7,6 + 658: -7,5 + 659: -8,6 + 660: -7,7 + 661: -7,5 + 662: -5,5 + 663: -4,6 + 664: -6,6 + 665: -1,6 + 666: -2,6 + 667: -1,6 + 668: 2,6 + 669: 5,8 + 670: 7,4 + 671: 8,10 + 672: 3,9 + 673: -2,12 + 674: 1,12 + 675: -2,13 + 676: 1,12 + 677: 0,15 + 678: 0,16 + 679: 3,18 + 680: 3,16 + 681: 3,14 + 682: 3,9 + 683: 3,6 + 684: 3,5 + 685: -5,2 + 686: -6,1 + 687: -6,0 + 688: -5,-4 + 689: -5,-4 + 690: -6,-2 + 691: -6,-1 + 692: -6,-4 + 693: -6,-4 + 694: -5,-4 + 695: -6,-2 + 696: -6,0 + 697: -6,2 + 698: -5,3 + 699: -6,3 + 700: -6,-4 + 701: -5,-6 + 702: -6,-7 + 703: -6,-7 + 704: -7,-7 + 705: -6,-6 + 706: -7,-7 + 707: -1,-5 + 708: -1,-4 + 709: -1,-3 + 710: 1,-4 + 711: 4,-3 + 712: 2,-6 + 713: -4,-7 + 714: -3,-5 + 715: -3,-4 + 716: -3,-8 + 717: -1,-7 + 718: 2,-7 + 719: 5,-7 + 720: -1,-7 + 721: -3,-7 + 722: -3,-6 + 723: -2,-4 + 724: -1,-3 + 725: 2,-3 + 726: 1,-6 + 727: 2,-6 + 728: 2,-5 + 729: 3,-5 + 730: 2,-7 + 731: -1,-5 + 732: -1,-2 + 733: -2,-4 + 734: 0,-10 + 735: -1,-10 + 736: 0,-9 + 737: -1,-11 + 738: 0,-11 + 739: -1,-10 + 740: -1,-9 + 741: 6,-7 + 742: 7,-7 + 743: 5,-6 + 744: 7,-6 + 745: 5,-6 + 746: 5,-4 + 747: 5,-3 + 748: 6,-2 + 749: 5,-4 + 750: 6,-4 + 751: 6,-1 + 752: 6,1 + 753: 4,3 + 754: 5,3 + 755: 5,2 + 756: 5,2 + 757: 7,-9 + 758: 7,-10 + 759: 4,-13 + 760: 2,-13 + 761: 5,-13 + 762: 5,-13 + 763: 6,-13 + 764: 1,-14 + 765: -2,-14 + 766: -2,-14 + 767: -2,-13 + 768: -3,-13 + 769: -4,-14 + 770: -3,-13 + 771: -4,-13 + 772: -6,-14 + 773: -4,-13 + 774: -3,-12 + 775: -6,-14 + 776: -6,-14 + 777: -6,-11 + 778: -6,-10 + 779: -6,-9 + 780: -6,-11 + 781: -6,-13 + 782: -7,-13 + 783: -8,-12 + 784: -8,-11 + 785: -9,-13 + 786: -8,-14 + 787: -10,-13 + 788: -10,-11 + 789: -9,-11 + 790: -8,-14 + 808: -3,25 + 809: -4,25 + 810: -4,25 + 811: -3,24 + 812: -3,24 + 813: -1,20 + 814: 0,20 + 815: 0,20 + 816: 1,20 + 817: 1,20 + 818: -2,20 + 819: -3,20 + 820: 2,28 + 821: 2,28 + 822: 2,26 + 823: 2,26 + 824: 0,30 + 825: -1,30 + 826: -2,30 + 827: -1,31 + 828: 0,30 + 829: -4,30 + 830: -5,30 + 831: -5,30 + 832: -4,32 + 833: -4,32 + 834: -5,33 + 835: -5,34 + 836: -5,32 + 837: -3,17 + 838: -3,17 + 839: -3,16 + 840: -2,15 + 841: -2,15 + 842: 5,15 + 843: 3,16 + 844: 2,15 + 845: 3,15 + 846: 2,16 + 847: 2,17 + 848: 3,18 + 849: 3,18 + 850: 3,18 + 851: 0,12 + 852: -2,12 + 853: 5,8 + 854: 5,8 + 855: -1,-6 + 856: -1,-5 + 857: -1,-5 + 858: -3,-4 + 859: -3,-4 + 860: -3,-6 + 861: -2,-6 + 862: -1,-6 + 863: -1,-7 + 864: -1,-7 + 865: 1,-7 + 866: 2,-6 + 867: 2,-6 + 868: 1,-6 + 869: 1,-4 + 870: -5,-4 + 871: -5,-3 + 872: -5,-3 + 873: -5,-2 + 874: -6,-2 + 875: -6,0 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 593: -8,25 - 594: -7,27 - 595: -6,27 - 596: -7,26 - 597: -7,26 - 598: -5,26 - 599: -2,27 - 600: -3,28 - 601: -4,26 - 602: -5,25 - 603: 0,26 - 604: 1,27 - 605: -2,25 - 606: -3,23 - 607: -4,22 - 608: -2,24 - 609: 2,26 - 610: 4,27 - 611: 1,26 - 612: -1,25 - 613: -2,24 - 614: -3,22 - 615: -4,20 - 616: -3,21 - 617: 0,24 - 618: 4,27 - 619: -1,23 - 620: -2,22 - 621: -4,20 - 622: -4,20 - 623: -3,21 - 624: -1,22 - 625: 1,24 - 626: 3,26 - 627: 4,26 - 628: 3,24 - 629: 1,23 - 630: 0,22 - 631: -1,21 - 632: -1,20 - 633: 0,21 - 634: 3,24 - 635: 4,25 - 636: 5,26 - 637: 5,25 - 638: 4,23 - 639: 2,21 - 640: 0,20 - 641: 0,20 - 642: 2,20 - 643: 2,21 - 644: 4,21 - 645: 4,22 - 646: 2,21 - 647: 1,20 - 648: 0,21 - 649: 0,24 - 650: 1,29 - 651: 2,30 - 652: 0,31 - 653: -1,31 - 654: -2,31 - 655: 0,31 - 656: 2,32 - 657: 2,32 - 658: 0,30 - 659: 0,30 - 660: -5,30 - 661: -5,30 - 662: -4,31 - 663: -4,32 - 664: -4,34 - 665: -5,34 - 666: -5,32 - 667: -6,31 - 668: -6,30 - 669: -4,30 - 670: -5,32 - 671: -5,34 - 672: -6,33 - 673: -7,32 - 674: -5,34 - 675: -4,37 - 676: -4,36 - 677: -4,36 - 678: 5,33 - 679: 5,33 - 680: 5,34 - 681: 4,31 - 682: 6,31 - 683: 5,31 - 684: 6,30 - 685: 5,32 - 686: 3,31 - 687: 3,31 - 688: 0,32 - 689: 0,33 - 690: 7,26 - 691: 7,27 - 692: 5,27 - 693: 7,26 - 694: 6,27 - 695: 7,25 - 696: 8,25 - 697: 6,25 - 698: 6,26 - 699: 6,25 - 700: 7,24 - 701: 6,26 - 702: 2,25 - 703: 3,21 - 704: 1,20 - 705: -1,21 - 706: -1,19 - 707: -3,17 - 708: -2,18 - 709: -3,16 - 710: -3,18 - 711: -2,14 - 712: -3,15 - 713: -3,17 - 714: -2,17 - 715: -1,15 - 716: 3,18 - 717: 1,17 - 718: 3,18 - 719: 1,17 - 720: 3,15 - 721: 3,17 - 722: 2,16 - 723: 3,16 - 724: 2,16 - 725: -5,16 - 726: -7,20 - 727: -6,14 - 728: -6,12 - 729: -6,14 - 730: -6,13 - 731: -4,12 - 732: -4,9 - 733: -6,10 - 734: -8,11 - 735: -8,8 - 736: -7,6 - 737: -7,5 - 738: -8,6 - 739: -7,7 - 740: -7,5 - 741: -5,5 - 742: -4,6 - 743: -6,6 - 744: -1,6 - 745: -2,6 - 746: -1,6 - 747: 2,6 - 748: 6,7 - 749: 7,8 - 750: 5,5 - 751: 5,5 - 752: 6,5 - 753: 5,6 - 754: 5,8 - 755: 7,6 - 756: 7,4 - 757: 7,8 - 758: 6,9 - 759: 6,10 - 760: 8,10 - 761: 3,9 - 762: -2,12 - 763: 1,12 - 764: -2,13 - 765: 1,12 - 766: 0,15 - 767: 0,16 - 768: 3,18 - 769: 3,16 - 770: 3,14 - 771: 3,9 - 772: 3,6 - 773: 3,5 - 774: -5,2 - 775: -6,1 - 776: -6,0 - 777: -5,-4 - 778: -5,-4 - 779: -6,-2 - 780: -6,-1 - 781: -6,-4 - 782: -6,-4 - 783: -5,-4 - 784: -6,-2 - 785: -6,0 - 786: -6,2 - 787: -5,3 - 788: -6,3 - 789: -6,-4 - 790: -5,-6 - 791: -6,-7 - 792: -6,-7 - 793: -7,-7 - 794: -6,-6 - 795: -7,-7 - 796: -1,-5 - 797: -1,-4 - 798: -1,-3 - 799: 1,-4 - 800: 4,-3 - 801: 2,-6 - 802: -4,-7 - 803: -3,-5 - 804: -3,-4 - 805: -3,-8 - 806: -1,-7 - 807: 2,-7 - 808: 5,-7 - 809: -1,-7 - 810: -3,-7 - 811: -3,-6 - 812: -2,-4 - 813: -1,-3 - 814: 2,-3 - 815: 1,-6 - 816: 2,-6 - 817: 2,-5 - 818: 3,-5 - 819: 2,-7 - 820: -1,-5 - 821: -1,-2 - 822: -2,-4 - 823: 0,-10 - 824: -1,-10 - 825: 0,-9 - 826: -1,-11 - 827: 0,-11 - 828: -1,-10 - 829: -1,-9 - 830: 6,-7 - 831: 7,-7 - 832: 5,-6 - 833: 7,-6 - 834: 5,-6 - 835: 5,-4 - 836: 5,-3 - 837: 6,-2 - 838: 5,-4 - 839: 6,-4 - 840: 6,-1 - 841: 6,1 - 842: 4,3 - 843: 5,3 - 844: 5,2 - 845: 5,2 - 846: 7,-9 - 847: 7,-10 - 848: 4,-13 - 849: 2,-13 - 850: 5,-13 - 851: 5,-13 - 852: 6,-13 - 853: 1,-14 - 854: -2,-14 - 855: -2,-14 - 856: -2,-13 - 857: -3,-13 - 858: -4,-14 - 859: -3,-13 - 860: -4,-13 - 861: -6,-14 - 862: -4,-13 - 863: -3,-12 - 864: -6,-14 - 865: -6,-14 - 866: -6,-11 - 867: -6,-10 - 868: -6,-9 - 869: -6,-11 - 870: -6,-13 - 871: -7,-13 - 872: -8,-12 - 873: -8,-11 - 874: -9,-13 - 875: -8,-14 - 876: -10,-13 - 877: -10,-11 - 878: -9,-11 - 879: -8,-14 - 897: -3,25 - 898: -4,25 - 899: -4,25 - 900: -3,24 - 901: -3,24 - 902: -1,22 - 903: -1,20 - 904: 0,20 - 905: 0,20 - 906: 1,20 - 907: 1,20 - 908: -2,20 - 909: -3,20 - 910: 1,24 - 911: 1,26 - 912: 0,26 - 913: 0,26 - 914: 0,26 - 915: -1,26 - 916: -1,27 - 917: 2,28 - 918: 2,28 - 919: 2,26 - 920: 2,26 - 921: 0,30 - 922: -1,30 - 923: -2,30 - 924: -1,31 - 925: 0,30 - 926: -4,30 - 927: -5,30 - 928: -5,30 - 929: -4,32 - 930: -4,32 - 931: -5,33 - 932: -5,34 - 933: -5,32 - 934: -2,17 - 935: -3,17 - 936: -3,17 - 937: -3,16 - 938: -2,15 - 939: -2,15 - 940: 5,15 - 941: 3,16 - 942: 2,15 - 943: 3,15 - 944: 2,16 - 945: 2,17 - 946: 3,18 - 947: 3,18 - 948: 3,18 - 949: 0,12 - 950: -2,12 - 951: 6,7 - 952: 5,8 - 953: 5,8 - 954: 6,8 - 955: 6,10 - 956: 6,10 - 957: -1,-6 - 958: -1,-5 - 959: -1,-5 - 960: -3,-4 - 961: -3,-4 - 962: -3,-6 - 963: -2,-6 - 964: -1,-6 - 965: -1,-7 - 966: -1,-7 - 967: 1,-7 - 968: 2,-6 - 969: 2,-6 - 970: 1,-6 - 971: 1,-4 - 972: -5,-4 - 973: -5,-3 - 974: -5,-3 - 975: -5,-2 - 976: -6,-2 - 977: -6,0 + 6647: 5,7 + 6648: 7,7 + 6649: 6,6 + 6650: 6,10 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 883: -7,8 - 884: -7,8 - 885: -7,9 - 886: -6,8 - 887: -5,8 - 888: -5,10 - 889: -5,10 - 890: -6,10 - 891: -7,10 - 892: -8,9 - 893: -7,11 + 794: -7,8 + 795: -7,8 + 796: -7,9 + 797: -6,8 + 798: -5,8 + 799: -5,10 + 800: -5,10 + 801: -6,10 + 802: -7,10 + 803: -8,9 + 804: -7,11 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 3446: -2,11 - 3605: -2,11 - 3861: -2,11 - 4109: -2,11 - 4357: -2,11 + 3344: -2,11 + 3503: -2,11 + 3759: -2,11 + 4007: -2,11 + 4255: -2,11 + 4503: -2,11 + 4751: -2,11 + 5014: -2,11 + 5262: -2,11 + 5532: -2,11 + 5780: -2,11 + 6036: -2,11 + 6284: -2,11 + 6524: -2,11 + 6802: -2,11 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 3451: -2,7 - 3709: -2,7 - 3855: -2,7 - 4103: -2,7 - 4351: -2,7 + 3349: -2,7 + 3607: -2,7 + 3753: -2,7 + 4001: -2,7 + 4249: -2,7 + 4497: -2,7 + 4745: -2,7 + 5008: -2,7 + 5256: -2,7 + 5526: -2,7 + 5774: -2,7 + 6030: -2,7 + 6278: -2,7 + 6518: -2,7 + 6796: -2,7 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 3465: 2,7 - 3714: 2,7 - 3746: 2,7 - 3994: 2,7 - 4242: 2,7 + 3363: 2,7 + 3612: 2,7 + 3644: 2,7 + 3892: 2,7 + 4140: 2,7 + 4388: 2,7 + 4636: 2,7 + 4899: 2,7 + 5147: 2,7 + 5417: 2,7 + 5665: 2,7 + 5921: 2,7 + 6169: 2,7 + 6417: 2,7 + 6687: 2,7 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 3459: 2,11 - 3499: 2,11 - 3752: 2,11 - 4000: 2,11 - 4248: 2,11 + 3357: 2,11 + 3397: 2,11 + 3650: 2,11 + 3898: 2,11 + 4146: 2,11 + 4394: 2,11 + 4642: 2,11 + 4905: 2,11 + 5153: 2,11 + 5423: 2,11 + 5671: 2,11 + 5927: 2,11 + 6175: 2,11 + 6423: 2,11 + 6693: 2,11 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 3445: -2,11 - 3447: -2,10 - 3448: -2,9 - 3450: -2,7 - 3452: -2,8 - 3600: -2,8 - 3601: -2,9 - 3602: -2,10 - 3604: -2,11 - 3708: -2,7 - 3854: -2,7 - 3856: -2,8 - 3857: -2,9 - 3858: -2,10 - 3860: -2,11 - 4102: -2,7 - 4104: -2,8 - 4105: -2,9 - 4106: -2,10 - 4108: -2,11 - 4350: -2,7 - 4352: -2,8 - 4353: -2,9 - 4354: -2,10 - 4356: -2,11 + 3343: -2,11 + 3345: -2,10 + 3346: -2,9 + 3348: -2,7 + 3350: -2,8 + 3498: -2,8 + 3499: -2,9 + 3500: -2,10 + 3502: -2,11 + 3606: -2,7 + 3752: -2,7 + 3754: -2,8 + 3755: -2,9 + 3756: -2,10 + 3758: -2,11 + 4000: -2,7 + 4002: -2,8 + 4003: -2,9 + 4004: -2,10 + 4006: -2,11 + 4248: -2,7 + 4250: -2,8 + 4251: -2,9 + 4252: -2,10 + 4254: -2,11 + 4496: -2,7 + 4498: -2,8 + 4499: -2,9 + 4500: -2,10 + 4502: -2,11 + 4744: -2,7 + 4746: -2,8 + 4747: -2,9 + 4748: -2,10 + 4750: -2,11 + 5007: -2,7 + 5009: -2,8 + 5010: -2,9 + 5011: -2,10 + 5013: -2,11 + 5255: -2,7 + 5257: -2,8 + 5258: -2,9 + 5259: -2,10 + 5261: -2,11 + 5525: -2,7 + 5527: -2,8 + 5528: -2,9 + 5529: -2,10 + 5531: -2,11 + 5773: -2,7 + 5775: -2,8 + 5776: -2,9 + 5777: -2,10 + 5779: -2,11 + 6029: -2,7 + 6031: -2,8 + 6032: -2,9 + 6033: -2,10 + 6035: -2,11 + 6277: -2,7 + 6279: -2,8 + 6280: -2,9 + 6281: -2,10 + 6283: -2,11 + 6517: -2,7 + 6519: -2,8 + 6520: -2,9 + 6521: -2,10 + 6523: -2,11 + 6795: -2,7 + 6797: -2,8 + 6798: -2,9 + 6799: -2,10 + 6801: -2,11 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 3449: -2,7 - 3454: -1,7 - 3456: 0,7 - 3463: 2,7 - 3467: 1,7 - 3707: -2,7 - 3710: -1,7 - 3711: 0,7 - 3712: 2,7 - 3715: 1,7 - 3724: 0,7 - 3734: 1,7 - 3744: 2,7 - 3853: -2,7 - 3870: -1,7 - 3972: 0,7 - 3982: 1,7 - 3992: 2,7 - 4101: -2,7 - 4118: -1,7 - 4220: 0,7 - 4230: 1,7 - 4240: 2,7 - 4349: -2,7 - 4366: -1,7 + 3347: -2,7 + 3352: -1,7 + 3354: 0,7 + 3361: 2,7 + 3365: 1,7 + 3605: -2,7 + 3608: -1,7 + 3609: 0,7 + 3610: 2,7 + 3613: 1,7 + 3622: 0,7 + 3632: 1,7 + 3642: 2,7 + 3751: -2,7 + 3768: -1,7 + 3870: 0,7 + 3880: 1,7 + 3890: 2,7 + 3999: -2,7 + 4016: -1,7 + 4118: 0,7 + 4128: 1,7 + 4138: 2,7 + 4247: -2,7 + 4264: -1,7 + 4366: 0,7 + 4376: 1,7 + 4386: 2,7 + 4495: -2,7 + 4512: -1,7 + 4614: 0,7 + 4624: 1,7 + 4634: 2,7 + 4743: -2,7 + 4760: -1,7 + 4877: 0,7 + 4887: 1,7 + 4897: 2,7 + 5006: -2,7 + 5023: -1,7 + 5125: 0,7 + 5135: 1,7 + 5145: 2,7 + 5254: -2,7 + 5271: -1,7 + 5395: 0,7 + 5405: 1,7 + 5415: 2,7 + 5524: -2,7 + 5541: -1,7 + 5643: 0,7 + 5653: 1,7 + 5663: 2,7 + 5772: -2,7 + 5789: -1,7 + 5899: 0,7 + 5909: 1,7 + 5919: 2,7 + 6028: -2,7 + 6045: -1,7 + 6147: 0,7 + 6157: 1,7 + 6167: 2,7 + 6276: -2,7 + 6293: -1,7 + 6395: 0,7 + 6405: 1,7 + 6415: 2,7 + 6516: -2,7 + 6533: -1,7 + 6665: 0,7 + 6675: 1,7 + 6685: 2,7 + 6794: -2,7 + 6811: -1,7 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 3457: 2,11 - 3461: 2,10 - 3462: 2,9 - 3464: 2,7 - 3466: 2,8 - 3494: 2,8 - 3495: 2,9 - 3496: 2,10 - 3497: 2,11 - 3713: 2,7 - 3745: 2,7 - 3747: 2,8 - 3748: 2,9 - 3749: 2,10 - 3750: 2,11 - 3993: 2,7 - 3995: 2,8 - 3996: 2,9 - 3997: 2,10 - 3998: 2,11 - 4241: 2,7 - 4243: 2,8 - 4244: 2,9 - 4245: 2,10 - 4246: 2,11 + 3355: 2,11 + 3359: 2,10 + 3360: 2,9 + 3362: 2,7 + 3364: 2,8 + 3392: 2,8 + 3393: 2,9 + 3394: 2,10 + 3395: 2,11 + 3611: 2,7 + 3643: 2,7 + 3645: 2,8 + 3646: 2,9 + 3647: 2,10 + 3648: 2,11 + 3891: 2,7 + 3893: 2,8 + 3894: 2,9 + 3895: 2,10 + 3896: 2,11 + 4139: 2,7 + 4141: 2,8 + 4142: 2,9 + 4143: 2,10 + 4144: 2,11 + 4387: 2,7 + 4389: 2,8 + 4390: 2,9 + 4391: 2,10 + 4392: 2,11 + 4635: 2,7 + 4637: 2,8 + 4638: 2,9 + 4639: 2,10 + 4640: 2,11 + 4898: 2,7 + 4900: 2,8 + 4901: 2,9 + 4902: 2,10 + 4903: 2,11 + 5146: 2,7 + 5148: 2,8 + 5149: 2,9 + 5150: 2,10 + 5151: 2,11 + 5416: 2,7 + 5418: 2,8 + 5419: 2,9 + 5420: 2,10 + 5421: 2,11 + 5664: 2,7 + 5666: 2,8 + 5667: 2,9 + 5668: 2,10 + 5669: 2,11 + 5920: 2,7 + 5922: 2,8 + 5923: 2,9 + 5924: 2,10 + 5925: 2,11 + 6168: 2,7 + 6170: 2,8 + 6171: 2,9 + 6172: 2,10 + 6173: 2,11 + 6416: 2,7 + 6418: 2,8 + 6419: 2,9 + 6420: 2,10 + 6421: 2,11 + 6686: 2,7 + 6688: 2,8 + 6689: 2,9 + 6690: 2,10 + 6691: 2,11 - node: id: FloorTechMaintDirectionalEdge decals: - 3444: -2,11 - 3453: -1,11 - 3455: 0,11 - 3458: 2,11 - 3460: 1,11 - 3476: 0,11 - 3485: 1,11 - 3498: 2,11 - 3603: -2,11 - 3614: -1,11 - 3725: 0,11 - 3735: 1,11 - 3751: 2,11 - 3859: -2,11 - 3871: -1,11 - 3973: 0,11 - 3983: 1,11 - 3999: 2,11 - 4107: -2,11 - 4119: -1,11 - 4221: 0,11 - 4231: 1,11 - 4247: 2,11 - 4355: -2,11 - 4367: -1,11 + 3342: -2,11 + 3351: -1,11 + 3353: 0,11 + 3356: 2,11 + 3358: 1,11 + 3374: 0,11 + 3383: 1,11 + 3396: 2,11 + 3501: -2,11 + 3512: -1,11 + 3623: 0,11 + 3633: 1,11 + 3649: 2,11 + 3757: -2,11 + 3769: -1,11 + 3871: 0,11 + 3881: 1,11 + 3897: 2,11 + 4005: -2,11 + 4017: -1,11 + 4119: 0,11 + 4129: 1,11 + 4145: 2,11 + 4253: -2,11 + 4265: -1,11 + 4367: 0,11 + 4377: 1,11 + 4393: 2,11 + 4501: -2,11 + 4513: -1,11 + 4615: 0,11 + 4625: 1,11 + 4641: 2,11 + 4749: -2,11 + 4761: -1,11 + 4878: 0,11 + 4888: 1,11 + 4904: 2,11 + 5012: -2,11 + 5024: -1,11 + 5126: 0,11 + 5136: 1,11 + 5152: 2,11 + 5260: -2,11 + 5272: -1,11 + 5396: 0,11 + 5406: 1,11 + 5422: 2,11 + 5530: -2,11 + 5542: -1,11 + 5644: 0,11 + 5654: 1,11 + 5670: 2,11 + 5778: -2,11 + 5790: -1,11 + 5900: 0,11 + 5910: 1,11 + 5926: 2,11 + 6034: -2,11 + 6046: -1,11 + 6148: 0,11 + 6158: 1,11 + 6174: 2,11 + 6282: -2,11 + 6294: -1,11 + 6396: 0,11 + 6406: 1,11 + 6422: 2,11 + 6522: -2,11 + 6534: -1,11 + 6666: 0,11 + 6676: 1,11 + 6692: 2,11 + 6800: -2,11 + 6812: -1,11 - node: zIndex: 1 id: LatticeCornerNE decals: - 984: 0,1 - 992: 1,1 - 1000: 2,1 - 1008: 3,0 - 1016: 3,1 - 1024: 4,0 - 1032: 4,1 - 1040: 8,12 - 1052: -9,3 - 1060: -8,12 - 1068: -4,0 - 1076: -4,1 - 1084: -3,0 - 1092: -3,1 - 1100: -2,1 - 1108: -1,1 - 1117: -10,-16 - 1122: -4,-1 - 1130: 4,-1 - 1148: -9,-17 - 1151: -3,-20 - 1156: 6,16 - 1164: 6,17 - 1172: 6,18 - 1180: 6,19 - 1188: 6,20 - 1200: -9,24 - 1208: 0,1 - 1216: 1,1 - 1224: 2,1 - 1232: 3,0 - 1240: 3,1 - 1248: 4,0 - 1256: 4,1 - 1264: 8,12 - 1276: -9,3 - 1284: -8,12 - 1292: -4,0 - 1300: -4,1 - 1308: -3,0 - 1316: -3,1 - 1324: -2,1 - 1332: -1,1 - 1341: -10,-16 - 1346: -4,-1 - 1354: 4,-1 - 1372: -9,-17 - 1375: -3,-20 - 1380: 6,16 - 1388: 6,17 - 1396: 6,18 - 1404: 6,19 - 1412: 6,20 - 1424: -9,24 - 1432: 0,1 - 1440: 1,1 - 1448: 2,1 - 1456: 3,0 - 1464: 3,1 - 1472: 4,0 - 1480: 4,1 - 1488: 8,12 - 1500: -9,3 - 1508: -8,12 - 1516: -4,0 - 1524: -4,1 - 1532: -3,0 - 1540: -3,1 - 1548: -2,1 - 1556: -1,1 - 1565: -10,-16 - 1570: -4,-1 - 1578: 4,-1 - 1596: -9,-17 - 1599: -3,-20 - 1604: 6,16 - 1612: 6,17 - 1620: 6,18 - 1628: 6,19 - 1636: 6,20 - 1648: -9,24 - 1656: 0,1 - 1664: 1,1 - 1672: 2,1 - 1680: 3,0 - 1688: 3,1 - 1696: 4,0 - 1704: 4,1 - 1712: 8,12 - 1724: -9,3 - 1732: -8,12 - 1740: -4,0 - 1748: -4,1 - 1756: -3,0 - 1764: -3,1 - 1772: -2,1 - 1780: -1,1 - 1789: -10,-16 - 1794: -4,-1 - 1802: 4,-1 - 1820: -9,-17 - 1823: -3,-20 - 1828: 6,16 - 1836: 6,17 - 1844: 6,18 - 1852: 6,19 - 1860: 6,20 - 1872: -9,24 - 1880: 0,1 - 1888: 1,1 - 1896: 2,1 - 1904: 3,0 - 1912: 3,1 - 1920: 4,0 - 1928: 4,1 - 1936: 8,12 - 1948: -9,3 - 1953: -4,0 - 1961: -4,1 - 1969: -3,0 - 1977: -3,1 - 1985: -2,1 - 1993: -1,1 - 2002: -10,-16 - 2007: -4,-1 - 2015: 4,-1 - 2033: -9,-17 - 2036: -3,-20 - 2041: 6,16 - 2049: 6,17 - 2057: 6,18 - 2065: 6,19 - 2073: 6,20 - 2085: -9,24 - 2093: -8,12 - 2104: 0,1 - 2112: 1,1 - 2120: 2,1 - 2128: 3,0 - 2136: 3,1 - 2144: 4,0 - 2152: 4,1 - 2160: 8,12 - 2172: -9,3 - 2180: -8,12 - 2188: -4,0 - 2196: -4,1 - 2204: -3,0 - 2212: -3,1 - 2220: -2,1 - 2228: -1,1 - 2237: -10,-16 - 2242: -4,-1 - 2250: 4,-1 - 2268: -9,-17 - 2271: -3,-20 - 2276: 6,16 - 2284: 6,17 - 2292: 6,18 - 2300: 6,19 - 2308: 6,20 - 2320: -9,24 - 2328: 0,1 - 2336: 1,1 - 2344: 2,1 - 2352: 3,0 - 2360: 3,1 - 2368: 4,0 - 2376: 4,1 - 2384: 8,12 - 2396: -9,3 - 2404: -8,12 - 2412: -4,0 - 2420: -4,1 - 2428: -3,0 - 2436: -3,1 - 2444: -2,1 - 2452: -1,1 - 2461: -10,-16 - 2466: -4,-1 - 2474: 4,-1 - 2492: -9,-17 - 2495: -3,-20 - 2500: 6,16 - 2508: 6,17 - 2516: 6,18 - 2524: 6,19 - 2532: 6,20 - 2544: -9,24 - 2552: 0,1 - 2560: 1,1 - 2568: 2,1 - 2576: 3,0 - 2584: 3,1 - 2592: 4,0 - 2600: 4,1 - 2608: 8,12 - 2620: -9,3 - 2628: -8,12 - 2636: -4,0 - 2644: -4,1 - 2652: -3,0 - 2660: -3,1 - 2668: -2,1 - 2676: -1,1 - 2685: -10,-16 - 2690: -4,-1 - 2698: 4,-1 - 2716: -9,-17 - 2719: -3,-20 - 2724: 6,16 - 2732: 6,17 - 2740: 6,18 - 2748: 6,19 - 2756: 6,20 - 2768: -9,24 - 2776: 0,1 - 2784: 1,1 - 2792: 2,1 - 2800: 3,0 - 2808: 3,1 - 2816: 4,0 - 2824: 4,1 - 2832: 8,12 - 2844: -9,3 - 2852: -8,12 - 2860: -4,0 - 2868: -4,1 - 2876: -3,0 - 2884: -3,1 - 2892: -2,1 - 2900: -1,1 - 2909: -10,-16 - 2914: -4,-1 - 2922: 4,-1 - 2940: -9,-17 - 2943: -3,-20 - 2948: 6,16 - 2956: 6,17 - 2964: 6,18 - 2972: 6,19 - 2980: 6,20 - 2992: -9,24 - 3000: 0,1 - 3008: 1,1 - 3016: 2,1 - 3024: 3,0 - 3032: 3,1 - 3040: 4,0 - 3048: 4,1 - 3056: 8,12 - 3068: -9,3 - 3076: -8,12 - 3084: -4,0 - 3092: -4,1 - 3100: -3,0 - 3108: -3,1 - 3116: -2,1 - 3124: -1,1 - 3133: -10,-16 - 3138: -4,-1 - 3146: 4,-1 - 3164: -9,-17 - 3167: -3,-20 - 3172: 6,16 - 3180: 6,17 - 3188: 6,18 - 3196: 6,19 - 3204: 6,20 - 3216: -9,24 - 3224: 0,1 - 3232: 1,1 - 3240: 2,1 - 3248: 3,0 - 3256: 3,1 - 3264: 4,0 - 3272: 4,1 - 3280: 8,12 - 3292: -9,3 - 3300: -8,12 - 3308: -4,0 - 3316: -4,1 - 3324: -3,0 - 3332: -3,1 - 3340: -2,1 - 3348: -1,1 - 3357: -10,-16 - 3362: -4,-1 - 3370: 4,-1 - 3388: -9,-17 - 3391: -3,-20 - 3396: 6,16 - 3404: 6,17 - 3412: 6,18 - 3420: 6,19 - 3428: 6,20 - 3440: -9,24 - 3472: 0,1 - 3481: 1,1 - 3490: 2,1 - 3504: 3,0 - 3512: 3,1 - 3520: 4,0 - 3528: 4,1 - 3536: 8,12 - 3548: -9,3 - 3556: -8,12 - 3564: -4,0 - 3572: -4,1 - 3580: -3,0 - 3588: -3,1 - 3596: -2,1 - 3610: -1,1 - 3620: -10,-16 - 3625: -4,-1 - 3633: 4,-1 - 3651: -9,-17 - 3654: -3,-20 - 3659: 6,16 - 3667: 6,17 - 3675: 6,18 - 3683: 6,19 - 3691: 6,20 - 3703: -9,24 - 3720: 0,1 - 3730: 1,1 - 3740: 2,1 - 3757: 3,0 - 3765: 3,1 - 3773: 4,0 - 3781: 4,1 - 3789: 8,12 - 3801: -9,3 - 3809: -8,12 - 3817: -4,0 - 3825: -4,1 - 3833: -3,0 - 3841: -3,1 - 3849: -2,1 - 3866: -1,1 - 3877: -10,-16 - 3882: -4,-1 - 3890: 4,-1 - 3908: -9,-17 - 3911: -3,-20 - 3916: 6,16 - 3924: 6,17 - 3932: 6,18 - 3940: 6,19 - 3948: 6,20 - 3960: -9,24 - 3968: 0,1 - 3978: 1,1 - 3988: 2,1 - 4005: 3,0 - 4013: 3,1 - 4021: 4,0 - 4029: 4,1 - 4037: 8,12 - 4049: -9,3 - 4057: -8,12 - 4065: -4,0 - 4073: -4,1 - 4081: -3,0 - 4089: -3,1 - 4097: -2,1 - 4114: -1,1 - 4122: -10,-16 - 4127: -4,-1 - 4135: 4,-1 - 4150: -9,-17 - 4153: -3,-20 - 4158: 6,16 - 4166: 6,17 - 4174: 6,18 - 4182: 6,19 - 4190: 6,20 - 4202: -9,24 - 4216: 0,1 - 4226: 1,1 - 4236: 2,1 - 4253: 3,0 - 4261: 3,1 - 4269: 4,0 - 4277: 4,1 - 4285: 8,12 - 4297: -9,3 - 4305: -8,12 - 4313: -4,0 - 4321: -4,1 - 4329: -3,0 - 4337: -3,1 - 4345: -2,1 - 4362: -1,1 - 4373: -10,-16 - 4378: -4,-1 - 4386: 4,-1 - 4404: -9,-17 - 4407: -3,-20 - 4412: 6,16 - 4420: 6,17 - 4428: 6,18 - 4436: 6,19 - 4444: 6,20 - 4456: -9,24 + 882: 0,1 + 890: 1,1 + 898: 2,1 + 906: 3,0 + 914: 3,1 + 922: 4,0 + 930: 4,1 + 938: 8,12 + 950: -9,3 + 958: -8,12 + 966: -4,0 + 974: -4,1 + 982: -3,0 + 990: -3,1 + 998: -2,1 + 1006: -1,1 + 1015: -10,-16 + 1020: -4,-1 + 1028: 4,-1 + 1046: -9,-17 + 1049: -3,-20 + 1054: 6,16 + 1062: 6,17 + 1070: 6,18 + 1078: 6,19 + 1086: 6,20 + 1098: -9,24 + 1106: 0,1 + 1114: 1,1 + 1122: 2,1 + 1130: 3,0 + 1138: 3,1 + 1146: 4,0 + 1154: 4,1 + 1162: 8,12 + 1174: -9,3 + 1182: -8,12 + 1190: -4,0 + 1198: -4,1 + 1206: -3,0 + 1214: -3,1 + 1222: -2,1 + 1230: -1,1 + 1239: -10,-16 + 1244: -4,-1 + 1252: 4,-1 + 1270: -9,-17 + 1273: -3,-20 + 1278: 6,16 + 1286: 6,17 + 1294: 6,18 + 1302: 6,19 + 1310: 6,20 + 1322: -9,24 + 1330: 0,1 + 1338: 1,1 + 1346: 2,1 + 1354: 3,0 + 1362: 3,1 + 1370: 4,0 + 1378: 4,1 + 1386: 8,12 + 1398: -9,3 + 1406: -8,12 + 1414: -4,0 + 1422: -4,1 + 1430: -3,0 + 1438: -3,1 + 1446: -2,1 + 1454: -1,1 + 1463: -10,-16 + 1468: -4,-1 + 1476: 4,-1 + 1494: -9,-17 + 1497: -3,-20 + 1502: 6,16 + 1510: 6,17 + 1518: 6,18 + 1526: 6,19 + 1534: 6,20 + 1546: -9,24 + 1554: 0,1 + 1562: 1,1 + 1570: 2,1 + 1578: 3,0 + 1586: 3,1 + 1594: 4,0 + 1602: 4,1 + 1610: 8,12 + 1622: -9,3 + 1630: -8,12 + 1638: -4,0 + 1646: -4,1 + 1654: -3,0 + 1662: -3,1 + 1670: -2,1 + 1678: -1,1 + 1687: -10,-16 + 1692: -4,-1 + 1700: 4,-1 + 1718: -9,-17 + 1721: -3,-20 + 1726: 6,16 + 1734: 6,17 + 1742: 6,18 + 1750: 6,19 + 1758: 6,20 + 1770: -9,24 + 1778: 0,1 + 1786: 1,1 + 1794: 2,1 + 1802: 3,0 + 1810: 3,1 + 1818: 4,0 + 1826: 4,1 + 1834: 8,12 + 1846: -9,3 + 1851: -4,0 + 1859: -4,1 + 1867: -3,0 + 1875: -3,1 + 1883: -2,1 + 1891: -1,1 + 1900: -10,-16 + 1905: -4,-1 + 1913: 4,-1 + 1931: -9,-17 + 1934: -3,-20 + 1939: 6,16 + 1947: 6,17 + 1955: 6,18 + 1963: 6,19 + 1971: 6,20 + 1983: -9,24 + 1991: -8,12 + 2002: 0,1 + 2010: 1,1 + 2018: 2,1 + 2026: 3,0 + 2034: 3,1 + 2042: 4,0 + 2050: 4,1 + 2058: 8,12 + 2070: -9,3 + 2078: -8,12 + 2086: -4,0 + 2094: -4,1 + 2102: -3,0 + 2110: -3,1 + 2118: -2,1 + 2126: -1,1 + 2135: -10,-16 + 2140: -4,-1 + 2148: 4,-1 + 2166: -9,-17 + 2169: -3,-20 + 2174: 6,16 + 2182: 6,17 + 2190: 6,18 + 2198: 6,19 + 2206: 6,20 + 2218: -9,24 + 2226: 0,1 + 2234: 1,1 + 2242: 2,1 + 2250: 3,0 + 2258: 3,1 + 2266: 4,0 + 2274: 4,1 + 2282: 8,12 + 2294: -9,3 + 2302: -8,12 + 2310: -4,0 + 2318: -4,1 + 2326: -3,0 + 2334: -3,1 + 2342: -2,1 + 2350: -1,1 + 2359: -10,-16 + 2364: -4,-1 + 2372: 4,-1 + 2390: -9,-17 + 2393: -3,-20 + 2398: 6,16 + 2406: 6,17 + 2414: 6,18 + 2422: 6,19 + 2430: 6,20 + 2442: -9,24 + 2450: 0,1 + 2458: 1,1 + 2466: 2,1 + 2474: 3,0 + 2482: 3,1 + 2490: 4,0 + 2498: 4,1 + 2506: 8,12 + 2518: -9,3 + 2526: -8,12 + 2534: -4,0 + 2542: -4,1 + 2550: -3,0 + 2558: -3,1 + 2566: -2,1 + 2574: -1,1 + 2583: -10,-16 + 2588: -4,-1 + 2596: 4,-1 + 2614: -9,-17 + 2617: -3,-20 + 2622: 6,16 + 2630: 6,17 + 2638: 6,18 + 2646: 6,19 + 2654: 6,20 + 2666: -9,24 + 2674: 0,1 + 2682: 1,1 + 2690: 2,1 + 2698: 3,0 + 2706: 3,1 + 2714: 4,0 + 2722: 4,1 + 2730: 8,12 + 2742: -9,3 + 2750: -8,12 + 2758: -4,0 + 2766: -4,1 + 2774: -3,0 + 2782: -3,1 + 2790: -2,1 + 2798: -1,1 + 2807: -10,-16 + 2812: -4,-1 + 2820: 4,-1 + 2838: -9,-17 + 2841: -3,-20 + 2846: 6,16 + 2854: 6,17 + 2862: 6,18 + 2870: 6,19 + 2878: 6,20 + 2890: -9,24 + 2898: 0,1 + 2906: 1,1 + 2914: 2,1 + 2922: 3,0 + 2930: 3,1 + 2938: 4,0 + 2946: 4,1 + 2954: 8,12 + 2966: -9,3 + 2974: -8,12 + 2982: -4,0 + 2990: -4,1 + 2998: -3,0 + 3006: -3,1 + 3014: -2,1 + 3022: -1,1 + 3031: -10,-16 + 3036: -4,-1 + 3044: 4,-1 + 3062: -9,-17 + 3065: -3,-20 + 3070: 6,16 + 3078: 6,17 + 3086: 6,18 + 3094: 6,19 + 3102: 6,20 + 3114: -9,24 + 3122: 0,1 + 3130: 1,1 + 3138: 2,1 + 3146: 3,0 + 3154: 3,1 + 3162: 4,0 + 3170: 4,1 + 3178: 8,12 + 3190: -9,3 + 3198: -8,12 + 3206: -4,0 + 3214: -4,1 + 3222: -3,0 + 3230: -3,1 + 3238: -2,1 + 3246: -1,1 + 3255: -10,-16 + 3260: -4,-1 + 3268: 4,-1 + 3286: -9,-17 + 3289: -3,-20 + 3294: 6,16 + 3302: 6,17 + 3310: 6,18 + 3318: 6,19 + 3326: 6,20 + 3338: -9,24 + 3370: 0,1 + 3379: 1,1 + 3388: 2,1 + 3402: 3,0 + 3410: 3,1 + 3418: 4,0 + 3426: 4,1 + 3434: 8,12 + 3446: -9,3 + 3454: -8,12 + 3462: -4,0 + 3470: -4,1 + 3478: -3,0 + 3486: -3,1 + 3494: -2,1 + 3508: -1,1 + 3518: -10,-16 + 3523: -4,-1 + 3531: 4,-1 + 3549: -9,-17 + 3552: -3,-20 + 3557: 6,16 + 3565: 6,17 + 3573: 6,18 + 3581: 6,19 + 3589: 6,20 + 3601: -9,24 + 3618: 0,1 + 3628: 1,1 + 3638: 2,1 + 3655: 3,0 + 3663: 3,1 + 3671: 4,0 + 3679: 4,1 + 3687: 8,12 + 3699: -9,3 + 3707: -8,12 + 3715: -4,0 + 3723: -4,1 + 3731: -3,0 + 3739: -3,1 + 3747: -2,1 + 3764: -1,1 + 3775: -10,-16 + 3780: -4,-1 + 3788: 4,-1 + 3806: -9,-17 + 3809: -3,-20 + 3814: 6,16 + 3822: 6,17 + 3830: 6,18 + 3838: 6,19 + 3846: 6,20 + 3858: -9,24 + 3866: 0,1 + 3876: 1,1 + 3886: 2,1 + 3903: 3,0 + 3911: 3,1 + 3919: 4,0 + 3927: 4,1 + 3935: 8,12 + 3947: -9,3 + 3955: -8,12 + 3963: -4,0 + 3971: -4,1 + 3979: -3,0 + 3987: -3,1 + 3995: -2,1 + 4012: -1,1 + 4020: -10,-16 + 4025: -4,-1 + 4033: 4,-1 + 4048: -9,-17 + 4051: -3,-20 + 4056: 6,16 + 4064: 6,17 + 4072: 6,18 + 4080: 6,19 + 4088: 6,20 + 4100: -9,24 + 4114: 0,1 + 4124: 1,1 + 4134: 2,1 + 4151: 3,0 + 4159: 3,1 + 4167: 4,0 + 4175: 4,1 + 4183: 8,12 + 4195: -9,3 + 4203: -8,12 + 4211: -4,0 + 4219: -4,1 + 4227: -3,0 + 4235: -3,1 + 4243: -2,1 + 4260: -1,1 + 4271: -10,-16 + 4276: -4,-1 + 4284: 4,-1 + 4302: -9,-17 + 4305: -3,-20 + 4310: 6,16 + 4318: 6,17 + 4326: 6,18 + 4334: 6,19 + 4342: 6,20 + 4354: -9,24 + 4362: 0,1 + 4372: 1,1 + 4382: 2,1 + 4399: 3,0 + 4407: 3,1 + 4415: 4,0 + 4423: 4,1 + 4431: 8,12 + 4443: -9,3 + 4451: -8,12 + 4459: -4,0 + 4467: -4,1 + 4475: -3,0 + 4483: -3,1 + 4491: -2,1 + 4508: -1,1 + 4519: -10,-16 + 4524: -4,-1 + 4532: 4,-1 + 4550: -9,-17 + 4553: -3,-20 + 4558: 6,16 + 4566: 6,17 + 4574: 6,18 + 4582: 6,19 + 4590: 6,20 + 4602: -9,24 + 4610: 0,1 + 4620: 1,1 + 4630: 2,1 + 4647: 3,0 + 4655: 3,1 + 4663: 4,0 + 4671: 4,1 + 4679: 8,12 + 4691: -9,3 + 4699: -8,12 + 4707: -4,0 + 4715: -4,1 + 4723: -3,0 + 4731: -3,1 + 4739: -2,1 + 4756: -1,1 + 4767: -10,-16 + 4772: -4,-1 + 4780: 4,-1 + 4798: -9,-17 + 4801: -3,-20 + 4806: 6,16 + 4814: 6,17 + 4822: 6,18 + 4830: 6,19 + 4838: 6,20 + 4850: -9,24 + 4873: 0,1 + 4883: 1,1 + 4893: 2,1 + 4910: 3,0 + 4918: 3,1 + 4926: 4,0 + 4934: 4,1 + 4942: 8,12 + 4954: -9,3 + 4962: -8,12 + 4970: -4,0 + 4978: -4,1 + 4986: -3,0 + 4994: -3,1 + 5002: -2,1 + 5019: -1,1 + 5030: -10,-16 + 5035: -4,-1 + 5043: 4,-1 + 5061: -9,-17 + 5064: -3,-20 + 5069: 6,16 + 5077: 6,17 + 5085: 6,18 + 5093: 6,19 + 5101: 6,20 + 5113: -9,24 + 5121: 0,1 + 5131: 1,1 + 5141: 2,1 + 5158: 3,0 + 5166: 3,1 + 5174: 4,0 + 5182: 4,1 + 5190: 8,12 + 5202: -9,3 + 5210: -8,12 + 5218: -4,0 + 5226: -4,1 + 5234: -3,0 + 5242: -3,1 + 5250: -2,1 + 5267: -1,1 + 5278: -10,-16 + 5283: -4,-1 + 5291: 4,-1 + 5309: -9,-17 + 5312: -3,-20 + 5317: 6,16 + 5325: 6,17 + 5333: 6,18 + 5341: 6,19 + 5349: 6,20 + 5361: -9,24 + 5391: 0,1 + 5401: 1,1 + 5411: 2,1 + 5428: 3,0 + 5436: 3,1 + 5444: 4,0 + 5452: 4,1 + 5460: 8,12 + 5472: -9,3 + 5480: -8,12 + 5488: -4,0 + 5496: -4,1 + 5504: -3,0 + 5512: -3,1 + 5520: -2,1 + 5537: -1,1 + 5548: -10,-16 + 5553: -4,-1 + 5561: 4,-1 + 5579: -9,-17 + 5582: -3,-20 + 5587: 6,16 + 5595: 6,17 + 5603: 6,18 + 5611: 6,19 + 5619: 6,20 + 5631: -9,24 + 5639: 0,1 + 5649: 1,1 + 5659: 2,1 + 5676: 3,0 + 5684: 3,1 + 5692: 4,0 + 5700: 4,1 + 5708: 8,12 + 5720: -9,3 + 5728: -8,12 + 5736: -4,0 + 5744: -4,1 + 5752: -3,0 + 5760: -3,1 + 5768: -2,1 + 5785: -1,1 + 5796: -10,-16 + 5801: -4,-1 + 5809: 4,-1 + 5827: -9,-17 + 5830: -3,-20 + 5835: 6,16 + 5843: 6,17 + 5851: 6,18 + 5859: 6,19 + 5867: 6,20 + 5879: -9,24 + 5895: 0,1 + 5905: 1,1 + 5915: 2,1 + 5932: 3,0 + 5940: 3,1 + 5948: 4,0 + 5956: 4,1 + 5964: 8,12 + 5976: -9,3 + 5984: -8,12 + 5992: -4,0 + 6000: -4,1 + 6008: -3,0 + 6016: -3,1 + 6024: -2,1 + 6041: -1,1 + 6052: -10,-16 + 6057: -4,-1 + 6065: 4,-1 + 6083: -9,-17 + 6086: -3,-20 + 6091: 6,16 + 6099: 6,17 + 6107: 6,18 + 6115: 6,19 + 6123: 6,20 + 6135: -9,24 + 6143: 0,1 + 6153: 1,1 + 6163: 2,1 + 6180: 3,0 + 6188: 3,1 + 6196: 4,0 + 6204: 4,1 + 6212: 8,12 + 6224: -9,3 + 6232: -8,12 + 6240: -4,0 + 6248: -4,1 + 6256: -3,0 + 6264: -3,1 + 6272: -2,1 + 6289: -1,1 + 6300: -10,-16 + 6305: -4,-1 + 6313: 4,-1 + 6331: -9,-17 + 6334: -3,-20 + 6339: 6,16 + 6347: 6,17 + 6355: 6,18 + 6363: 6,19 + 6371: 6,20 + 6383: -9,24 + 6391: 0,1 + 6401: 1,1 + 6411: 2,1 + 6428: 3,0 + 6436: 3,1 + 6444: 4,0 + 6452: 4,1 + 6464: -9,3 + 6472: -8,12 + 6480: -4,0 + 6488: -4,1 + 6496: -3,0 + 6504: -3,1 + 6512: -2,1 + 6529: -1,1 + 6540: -10,-16 + 6545: -4,-1 + 6553: 4,-1 + 6571: -9,-17 + 6574: -3,-20 + 6579: 6,16 + 6587: 6,17 + 6595: 6,18 + 6603: 6,19 + 6611: 6,20 + 6623: -9,24 + 6633: 8,12 + 6661: 0,1 + 6671: 1,1 + 6681: 2,1 + 6698: 3,0 + 6706: 3,1 + 6714: 4,0 + 6722: 4,1 + 6730: 8,12 + 6742: -9,3 + 6750: -8,12 + 6758: -4,0 + 6766: -4,1 + 6774: -3,0 + 6782: -3,1 + 6790: -2,1 + 6807: -1,1 + 6818: -10,-16 + 6823: -4,-1 + 6831: 4,-1 + 6849: -9,-17 + 6852: -3,-20 + 6857: 6,16 + 6865: 6,17 + 6873: 6,18 + 6881: 6,19 + 6889: 6,20 + 6901: -9,24 - node: zIndex: 1 id: LatticeCornerNW decals: - 987: 0,1 - 995: 1,1 - 1003: 2,1 - 1011: 3,0 - 1019: 3,1 - 1027: 4,0 - 1035: 4,1 - 1043: 8,12 - 1046: 9,4 - 1063: -8,12 - 1071: -4,0 - 1079: -4,1 - 1087: -3,0 - 1095: -3,1 - 1103: -2,1 - 1111: -1,1 - 1125: -4,-1 - 1133: 4,-1 - 1136: 10,-16 - 1142: 3,-20 - 1145: 9,-17 - 1159: 6,16 - 1167: 6,17 - 1175: 6,18 - 1183: 6,19 - 1191: 6,20 - 1194: 9,24 - 1211: 0,1 - 1219: 1,1 - 1227: 2,1 - 1235: 3,0 - 1243: 3,1 - 1251: 4,0 - 1259: 4,1 - 1267: 8,12 - 1270: 9,4 - 1287: -8,12 - 1295: -4,0 - 1303: -4,1 - 1311: -3,0 - 1319: -3,1 - 1327: -2,1 - 1335: -1,1 - 1349: -4,-1 - 1357: 4,-1 - 1360: 10,-16 - 1366: 3,-20 - 1369: 9,-17 - 1383: 6,16 - 1391: 6,17 - 1399: 6,18 - 1407: 6,19 - 1415: 6,20 - 1418: 9,24 - 1435: 0,1 - 1443: 1,1 - 1451: 2,1 - 1459: 3,0 - 1467: 3,1 - 1475: 4,0 - 1483: 4,1 - 1491: 8,12 - 1494: 9,4 - 1511: -8,12 - 1519: -4,0 - 1527: -4,1 - 1535: -3,0 - 1543: -3,1 - 1551: -2,1 - 1559: -1,1 - 1573: -4,-1 - 1581: 4,-1 - 1584: 10,-16 - 1590: 3,-20 - 1593: 9,-17 - 1607: 6,16 - 1615: 6,17 - 1623: 6,18 - 1631: 6,19 - 1639: 6,20 - 1642: 9,24 - 1659: 0,1 - 1667: 1,1 - 1675: 2,1 - 1683: 3,0 - 1691: 3,1 - 1699: 4,0 - 1707: 4,1 - 1715: 8,12 - 1718: 9,4 - 1735: -8,12 - 1743: -4,0 - 1751: -4,1 - 1759: -3,0 - 1767: -3,1 - 1775: -2,1 - 1783: -1,1 - 1797: -4,-1 - 1805: 4,-1 - 1808: 10,-16 - 1814: 3,-20 - 1817: 9,-17 - 1831: 6,16 - 1839: 6,17 - 1847: 6,18 - 1855: 6,19 - 1863: 6,20 - 1866: 9,24 - 1883: 0,1 - 1891: 1,1 - 1899: 2,1 - 1907: 3,0 - 1915: 3,1 - 1923: 4,0 - 1931: 4,1 - 1939: 8,12 - 1942: 9,4 - 1956: -4,0 - 1964: -4,1 - 1972: -3,0 - 1980: -3,1 - 1988: -2,1 - 1996: -1,1 - 2010: -4,-1 - 2018: 4,-1 - 2021: 10,-16 - 2027: 3,-20 - 2030: 9,-17 - 2044: 6,16 - 2052: 6,17 - 2060: 6,18 - 2068: 6,19 - 2076: 6,20 - 2079: 9,24 - 2096: -8,12 - 2107: 0,1 - 2115: 1,1 - 2123: 2,1 - 2131: 3,0 - 2139: 3,1 - 2147: 4,0 - 2155: 4,1 - 2163: 8,12 - 2166: 9,4 - 2183: -8,12 - 2191: -4,0 - 2199: -4,1 - 2207: -3,0 - 2215: -3,1 - 2223: -2,1 - 2231: -1,1 - 2245: -4,-1 - 2253: 4,-1 - 2256: 10,-16 - 2262: 3,-20 - 2265: 9,-17 - 2279: 6,16 - 2287: 6,17 - 2295: 6,18 - 2303: 6,19 - 2311: 6,20 - 2314: 9,24 - 2331: 0,1 - 2339: 1,1 - 2347: 2,1 - 2355: 3,0 - 2363: 3,1 - 2371: 4,0 - 2379: 4,1 - 2387: 8,12 - 2390: 9,4 - 2407: -8,12 - 2415: -4,0 - 2423: -4,1 - 2431: -3,0 - 2439: -3,1 - 2447: -2,1 - 2455: -1,1 - 2469: -4,-1 - 2477: 4,-1 - 2480: 10,-16 - 2486: 3,-20 - 2489: 9,-17 - 2503: 6,16 - 2511: 6,17 - 2519: 6,18 - 2527: 6,19 - 2535: 6,20 - 2538: 9,24 - 2555: 0,1 - 2563: 1,1 - 2571: 2,1 - 2579: 3,0 - 2587: 3,1 - 2595: 4,0 - 2603: 4,1 - 2611: 8,12 - 2614: 9,4 - 2631: -8,12 - 2639: -4,0 - 2647: -4,1 - 2655: -3,0 - 2663: -3,1 - 2671: -2,1 - 2679: -1,1 - 2693: -4,-1 - 2701: 4,-1 - 2704: 10,-16 - 2710: 3,-20 - 2713: 9,-17 - 2727: 6,16 - 2735: 6,17 - 2743: 6,18 - 2751: 6,19 - 2759: 6,20 - 2762: 9,24 - 2779: 0,1 - 2787: 1,1 - 2795: 2,1 - 2803: 3,0 - 2811: 3,1 - 2819: 4,0 - 2827: 4,1 - 2835: 8,12 - 2838: 9,4 - 2855: -8,12 - 2863: -4,0 - 2871: -4,1 - 2879: -3,0 - 2887: -3,1 - 2895: -2,1 - 2903: -1,1 - 2917: -4,-1 - 2925: 4,-1 - 2928: 10,-16 - 2934: 3,-20 - 2937: 9,-17 - 2951: 6,16 - 2959: 6,17 - 2967: 6,18 - 2975: 6,19 - 2983: 6,20 - 2986: 9,24 - 3003: 0,1 - 3011: 1,1 - 3019: 2,1 - 3027: 3,0 - 3035: 3,1 - 3043: 4,0 - 3051: 4,1 - 3059: 8,12 - 3062: 9,4 - 3079: -8,12 - 3087: -4,0 - 3095: -4,1 - 3103: -3,0 - 3111: -3,1 - 3119: -2,1 - 3127: -1,1 - 3141: -4,-1 - 3149: 4,-1 - 3152: 10,-16 - 3158: 3,-20 - 3161: 9,-17 - 3175: 6,16 - 3183: 6,17 - 3191: 6,18 - 3199: 6,19 - 3207: 6,20 - 3210: 9,24 - 3227: 0,1 - 3235: 1,1 - 3243: 2,1 - 3251: 3,0 - 3259: 3,1 - 3267: 4,0 - 3275: 4,1 - 3283: 8,12 - 3286: 9,4 - 3303: -8,12 - 3311: -4,0 - 3319: -4,1 - 3327: -3,0 - 3335: -3,1 - 3343: -2,1 - 3351: -1,1 - 3365: -4,-1 - 3373: 4,-1 - 3376: 10,-16 - 3382: 3,-20 - 3385: 9,-17 - 3399: 6,16 - 3407: 6,17 - 3415: 6,18 - 3423: 6,19 - 3431: 6,20 - 3434: 9,24 - 3475: 0,1 - 3484: 1,1 - 3493: 2,1 - 3507: 3,0 - 3515: 3,1 - 3523: 4,0 - 3531: 4,1 - 3539: 8,12 - 3542: 9,4 - 3559: -8,12 - 3567: -4,0 - 3575: -4,1 - 3583: -3,0 - 3591: -3,1 - 3599: -2,1 - 3613: -1,1 - 3628: -4,-1 - 3636: 4,-1 - 3639: 10,-16 - 3645: 3,-20 - 3648: 9,-17 - 3662: 6,16 - 3670: 6,17 - 3678: 6,18 - 3686: 6,19 - 3694: 6,20 - 3697: 9,24 - 3723: 0,1 - 3733: 1,1 - 3743: 2,1 - 3760: 3,0 - 3768: 3,1 - 3776: 4,0 - 3784: 4,1 - 3792: 8,12 - 3795: 9,4 - 3812: -8,12 - 3820: -4,0 - 3828: -4,1 - 3836: -3,0 - 3844: -3,1 - 3852: -2,1 - 3869: -1,1 - 3885: -4,-1 - 3893: 4,-1 - 3896: 10,-16 - 3902: 3,-20 - 3905: 9,-17 - 3919: 6,16 - 3927: 6,17 - 3935: 6,18 - 3943: 6,19 - 3951: 6,20 - 3954: 9,24 - 3971: 0,1 - 3981: 1,1 - 3991: 2,1 - 4008: 3,0 - 4016: 3,1 - 4024: 4,0 - 4032: 4,1 - 4040: 8,12 - 4043: 9,4 - 4060: -8,12 - 4068: -4,0 - 4076: -4,1 - 4084: -3,0 - 4092: -3,1 - 4100: -2,1 - 4117: -1,1 - 4130: -4,-1 - 4138: 4,-1 - 4141: 10,-16 - 4144: 3,-20 - 4147: 9,-17 - 4161: 6,16 - 4169: 6,17 - 4177: 6,18 - 4185: 6,19 - 4193: 6,20 - 4196: 9,24 - 4219: 0,1 - 4229: 1,1 - 4239: 2,1 - 4256: 3,0 - 4264: 3,1 - 4272: 4,0 - 4280: 4,1 - 4288: 8,12 - 4291: 9,4 - 4308: -8,12 - 4316: -4,0 - 4324: -4,1 - 4332: -3,0 - 4340: -3,1 - 4348: -2,1 - 4365: -1,1 - 4381: -4,-1 - 4389: 4,-1 - 4392: 10,-16 - 4398: 3,-20 - 4401: 9,-17 - 4415: 6,16 - 4423: 6,17 - 4431: 6,18 - 4439: 6,19 - 4447: 6,20 - 4450: 9,24 + 885: 0,1 + 893: 1,1 + 901: 2,1 + 909: 3,0 + 917: 3,1 + 925: 4,0 + 933: 4,1 + 941: 8,12 + 944: 9,4 + 961: -8,12 + 969: -4,0 + 977: -4,1 + 985: -3,0 + 993: -3,1 + 1001: -2,1 + 1009: -1,1 + 1023: -4,-1 + 1031: 4,-1 + 1034: 10,-16 + 1040: 3,-20 + 1043: 9,-17 + 1057: 6,16 + 1065: 6,17 + 1073: 6,18 + 1081: 6,19 + 1089: 6,20 + 1092: 9,24 + 1109: 0,1 + 1117: 1,1 + 1125: 2,1 + 1133: 3,0 + 1141: 3,1 + 1149: 4,0 + 1157: 4,1 + 1165: 8,12 + 1168: 9,4 + 1185: -8,12 + 1193: -4,0 + 1201: -4,1 + 1209: -3,0 + 1217: -3,1 + 1225: -2,1 + 1233: -1,1 + 1247: -4,-1 + 1255: 4,-1 + 1258: 10,-16 + 1264: 3,-20 + 1267: 9,-17 + 1281: 6,16 + 1289: 6,17 + 1297: 6,18 + 1305: 6,19 + 1313: 6,20 + 1316: 9,24 + 1333: 0,1 + 1341: 1,1 + 1349: 2,1 + 1357: 3,0 + 1365: 3,1 + 1373: 4,0 + 1381: 4,1 + 1389: 8,12 + 1392: 9,4 + 1409: -8,12 + 1417: -4,0 + 1425: -4,1 + 1433: -3,0 + 1441: -3,1 + 1449: -2,1 + 1457: -1,1 + 1471: -4,-1 + 1479: 4,-1 + 1482: 10,-16 + 1488: 3,-20 + 1491: 9,-17 + 1505: 6,16 + 1513: 6,17 + 1521: 6,18 + 1529: 6,19 + 1537: 6,20 + 1540: 9,24 + 1557: 0,1 + 1565: 1,1 + 1573: 2,1 + 1581: 3,0 + 1589: 3,1 + 1597: 4,0 + 1605: 4,1 + 1613: 8,12 + 1616: 9,4 + 1633: -8,12 + 1641: -4,0 + 1649: -4,1 + 1657: -3,0 + 1665: -3,1 + 1673: -2,1 + 1681: -1,1 + 1695: -4,-1 + 1703: 4,-1 + 1706: 10,-16 + 1712: 3,-20 + 1715: 9,-17 + 1729: 6,16 + 1737: 6,17 + 1745: 6,18 + 1753: 6,19 + 1761: 6,20 + 1764: 9,24 + 1781: 0,1 + 1789: 1,1 + 1797: 2,1 + 1805: 3,0 + 1813: 3,1 + 1821: 4,0 + 1829: 4,1 + 1837: 8,12 + 1840: 9,4 + 1854: -4,0 + 1862: -4,1 + 1870: -3,0 + 1878: -3,1 + 1886: -2,1 + 1894: -1,1 + 1908: -4,-1 + 1916: 4,-1 + 1919: 10,-16 + 1925: 3,-20 + 1928: 9,-17 + 1942: 6,16 + 1950: 6,17 + 1958: 6,18 + 1966: 6,19 + 1974: 6,20 + 1977: 9,24 + 1994: -8,12 + 2005: 0,1 + 2013: 1,1 + 2021: 2,1 + 2029: 3,0 + 2037: 3,1 + 2045: 4,0 + 2053: 4,1 + 2061: 8,12 + 2064: 9,4 + 2081: -8,12 + 2089: -4,0 + 2097: -4,1 + 2105: -3,0 + 2113: -3,1 + 2121: -2,1 + 2129: -1,1 + 2143: -4,-1 + 2151: 4,-1 + 2154: 10,-16 + 2160: 3,-20 + 2163: 9,-17 + 2177: 6,16 + 2185: 6,17 + 2193: 6,18 + 2201: 6,19 + 2209: 6,20 + 2212: 9,24 + 2229: 0,1 + 2237: 1,1 + 2245: 2,1 + 2253: 3,0 + 2261: 3,1 + 2269: 4,0 + 2277: 4,1 + 2285: 8,12 + 2288: 9,4 + 2305: -8,12 + 2313: -4,0 + 2321: -4,1 + 2329: -3,0 + 2337: -3,1 + 2345: -2,1 + 2353: -1,1 + 2367: -4,-1 + 2375: 4,-1 + 2378: 10,-16 + 2384: 3,-20 + 2387: 9,-17 + 2401: 6,16 + 2409: 6,17 + 2417: 6,18 + 2425: 6,19 + 2433: 6,20 + 2436: 9,24 + 2453: 0,1 + 2461: 1,1 + 2469: 2,1 + 2477: 3,0 + 2485: 3,1 + 2493: 4,0 + 2501: 4,1 + 2509: 8,12 + 2512: 9,4 + 2529: -8,12 + 2537: -4,0 + 2545: -4,1 + 2553: -3,0 + 2561: -3,1 + 2569: -2,1 + 2577: -1,1 + 2591: -4,-1 + 2599: 4,-1 + 2602: 10,-16 + 2608: 3,-20 + 2611: 9,-17 + 2625: 6,16 + 2633: 6,17 + 2641: 6,18 + 2649: 6,19 + 2657: 6,20 + 2660: 9,24 + 2677: 0,1 + 2685: 1,1 + 2693: 2,1 + 2701: 3,0 + 2709: 3,1 + 2717: 4,0 + 2725: 4,1 + 2733: 8,12 + 2736: 9,4 + 2753: -8,12 + 2761: -4,0 + 2769: -4,1 + 2777: -3,0 + 2785: -3,1 + 2793: -2,1 + 2801: -1,1 + 2815: -4,-1 + 2823: 4,-1 + 2826: 10,-16 + 2832: 3,-20 + 2835: 9,-17 + 2849: 6,16 + 2857: 6,17 + 2865: 6,18 + 2873: 6,19 + 2881: 6,20 + 2884: 9,24 + 2901: 0,1 + 2909: 1,1 + 2917: 2,1 + 2925: 3,0 + 2933: 3,1 + 2941: 4,0 + 2949: 4,1 + 2957: 8,12 + 2960: 9,4 + 2977: -8,12 + 2985: -4,0 + 2993: -4,1 + 3001: -3,0 + 3009: -3,1 + 3017: -2,1 + 3025: -1,1 + 3039: -4,-1 + 3047: 4,-1 + 3050: 10,-16 + 3056: 3,-20 + 3059: 9,-17 + 3073: 6,16 + 3081: 6,17 + 3089: 6,18 + 3097: 6,19 + 3105: 6,20 + 3108: 9,24 + 3125: 0,1 + 3133: 1,1 + 3141: 2,1 + 3149: 3,0 + 3157: 3,1 + 3165: 4,0 + 3173: 4,1 + 3181: 8,12 + 3184: 9,4 + 3201: -8,12 + 3209: -4,0 + 3217: -4,1 + 3225: -3,0 + 3233: -3,1 + 3241: -2,1 + 3249: -1,1 + 3263: -4,-1 + 3271: 4,-1 + 3274: 10,-16 + 3280: 3,-20 + 3283: 9,-17 + 3297: 6,16 + 3305: 6,17 + 3313: 6,18 + 3321: 6,19 + 3329: 6,20 + 3332: 9,24 + 3373: 0,1 + 3382: 1,1 + 3391: 2,1 + 3405: 3,0 + 3413: 3,1 + 3421: 4,0 + 3429: 4,1 + 3437: 8,12 + 3440: 9,4 + 3457: -8,12 + 3465: -4,0 + 3473: -4,1 + 3481: -3,0 + 3489: -3,1 + 3497: -2,1 + 3511: -1,1 + 3526: -4,-1 + 3534: 4,-1 + 3537: 10,-16 + 3543: 3,-20 + 3546: 9,-17 + 3560: 6,16 + 3568: 6,17 + 3576: 6,18 + 3584: 6,19 + 3592: 6,20 + 3595: 9,24 + 3621: 0,1 + 3631: 1,1 + 3641: 2,1 + 3658: 3,0 + 3666: 3,1 + 3674: 4,0 + 3682: 4,1 + 3690: 8,12 + 3693: 9,4 + 3710: -8,12 + 3718: -4,0 + 3726: -4,1 + 3734: -3,0 + 3742: -3,1 + 3750: -2,1 + 3767: -1,1 + 3783: -4,-1 + 3791: 4,-1 + 3794: 10,-16 + 3800: 3,-20 + 3803: 9,-17 + 3817: 6,16 + 3825: 6,17 + 3833: 6,18 + 3841: 6,19 + 3849: 6,20 + 3852: 9,24 + 3869: 0,1 + 3879: 1,1 + 3889: 2,1 + 3906: 3,0 + 3914: 3,1 + 3922: 4,0 + 3930: 4,1 + 3938: 8,12 + 3941: 9,4 + 3958: -8,12 + 3966: -4,0 + 3974: -4,1 + 3982: -3,0 + 3990: -3,1 + 3998: -2,1 + 4015: -1,1 + 4028: -4,-1 + 4036: 4,-1 + 4039: 10,-16 + 4042: 3,-20 + 4045: 9,-17 + 4059: 6,16 + 4067: 6,17 + 4075: 6,18 + 4083: 6,19 + 4091: 6,20 + 4094: 9,24 + 4117: 0,1 + 4127: 1,1 + 4137: 2,1 + 4154: 3,0 + 4162: 3,1 + 4170: 4,0 + 4178: 4,1 + 4186: 8,12 + 4189: 9,4 + 4206: -8,12 + 4214: -4,0 + 4222: -4,1 + 4230: -3,0 + 4238: -3,1 + 4246: -2,1 + 4263: -1,1 + 4279: -4,-1 + 4287: 4,-1 + 4290: 10,-16 + 4296: 3,-20 + 4299: 9,-17 + 4313: 6,16 + 4321: 6,17 + 4329: 6,18 + 4337: 6,19 + 4345: 6,20 + 4348: 9,24 + 4365: 0,1 + 4375: 1,1 + 4385: 2,1 + 4402: 3,0 + 4410: 3,1 + 4418: 4,0 + 4426: 4,1 + 4434: 8,12 + 4437: 9,4 + 4454: -8,12 + 4462: -4,0 + 4470: -4,1 + 4478: -3,0 + 4486: -3,1 + 4494: -2,1 + 4511: -1,1 + 4527: -4,-1 + 4535: 4,-1 + 4538: 10,-16 + 4544: 3,-20 + 4547: 9,-17 + 4561: 6,16 + 4569: 6,17 + 4577: 6,18 + 4585: 6,19 + 4593: 6,20 + 4596: 9,24 + 4613: 0,1 + 4623: 1,1 + 4633: 2,1 + 4650: 3,0 + 4658: 3,1 + 4666: 4,0 + 4674: 4,1 + 4682: 8,12 + 4685: 9,4 + 4702: -8,12 + 4710: -4,0 + 4718: -4,1 + 4726: -3,0 + 4734: -3,1 + 4742: -2,1 + 4759: -1,1 + 4775: -4,-1 + 4783: 4,-1 + 4786: 10,-16 + 4792: 3,-20 + 4795: 9,-17 + 4809: 6,16 + 4817: 6,17 + 4825: 6,18 + 4833: 6,19 + 4841: 6,20 + 4844: 9,24 + 4876: 0,1 + 4886: 1,1 + 4896: 2,1 + 4913: 3,0 + 4921: 3,1 + 4929: 4,0 + 4937: 4,1 + 4945: 8,12 + 4948: 9,4 + 4965: -8,12 + 4973: -4,0 + 4981: -4,1 + 4989: -3,0 + 4997: -3,1 + 5005: -2,1 + 5022: -1,1 + 5038: -4,-1 + 5046: 4,-1 + 5049: 10,-16 + 5055: 3,-20 + 5058: 9,-17 + 5072: 6,16 + 5080: 6,17 + 5088: 6,18 + 5096: 6,19 + 5104: 6,20 + 5107: 9,24 + 5124: 0,1 + 5134: 1,1 + 5144: 2,1 + 5161: 3,0 + 5169: 3,1 + 5177: 4,0 + 5185: 4,1 + 5193: 8,12 + 5196: 9,4 + 5213: -8,12 + 5221: -4,0 + 5229: -4,1 + 5237: -3,0 + 5245: -3,1 + 5253: -2,1 + 5270: -1,1 + 5286: -4,-1 + 5294: 4,-1 + 5297: 10,-16 + 5303: 3,-20 + 5306: 9,-17 + 5320: 6,16 + 5328: 6,17 + 5336: 6,18 + 5344: 6,19 + 5352: 6,20 + 5355: 9,24 + 5394: 0,1 + 5404: 1,1 + 5414: 2,1 + 5431: 3,0 + 5439: 3,1 + 5447: 4,0 + 5455: 4,1 + 5463: 8,12 + 5466: 9,4 + 5483: -8,12 + 5491: -4,0 + 5499: -4,1 + 5507: -3,0 + 5515: -3,1 + 5523: -2,1 + 5540: -1,1 + 5556: -4,-1 + 5564: 4,-1 + 5567: 10,-16 + 5573: 3,-20 + 5576: 9,-17 + 5590: 6,16 + 5598: 6,17 + 5606: 6,18 + 5614: 6,19 + 5622: 6,20 + 5625: 9,24 + 5642: 0,1 + 5652: 1,1 + 5662: 2,1 + 5679: 3,0 + 5687: 3,1 + 5695: 4,0 + 5703: 4,1 + 5711: 8,12 + 5714: 9,4 + 5731: -8,12 + 5739: -4,0 + 5747: -4,1 + 5755: -3,0 + 5763: -3,1 + 5771: -2,1 + 5788: -1,1 + 5804: -4,-1 + 5812: 4,-1 + 5815: 10,-16 + 5821: 3,-20 + 5824: 9,-17 + 5838: 6,16 + 5846: 6,17 + 5854: 6,18 + 5862: 6,19 + 5870: 6,20 + 5873: 9,24 + 5898: 0,1 + 5908: 1,1 + 5918: 2,1 + 5935: 3,0 + 5943: 3,1 + 5951: 4,0 + 5959: 4,1 + 5967: 8,12 + 5970: 9,4 + 5987: -8,12 + 5995: -4,0 + 6003: -4,1 + 6011: -3,0 + 6019: -3,1 + 6027: -2,1 + 6044: -1,1 + 6060: -4,-1 + 6068: 4,-1 + 6071: 10,-16 + 6077: 3,-20 + 6080: 9,-17 + 6094: 6,16 + 6102: 6,17 + 6110: 6,18 + 6118: 6,19 + 6126: 6,20 + 6129: 9,24 + 6146: 0,1 + 6156: 1,1 + 6166: 2,1 + 6183: 3,0 + 6191: 3,1 + 6199: 4,0 + 6207: 4,1 + 6215: 8,12 + 6218: 9,4 + 6235: -8,12 + 6243: -4,0 + 6251: -4,1 + 6259: -3,0 + 6267: -3,1 + 6275: -2,1 + 6292: -1,1 + 6308: -4,-1 + 6316: 4,-1 + 6319: 10,-16 + 6325: 3,-20 + 6328: 9,-17 + 6342: 6,16 + 6350: 6,17 + 6358: 6,18 + 6366: 6,19 + 6374: 6,20 + 6377: 9,24 + 6394: 0,1 + 6404: 1,1 + 6414: 2,1 + 6431: 3,0 + 6439: 3,1 + 6447: 4,0 + 6455: 4,1 + 6458: 9,4 + 6475: -8,12 + 6483: -4,0 + 6491: -4,1 + 6499: -3,0 + 6507: -3,1 + 6515: -2,1 + 6532: -1,1 + 6548: -4,-1 + 6556: 4,-1 + 6559: 10,-16 + 6565: 3,-20 + 6568: 9,-17 + 6582: 6,16 + 6590: 6,17 + 6598: 6,18 + 6606: 6,19 + 6614: 6,20 + 6617: 9,24 + 6636: 8,12 + 6664: 0,1 + 6674: 1,1 + 6684: 2,1 + 6701: 3,0 + 6709: 3,1 + 6717: 4,0 + 6725: 4,1 + 6733: 8,12 + 6736: 9,4 + 6753: -8,12 + 6761: -4,0 + 6769: -4,1 + 6777: -3,0 + 6785: -3,1 + 6793: -2,1 + 6810: -1,1 + 6826: -4,-1 + 6834: 4,-1 + 6837: 10,-16 + 6843: 3,-20 + 6846: 9,-17 + 6860: 6,16 + 6868: 6,17 + 6876: 6,18 + 6884: 6,19 + 6892: 6,20 + 6895: 9,24 - node: zIndex: 1 id: LatticeCornerSE decals: - 982: 0,1 - 990: 1,1 - 998: 2,1 - 1006: 3,0 - 1014: 3,1 - 1022: 4,0 - 1030: 4,1 - 1038: 8,12 - 1055: -9,12 - 1058: -8,12 - 1066: -4,0 - 1074: -4,1 - 1082: -3,0 - 1090: -3,1 - 1098: -2,1 - 1106: -1,1 - 1114: -12,-10 - 1120: -4,-1 - 1128: 4,-1 - 1154: 6,16 - 1162: 6,17 - 1170: 6,18 - 1178: 6,19 - 1186: 6,20 - 1203: -9,28 - 1206: 0,1 - 1214: 1,1 - 1222: 2,1 - 1230: 3,0 - 1238: 3,1 - 1246: 4,0 - 1254: 4,1 - 1262: 8,12 - 1279: -9,12 - 1282: -8,12 - 1290: -4,0 - 1298: -4,1 - 1306: -3,0 - 1314: -3,1 - 1322: -2,1 - 1330: -1,1 - 1338: -12,-10 - 1344: -4,-1 - 1352: 4,-1 - 1378: 6,16 - 1386: 6,17 - 1394: 6,18 - 1402: 6,19 - 1410: 6,20 - 1427: -9,28 - 1430: 0,1 - 1438: 1,1 - 1446: 2,1 - 1454: 3,0 - 1462: 3,1 - 1470: 4,0 - 1478: 4,1 - 1486: 8,12 - 1503: -9,12 - 1506: -8,12 - 1514: -4,0 - 1522: -4,1 - 1530: -3,0 - 1538: -3,1 - 1546: -2,1 - 1554: -1,1 - 1562: -12,-10 - 1568: -4,-1 - 1576: 4,-1 - 1602: 6,16 - 1610: 6,17 - 1618: 6,18 - 1626: 6,19 - 1634: 6,20 - 1651: -9,28 - 1654: 0,1 - 1662: 1,1 - 1670: 2,1 - 1678: 3,0 - 1686: 3,1 - 1694: 4,0 - 1702: 4,1 - 1710: 8,12 - 1727: -9,12 - 1730: -8,12 - 1738: -4,0 - 1746: -4,1 - 1754: -3,0 - 1762: -3,1 - 1770: -2,1 - 1778: -1,1 - 1786: -12,-10 - 1792: -4,-1 - 1800: 4,-1 - 1826: 6,16 - 1834: 6,17 - 1842: 6,18 - 1850: 6,19 - 1858: 6,20 - 1875: -9,28 - 1878: 0,1 - 1886: 1,1 - 1894: 2,1 - 1902: 3,0 - 1910: 3,1 - 1918: 4,0 - 1926: 4,1 - 1934: 8,12 - 1951: -4,0 - 1959: -4,1 - 1967: -3,0 - 1975: -3,1 - 1983: -2,1 - 1991: -1,1 - 1999: -12,-10 - 2005: -4,-1 - 2013: 4,-1 - 2039: 6,16 - 2047: 6,17 - 2055: 6,18 - 2063: 6,19 - 2071: 6,20 - 2088: -9,28 - 2091: -8,12 - 2099: -9,12 - 2102: 0,1 - 2110: 1,1 - 2118: 2,1 - 2126: 3,0 - 2134: 3,1 - 2142: 4,0 - 2150: 4,1 - 2158: 8,12 - 2175: -9,12 - 2178: -8,12 - 2186: -4,0 - 2194: -4,1 - 2202: -3,0 - 2210: -3,1 - 2218: -2,1 - 2226: -1,1 - 2234: -12,-10 - 2240: -4,-1 - 2248: 4,-1 - 2274: 6,16 - 2282: 6,17 - 2290: 6,18 - 2298: 6,19 - 2306: 6,20 - 2323: -9,28 - 2326: 0,1 - 2334: 1,1 - 2342: 2,1 - 2350: 3,0 - 2358: 3,1 - 2366: 4,0 - 2374: 4,1 - 2382: 8,12 - 2399: -9,12 - 2402: -8,12 - 2410: -4,0 - 2418: -4,1 - 2426: -3,0 - 2434: -3,1 - 2442: -2,1 - 2450: -1,1 - 2458: -12,-10 - 2464: -4,-1 - 2472: 4,-1 - 2498: 6,16 - 2506: 6,17 - 2514: 6,18 - 2522: 6,19 - 2530: 6,20 - 2547: -9,28 - 2550: 0,1 - 2558: 1,1 - 2566: 2,1 - 2574: 3,0 - 2582: 3,1 - 2590: 4,0 - 2598: 4,1 - 2606: 8,12 - 2623: -9,12 - 2626: -8,12 - 2634: -4,0 - 2642: -4,1 - 2650: -3,0 - 2658: -3,1 - 2666: -2,1 - 2674: -1,1 - 2682: -12,-10 - 2688: -4,-1 - 2696: 4,-1 - 2722: 6,16 - 2730: 6,17 - 2738: 6,18 - 2746: 6,19 - 2754: 6,20 - 2771: -9,28 - 2774: 0,1 - 2782: 1,1 - 2790: 2,1 - 2798: 3,0 - 2806: 3,1 - 2814: 4,0 - 2822: 4,1 - 2830: 8,12 - 2847: -9,12 - 2850: -8,12 - 2858: -4,0 - 2866: -4,1 - 2874: -3,0 - 2882: -3,1 - 2890: -2,1 - 2898: -1,1 - 2906: -12,-10 - 2912: -4,-1 - 2920: 4,-1 - 2946: 6,16 - 2954: 6,17 - 2962: 6,18 - 2970: 6,19 - 2978: 6,20 - 2995: -9,28 - 2998: 0,1 - 3006: 1,1 - 3014: 2,1 - 3022: 3,0 - 3030: 3,1 - 3038: 4,0 - 3046: 4,1 - 3054: 8,12 - 3071: -9,12 - 3074: -8,12 - 3082: -4,0 - 3090: -4,1 - 3098: -3,0 - 3106: -3,1 - 3114: -2,1 - 3122: -1,1 - 3130: -12,-10 - 3136: -4,-1 - 3144: 4,-1 - 3170: 6,16 - 3178: 6,17 - 3186: 6,18 - 3194: 6,19 - 3202: 6,20 - 3219: -9,28 - 3222: 0,1 - 3230: 1,1 - 3238: 2,1 - 3246: 3,0 - 3254: 3,1 - 3262: 4,0 - 3270: 4,1 - 3278: 8,12 - 3295: -9,12 - 3298: -8,12 - 3306: -4,0 - 3314: -4,1 - 3322: -3,0 - 3330: -3,1 - 3338: -2,1 - 3346: -1,1 - 3354: -12,-10 - 3360: -4,-1 - 3368: 4,-1 - 3394: 6,16 - 3402: 6,17 - 3410: 6,18 - 3418: 6,19 - 3426: 6,20 - 3443: -9,28 - 3470: 0,1 - 3479: 1,1 - 3488: 2,1 - 3502: 3,0 - 3510: 3,1 - 3518: 4,0 - 3526: 4,1 - 3534: 8,12 - 3551: -9,12 - 3554: -8,12 - 3562: -4,0 - 3570: -4,1 - 3578: -3,0 - 3586: -3,1 - 3594: -2,1 - 3608: -1,1 - 3617: -12,-10 - 3623: -4,-1 - 3631: 4,-1 - 3657: 6,16 - 3665: 6,17 - 3673: 6,18 - 3681: 6,19 - 3689: 6,20 - 3706: -9,28 - 3718: 0,1 - 3728: 1,1 - 3738: 2,1 - 3755: 3,0 - 3763: 3,1 - 3771: 4,0 - 3779: 4,1 - 3787: 8,12 - 3804: -9,12 - 3807: -8,12 - 3815: -4,0 - 3823: -4,1 - 3831: -3,0 - 3839: -3,1 - 3847: -2,1 - 3864: -1,1 - 3874: -12,-10 - 3880: -4,-1 - 3888: 4,-1 - 3914: 6,16 - 3922: 6,17 - 3930: 6,18 - 3938: 6,19 - 3946: 6,20 - 3963: -9,28 - 3966: 0,1 - 3976: 1,1 - 3986: 2,1 - 4003: 3,0 - 4011: 3,1 - 4019: 4,0 - 4027: 4,1 - 4035: 8,12 - 4052: -9,12 - 4055: -8,12 - 4063: -4,0 - 4071: -4,1 - 4079: -3,0 - 4087: -3,1 - 4095: -2,1 - 4112: -1,1 - 4125: -4,-1 - 4133: 4,-1 - 4156: 6,16 - 4164: 6,17 - 4172: 6,18 - 4180: 6,19 - 4188: 6,20 - 4205: -9,28 - 4208: -12,-10 - 4214: 0,1 - 4224: 1,1 - 4234: 2,1 - 4251: 3,0 - 4259: 3,1 - 4267: 4,0 - 4275: 4,1 - 4283: 8,12 - 4300: -9,12 - 4303: -8,12 - 4311: -4,0 - 4319: -4,1 - 4327: -3,0 - 4335: -3,1 - 4343: -2,1 - 4360: -1,1 - 4370: -12,-10 - 4376: -4,-1 - 4384: 4,-1 - 4410: 6,16 - 4418: 6,17 - 4426: 6,18 - 4434: 6,19 - 4442: 6,20 - 4459: -9,28 + 880: 0,1 + 888: 1,1 + 896: 2,1 + 904: 3,0 + 912: 3,1 + 920: 4,0 + 928: 4,1 + 936: 8,12 + 953: -9,12 + 956: -8,12 + 964: -4,0 + 972: -4,1 + 980: -3,0 + 988: -3,1 + 996: -2,1 + 1004: -1,1 + 1012: -12,-10 + 1018: -4,-1 + 1026: 4,-1 + 1052: 6,16 + 1060: 6,17 + 1068: 6,18 + 1076: 6,19 + 1084: 6,20 + 1101: -9,28 + 1104: 0,1 + 1112: 1,1 + 1120: 2,1 + 1128: 3,0 + 1136: 3,1 + 1144: 4,0 + 1152: 4,1 + 1160: 8,12 + 1177: -9,12 + 1180: -8,12 + 1188: -4,0 + 1196: -4,1 + 1204: -3,0 + 1212: -3,1 + 1220: -2,1 + 1228: -1,1 + 1236: -12,-10 + 1242: -4,-1 + 1250: 4,-1 + 1276: 6,16 + 1284: 6,17 + 1292: 6,18 + 1300: 6,19 + 1308: 6,20 + 1325: -9,28 + 1328: 0,1 + 1336: 1,1 + 1344: 2,1 + 1352: 3,0 + 1360: 3,1 + 1368: 4,0 + 1376: 4,1 + 1384: 8,12 + 1401: -9,12 + 1404: -8,12 + 1412: -4,0 + 1420: -4,1 + 1428: -3,0 + 1436: -3,1 + 1444: -2,1 + 1452: -1,1 + 1460: -12,-10 + 1466: -4,-1 + 1474: 4,-1 + 1500: 6,16 + 1508: 6,17 + 1516: 6,18 + 1524: 6,19 + 1532: 6,20 + 1549: -9,28 + 1552: 0,1 + 1560: 1,1 + 1568: 2,1 + 1576: 3,0 + 1584: 3,1 + 1592: 4,0 + 1600: 4,1 + 1608: 8,12 + 1625: -9,12 + 1628: -8,12 + 1636: -4,0 + 1644: -4,1 + 1652: -3,0 + 1660: -3,1 + 1668: -2,1 + 1676: -1,1 + 1684: -12,-10 + 1690: -4,-1 + 1698: 4,-1 + 1724: 6,16 + 1732: 6,17 + 1740: 6,18 + 1748: 6,19 + 1756: 6,20 + 1773: -9,28 + 1776: 0,1 + 1784: 1,1 + 1792: 2,1 + 1800: 3,0 + 1808: 3,1 + 1816: 4,0 + 1824: 4,1 + 1832: 8,12 + 1849: -4,0 + 1857: -4,1 + 1865: -3,0 + 1873: -3,1 + 1881: -2,1 + 1889: -1,1 + 1897: -12,-10 + 1903: -4,-1 + 1911: 4,-1 + 1937: 6,16 + 1945: 6,17 + 1953: 6,18 + 1961: 6,19 + 1969: 6,20 + 1986: -9,28 + 1989: -8,12 + 1997: -9,12 + 2000: 0,1 + 2008: 1,1 + 2016: 2,1 + 2024: 3,0 + 2032: 3,1 + 2040: 4,0 + 2048: 4,1 + 2056: 8,12 + 2073: -9,12 + 2076: -8,12 + 2084: -4,0 + 2092: -4,1 + 2100: -3,0 + 2108: -3,1 + 2116: -2,1 + 2124: -1,1 + 2132: -12,-10 + 2138: -4,-1 + 2146: 4,-1 + 2172: 6,16 + 2180: 6,17 + 2188: 6,18 + 2196: 6,19 + 2204: 6,20 + 2221: -9,28 + 2224: 0,1 + 2232: 1,1 + 2240: 2,1 + 2248: 3,0 + 2256: 3,1 + 2264: 4,0 + 2272: 4,1 + 2280: 8,12 + 2297: -9,12 + 2300: -8,12 + 2308: -4,0 + 2316: -4,1 + 2324: -3,0 + 2332: -3,1 + 2340: -2,1 + 2348: -1,1 + 2356: -12,-10 + 2362: -4,-1 + 2370: 4,-1 + 2396: 6,16 + 2404: 6,17 + 2412: 6,18 + 2420: 6,19 + 2428: 6,20 + 2445: -9,28 + 2448: 0,1 + 2456: 1,1 + 2464: 2,1 + 2472: 3,0 + 2480: 3,1 + 2488: 4,0 + 2496: 4,1 + 2504: 8,12 + 2521: -9,12 + 2524: -8,12 + 2532: -4,0 + 2540: -4,1 + 2548: -3,0 + 2556: -3,1 + 2564: -2,1 + 2572: -1,1 + 2580: -12,-10 + 2586: -4,-1 + 2594: 4,-1 + 2620: 6,16 + 2628: 6,17 + 2636: 6,18 + 2644: 6,19 + 2652: 6,20 + 2669: -9,28 + 2672: 0,1 + 2680: 1,1 + 2688: 2,1 + 2696: 3,0 + 2704: 3,1 + 2712: 4,0 + 2720: 4,1 + 2728: 8,12 + 2745: -9,12 + 2748: -8,12 + 2756: -4,0 + 2764: -4,1 + 2772: -3,0 + 2780: -3,1 + 2788: -2,1 + 2796: -1,1 + 2804: -12,-10 + 2810: -4,-1 + 2818: 4,-1 + 2844: 6,16 + 2852: 6,17 + 2860: 6,18 + 2868: 6,19 + 2876: 6,20 + 2893: -9,28 + 2896: 0,1 + 2904: 1,1 + 2912: 2,1 + 2920: 3,0 + 2928: 3,1 + 2936: 4,0 + 2944: 4,1 + 2952: 8,12 + 2969: -9,12 + 2972: -8,12 + 2980: -4,0 + 2988: -4,1 + 2996: -3,0 + 3004: -3,1 + 3012: -2,1 + 3020: -1,1 + 3028: -12,-10 + 3034: -4,-1 + 3042: 4,-1 + 3068: 6,16 + 3076: 6,17 + 3084: 6,18 + 3092: 6,19 + 3100: 6,20 + 3117: -9,28 + 3120: 0,1 + 3128: 1,1 + 3136: 2,1 + 3144: 3,0 + 3152: 3,1 + 3160: 4,0 + 3168: 4,1 + 3176: 8,12 + 3193: -9,12 + 3196: -8,12 + 3204: -4,0 + 3212: -4,1 + 3220: -3,0 + 3228: -3,1 + 3236: -2,1 + 3244: -1,1 + 3252: -12,-10 + 3258: -4,-1 + 3266: 4,-1 + 3292: 6,16 + 3300: 6,17 + 3308: 6,18 + 3316: 6,19 + 3324: 6,20 + 3341: -9,28 + 3368: 0,1 + 3377: 1,1 + 3386: 2,1 + 3400: 3,0 + 3408: 3,1 + 3416: 4,0 + 3424: 4,1 + 3432: 8,12 + 3449: -9,12 + 3452: -8,12 + 3460: -4,0 + 3468: -4,1 + 3476: -3,0 + 3484: -3,1 + 3492: -2,1 + 3506: -1,1 + 3515: -12,-10 + 3521: -4,-1 + 3529: 4,-1 + 3555: 6,16 + 3563: 6,17 + 3571: 6,18 + 3579: 6,19 + 3587: 6,20 + 3604: -9,28 + 3616: 0,1 + 3626: 1,1 + 3636: 2,1 + 3653: 3,0 + 3661: 3,1 + 3669: 4,0 + 3677: 4,1 + 3685: 8,12 + 3702: -9,12 + 3705: -8,12 + 3713: -4,0 + 3721: -4,1 + 3729: -3,0 + 3737: -3,1 + 3745: -2,1 + 3762: -1,1 + 3772: -12,-10 + 3778: -4,-1 + 3786: 4,-1 + 3812: 6,16 + 3820: 6,17 + 3828: 6,18 + 3836: 6,19 + 3844: 6,20 + 3861: -9,28 + 3864: 0,1 + 3874: 1,1 + 3884: 2,1 + 3901: 3,0 + 3909: 3,1 + 3917: 4,0 + 3925: 4,1 + 3933: 8,12 + 3950: -9,12 + 3953: -8,12 + 3961: -4,0 + 3969: -4,1 + 3977: -3,0 + 3985: -3,1 + 3993: -2,1 + 4010: -1,1 + 4023: -4,-1 + 4031: 4,-1 + 4054: 6,16 + 4062: 6,17 + 4070: 6,18 + 4078: 6,19 + 4086: 6,20 + 4103: -9,28 + 4106: -12,-10 + 4112: 0,1 + 4122: 1,1 + 4132: 2,1 + 4149: 3,0 + 4157: 3,1 + 4165: 4,0 + 4173: 4,1 + 4181: 8,12 + 4198: -9,12 + 4201: -8,12 + 4209: -4,0 + 4217: -4,1 + 4225: -3,0 + 4233: -3,1 + 4241: -2,1 + 4258: -1,1 + 4268: -12,-10 + 4274: -4,-1 + 4282: 4,-1 + 4308: 6,16 + 4316: 6,17 + 4324: 6,18 + 4332: 6,19 + 4340: 6,20 + 4357: -9,28 + 4360: 0,1 + 4370: 1,1 + 4380: 2,1 + 4397: 3,0 + 4405: 3,1 + 4413: 4,0 + 4421: 4,1 + 4429: 8,12 + 4446: -9,12 + 4449: -8,12 + 4457: -4,0 + 4465: -4,1 + 4473: -3,0 + 4481: -3,1 + 4489: -2,1 + 4506: -1,1 + 4516: -12,-10 + 4522: -4,-1 + 4530: 4,-1 + 4556: 6,16 + 4564: 6,17 + 4572: 6,18 + 4580: 6,19 + 4588: 6,20 + 4605: -9,28 + 4608: 0,1 + 4618: 1,1 + 4628: 2,1 + 4645: 3,0 + 4653: 3,1 + 4661: 4,0 + 4669: 4,1 + 4677: 8,12 + 4694: -9,12 + 4697: -8,12 + 4705: -4,0 + 4713: -4,1 + 4721: -3,0 + 4729: -3,1 + 4737: -2,1 + 4754: -1,1 + 4764: -12,-10 + 4770: -4,-1 + 4778: 4,-1 + 4804: 6,16 + 4812: 6,17 + 4820: 6,18 + 4828: 6,19 + 4836: 6,20 + 4853: -9,28 + 4871: 0,1 + 4881: 1,1 + 4891: 2,1 + 4908: 3,0 + 4916: 3,1 + 4924: 4,0 + 4932: 4,1 + 4940: 8,12 + 4957: -9,12 + 4960: -8,12 + 4968: -4,0 + 4976: -4,1 + 4984: -3,0 + 4992: -3,1 + 5000: -2,1 + 5017: -1,1 + 5027: -12,-10 + 5033: -4,-1 + 5041: 4,-1 + 5067: 6,16 + 5075: 6,17 + 5083: 6,18 + 5091: 6,19 + 5099: 6,20 + 5116: -9,28 + 5119: 0,1 + 5129: 1,1 + 5139: 2,1 + 5156: 3,0 + 5164: 3,1 + 5172: 4,0 + 5180: 4,1 + 5188: 8,12 + 5205: -9,12 + 5208: -8,12 + 5216: -4,0 + 5224: -4,1 + 5232: -3,0 + 5240: -3,1 + 5248: -2,1 + 5265: -1,1 + 5275: -12,-10 + 5281: -4,-1 + 5289: 4,-1 + 5315: 6,16 + 5323: 6,17 + 5331: 6,18 + 5339: 6,19 + 5347: 6,20 + 5364: -9,28 + 5389: 0,1 + 5399: 1,1 + 5409: 2,1 + 5426: 3,0 + 5434: 3,1 + 5442: 4,0 + 5450: 4,1 + 5458: 8,12 + 5475: -9,12 + 5478: -8,12 + 5486: -4,0 + 5494: -4,1 + 5502: -3,0 + 5510: -3,1 + 5518: -2,1 + 5535: -1,1 + 5545: -12,-10 + 5551: -4,-1 + 5559: 4,-1 + 5585: 6,16 + 5593: 6,17 + 5601: 6,18 + 5609: 6,19 + 5617: 6,20 + 5634: -9,28 + 5637: 0,1 + 5647: 1,1 + 5657: 2,1 + 5674: 3,0 + 5682: 3,1 + 5690: 4,0 + 5698: 4,1 + 5706: 8,12 + 5723: -9,12 + 5726: -8,12 + 5734: -4,0 + 5742: -4,1 + 5750: -3,0 + 5758: -3,1 + 5766: -2,1 + 5783: -1,1 + 5793: -12,-10 + 5799: -4,-1 + 5807: 4,-1 + 5833: 6,16 + 5841: 6,17 + 5849: 6,18 + 5857: 6,19 + 5865: 6,20 + 5882: -9,28 + 5893: 0,1 + 5903: 1,1 + 5913: 2,1 + 5930: 3,0 + 5938: 3,1 + 5946: 4,0 + 5954: 4,1 + 5962: 8,12 + 5979: -9,12 + 5982: -8,12 + 5990: -4,0 + 5998: -4,1 + 6006: -3,0 + 6014: -3,1 + 6022: -2,1 + 6039: -1,1 + 6049: -12,-10 + 6055: -4,-1 + 6063: 4,-1 + 6089: 6,16 + 6097: 6,17 + 6105: 6,18 + 6113: 6,19 + 6121: 6,20 + 6138: -9,28 + 6141: 0,1 + 6151: 1,1 + 6161: 2,1 + 6178: 3,0 + 6186: 3,1 + 6194: 4,0 + 6202: 4,1 + 6210: 8,12 + 6227: -9,12 + 6230: -8,12 + 6238: -4,0 + 6246: -4,1 + 6254: -3,0 + 6262: -3,1 + 6270: -2,1 + 6287: -1,1 + 6297: -12,-10 + 6303: -4,-1 + 6311: 4,-1 + 6337: 6,16 + 6345: 6,17 + 6353: 6,18 + 6361: 6,19 + 6369: 6,20 + 6386: -9,28 + 6389: 0,1 + 6399: 1,1 + 6409: 2,1 + 6426: 3,0 + 6434: 3,1 + 6442: 4,0 + 6450: 4,1 + 6467: -9,12 + 6470: -8,12 + 6478: -4,0 + 6486: -4,1 + 6494: -3,0 + 6502: -3,1 + 6510: -2,1 + 6527: -1,1 + 6537: -12,-10 + 6543: -4,-1 + 6551: 4,-1 + 6577: 6,16 + 6585: 6,17 + 6593: 6,18 + 6601: 6,19 + 6609: 6,20 + 6626: -9,28 + 6631: 8,12 + 6659: 0,1 + 6669: 1,1 + 6679: 2,1 + 6696: 3,0 + 6704: 3,1 + 6712: 4,0 + 6720: 4,1 + 6728: 8,12 + 6745: -9,12 + 6748: -8,12 + 6756: -4,0 + 6764: -4,1 + 6772: -3,0 + 6780: -3,1 + 6788: -2,1 + 6805: -1,1 + 6815: -12,-10 + 6821: -4,-1 + 6829: 4,-1 + 6855: 6,16 + 6863: 6,17 + 6871: 6,18 + 6879: 6,19 + 6887: 6,20 + 6904: -9,28 - node: zIndex: 1 id: LatticeCornerSW decals: - 986: 0,1 - 994: 1,1 - 1002: 2,1 - 1010: 3,0 - 1018: 3,1 - 1026: 4,0 - 1034: 4,1 - 1042: 8,12 - 1049: 9,12 - 1062: -8,12 - 1070: -4,0 - 1078: -4,1 - 1086: -3,0 - 1094: -3,1 - 1102: -2,1 - 1110: -1,1 - 1124: -4,-1 - 1132: 4,-1 - 1139: 12,-10 - 1158: 6,16 - 1166: 6,17 - 1174: 6,18 - 1182: 6,19 - 1190: 6,20 - 1197: 9,28 - 1210: 0,1 - 1218: 1,1 - 1226: 2,1 - 1234: 3,0 - 1242: 3,1 - 1250: 4,0 - 1258: 4,1 - 1266: 8,12 - 1273: 9,12 - 1286: -8,12 - 1294: -4,0 - 1302: -4,1 - 1310: -3,0 - 1318: -3,1 - 1326: -2,1 - 1334: -1,1 - 1348: -4,-1 - 1356: 4,-1 - 1363: 12,-10 - 1382: 6,16 - 1390: 6,17 - 1398: 6,18 - 1406: 6,19 - 1414: 6,20 - 1421: 9,28 - 1434: 0,1 - 1442: 1,1 - 1450: 2,1 - 1458: 3,0 - 1466: 3,1 - 1474: 4,0 - 1482: 4,1 - 1490: 8,12 - 1497: 9,12 - 1510: -8,12 - 1518: -4,0 - 1526: -4,1 - 1534: -3,0 - 1542: -3,1 - 1550: -2,1 - 1558: -1,1 - 1572: -4,-1 - 1580: 4,-1 - 1587: 12,-10 - 1606: 6,16 - 1614: 6,17 - 1622: 6,18 - 1630: 6,19 - 1638: 6,20 - 1645: 9,28 - 1658: 0,1 - 1666: 1,1 - 1674: 2,1 - 1682: 3,0 - 1690: 3,1 - 1698: 4,0 - 1706: 4,1 - 1714: 8,12 - 1721: 9,12 - 1734: -8,12 - 1742: -4,0 - 1750: -4,1 - 1758: -3,0 - 1766: -3,1 - 1774: -2,1 - 1782: -1,1 - 1796: -4,-1 - 1804: 4,-1 - 1811: 12,-10 - 1830: 6,16 - 1838: 6,17 - 1846: 6,18 - 1854: 6,19 - 1862: 6,20 - 1869: 9,28 - 1882: 0,1 - 1890: 1,1 - 1898: 2,1 - 1906: 3,0 - 1914: 3,1 - 1922: 4,0 - 1930: 4,1 - 1938: 8,12 - 1945: 9,12 - 1955: -4,0 - 1963: -4,1 - 1971: -3,0 - 1979: -3,1 - 1987: -2,1 - 1995: -1,1 - 2009: -4,-1 - 2017: 4,-1 - 2024: 12,-10 - 2043: 6,16 - 2051: 6,17 - 2059: 6,18 - 2067: 6,19 - 2075: 6,20 - 2082: 9,28 - 2095: -8,12 - 2106: 0,1 - 2114: 1,1 - 2122: 2,1 - 2130: 3,0 - 2138: 3,1 - 2146: 4,0 - 2154: 4,1 - 2162: 8,12 - 2169: 9,12 - 2182: -8,12 - 2190: -4,0 - 2198: -4,1 - 2206: -3,0 - 2214: -3,1 - 2222: -2,1 - 2230: -1,1 - 2244: -4,-1 - 2252: 4,-1 - 2259: 12,-10 - 2278: 6,16 - 2286: 6,17 - 2294: 6,18 - 2302: 6,19 - 2310: 6,20 - 2317: 9,28 - 2330: 0,1 - 2338: 1,1 - 2346: 2,1 - 2354: 3,0 - 2362: 3,1 - 2370: 4,0 - 2378: 4,1 - 2386: 8,12 - 2393: 9,12 - 2406: -8,12 - 2414: -4,0 - 2422: -4,1 - 2430: -3,0 - 2438: -3,1 - 2446: -2,1 - 2454: -1,1 - 2468: -4,-1 - 2476: 4,-1 - 2483: 12,-10 - 2502: 6,16 - 2510: 6,17 - 2518: 6,18 - 2526: 6,19 - 2534: 6,20 - 2541: 9,28 - 2554: 0,1 - 2562: 1,1 - 2570: 2,1 - 2578: 3,0 - 2586: 3,1 - 2594: 4,0 - 2602: 4,1 - 2610: 8,12 - 2617: 9,12 - 2630: -8,12 - 2638: -4,0 - 2646: -4,1 - 2654: -3,0 - 2662: -3,1 - 2670: -2,1 - 2678: -1,1 - 2692: -4,-1 - 2700: 4,-1 - 2707: 12,-10 - 2726: 6,16 - 2734: 6,17 - 2742: 6,18 - 2750: 6,19 - 2758: 6,20 - 2765: 9,28 - 2778: 0,1 - 2786: 1,1 - 2794: 2,1 - 2802: 3,0 - 2810: 3,1 - 2818: 4,0 - 2826: 4,1 - 2834: 8,12 - 2841: 9,12 - 2854: -8,12 - 2862: -4,0 - 2870: -4,1 - 2878: -3,0 - 2886: -3,1 - 2894: -2,1 - 2902: -1,1 - 2916: -4,-1 - 2924: 4,-1 - 2931: 12,-10 - 2950: 6,16 - 2958: 6,17 - 2966: 6,18 - 2974: 6,19 - 2982: 6,20 - 2989: 9,28 - 3002: 0,1 - 3010: 1,1 - 3018: 2,1 - 3026: 3,0 - 3034: 3,1 - 3042: 4,0 - 3050: 4,1 - 3058: 8,12 - 3065: 9,12 - 3078: -8,12 - 3086: -4,0 - 3094: -4,1 - 3102: -3,0 - 3110: -3,1 - 3118: -2,1 - 3126: -1,1 - 3140: -4,-1 - 3148: 4,-1 - 3155: 12,-10 - 3174: 6,16 - 3182: 6,17 - 3190: 6,18 - 3198: 6,19 - 3206: 6,20 - 3213: 9,28 - 3226: 0,1 - 3234: 1,1 - 3242: 2,1 - 3250: 3,0 - 3258: 3,1 - 3266: 4,0 - 3274: 4,1 - 3282: 8,12 - 3289: 9,12 - 3302: -8,12 - 3310: -4,0 - 3318: -4,1 - 3326: -3,0 - 3334: -3,1 - 3342: -2,1 - 3350: -1,1 - 3364: -4,-1 - 3372: 4,-1 - 3379: 12,-10 - 3398: 6,16 - 3406: 6,17 - 3414: 6,18 - 3422: 6,19 - 3430: 6,20 - 3437: 9,28 - 3474: 0,1 - 3483: 1,1 - 3492: 2,1 - 3506: 3,0 - 3514: 3,1 - 3522: 4,0 - 3530: 4,1 - 3538: 8,12 - 3545: 9,12 - 3558: -8,12 - 3566: -4,0 - 3574: -4,1 - 3582: -3,0 - 3590: -3,1 - 3598: -2,1 - 3612: -1,1 - 3627: -4,-1 - 3635: 4,-1 - 3642: 12,-10 - 3661: 6,16 - 3669: 6,17 - 3677: 6,18 - 3685: 6,19 - 3693: 6,20 - 3700: 9,28 - 3722: 0,1 - 3732: 1,1 - 3742: 2,1 - 3759: 3,0 - 3767: 3,1 - 3775: 4,0 - 3783: 4,1 - 3791: 8,12 - 3798: 9,12 - 3811: -8,12 - 3819: -4,0 - 3827: -4,1 - 3835: -3,0 - 3843: -3,1 - 3851: -2,1 - 3868: -1,1 - 3884: -4,-1 - 3892: 4,-1 - 3899: 12,-10 - 3918: 6,16 - 3926: 6,17 - 3934: 6,18 - 3942: 6,19 - 3950: 6,20 - 3957: 9,28 - 3970: 0,1 - 3980: 1,1 - 3990: 2,1 - 4007: 3,0 - 4015: 3,1 - 4023: 4,0 - 4031: 4,1 - 4039: 8,12 - 4046: 9,12 - 4059: -8,12 - 4067: -4,0 - 4075: -4,1 - 4083: -3,0 - 4091: -3,1 - 4099: -2,1 - 4116: -1,1 - 4129: -4,-1 - 4137: 4,-1 - 4160: 6,16 - 4168: 6,17 - 4176: 6,18 - 4184: 6,19 - 4192: 6,20 - 4199: 9,28 - 4211: 12,-10 - 4218: 0,1 - 4228: 1,1 - 4238: 2,1 - 4255: 3,0 - 4263: 3,1 - 4271: 4,0 - 4279: 4,1 - 4287: 8,12 - 4294: 9,12 - 4307: -8,12 - 4315: -4,0 - 4323: -4,1 - 4331: -3,0 - 4339: -3,1 - 4347: -2,1 - 4364: -1,1 - 4380: -4,-1 - 4388: 4,-1 - 4395: 12,-10 - 4414: 6,16 - 4422: 6,17 - 4430: 6,18 - 4438: 6,19 - 4446: 6,20 - 4453: 9,28 + 884: 0,1 + 892: 1,1 + 900: 2,1 + 908: 3,0 + 916: 3,1 + 924: 4,0 + 932: 4,1 + 940: 8,12 + 947: 9,12 + 960: -8,12 + 968: -4,0 + 976: -4,1 + 984: -3,0 + 992: -3,1 + 1000: -2,1 + 1008: -1,1 + 1022: -4,-1 + 1030: 4,-1 + 1037: 12,-10 + 1056: 6,16 + 1064: 6,17 + 1072: 6,18 + 1080: 6,19 + 1088: 6,20 + 1095: 9,28 + 1108: 0,1 + 1116: 1,1 + 1124: 2,1 + 1132: 3,0 + 1140: 3,1 + 1148: 4,0 + 1156: 4,1 + 1164: 8,12 + 1171: 9,12 + 1184: -8,12 + 1192: -4,0 + 1200: -4,1 + 1208: -3,0 + 1216: -3,1 + 1224: -2,1 + 1232: -1,1 + 1246: -4,-1 + 1254: 4,-1 + 1261: 12,-10 + 1280: 6,16 + 1288: 6,17 + 1296: 6,18 + 1304: 6,19 + 1312: 6,20 + 1319: 9,28 + 1332: 0,1 + 1340: 1,1 + 1348: 2,1 + 1356: 3,0 + 1364: 3,1 + 1372: 4,0 + 1380: 4,1 + 1388: 8,12 + 1395: 9,12 + 1408: -8,12 + 1416: -4,0 + 1424: -4,1 + 1432: -3,0 + 1440: -3,1 + 1448: -2,1 + 1456: -1,1 + 1470: -4,-1 + 1478: 4,-1 + 1485: 12,-10 + 1504: 6,16 + 1512: 6,17 + 1520: 6,18 + 1528: 6,19 + 1536: 6,20 + 1543: 9,28 + 1556: 0,1 + 1564: 1,1 + 1572: 2,1 + 1580: 3,0 + 1588: 3,1 + 1596: 4,0 + 1604: 4,1 + 1612: 8,12 + 1619: 9,12 + 1632: -8,12 + 1640: -4,0 + 1648: -4,1 + 1656: -3,0 + 1664: -3,1 + 1672: -2,1 + 1680: -1,1 + 1694: -4,-1 + 1702: 4,-1 + 1709: 12,-10 + 1728: 6,16 + 1736: 6,17 + 1744: 6,18 + 1752: 6,19 + 1760: 6,20 + 1767: 9,28 + 1780: 0,1 + 1788: 1,1 + 1796: 2,1 + 1804: 3,0 + 1812: 3,1 + 1820: 4,0 + 1828: 4,1 + 1836: 8,12 + 1843: 9,12 + 1853: -4,0 + 1861: -4,1 + 1869: -3,0 + 1877: -3,1 + 1885: -2,1 + 1893: -1,1 + 1907: -4,-1 + 1915: 4,-1 + 1922: 12,-10 + 1941: 6,16 + 1949: 6,17 + 1957: 6,18 + 1965: 6,19 + 1973: 6,20 + 1980: 9,28 + 1993: -8,12 + 2004: 0,1 + 2012: 1,1 + 2020: 2,1 + 2028: 3,0 + 2036: 3,1 + 2044: 4,0 + 2052: 4,1 + 2060: 8,12 + 2067: 9,12 + 2080: -8,12 + 2088: -4,0 + 2096: -4,1 + 2104: -3,0 + 2112: -3,1 + 2120: -2,1 + 2128: -1,1 + 2142: -4,-1 + 2150: 4,-1 + 2157: 12,-10 + 2176: 6,16 + 2184: 6,17 + 2192: 6,18 + 2200: 6,19 + 2208: 6,20 + 2215: 9,28 + 2228: 0,1 + 2236: 1,1 + 2244: 2,1 + 2252: 3,0 + 2260: 3,1 + 2268: 4,0 + 2276: 4,1 + 2284: 8,12 + 2291: 9,12 + 2304: -8,12 + 2312: -4,0 + 2320: -4,1 + 2328: -3,0 + 2336: -3,1 + 2344: -2,1 + 2352: -1,1 + 2366: -4,-1 + 2374: 4,-1 + 2381: 12,-10 + 2400: 6,16 + 2408: 6,17 + 2416: 6,18 + 2424: 6,19 + 2432: 6,20 + 2439: 9,28 + 2452: 0,1 + 2460: 1,1 + 2468: 2,1 + 2476: 3,0 + 2484: 3,1 + 2492: 4,0 + 2500: 4,1 + 2508: 8,12 + 2515: 9,12 + 2528: -8,12 + 2536: -4,0 + 2544: -4,1 + 2552: -3,0 + 2560: -3,1 + 2568: -2,1 + 2576: -1,1 + 2590: -4,-1 + 2598: 4,-1 + 2605: 12,-10 + 2624: 6,16 + 2632: 6,17 + 2640: 6,18 + 2648: 6,19 + 2656: 6,20 + 2663: 9,28 + 2676: 0,1 + 2684: 1,1 + 2692: 2,1 + 2700: 3,0 + 2708: 3,1 + 2716: 4,0 + 2724: 4,1 + 2732: 8,12 + 2739: 9,12 + 2752: -8,12 + 2760: -4,0 + 2768: -4,1 + 2776: -3,0 + 2784: -3,1 + 2792: -2,1 + 2800: -1,1 + 2814: -4,-1 + 2822: 4,-1 + 2829: 12,-10 + 2848: 6,16 + 2856: 6,17 + 2864: 6,18 + 2872: 6,19 + 2880: 6,20 + 2887: 9,28 + 2900: 0,1 + 2908: 1,1 + 2916: 2,1 + 2924: 3,0 + 2932: 3,1 + 2940: 4,0 + 2948: 4,1 + 2956: 8,12 + 2963: 9,12 + 2976: -8,12 + 2984: -4,0 + 2992: -4,1 + 3000: -3,0 + 3008: -3,1 + 3016: -2,1 + 3024: -1,1 + 3038: -4,-1 + 3046: 4,-1 + 3053: 12,-10 + 3072: 6,16 + 3080: 6,17 + 3088: 6,18 + 3096: 6,19 + 3104: 6,20 + 3111: 9,28 + 3124: 0,1 + 3132: 1,1 + 3140: 2,1 + 3148: 3,0 + 3156: 3,1 + 3164: 4,0 + 3172: 4,1 + 3180: 8,12 + 3187: 9,12 + 3200: -8,12 + 3208: -4,0 + 3216: -4,1 + 3224: -3,0 + 3232: -3,1 + 3240: -2,1 + 3248: -1,1 + 3262: -4,-1 + 3270: 4,-1 + 3277: 12,-10 + 3296: 6,16 + 3304: 6,17 + 3312: 6,18 + 3320: 6,19 + 3328: 6,20 + 3335: 9,28 + 3372: 0,1 + 3381: 1,1 + 3390: 2,1 + 3404: 3,0 + 3412: 3,1 + 3420: 4,0 + 3428: 4,1 + 3436: 8,12 + 3443: 9,12 + 3456: -8,12 + 3464: -4,0 + 3472: -4,1 + 3480: -3,0 + 3488: -3,1 + 3496: -2,1 + 3510: -1,1 + 3525: -4,-1 + 3533: 4,-1 + 3540: 12,-10 + 3559: 6,16 + 3567: 6,17 + 3575: 6,18 + 3583: 6,19 + 3591: 6,20 + 3598: 9,28 + 3620: 0,1 + 3630: 1,1 + 3640: 2,1 + 3657: 3,0 + 3665: 3,1 + 3673: 4,0 + 3681: 4,1 + 3689: 8,12 + 3696: 9,12 + 3709: -8,12 + 3717: -4,0 + 3725: -4,1 + 3733: -3,0 + 3741: -3,1 + 3749: -2,1 + 3766: -1,1 + 3782: -4,-1 + 3790: 4,-1 + 3797: 12,-10 + 3816: 6,16 + 3824: 6,17 + 3832: 6,18 + 3840: 6,19 + 3848: 6,20 + 3855: 9,28 + 3868: 0,1 + 3878: 1,1 + 3888: 2,1 + 3905: 3,0 + 3913: 3,1 + 3921: 4,0 + 3929: 4,1 + 3937: 8,12 + 3944: 9,12 + 3957: -8,12 + 3965: -4,0 + 3973: -4,1 + 3981: -3,0 + 3989: -3,1 + 3997: -2,1 + 4014: -1,1 + 4027: -4,-1 + 4035: 4,-1 + 4058: 6,16 + 4066: 6,17 + 4074: 6,18 + 4082: 6,19 + 4090: 6,20 + 4097: 9,28 + 4109: 12,-10 + 4116: 0,1 + 4126: 1,1 + 4136: 2,1 + 4153: 3,0 + 4161: 3,1 + 4169: 4,0 + 4177: 4,1 + 4185: 8,12 + 4192: 9,12 + 4205: -8,12 + 4213: -4,0 + 4221: -4,1 + 4229: -3,0 + 4237: -3,1 + 4245: -2,1 + 4262: -1,1 + 4278: -4,-1 + 4286: 4,-1 + 4293: 12,-10 + 4312: 6,16 + 4320: 6,17 + 4328: 6,18 + 4336: 6,19 + 4344: 6,20 + 4351: 9,28 + 4364: 0,1 + 4374: 1,1 + 4384: 2,1 + 4401: 3,0 + 4409: 3,1 + 4417: 4,0 + 4425: 4,1 + 4433: 8,12 + 4440: 9,12 + 4453: -8,12 + 4461: -4,0 + 4469: -4,1 + 4477: -3,0 + 4485: -3,1 + 4493: -2,1 + 4510: -1,1 + 4526: -4,-1 + 4534: 4,-1 + 4541: 12,-10 + 4560: 6,16 + 4568: 6,17 + 4576: 6,18 + 4584: 6,19 + 4592: 6,20 + 4599: 9,28 + 4612: 0,1 + 4622: 1,1 + 4632: 2,1 + 4649: 3,0 + 4657: 3,1 + 4665: 4,0 + 4673: 4,1 + 4681: 8,12 + 4688: 9,12 + 4701: -8,12 + 4709: -4,0 + 4717: -4,1 + 4725: -3,0 + 4733: -3,1 + 4741: -2,1 + 4758: -1,1 + 4774: -4,-1 + 4782: 4,-1 + 4789: 12,-10 + 4808: 6,16 + 4816: 6,17 + 4824: 6,18 + 4832: 6,19 + 4840: 6,20 + 4847: 9,28 + 4875: 0,1 + 4885: 1,1 + 4895: 2,1 + 4912: 3,0 + 4920: 3,1 + 4928: 4,0 + 4936: 4,1 + 4944: 8,12 + 4951: 9,12 + 4964: -8,12 + 4972: -4,0 + 4980: -4,1 + 4988: -3,0 + 4996: -3,1 + 5004: -2,1 + 5021: -1,1 + 5037: -4,-1 + 5045: 4,-1 + 5052: 12,-10 + 5071: 6,16 + 5079: 6,17 + 5087: 6,18 + 5095: 6,19 + 5103: 6,20 + 5110: 9,28 + 5123: 0,1 + 5133: 1,1 + 5143: 2,1 + 5160: 3,0 + 5168: 3,1 + 5176: 4,0 + 5184: 4,1 + 5192: 8,12 + 5199: 9,12 + 5212: -8,12 + 5220: -4,0 + 5228: -4,1 + 5236: -3,0 + 5244: -3,1 + 5252: -2,1 + 5269: -1,1 + 5285: -4,-1 + 5293: 4,-1 + 5300: 12,-10 + 5319: 6,16 + 5327: 6,17 + 5335: 6,18 + 5343: 6,19 + 5351: 6,20 + 5358: 9,28 + 5393: 0,1 + 5403: 1,1 + 5413: 2,1 + 5430: 3,0 + 5438: 3,1 + 5446: 4,0 + 5454: 4,1 + 5462: 8,12 + 5469: 9,12 + 5482: -8,12 + 5490: -4,0 + 5498: -4,1 + 5506: -3,0 + 5514: -3,1 + 5522: -2,1 + 5539: -1,1 + 5555: -4,-1 + 5563: 4,-1 + 5570: 12,-10 + 5589: 6,16 + 5597: 6,17 + 5605: 6,18 + 5613: 6,19 + 5621: 6,20 + 5628: 9,28 + 5641: 0,1 + 5651: 1,1 + 5661: 2,1 + 5678: 3,0 + 5686: 3,1 + 5694: 4,0 + 5702: 4,1 + 5710: 8,12 + 5717: 9,12 + 5730: -8,12 + 5738: -4,0 + 5746: -4,1 + 5754: -3,0 + 5762: -3,1 + 5770: -2,1 + 5787: -1,1 + 5803: -4,-1 + 5811: 4,-1 + 5818: 12,-10 + 5837: 6,16 + 5845: 6,17 + 5853: 6,18 + 5861: 6,19 + 5869: 6,20 + 5876: 9,28 + 5897: 0,1 + 5907: 1,1 + 5917: 2,1 + 5934: 3,0 + 5942: 3,1 + 5950: 4,0 + 5958: 4,1 + 5966: 8,12 + 5973: 9,12 + 5986: -8,12 + 5994: -4,0 + 6002: -4,1 + 6010: -3,0 + 6018: -3,1 + 6026: -2,1 + 6043: -1,1 + 6059: -4,-1 + 6067: 4,-1 + 6074: 12,-10 + 6093: 6,16 + 6101: 6,17 + 6109: 6,18 + 6117: 6,19 + 6125: 6,20 + 6132: 9,28 + 6145: 0,1 + 6155: 1,1 + 6165: 2,1 + 6182: 3,0 + 6190: 3,1 + 6198: 4,0 + 6206: 4,1 + 6214: 8,12 + 6221: 9,12 + 6234: -8,12 + 6242: -4,0 + 6250: -4,1 + 6258: -3,0 + 6266: -3,1 + 6274: -2,1 + 6291: -1,1 + 6307: -4,-1 + 6315: 4,-1 + 6322: 12,-10 + 6341: 6,16 + 6349: 6,17 + 6357: 6,18 + 6365: 6,19 + 6373: 6,20 + 6380: 9,28 + 6393: 0,1 + 6403: 1,1 + 6413: 2,1 + 6430: 3,0 + 6438: 3,1 + 6446: 4,0 + 6454: 4,1 + 6461: 9,12 + 6474: -8,12 + 6482: -4,0 + 6490: -4,1 + 6498: -3,0 + 6506: -3,1 + 6514: -2,1 + 6531: -1,1 + 6547: -4,-1 + 6555: 4,-1 + 6562: 12,-10 + 6581: 6,16 + 6589: 6,17 + 6597: 6,18 + 6605: 6,19 + 6613: 6,20 + 6620: 9,28 + 6635: 8,12 + 6663: 0,1 + 6673: 1,1 + 6683: 2,1 + 6700: 3,0 + 6708: 3,1 + 6716: 4,0 + 6724: 4,1 + 6732: 8,12 + 6739: 9,12 + 6752: -8,12 + 6760: -4,0 + 6768: -4,1 + 6776: -3,0 + 6784: -3,1 + 6792: -2,1 + 6809: -1,1 + 6825: -4,-1 + 6833: 4,-1 + 6840: 12,-10 + 6859: 6,16 + 6867: 6,17 + 6875: 6,18 + 6883: 6,19 + 6891: 6,20 + 6898: 9,28 - node: id: LatticeEdgeE decals: - 981: 0,1 - 989: 1,1 - 997: 2,1 - 1005: 3,0 - 1013: 3,1 - 1021: 4,0 - 1029: 4,1 - 1037: 8,12 - 1050: -9,3 - 1054: -9,12 - 1057: -8,12 - 1065: -4,0 - 1073: -4,1 - 1081: -3,0 - 1089: -3,1 - 1097: -2,1 - 1105: -1,1 - 1113: -12,-10 - 1115: -10,-16 - 1119: -4,-1 - 1127: 4,-1 - 1146: -9,-17 - 1149: -3,-20 - 1153: 6,16 - 1161: 6,17 - 1169: 6,18 - 1177: 6,19 - 1185: 6,20 - 1198: -9,24 - 1202: -9,28 - 1205: 0,1 - 1213: 1,1 - 1221: 2,1 - 1229: 3,0 - 1237: 3,1 - 1245: 4,0 - 1253: 4,1 - 1261: 8,12 - 1274: -9,3 - 1278: -9,12 - 1281: -8,12 - 1289: -4,0 - 1297: -4,1 - 1305: -3,0 - 1313: -3,1 - 1321: -2,1 - 1329: -1,1 - 1337: -12,-10 - 1339: -10,-16 - 1343: -4,-1 - 1351: 4,-1 - 1370: -9,-17 - 1373: -3,-20 - 1377: 6,16 - 1385: 6,17 - 1393: 6,18 - 1401: 6,19 - 1409: 6,20 - 1422: -9,24 - 1426: -9,28 - 1429: 0,1 - 1437: 1,1 - 1445: 2,1 - 1453: 3,0 - 1461: 3,1 - 1469: 4,0 - 1477: 4,1 - 1485: 8,12 - 1498: -9,3 - 1502: -9,12 - 1505: -8,12 - 1513: -4,0 - 1521: -4,1 - 1529: -3,0 - 1537: -3,1 - 1545: -2,1 - 1553: -1,1 - 1561: -12,-10 - 1563: -10,-16 - 1567: -4,-1 - 1575: 4,-1 - 1594: -9,-17 - 1597: -3,-20 - 1601: 6,16 - 1609: 6,17 - 1617: 6,18 - 1625: 6,19 - 1633: 6,20 - 1646: -9,24 - 1650: -9,28 - 1653: 0,1 - 1661: 1,1 - 1669: 2,1 - 1677: 3,0 - 1685: 3,1 - 1693: 4,0 - 1701: 4,1 - 1709: 8,12 - 1722: -9,3 - 1726: -9,12 - 1729: -8,12 - 1737: -4,0 - 1745: -4,1 - 1753: -3,0 - 1761: -3,1 - 1769: -2,1 - 1777: -1,1 - 1785: -12,-10 - 1787: -10,-16 - 1791: -4,-1 - 1799: 4,-1 - 1818: -9,-17 - 1821: -3,-20 - 1825: 6,16 - 1833: 6,17 - 1841: 6,18 - 1849: 6,19 - 1857: 6,20 - 1870: -9,24 - 1874: -9,28 - 1877: 0,1 - 1885: 1,1 - 1893: 2,1 - 1901: 3,0 - 1909: 3,1 - 1917: 4,0 - 1925: 4,1 - 1933: 8,12 - 1946: -9,3 - 1950: -4,0 - 1958: -4,1 - 1966: -3,0 - 1974: -3,1 - 1982: -2,1 - 1990: -1,1 - 1998: -12,-10 - 2000: -10,-16 - 2004: -4,-1 - 2012: 4,-1 - 2031: -9,-17 - 2034: -3,-20 - 2038: 6,16 - 2046: 6,17 - 2054: 6,18 - 2062: 6,19 - 2070: 6,20 - 2083: -9,24 - 2087: -9,28 - 2090: -8,12 - 2098: -9,12 - 2101: 0,1 - 2109: 1,1 - 2117: 2,1 - 2125: 3,0 - 2133: 3,1 - 2141: 4,0 - 2149: 4,1 - 2157: 8,12 - 2170: -9,3 - 2174: -9,12 - 2177: -8,12 - 2185: -4,0 - 2193: -4,1 - 2201: -3,0 - 2209: -3,1 - 2217: -2,1 - 2225: -1,1 - 2233: -12,-10 - 2235: -10,-16 - 2239: -4,-1 - 2247: 4,-1 - 2266: -9,-17 - 2269: -3,-20 - 2273: 6,16 - 2281: 6,17 - 2289: 6,18 - 2297: 6,19 - 2305: 6,20 - 2318: -9,24 - 2322: -9,28 - 2325: 0,1 - 2333: 1,1 - 2341: 2,1 - 2349: 3,0 - 2357: 3,1 - 2365: 4,0 - 2373: 4,1 - 2381: 8,12 - 2394: -9,3 - 2398: -9,12 - 2401: -8,12 - 2409: -4,0 - 2417: -4,1 - 2425: -3,0 - 2433: -3,1 - 2441: -2,1 - 2449: -1,1 - 2457: -12,-10 - 2459: -10,-16 - 2463: -4,-1 - 2471: 4,-1 - 2490: -9,-17 - 2493: -3,-20 - 2497: 6,16 - 2505: 6,17 - 2513: 6,18 - 2521: 6,19 - 2529: 6,20 - 2542: -9,24 - 2546: -9,28 - 2549: 0,1 - 2557: 1,1 - 2565: 2,1 - 2573: 3,0 - 2581: 3,1 - 2589: 4,0 - 2597: 4,1 - 2605: 8,12 - 2618: -9,3 - 2622: -9,12 - 2625: -8,12 - 2633: -4,0 - 2641: -4,1 - 2649: -3,0 - 2657: -3,1 - 2665: -2,1 - 2673: -1,1 - 2681: -12,-10 - 2683: -10,-16 - 2687: -4,-1 - 2695: 4,-1 - 2714: -9,-17 - 2717: -3,-20 - 2721: 6,16 - 2729: 6,17 - 2737: 6,18 - 2745: 6,19 - 2753: 6,20 - 2766: -9,24 - 2770: -9,28 - 2773: 0,1 - 2781: 1,1 - 2789: 2,1 - 2797: 3,0 - 2805: 3,1 - 2813: 4,0 - 2821: 4,1 - 2829: 8,12 - 2842: -9,3 - 2846: -9,12 - 2849: -8,12 - 2857: -4,0 - 2865: -4,1 - 2873: -3,0 - 2881: -3,1 - 2889: -2,1 - 2897: -1,1 - 2905: -12,-10 - 2907: -10,-16 - 2911: -4,-1 - 2919: 4,-1 - 2938: -9,-17 - 2941: -3,-20 - 2945: 6,16 - 2953: 6,17 - 2961: 6,18 - 2969: 6,19 - 2977: 6,20 - 2990: -9,24 - 2994: -9,28 - 2997: 0,1 - 3005: 1,1 - 3013: 2,1 - 3021: 3,0 - 3029: 3,1 - 3037: 4,0 - 3045: 4,1 - 3053: 8,12 - 3066: -9,3 - 3070: -9,12 - 3073: -8,12 - 3081: -4,0 - 3089: -4,1 - 3097: -3,0 - 3105: -3,1 - 3113: -2,1 - 3121: -1,1 - 3129: -12,-10 - 3131: -10,-16 - 3135: -4,-1 - 3143: 4,-1 - 3162: -9,-17 - 3165: -3,-20 - 3169: 6,16 - 3177: 6,17 - 3185: 6,18 - 3193: 6,19 - 3201: 6,20 - 3214: -9,24 - 3218: -9,28 - 3221: 0,1 - 3229: 1,1 - 3237: 2,1 - 3245: 3,0 - 3253: 3,1 - 3261: 4,0 - 3269: 4,1 - 3277: 8,12 - 3290: -9,3 - 3294: -9,12 - 3297: -8,12 - 3305: -4,0 - 3313: -4,1 - 3321: -3,0 - 3329: -3,1 - 3337: -2,1 - 3345: -1,1 - 3353: -12,-10 - 3355: -10,-16 - 3359: -4,-1 - 3367: 4,-1 - 3386: -9,-17 - 3389: -3,-20 - 3393: 6,16 - 3401: 6,17 - 3409: 6,18 - 3417: 6,19 - 3425: 6,20 - 3438: -9,24 - 3442: -9,28 - 3469: 0,1 - 3478: 1,1 - 3487: 2,1 - 3501: 3,0 - 3509: 3,1 - 3517: 4,0 - 3525: 4,1 - 3533: 8,12 - 3546: -9,3 - 3550: -9,12 - 3553: -8,12 - 3561: -4,0 - 3569: -4,1 - 3577: -3,0 - 3585: -3,1 - 3593: -2,1 - 3607: -1,1 - 3616: -12,-10 - 3618: -10,-16 - 3622: -4,-1 - 3630: 4,-1 - 3649: -9,-17 - 3652: -3,-20 - 3656: 6,16 - 3664: 6,17 - 3672: 6,18 - 3680: 6,19 - 3688: 6,20 - 3701: -9,24 - 3705: -9,28 - 3717: 0,1 - 3727: 1,1 - 3737: 2,1 - 3754: 3,0 - 3762: 3,1 - 3770: 4,0 - 3778: 4,1 - 3786: 8,12 - 3799: -9,3 - 3803: -9,12 - 3806: -8,12 - 3814: -4,0 - 3822: -4,1 - 3830: -3,0 - 3838: -3,1 - 3846: -2,1 - 3863: -1,1 - 3873: -12,-10 - 3875: -10,-16 - 3879: -4,-1 - 3887: 4,-1 - 3906: -9,-17 - 3909: -3,-20 - 3913: 6,16 - 3921: 6,17 - 3929: 6,18 - 3937: 6,19 - 3945: 6,20 - 3958: -9,24 - 3962: -9,28 - 3965: 0,1 - 3975: 1,1 - 3985: 2,1 - 4002: 3,0 - 4010: 3,1 - 4018: 4,0 - 4026: 4,1 - 4034: 8,12 - 4047: -9,3 - 4051: -9,12 - 4054: -8,12 - 4062: -4,0 - 4070: -4,1 - 4078: -3,0 - 4086: -3,1 - 4094: -2,1 - 4111: -1,1 - 4120: -10,-16 - 4124: -4,-1 - 4132: 4,-1 - 4148: -9,-17 - 4151: -3,-20 - 4155: 6,16 - 4163: 6,17 - 4171: 6,18 - 4179: 6,19 - 4187: 6,20 - 4200: -9,24 - 4204: -9,28 - 4207: -12,-10 - 4213: 0,1 - 4223: 1,1 - 4233: 2,1 - 4250: 3,0 - 4258: 3,1 - 4266: 4,0 - 4274: 4,1 - 4282: 8,12 - 4295: -9,3 - 4299: -9,12 - 4302: -8,12 - 4310: -4,0 - 4318: -4,1 - 4326: -3,0 - 4334: -3,1 - 4342: -2,1 - 4359: -1,1 - 4369: -12,-10 - 4371: -10,-16 - 4375: -4,-1 - 4383: 4,-1 - 4402: -9,-17 - 4405: -3,-20 - 4409: 6,16 - 4417: 6,17 - 4425: 6,18 - 4433: 6,19 - 4441: 6,20 - 4454: -9,24 - 4458: -9,28 + 879: 0,1 + 887: 1,1 + 895: 2,1 + 903: 3,0 + 911: 3,1 + 919: 4,0 + 927: 4,1 + 935: 8,12 + 948: -9,3 + 952: -9,12 + 955: -8,12 + 963: -4,0 + 971: -4,1 + 979: -3,0 + 987: -3,1 + 995: -2,1 + 1003: -1,1 + 1011: -12,-10 + 1013: -10,-16 + 1017: -4,-1 + 1025: 4,-1 + 1044: -9,-17 + 1047: -3,-20 + 1051: 6,16 + 1059: 6,17 + 1067: 6,18 + 1075: 6,19 + 1083: 6,20 + 1096: -9,24 + 1100: -9,28 + 1103: 0,1 + 1111: 1,1 + 1119: 2,1 + 1127: 3,0 + 1135: 3,1 + 1143: 4,0 + 1151: 4,1 + 1159: 8,12 + 1172: -9,3 + 1176: -9,12 + 1179: -8,12 + 1187: -4,0 + 1195: -4,1 + 1203: -3,0 + 1211: -3,1 + 1219: -2,1 + 1227: -1,1 + 1235: -12,-10 + 1237: -10,-16 + 1241: -4,-1 + 1249: 4,-1 + 1268: -9,-17 + 1271: -3,-20 + 1275: 6,16 + 1283: 6,17 + 1291: 6,18 + 1299: 6,19 + 1307: 6,20 + 1320: -9,24 + 1324: -9,28 + 1327: 0,1 + 1335: 1,1 + 1343: 2,1 + 1351: 3,0 + 1359: 3,1 + 1367: 4,0 + 1375: 4,1 + 1383: 8,12 + 1396: -9,3 + 1400: -9,12 + 1403: -8,12 + 1411: -4,0 + 1419: -4,1 + 1427: -3,0 + 1435: -3,1 + 1443: -2,1 + 1451: -1,1 + 1459: -12,-10 + 1461: -10,-16 + 1465: -4,-1 + 1473: 4,-1 + 1492: -9,-17 + 1495: -3,-20 + 1499: 6,16 + 1507: 6,17 + 1515: 6,18 + 1523: 6,19 + 1531: 6,20 + 1544: -9,24 + 1548: -9,28 + 1551: 0,1 + 1559: 1,1 + 1567: 2,1 + 1575: 3,0 + 1583: 3,1 + 1591: 4,0 + 1599: 4,1 + 1607: 8,12 + 1620: -9,3 + 1624: -9,12 + 1627: -8,12 + 1635: -4,0 + 1643: -4,1 + 1651: -3,0 + 1659: -3,1 + 1667: -2,1 + 1675: -1,1 + 1683: -12,-10 + 1685: -10,-16 + 1689: -4,-1 + 1697: 4,-1 + 1716: -9,-17 + 1719: -3,-20 + 1723: 6,16 + 1731: 6,17 + 1739: 6,18 + 1747: 6,19 + 1755: 6,20 + 1768: -9,24 + 1772: -9,28 + 1775: 0,1 + 1783: 1,1 + 1791: 2,1 + 1799: 3,0 + 1807: 3,1 + 1815: 4,0 + 1823: 4,1 + 1831: 8,12 + 1844: -9,3 + 1848: -4,0 + 1856: -4,1 + 1864: -3,0 + 1872: -3,1 + 1880: -2,1 + 1888: -1,1 + 1896: -12,-10 + 1898: -10,-16 + 1902: -4,-1 + 1910: 4,-1 + 1929: -9,-17 + 1932: -3,-20 + 1936: 6,16 + 1944: 6,17 + 1952: 6,18 + 1960: 6,19 + 1968: 6,20 + 1981: -9,24 + 1985: -9,28 + 1988: -8,12 + 1996: -9,12 + 1999: 0,1 + 2007: 1,1 + 2015: 2,1 + 2023: 3,0 + 2031: 3,1 + 2039: 4,0 + 2047: 4,1 + 2055: 8,12 + 2068: -9,3 + 2072: -9,12 + 2075: -8,12 + 2083: -4,0 + 2091: -4,1 + 2099: -3,0 + 2107: -3,1 + 2115: -2,1 + 2123: -1,1 + 2131: -12,-10 + 2133: -10,-16 + 2137: -4,-1 + 2145: 4,-1 + 2164: -9,-17 + 2167: -3,-20 + 2171: 6,16 + 2179: 6,17 + 2187: 6,18 + 2195: 6,19 + 2203: 6,20 + 2216: -9,24 + 2220: -9,28 + 2223: 0,1 + 2231: 1,1 + 2239: 2,1 + 2247: 3,0 + 2255: 3,1 + 2263: 4,0 + 2271: 4,1 + 2279: 8,12 + 2292: -9,3 + 2296: -9,12 + 2299: -8,12 + 2307: -4,0 + 2315: -4,1 + 2323: -3,0 + 2331: -3,1 + 2339: -2,1 + 2347: -1,1 + 2355: -12,-10 + 2357: -10,-16 + 2361: -4,-1 + 2369: 4,-1 + 2388: -9,-17 + 2391: -3,-20 + 2395: 6,16 + 2403: 6,17 + 2411: 6,18 + 2419: 6,19 + 2427: 6,20 + 2440: -9,24 + 2444: -9,28 + 2447: 0,1 + 2455: 1,1 + 2463: 2,1 + 2471: 3,0 + 2479: 3,1 + 2487: 4,0 + 2495: 4,1 + 2503: 8,12 + 2516: -9,3 + 2520: -9,12 + 2523: -8,12 + 2531: -4,0 + 2539: -4,1 + 2547: -3,0 + 2555: -3,1 + 2563: -2,1 + 2571: -1,1 + 2579: -12,-10 + 2581: -10,-16 + 2585: -4,-1 + 2593: 4,-1 + 2612: -9,-17 + 2615: -3,-20 + 2619: 6,16 + 2627: 6,17 + 2635: 6,18 + 2643: 6,19 + 2651: 6,20 + 2664: -9,24 + 2668: -9,28 + 2671: 0,1 + 2679: 1,1 + 2687: 2,1 + 2695: 3,0 + 2703: 3,1 + 2711: 4,0 + 2719: 4,1 + 2727: 8,12 + 2740: -9,3 + 2744: -9,12 + 2747: -8,12 + 2755: -4,0 + 2763: -4,1 + 2771: -3,0 + 2779: -3,1 + 2787: -2,1 + 2795: -1,1 + 2803: -12,-10 + 2805: -10,-16 + 2809: -4,-1 + 2817: 4,-1 + 2836: -9,-17 + 2839: -3,-20 + 2843: 6,16 + 2851: 6,17 + 2859: 6,18 + 2867: 6,19 + 2875: 6,20 + 2888: -9,24 + 2892: -9,28 + 2895: 0,1 + 2903: 1,1 + 2911: 2,1 + 2919: 3,0 + 2927: 3,1 + 2935: 4,0 + 2943: 4,1 + 2951: 8,12 + 2964: -9,3 + 2968: -9,12 + 2971: -8,12 + 2979: -4,0 + 2987: -4,1 + 2995: -3,0 + 3003: -3,1 + 3011: -2,1 + 3019: -1,1 + 3027: -12,-10 + 3029: -10,-16 + 3033: -4,-1 + 3041: 4,-1 + 3060: -9,-17 + 3063: -3,-20 + 3067: 6,16 + 3075: 6,17 + 3083: 6,18 + 3091: 6,19 + 3099: 6,20 + 3112: -9,24 + 3116: -9,28 + 3119: 0,1 + 3127: 1,1 + 3135: 2,1 + 3143: 3,0 + 3151: 3,1 + 3159: 4,0 + 3167: 4,1 + 3175: 8,12 + 3188: -9,3 + 3192: -9,12 + 3195: -8,12 + 3203: -4,0 + 3211: -4,1 + 3219: -3,0 + 3227: -3,1 + 3235: -2,1 + 3243: -1,1 + 3251: -12,-10 + 3253: -10,-16 + 3257: -4,-1 + 3265: 4,-1 + 3284: -9,-17 + 3287: -3,-20 + 3291: 6,16 + 3299: 6,17 + 3307: 6,18 + 3315: 6,19 + 3323: 6,20 + 3336: -9,24 + 3340: -9,28 + 3367: 0,1 + 3376: 1,1 + 3385: 2,1 + 3399: 3,0 + 3407: 3,1 + 3415: 4,0 + 3423: 4,1 + 3431: 8,12 + 3444: -9,3 + 3448: -9,12 + 3451: -8,12 + 3459: -4,0 + 3467: -4,1 + 3475: -3,0 + 3483: -3,1 + 3491: -2,1 + 3505: -1,1 + 3514: -12,-10 + 3516: -10,-16 + 3520: -4,-1 + 3528: 4,-1 + 3547: -9,-17 + 3550: -3,-20 + 3554: 6,16 + 3562: 6,17 + 3570: 6,18 + 3578: 6,19 + 3586: 6,20 + 3599: -9,24 + 3603: -9,28 + 3615: 0,1 + 3625: 1,1 + 3635: 2,1 + 3652: 3,0 + 3660: 3,1 + 3668: 4,0 + 3676: 4,1 + 3684: 8,12 + 3697: -9,3 + 3701: -9,12 + 3704: -8,12 + 3712: -4,0 + 3720: -4,1 + 3728: -3,0 + 3736: -3,1 + 3744: -2,1 + 3761: -1,1 + 3771: -12,-10 + 3773: -10,-16 + 3777: -4,-1 + 3785: 4,-1 + 3804: -9,-17 + 3807: -3,-20 + 3811: 6,16 + 3819: 6,17 + 3827: 6,18 + 3835: 6,19 + 3843: 6,20 + 3856: -9,24 + 3860: -9,28 + 3863: 0,1 + 3873: 1,1 + 3883: 2,1 + 3900: 3,0 + 3908: 3,1 + 3916: 4,0 + 3924: 4,1 + 3932: 8,12 + 3945: -9,3 + 3949: -9,12 + 3952: -8,12 + 3960: -4,0 + 3968: -4,1 + 3976: -3,0 + 3984: -3,1 + 3992: -2,1 + 4009: -1,1 + 4018: -10,-16 + 4022: -4,-1 + 4030: 4,-1 + 4046: -9,-17 + 4049: -3,-20 + 4053: 6,16 + 4061: 6,17 + 4069: 6,18 + 4077: 6,19 + 4085: 6,20 + 4098: -9,24 + 4102: -9,28 + 4105: -12,-10 + 4111: 0,1 + 4121: 1,1 + 4131: 2,1 + 4148: 3,0 + 4156: 3,1 + 4164: 4,0 + 4172: 4,1 + 4180: 8,12 + 4193: -9,3 + 4197: -9,12 + 4200: -8,12 + 4208: -4,0 + 4216: -4,1 + 4224: -3,0 + 4232: -3,1 + 4240: -2,1 + 4257: -1,1 + 4267: -12,-10 + 4269: -10,-16 + 4273: -4,-1 + 4281: 4,-1 + 4300: -9,-17 + 4303: -3,-20 + 4307: 6,16 + 4315: 6,17 + 4323: 6,18 + 4331: 6,19 + 4339: 6,20 + 4352: -9,24 + 4356: -9,28 + 4359: 0,1 + 4369: 1,1 + 4379: 2,1 + 4396: 3,0 + 4404: 3,1 + 4412: 4,0 + 4420: 4,1 + 4428: 8,12 + 4441: -9,3 + 4445: -9,12 + 4448: -8,12 + 4456: -4,0 + 4464: -4,1 + 4472: -3,0 + 4480: -3,1 + 4488: -2,1 + 4505: -1,1 + 4515: -12,-10 + 4517: -10,-16 + 4521: -4,-1 + 4529: 4,-1 + 4548: -9,-17 + 4551: -3,-20 + 4555: 6,16 + 4563: 6,17 + 4571: 6,18 + 4579: 6,19 + 4587: 6,20 + 4600: -9,24 + 4604: -9,28 + 4607: 0,1 + 4617: 1,1 + 4627: 2,1 + 4644: 3,0 + 4652: 3,1 + 4660: 4,0 + 4668: 4,1 + 4676: 8,12 + 4689: -9,3 + 4693: -9,12 + 4696: -8,12 + 4704: -4,0 + 4712: -4,1 + 4720: -3,0 + 4728: -3,1 + 4736: -2,1 + 4753: -1,1 + 4763: -12,-10 + 4765: -10,-16 + 4769: -4,-1 + 4777: 4,-1 + 4796: -9,-17 + 4799: -3,-20 + 4803: 6,16 + 4811: 6,17 + 4819: 6,18 + 4827: 6,19 + 4835: 6,20 + 4848: -9,24 + 4852: -9,28 + 4870: 0,1 + 4880: 1,1 + 4890: 2,1 + 4907: 3,0 + 4915: 3,1 + 4923: 4,0 + 4931: 4,1 + 4939: 8,12 + 4952: -9,3 + 4956: -9,12 + 4959: -8,12 + 4967: -4,0 + 4975: -4,1 + 4983: -3,0 + 4991: -3,1 + 4999: -2,1 + 5016: -1,1 + 5026: -12,-10 + 5028: -10,-16 + 5032: -4,-1 + 5040: 4,-1 + 5059: -9,-17 + 5062: -3,-20 + 5066: 6,16 + 5074: 6,17 + 5082: 6,18 + 5090: 6,19 + 5098: 6,20 + 5111: -9,24 + 5115: -9,28 + 5118: 0,1 + 5128: 1,1 + 5138: 2,1 + 5155: 3,0 + 5163: 3,1 + 5171: 4,0 + 5179: 4,1 + 5187: 8,12 + 5200: -9,3 + 5204: -9,12 + 5207: -8,12 + 5215: -4,0 + 5223: -4,1 + 5231: -3,0 + 5239: -3,1 + 5247: -2,1 + 5264: -1,1 + 5274: -12,-10 + 5276: -10,-16 + 5280: -4,-1 + 5288: 4,-1 + 5307: -9,-17 + 5310: -3,-20 + 5314: 6,16 + 5322: 6,17 + 5330: 6,18 + 5338: 6,19 + 5346: 6,20 + 5359: -9,24 + 5363: -9,28 + 5388: 0,1 + 5398: 1,1 + 5408: 2,1 + 5425: 3,0 + 5433: 3,1 + 5441: 4,0 + 5449: 4,1 + 5457: 8,12 + 5470: -9,3 + 5474: -9,12 + 5477: -8,12 + 5485: -4,0 + 5493: -4,1 + 5501: -3,0 + 5509: -3,1 + 5517: -2,1 + 5534: -1,1 + 5544: -12,-10 + 5546: -10,-16 + 5550: -4,-1 + 5558: 4,-1 + 5577: -9,-17 + 5580: -3,-20 + 5584: 6,16 + 5592: 6,17 + 5600: 6,18 + 5608: 6,19 + 5616: 6,20 + 5629: -9,24 + 5633: -9,28 + 5636: 0,1 + 5646: 1,1 + 5656: 2,1 + 5673: 3,0 + 5681: 3,1 + 5689: 4,0 + 5697: 4,1 + 5705: 8,12 + 5718: -9,3 + 5722: -9,12 + 5725: -8,12 + 5733: -4,0 + 5741: -4,1 + 5749: -3,0 + 5757: -3,1 + 5765: -2,1 + 5782: -1,1 + 5792: -12,-10 + 5794: -10,-16 + 5798: -4,-1 + 5806: 4,-1 + 5825: -9,-17 + 5828: -3,-20 + 5832: 6,16 + 5840: 6,17 + 5848: 6,18 + 5856: 6,19 + 5864: 6,20 + 5877: -9,24 + 5881: -9,28 + 5892: 0,1 + 5902: 1,1 + 5912: 2,1 + 5929: 3,0 + 5937: 3,1 + 5945: 4,0 + 5953: 4,1 + 5961: 8,12 + 5974: -9,3 + 5978: -9,12 + 5981: -8,12 + 5989: -4,0 + 5997: -4,1 + 6005: -3,0 + 6013: -3,1 + 6021: -2,1 + 6038: -1,1 + 6048: -12,-10 + 6050: -10,-16 + 6054: -4,-1 + 6062: 4,-1 + 6081: -9,-17 + 6084: -3,-20 + 6088: 6,16 + 6096: 6,17 + 6104: 6,18 + 6112: 6,19 + 6120: 6,20 + 6133: -9,24 + 6137: -9,28 + 6140: 0,1 + 6150: 1,1 + 6160: 2,1 + 6177: 3,0 + 6185: 3,1 + 6193: 4,0 + 6201: 4,1 + 6209: 8,12 + 6222: -9,3 + 6226: -9,12 + 6229: -8,12 + 6237: -4,0 + 6245: -4,1 + 6253: -3,0 + 6261: -3,1 + 6269: -2,1 + 6286: -1,1 + 6296: -12,-10 + 6298: -10,-16 + 6302: -4,-1 + 6310: 4,-1 + 6329: -9,-17 + 6332: -3,-20 + 6336: 6,16 + 6344: 6,17 + 6352: 6,18 + 6360: 6,19 + 6368: 6,20 + 6381: -9,24 + 6385: -9,28 + 6388: 0,1 + 6398: 1,1 + 6408: 2,1 + 6425: 3,0 + 6433: 3,1 + 6441: 4,0 + 6449: 4,1 + 6462: -9,3 + 6466: -9,12 + 6469: -8,12 + 6477: -4,0 + 6485: -4,1 + 6493: -3,0 + 6501: -3,1 + 6509: -2,1 + 6526: -1,1 + 6536: -12,-10 + 6538: -10,-16 + 6542: -4,-1 + 6550: 4,-1 + 6569: -9,-17 + 6572: -3,-20 + 6576: 6,16 + 6584: 6,17 + 6592: 6,18 + 6600: 6,19 + 6608: 6,20 + 6621: -9,24 + 6625: -9,28 + 6630: 8,12 + 6658: 0,1 + 6668: 1,1 + 6678: 2,1 + 6695: 3,0 + 6703: 3,1 + 6711: 4,0 + 6719: 4,1 + 6727: 8,12 + 6740: -9,3 + 6744: -9,12 + 6747: -8,12 + 6755: -4,0 + 6763: -4,1 + 6771: -3,0 + 6779: -3,1 + 6787: -2,1 + 6804: -1,1 + 6814: -12,-10 + 6816: -10,-16 + 6820: -4,-1 + 6828: 4,-1 + 6847: -9,-17 + 6850: -3,-20 + 6854: 6,16 + 6862: 6,17 + 6870: 6,18 + 6878: 6,19 + 6886: 6,20 + 6899: -9,24 + 6903: -9,28 - node: id: LatticeEdgeN decals: - 983: 0,1 - 991: 1,1 - 999: 2,1 - 1007: 3,0 - 1015: 3,1 - 1023: 4,0 - 1031: 4,1 - 1039: 8,12 - 1044: 9,4 - 1051: -9,3 - 1059: -8,12 - 1067: -4,0 - 1075: -4,1 - 1083: -3,0 - 1091: -3,1 - 1099: -2,1 - 1107: -1,1 - 1116: -10,-16 - 1121: -4,-1 - 1129: 4,-1 - 1134: 10,-16 - 1140: 3,-20 - 1143: 9,-17 - 1147: -9,-17 - 1150: -3,-20 - 1155: 6,16 - 1163: 6,17 - 1171: 6,18 - 1179: 6,19 - 1187: 6,20 - 1192: 9,24 - 1199: -9,24 - 1207: 0,1 - 1215: 1,1 - 1223: 2,1 - 1231: 3,0 - 1239: 3,1 - 1247: 4,0 - 1255: 4,1 - 1263: 8,12 - 1268: 9,4 - 1275: -9,3 - 1283: -8,12 - 1291: -4,0 - 1299: -4,1 - 1307: -3,0 - 1315: -3,1 - 1323: -2,1 - 1331: -1,1 - 1340: -10,-16 - 1345: -4,-1 - 1353: 4,-1 - 1358: 10,-16 - 1364: 3,-20 - 1367: 9,-17 - 1371: -9,-17 - 1374: -3,-20 - 1379: 6,16 - 1387: 6,17 - 1395: 6,18 - 1403: 6,19 - 1411: 6,20 - 1416: 9,24 - 1423: -9,24 - 1431: 0,1 - 1439: 1,1 - 1447: 2,1 - 1455: 3,0 - 1463: 3,1 - 1471: 4,0 - 1479: 4,1 - 1487: 8,12 - 1492: 9,4 - 1499: -9,3 - 1507: -8,12 - 1515: -4,0 - 1523: -4,1 - 1531: -3,0 - 1539: -3,1 - 1547: -2,1 - 1555: -1,1 - 1564: -10,-16 - 1569: -4,-1 - 1577: 4,-1 - 1582: 10,-16 - 1588: 3,-20 - 1591: 9,-17 - 1595: -9,-17 - 1598: -3,-20 - 1603: 6,16 - 1611: 6,17 - 1619: 6,18 - 1627: 6,19 - 1635: 6,20 - 1640: 9,24 - 1647: -9,24 - 1655: 0,1 - 1663: 1,1 - 1671: 2,1 - 1679: 3,0 - 1687: 3,1 - 1695: 4,0 - 1703: 4,1 - 1711: 8,12 - 1716: 9,4 - 1723: -9,3 - 1731: -8,12 - 1739: -4,0 - 1747: -4,1 - 1755: -3,0 - 1763: -3,1 - 1771: -2,1 - 1779: -1,1 - 1788: -10,-16 - 1793: -4,-1 - 1801: 4,-1 - 1806: 10,-16 - 1812: 3,-20 - 1815: 9,-17 - 1819: -9,-17 - 1822: -3,-20 - 1827: 6,16 - 1835: 6,17 - 1843: 6,18 - 1851: 6,19 - 1859: 6,20 - 1864: 9,24 - 1871: -9,24 - 1879: 0,1 - 1887: 1,1 - 1895: 2,1 - 1903: 3,0 - 1911: 3,1 - 1919: 4,0 - 1927: 4,1 - 1935: 8,12 - 1940: 9,4 - 1947: -9,3 - 1952: -4,0 - 1960: -4,1 - 1968: -3,0 - 1976: -3,1 - 1984: -2,1 - 1992: -1,1 - 2001: -10,-16 - 2006: -4,-1 - 2014: 4,-1 - 2019: 10,-16 - 2025: 3,-20 - 2028: 9,-17 - 2032: -9,-17 - 2035: -3,-20 - 2040: 6,16 - 2048: 6,17 - 2056: 6,18 - 2064: 6,19 - 2072: 6,20 - 2077: 9,24 - 2084: -9,24 - 2092: -8,12 - 2103: 0,1 - 2111: 1,1 - 2119: 2,1 - 2127: 3,0 - 2135: 3,1 - 2143: 4,0 - 2151: 4,1 - 2159: 8,12 - 2164: 9,4 - 2171: -9,3 - 2179: -8,12 - 2187: -4,0 - 2195: -4,1 - 2203: -3,0 - 2211: -3,1 - 2219: -2,1 - 2227: -1,1 - 2236: -10,-16 - 2241: -4,-1 - 2249: 4,-1 - 2254: 10,-16 - 2260: 3,-20 - 2263: 9,-17 - 2267: -9,-17 - 2270: -3,-20 - 2275: 6,16 - 2283: 6,17 - 2291: 6,18 - 2299: 6,19 - 2307: 6,20 - 2312: 9,24 - 2319: -9,24 - 2327: 0,1 - 2335: 1,1 - 2343: 2,1 - 2351: 3,0 - 2359: 3,1 - 2367: 4,0 - 2375: 4,1 - 2383: 8,12 - 2388: 9,4 - 2395: -9,3 - 2403: -8,12 - 2411: -4,0 - 2419: -4,1 - 2427: -3,0 - 2435: -3,1 - 2443: -2,1 - 2451: -1,1 - 2460: -10,-16 - 2465: -4,-1 - 2473: 4,-1 - 2478: 10,-16 - 2484: 3,-20 - 2487: 9,-17 - 2491: -9,-17 - 2494: -3,-20 - 2499: 6,16 - 2507: 6,17 - 2515: 6,18 - 2523: 6,19 - 2531: 6,20 - 2536: 9,24 - 2543: -9,24 - 2551: 0,1 - 2559: 1,1 - 2567: 2,1 - 2575: 3,0 - 2583: 3,1 - 2591: 4,0 - 2599: 4,1 - 2607: 8,12 - 2612: 9,4 - 2619: -9,3 - 2627: -8,12 - 2635: -4,0 - 2643: -4,1 - 2651: -3,0 - 2659: -3,1 - 2667: -2,1 - 2675: -1,1 - 2684: -10,-16 - 2689: -4,-1 - 2697: 4,-1 - 2702: 10,-16 - 2708: 3,-20 - 2711: 9,-17 - 2715: -9,-17 - 2718: -3,-20 - 2723: 6,16 - 2731: 6,17 - 2739: 6,18 - 2747: 6,19 - 2755: 6,20 - 2760: 9,24 - 2767: -9,24 - 2775: 0,1 - 2783: 1,1 - 2791: 2,1 - 2799: 3,0 - 2807: 3,1 - 2815: 4,0 - 2823: 4,1 - 2831: 8,12 - 2836: 9,4 - 2843: -9,3 - 2851: -8,12 - 2859: -4,0 - 2867: -4,1 - 2875: -3,0 - 2883: -3,1 - 2891: -2,1 - 2899: -1,1 - 2908: -10,-16 - 2913: -4,-1 - 2921: 4,-1 - 2926: 10,-16 - 2932: 3,-20 - 2935: 9,-17 - 2939: -9,-17 - 2942: -3,-20 - 2947: 6,16 - 2955: 6,17 - 2963: 6,18 - 2971: 6,19 - 2979: 6,20 - 2984: 9,24 - 2991: -9,24 - 2999: 0,1 - 3007: 1,1 - 3015: 2,1 - 3023: 3,0 - 3031: 3,1 - 3039: 4,0 - 3047: 4,1 - 3055: 8,12 - 3060: 9,4 - 3067: -9,3 - 3075: -8,12 - 3083: -4,0 - 3091: -4,1 - 3099: -3,0 - 3107: -3,1 - 3115: -2,1 - 3123: -1,1 - 3132: -10,-16 - 3137: -4,-1 - 3145: 4,-1 - 3150: 10,-16 - 3156: 3,-20 - 3159: 9,-17 - 3163: -9,-17 - 3166: -3,-20 - 3171: 6,16 - 3179: 6,17 - 3187: 6,18 - 3195: 6,19 - 3203: 6,20 - 3208: 9,24 - 3215: -9,24 - 3223: 0,1 - 3231: 1,1 - 3239: 2,1 - 3247: 3,0 - 3255: 3,1 - 3263: 4,0 - 3271: 4,1 - 3279: 8,12 - 3284: 9,4 - 3291: -9,3 - 3299: -8,12 - 3307: -4,0 - 3315: -4,1 - 3323: -3,0 - 3331: -3,1 - 3339: -2,1 - 3347: -1,1 - 3356: -10,-16 - 3361: -4,-1 - 3369: 4,-1 - 3374: 10,-16 - 3380: 3,-20 - 3383: 9,-17 - 3387: -9,-17 - 3390: -3,-20 - 3395: 6,16 - 3403: 6,17 - 3411: 6,18 - 3419: 6,19 - 3427: 6,20 - 3432: 9,24 - 3439: -9,24 - 3471: 0,1 - 3480: 1,1 - 3489: 2,1 - 3503: 3,0 - 3511: 3,1 - 3519: 4,0 - 3527: 4,1 - 3535: 8,12 - 3540: 9,4 - 3547: -9,3 - 3555: -8,12 - 3563: -4,0 - 3571: -4,1 - 3579: -3,0 - 3587: -3,1 - 3595: -2,1 - 3609: -1,1 - 3619: -10,-16 - 3624: -4,-1 - 3632: 4,-1 - 3637: 10,-16 - 3643: 3,-20 - 3646: 9,-17 - 3650: -9,-17 - 3653: -3,-20 - 3658: 6,16 - 3666: 6,17 - 3674: 6,18 - 3682: 6,19 - 3690: 6,20 - 3695: 9,24 - 3702: -9,24 - 3719: 0,1 - 3729: 1,1 - 3739: 2,1 - 3756: 3,0 - 3764: 3,1 - 3772: 4,0 - 3780: 4,1 - 3788: 8,12 - 3793: 9,4 - 3800: -9,3 - 3808: -8,12 - 3816: -4,0 - 3824: -4,1 - 3832: -3,0 - 3840: -3,1 - 3848: -2,1 - 3865: -1,1 - 3876: -10,-16 - 3881: -4,-1 - 3889: 4,-1 - 3894: 10,-16 - 3900: 3,-20 - 3903: 9,-17 - 3907: -9,-17 - 3910: -3,-20 - 3915: 6,16 - 3923: 6,17 - 3931: 6,18 - 3939: 6,19 - 3947: 6,20 - 3952: 9,24 - 3959: -9,24 - 3967: 0,1 - 3977: 1,1 - 3987: 2,1 - 4004: 3,0 - 4012: 3,1 - 4020: 4,0 - 4028: 4,1 - 4036: 8,12 - 4041: 9,4 - 4048: -9,3 - 4056: -8,12 - 4064: -4,0 - 4072: -4,1 - 4080: -3,0 - 4088: -3,1 - 4096: -2,1 - 4113: -1,1 - 4121: -10,-16 - 4126: -4,-1 - 4134: 4,-1 - 4139: 10,-16 - 4142: 3,-20 - 4145: 9,-17 - 4149: -9,-17 - 4152: -3,-20 - 4157: 6,16 - 4165: 6,17 - 4173: 6,18 - 4181: 6,19 - 4189: 6,20 - 4194: 9,24 - 4201: -9,24 - 4215: 0,1 - 4225: 1,1 - 4235: 2,1 - 4252: 3,0 - 4260: 3,1 - 4268: 4,0 - 4276: 4,1 - 4284: 8,12 - 4289: 9,4 - 4296: -9,3 - 4304: -8,12 - 4312: -4,0 - 4320: -4,1 - 4328: -3,0 - 4336: -3,1 - 4344: -2,1 - 4361: -1,1 - 4372: -10,-16 - 4377: -4,-1 - 4385: 4,-1 - 4390: 10,-16 - 4396: 3,-20 - 4399: 9,-17 - 4403: -9,-17 - 4406: -3,-20 - 4411: 6,16 - 4419: 6,17 - 4427: 6,18 - 4435: 6,19 - 4443: 6,20 - 4448: 9,24 - 4455: -9,24 + 881: 0,1 + 889: 1,1 + 897: 2,1 + 905: 3,0 + 913: 3,1 + 921: 4,0 + 929: 4,1 + 937: 8,12 + 942: 9,4 + 949: -9,3 + 957: -8,12 + 965: -4,0 + 973: -4,1 + 981: -3,0 + 989: -3,1 + 997: -2,1 + 1005: -1,1 + 1014: -10,-16 + 1019: -4,-1 + 1027: 4,-1 + 1032: 10,-16 + 1038: 3,-20 + 1041: 9,-17 + 1045: -9,-17 + 1048: -3,-20 + 1053: 6,16 + 1061: 6,17 + 1069: 6,18 + 1077: 6,19 + 1085: 6,20 + 1090: 9,24 + 1097: -9,24 + 1105: 0,1 + 1113: 1,1 + 1121: 2,1 + 1129: 3,0 + 1137: 3,1 + 1145: 4,0 + 1153: 4,1 + 1161: 8,12 + 1166: 9,4 + 1173: -9,3 + 1181: -8,12 + 1189: -4,0 + 1197: -4,1 + 1205: -3,0 + 1213: -3,1 + 1221: -2,1 + 1229: -1,1 + 1238: -10,-16 + 1243: -4,-1 + 1251: 4,-1 + 1256: 10,-16 + 1262: 3,-20 + 1265: 9,-17 + 1269: -9,-17 + 1272: -3,-20 + 1277: 6,16 + 1285: 6,17 + 1293: 6,18 + 1301: 6,19 + 1309: 6,20 + 1314: 9,24 + 1321: -9,24 + 1329: 0,1 + 1337: 1,1 + 1345: 2,1 + 1353: 3,0 + 1361: 3,1 + 1369: 4,0 + 1377: 4,1 + 1385: 8,12 + 1390: 9,4 + 1397: -9,3 + 1405: -8,12 + 1413: -4,0 + 1421: -4,1 + 1429: -3,0 + 1437: -3,1 + 1445: -2,1 + 1453: -1,1 + 1462: -10,-16 + 1467: -4,-1 + 1475: 4,-1 + 1480: 10,-16 + 1486: 3,-20 + 1489: 9,-17 + 1493: -9,-17 + 1496: -3,-20 + 1501: 6,16 + 1509: 6,17 + 1517: 6,18 + 1525: 6,19 + 1533: 6,20 + 1538: 9,24 + 1545: -9,24 + 1553: 0,1 + 1561: 1,1 + 1569: 2,1 + 1577: 3,0 + 1585: 3,1 + 1593: 4,0 + 1601: 4,1 + 1609: 8,12 + 1614: 9,4 + 1621: -9,3 + 1629: -8,12 + 1637: -4,0 + 1645: -4,1 + 1653: -3,0 + 1661: -3,1 + 1669: -2,1 + 1677: -1,1 + 1686: -10,-16 + 1691: -4,-1 + 1699: 4,-1 + 1704: 10,-16 + 1710: 3,-20 + 1713: 9,-17 + 1717: -9,-17 + 1720: -3,-20 + 1725: 6,16 + 1733: 6,17 + 1741: 6,18 + 1749: 6,19 + 1757: 6,20 + 1762: 9,24 + 1769: -9,24 + 1777: 0,1 + 1785: 1,1 + 1793: 2,1 + 1801: 3,0 + 1809: 3,1 + 1817: 4,0 + 1825: 4,1 + 1833: 8,12 + 1838: 9,4 + 1845: -9,3 + 1850: -4,0 + 1858: -4,1 + 1866: -3,0 + 1874: -3,1 + 1882: -2,1 + 1890: -1,1 + 1899: -10,-16 + 1904: -4,-1 + 1912: 4,-1 + 1917: 10,-16 + 1923: 3,-20 + 1926: 9,-17 + 1930: -9,-17 + 1933: -3,-20 + 1938: 6,16 + 1946: 6,17 + 1954: 6,18 + 1962: 6,19 + 1970: 6,20 + 1975: 9,24 + 1982: -9,24 + 1990: -8,12 + 2001: 0,1 + 2009: 1,1 + 2017: 2,1 + 2025: 3,0 + 2033: 3,1 + 2041: 4,0 + 2049: 4,1 + 2057: 8,12 + 2062: 9,4 + 2069: -9,3 + 2077: -8,12 + 2085: -4,0 + 2093: -4,1 + 2101: -3,0 + 2109: -3,1 + 2117: -2,1 + 2125: -1,1 + 2134: -10,-16 + 2139: -4,-1 + 2147: 4,-1 + 2152: 10,-16 + 2158: 3,-20 + 2161: 9,-17 + 2165: -9,-17 + 2168: -3,-20 + 2173: 6,16 + 2181: 6,17 + 2189: 6,18 + 2197: 6,19 + 2205: 6,20 + 2210: 9,24 + 2217: -9,24 + 2225: 0,1 + 2233: 1,1 + 2241: 2,1 + 2249: 3,0 + 2257: 3,1 + 2265: 4,0 + 2273: 4,1 + 2281: 8,12 + 2286: 9,4 + 2293: -9,3 + 2301: -8,12 + 2309: -4,0 + 2317: -4,1 + 2325: -3,0 + 2333: -3,1 + 2341: -2,1 + 2349: -1,1 + 2358: -10,-16 + 2363: -4,-1 + 2371: 4,-1 + 2376: 10,-16 + 2382: 3,-20 + 2385: 9,-17 + 2389: -9,-17 + 2392: -3,-20 + 2397: 6,16 + 2405: 6,17 + 2413: 6,18 + 2421: 6,19 + 2429: 6,20 + 2434: 9,24 + 2441: -9,24 + 2449: 0,1 + 2457: 1,1 + 2465: 2,1 + 2473: 3,0 + 2481: 3,1 + 2489: 4,0 + 2497: 4,1 + 2505: 8,12 + 2510: 9,4 + 2517: -9,3 + 2525: -8,12 + 2533: -4,0 + 2541: -4,1 + 2549: -3,0 + 2557: -3,1 + 2565: -2,1 + 2573: -1,1 + 2582: -10,-16 + 2587: -4,-1 + 2595: 4,-1 + 2600: 10,-16 + 2606: 3,-20 + 2609: 9,-17 + 2613: -9,-17 + 2616: -3,-20 + 2621: 6,16 + 2629: 6,17 + 2637: 6,18 + 2645: 6,19 + 2653: 6,20 + 2658: 9,24 + 2665: -9,24 + 2673: 0,1 + 2681: 1,1 + 2689: 2,1 + 2697: 3,0 + 2705: 3,1 + 2713: 4,0 + 2721: 4,1 + 2729: 8,12 + 2734: 9,4 + 2741: -9,3 + 2749: -8,12 + 2757: -4,0 + 2765: -4,1 + 2773: -3,0 + 2781: -3,1 + 2789: -2,1 + 2797: -1,1 + 2806: -10,-16 + 2811: -4,-1 + 2819: 4,-1 + 2824: 10,-16 + 2830: 3,-20 + 2833: 9,-17 + 2837: -9,-17 + 2840: -3,-20 + 2845: 6,16 + 2853: 6,17 + 2861: 6,18 + 2869: 6,19 + 2877: 6,20 + 2882: 9,24 + 2889: -9,24 + 2897: 0,1 + 2905: 1,1 + 2913: 2,1 + 2921: 3,0 + 2929: 3,1 + 2937: 4,0 + 2945: 4,1 + 2953: 8,12 + 2958: 9,4 + 2965: -9,3 + 2973: -8,12 + 2981: -4,0 + 2989: -4,1 + 2997: -3,0 + 3005: -3,1 + 3013: -2,1 + 3021: -1,1 + 3030: -10,-16 + 3035: -4,-1 + 3043: 4,-1 + 3048: 10,-16 + 3054: 3,-20 + 3057: 9,-17 + 3061: -9,-17 + 3064: -3,-20 + 3069: 6,16 + 3077: 6,17 + 3085: 6,18 + 3093: 6,19 + 3101: 6,20 + 3106: 9,24 + 3113: -9,24 + 3121: 0,1 + 3129: 1,1 + 3137: 2,1 + 3145: 3,0 + 3153: 3,1 + 3161: 4,0 + 3169: 4,1 + 3177: 8,12 + 3182: 9,4 + 3189: -9,3 + 3197: -8,12 + 3205: -4,0 + 3213: -4,1 + 3221: -3,0 + 3229: -3,1 + 3237: -2,1 + 3245: -1,1 + 3254: -10,-16 + 3259: -4,-1 + 3267: 4,-1 + 3272: 10,-16 + 3278: 3,-20 + 3281: 9,-17 + 3285: -9,-17 + 3288: -3,-20 + 3293: 6,16 + 3301: 6,17 + 3309: 6,18 + 3317: 6,19 + 3325: 6,20 + 3330: 9,24 + 3337: -9,24 + 3369: 0,1 + 3378: 1,1 + 3387: 2,1 + 3401: 3,0 + 3409: 3,1 + 3417: 4,0 + 3425: 4,1 + 3433: 8,12 + 3438: 9,4 + 3445: -9,3 + 3453: -8,12 + 3461: -4,0 + 3469: -4,1 + 3477: -3,0 + 3485: -3,1 + 3493: -2,1 + 3507: -1,1 + 3517: -10,-16 + 3522: -4,-1 + 3530: 4,-1 + 3535: 10,-16 + 3541: 3,-20 + 3544: 9,-17 + 3548: -9,-17 + 3551: -3,-20 + 3556: 6,16 + 3564: 6,17 + 3572: 6,18 + 3580: 6,19 + 3588: 6,20 + 3593: 9,24 + 3600: -9,24 + 3617: 0,1 + 3627: 1,1 + 3637: 2,1 + 3654: 3,0 + 3662: 3,1 + 3670: 4,0 + 3678: 4,1 + 3686: 8,12 + 3691: 9,4 + 3698: -9,3 + 3706: -8,12 + 3714: -4,0 + 3722: -4,1 + 3730: -3,0 + 3738: -3,1 + 3746: -2,1 + 3763: -1,1 + 3774: -10,-16 + 3779: -4,-1 + 3787: 4,-1 + 3792: 10,-16 + 3798: 3,-20 + 3801: 9,-17 + 3805: -9,-17 + 3808: -3,-20 + 3813: 6,16 + 3821: 6,17 + 3829: 6,18 + 3837: 6,19 + 3845: 6,20 + 3850: 9,24 + 3857: -9,24 + 3865: 0,1 + 3875: 1,1 + 3885: 2,1 + 3902: 3,0 + 3910: 3,1 + 3918: 4,0 + 3926: 4,1 + 3934: 8,12 + 3939: 9,4 + 3946: -9,3 + 3954: -8,12 + 3962: -4,0 + 3970: -4,1 + 3978: -3,0 + 3986: -3,1 + 3994: -2,1 + 4011: -1,1 + 4019: -10,-16 + 4024: -4,-1 + 4032: 4,-1 + 4037: 10,-16 + 4040: 3,-20 + 4043: 9,-17 + 4047: -9,-17 + 4050: -3,-20 + 4055: 6,16 + 4063: 6,17 + 4071: 6,18 + 4079: 6,19 + 4087: 6,20 + 4092: 9,24 + 4099: -9,24 + 4113: 0,1 + 4123: 1,1 + 4133: 2,1 + 4150: 3,0 + 4158: 3,1 + 4166: 4,0 + 4174: 4,1 + 4182: 8,12 + 4187: 9,4 + 4194: -9,3 + 4202: -8,12 + 4210: -4,0 + 4218: -4,1 + 4226: -3,0 + 4234: -3,1 + 4242: -2,1 + 4259: -1,1 + 4270: -10,-16 + 4275: -4,-1 + 4283: 4,-1 + 4288: 10,-16 + 4294: 3,-20 + 4297: 9,-17 + 4301: -9,-17 + 4304: -3,-20 + 4309: 6,16 + 4317: 6,17 + 4325: 6,18 + 4333: 6,19 + 4341: 6,20 + 4346: 9,24 + 4353: -9,24 + 4361: 0,1 + 4371: 1,1 + 4381: 2,1 + 4398: 3,0 + 4406: 3,1 + 4414: 4,0 + 4422: 4,1 + 4430: 8,12 + 4435: 9,4 + 4442: -9,3 + 4450: -8,12 + 4458: -4,0 + 4466: -4,1 + 4474: -3,0 + 4482: -3,1 + 4490: -2,1 + 4507: -1,1 + 4518: -10,-16 + 4523: -4,-1 + 4531: 4,-1 + 4536: 10,-16 + 4542: 3,-20 + 4545: 9,-17 + 4549: -9,-17 + 4552: -3,-20 + 4557: 6,16 + 4565: 6,17 + 4573: 6,18 + 4581: 6,19 + 4589: 6,20 + 4594: 9,24 + 4601: -9,24 + 4609: 0,1 + 4619: 1,1 + 4629: 2,1 + 4646: 3,0 + 4654: 3,1 + 4662: 4,0 + 4670: 4,1 + 4678: 8,12 + 4683: 9,4 + 4690: -9,3 + 4698: -8,12 + 4706: -4,0 + 4714: -4,1 + 4722: -3,0 + 4730: -3,1 + 4738: -2,1 + 4755: -1,1 + 4766: -10,-16 + 4771: -4,-1 + 4779: 4,-1 + 4784: 10,-16 + 4790: 3,-20 + 4793: 9,-17 + 4797: -9,-17 + 4800: -3,-20 + 4805: 6,16 + 4813: 6,17 + 4821: 6,18 + 4829: 6,19 + 4837: 6,20 + 4842: 9,24 + 4849: -9,24 + 4872: 0,1 + 4882: 1,1 + 4892: 2,1 + 4909: 3,0 + 4917: 3,1 + 4925: 4,0 + 4933: 4,1 + 4941: 8,12 + 4946: 9,4 + 4953: -9,3 + 4961: -8,12 + 4969: -4,0 + 4977: -4,1 + 4985: -3,0 + 4993: -3,1 + 5001: -2,1 + 5018: -1,1 + 5029: -10,-16 + 5034: -4,-1 + 5042: 4,-1 + 5047: 10,-16 + 5053: 3,-20 + 5056: 9,-17 + 5060: -9,-17 + 5063: -3,-20 + 5068: 6,16 + 5076: 6,17 + 5084: 6,18 + 5092: 6,19 + 5100: 6,20 + 5105: 9,24 + 5112: -9,24 + 5120: 0,1 + 5130: 1,1 + 5140: 2,1 + 5157: 3,0 + 5165: 3,1 + 5173: 4,0 + 5181: 4,1 + 5189: 8,12 + 5194: 9,4 + 5201: -9,3 + 5209: -8,12 + 5217: -4,0 + 5225: -4,1 + 5233: -3,0 + 5241: -3,1 + 5249: -2,1 + 5266: -1,1 + 5277: -10,-16 + 5282: -4,-1 + 5290: 4,-1 + 5295: 10,-16 + 5301: 3,-20 + 5304: 9,-17 + 5308: -9,-17 + 5311: -3,-20 + 5316: 6,16 + 5324: 6,17 + 5332: 6,18 + 5340: 6,19 + 5348: 6,20 + 5353: 9,24 + 5360: -9,24 + 5390: 0,1 + 5400: 1,1 + 5410: 2,1 + 5427: 3,0 + 5435: 3,1 + 5443: 4,0 + 5451: 4,1 + 5459: 8,12 + 5464: 9,4 + 5471: -9,3 + 5479: -8,12 + 5487: -4,0 + 5495: -4,1 + 5503: -3,0 + 5511: -3,1 + 5519: -2,1 + 5536: -1,1 + 5547: -10,-16 + 5552: -4,-1 + 5560: 4,-1 + 5565: 10,-16 + 5571: 3,-20 + 5574: 9,-17 + 5578: -9,-17 + 5581: -3,-20 + 5586: 6,16 + 5594: 6,17 + 5602: 6,18 + 5610: 6,19 + 5618: 6,20 + 5623: 9,24 + 5630: -9,24 + 5638: 0,1 + 5648: 1,1 + 5658: 2,1 + 5675: 3,0 + 5683: 3,1 + 5691: 4,0 + 5699: 4,1 + 5707: 8,12 + 5712: 9,4 + 5719: -9,3 + 5727: -8,12 + 5735: -4,0 + 5743: -4,1 + 5751: -3,0 + 5759: -3,1 + 5767: -2,1 + 5784: -1,1 + 5795: -10,-16 + 5800: -4,-1 + 5808: 4,-1 + 5813: 10,-16 + 5819: 3,-20 + 5822: 9,-17 + 5826: -9,-17 + 5829: -3,-20 + 5834: 6,16 + 5842: 6,17 + 5850: 6,18 + 5858: 6,19 + 5866: 6,20 + 5871: 9,24 + 5878: -9,24 + 5894: 0,1 + 5904: 1,1 + 5914: 2,1 + 5931: 3,0 + 5939: 3,1 + 5947: 4,0 + 5955: 4,1 + 5963: 8,12 + 5968: 9,4 + 5975: -9,3 + 5983: -8,12 + 5991: -4,0 + 5999: -4,1 + 6007: -3,0 + 6015: -3,1 + 6023: -2,1 + 6040: -1,1 + 6051: -10,-16 + 6056: -4,-1 + 6064: 4,-1 + 6069: 10,-16 + 6075: 3,-20 + 6078: 9,-17 + 6082: -9,-17 + 6085: -3,-20 + 6090: 6,16 + 6098: 6,17 + 6106: 6,18 + 6114: 6,19 + 6122: 6,20 + 6127: 9,24 + 6134: -9,24 + 6142: 0,1 + 6152: 1,1 + 6162: 2,1 + 6179: 3,0 + 6187: 3,1 + 6195: 4,0 + 6203: 4,1 + 6211: 8,12 + 6216: 9,4 + 6223: -9,3 + 6231: -8,12 + 6239: -4,0 + 6247: -4,1 + 6255: -3,0 + 6263: -3,1 + 6271: -2,1 + 6288: -1,1 + 6299: -10,-16 + 6304: -4,-1 + 6312: 4,-1 + 6317: 10,-16 + 6323: 3,-20 + 6326: 9,-17 + 6330: -9,-17 + 6333: -3,-20 + 6338: 6,16 + 6346: 6,17 + 6354: 6,18 + 6362: 6,19 + 6370: 6,20 + 6375: 9,24 + 6382: -9,24 + 6390: 0,1 + 6400: 1,1 + 6410: 2,1 + 6427: 3,0 + 6435: 3,1 + 6443: 4,0 + 6451: 4,1 + 6456: 9,4 + 6463: -9,3 + 6471: -8,12 + 6479: -4,0 + 6487: -4,1 + 6495: -3,0 + 6503: -3,1 + 6511: -2,1 + 6528: -1,1 + 6539: -10,-16 + 6544: -4,-1 + 6552: 4,-1 + 6557: 10,-16 + 6563: 3,-20 + 6566: 9,-17 + 6570: -9,-17 + 6573: -3,-20 + 6578: 6,16 + 6586: 6,17 + 6594: 6,18 + 6602: 6,19 + 6610: 6,20 + 6615: 9,24 + 6622: -9,24 + 6632: 8,12 + 6660: 0,1 + 6670: 1,1 + 6680: 2,1 + 6697: 3,0 + 6705: 3,1 + 6713: 4,0 + 6721: 4,1 + 6729: 8,12 + 6734: 9,4 + 6741: -9,3 + 6749: -8,12 + 6757: -4,0 + 6765: -4,1 + 6773: -3,0 + 6781: -3,1 + 6789: -2,1 + 6806: -1,1 + 6817: -10,-16 + 6822: -4,-1 + 6830: 4,-1 + 6835: 10,-16 + 6841: 3,-20 + 6844: 9,-17 + 6848: -9,-17 + 6851: -3,-20 + 6856: 6,16 + 6864: 6,17 + 6872: 6,18 + 6880: 6,19 + 6888: 6,20 + 6893: 9,24 + 6900: -9,24 - node: id: LatticeEdgeS decals: - 980: 0,1 - 988: 1,1 - 996: 2,1 - 1004: 3,0 - 1012: 3,1 - 1020: 4,0 - 1028: 4,1 - 1036: 8,12 - 1047: 9,12 - 1053: -9,12 - 1056: -8,12 - 1064: -4,0 - 1072: -4,1 - 1080: -3,0 - 1088: -3,1 - 1096: -2,1 - 1104: -1,1 - 1112: -12,-10 - 1118: -4,-1 - 1126: 4,-1 - 1137: 12,-10 - 1152: 6,16 - 1160: 6,17 - 1168: 6,18 - 1176: 6,19 - 1184: 6,20 - 1195: 9,28 - 1201: -9,28 - 1204: 0,1 - 1212: 1,1 - 1220: 2,1 - 1228: 3,0 - 1236: 3,1 - 1244: 4,0 - 1252: 4,1 - 1260: 8,12 - 1271: 9,12 - 1277: -9,12 - 1280: -8,12 - 1288: -4,0 - 1296: -4,1 - 1304: -3,0 - 1312: -3,1 - 1320: -2,1 - 1328: -1,1 - 1336: -12,-10 - 1342: -4,-1 - 1350: 4,-1 - 1361: 12,-10 - 1376: 6,16 - 1384: 6,17 - 1392: 6,18 - 1400: 6,19 - 1408: 6,20 - 1419: 9,28 - 1425: -9,28 - 1428: 0,1 - 1436: 1,1 - 1444: 2,1 - 1452: 3,0 - 1460: 3,1 - 1468: 4,0 - 1476: 4,1 - 1484: 8,12 - 1495: 9,12 - 1501: -9,12 - 1504: -8,12 - 1512: -4,0 - 1520: -4,1 - 1528: -3,0 - 1536: -3,1 - 1544: -2,1 - 1552: -1,1 - 1560: -12,-10 - 1566: -4,-1 - 1574: 4,-1 - 1585: 12,-10 - 1600: 6,16 - 1608: 6,17 - 1616: 6,18 - 1624: 6,19 - 1632: 6,20 - 1643: 9,28 - 1649: -9,28 - 1652: 0,1 - 1660: 1,1 - 1668: 2,1 - 1676: 3,0 - 1684: 3,1 - 1692: 4,0 - 1700: 4,1 - 1708: 8,12 - 1719: 9,12 - 1725: -9,12 - 1728: -8,12 - 1736: -4,0 - 1744: -4,1 - 1752: -3,0 - 1760: -3,1 - 1768: -2,1 - 1776: -1,1 - 1784: -12,-10 - 1790: -4,-1 - 1798: 4,-1 - 1809: 12,-10 - 1824: 6,16 - 1832: 6,17 - 1840: 6,18 - 1848: 6,19 - 1856: 6,20 - 1867: 9,28 - 1873: -9,28 - 1876: 0,1 - 1884: 1,1 - 1892: 2,1 - 1900: 3,0 - 1908: 3,1 - 1916: 4,0 - 1924: 4,1 - 1932: 8,12 - 1943: 9,12 - 1949: -4,0 - 1957: -4,1 - 1965: -3,0 - 1973: -3,1 - 1981: -2,1 - 1989: -1,1 - 1997: -12,-10 - 2003: -4,-1 - 2011: 4,-1 - 2022: 12,-10 - 2037: 6,16 - 2045: 6,17 - 2053: 6,18 - 2061: 6,19 - 2069: 6,20 - 2080: 9,28 - 2086: -9,28 - 2089: -8,12 - 2097: -9,12 - 2100: 0,1 - 2108: 1,1 - 2116: 2,1 - 2124: 3,0 - 2132: 3,1 - 2140: 4,0 - 2148: 4,1 - 2156: 8,12 - 2167: 9,12 - 2173: -9,12 - 2176: -8,12 - 2184: -4,0 - 2192: -4,1 - 2200: -3,0 - 2208: -3,1 - 2216: -2,1 - 2224: -1,1 - 2232: -12,-10 - 2238: -4,-1 - 2246: 4,-1 - 2257: 12,-10 - 2272: 6,16 - 2280: 6,17 - 2288: 6,18 - 2296: 6,19 - 2304: 6,20 - 2315: 9,28 - 2321: -9,28 - 2324: 0,1 - 2332: 1,1 - 2340: 2,1 - 2348: 3,0 - 2356: 3,1 - 2364: 4,0 - 2372: 4,1 - 2380: 8,12 - 2391: 9,12 - 2397: -9,12 - 2400: -8,12 - 2408: -4,0 - 2416: -4,1 - 2424: -3,0 - 2432: -3,1 - 2440: -2,1 - 2448: -1,1 - 2456: -12,-10 - 2462: -4,-1 - 2470: 4,-1 - 2481: 12,-10 - 2496: 6,16 - 2504: 6,17 - 2512: 6,18 - 2520: 6,19 - 2528: 6,20 - 2539: 9,28 - 2545: -9,28 - 2548: 0,1 - 2556: 1,1 - 2564: 2,1 - 2572: 3,0 - 2580: 3,1 - 2588: 4,0 - 2596: 4,1 - 2604: 8,12 - 2615: 9,12 - 2621: -9,12 - 2624: -8,12 - 2632: -4,0 - 2640: -4,1 - 2648: -3,0 - 2656: -3,1 - 2664: -2,1 - 2672: -1,1 - 2680: -12,-10 - 2686: -4,-1 - 2694: 4,-1 - 2705: 12,-10 - 2720: 6,16 - 2728: 6,17 - 2736: 6,18 - 2744: 6,19 - 2752: 6,20 - 2763: 9,28 - 2769: -9,28 - 2772: 0,1 - 2780: 1,1 - 2788: 2,1 - 2796: 3,0 - 2804: 3,1 - 2812: 4,0 - 2820: 4,1 - 2828: 8,12 - 2839: 9,12 - 2845: -9,12 - 2848: -8,12 - 2856: -4,0 - 2864: -4,1 - 2872: -3,0 - 2880: -3,1 - 2888: -2,1 - 2896: -1,1 - 2904: -12,-10 - 2910: -4,-1 - 2918: 4,-1 - 2929: 12,-10 - 2944: 6,16 - 2952: 6,17 - 2960: 6,18 - 2968: 6,19 - 2976: 6,20 - 2987: 9,28 - 2993: -9,28 - 2996: 0,1 - 3004: 1,1 - 3012: 2,1 - 3020: 3,0 - 3028: 3,1 - 3036: 4,0 - 3044: 4,1 - 3052: 8,12 - 3063: 9,12 - 3069: -9,12 - 3072: -8,12 - 3080: -4,0 - 3088: -4,1 - 3096: -3,0 - 3104: -3,1 - 3112: -2,1 - 3120: -1,1 - 3128: -12,-10 - 3134: -4,-1 - 3142: 4,-1 - 3153: 12,-10 - 3168: 6,16 - 3176: 6,17 - 3184: 6,18 - 3192: 6,19 - 3200: 6,20 - 3211: 9,28 - 3217: -9,28 - 3220: 0,1 - 3228: 1,1 - 3236: 2,1 - 3244: 3,0 - 3252: 3,1 - 3260: 4,0 - 3268: 4,1 - 3276: 8,12 - 3287: 9,12 - 3293: -9,12 - 3296: -8,12 - 3304: -4,0 - 3312: -4,1 - 3320: -3,0 - 3328: -3,1 - 3336: -2,1 - 3344: -1,1 - 3352: -12,-10 - 3358: -4,-1 - 3366: 4,-1 - 3377: 12,-10 - 3392: 6,16 - 3400: 6,17 - 3408: 6,18 - 3416: 6,19 - 3424: 6,20 - 3435: 9,28 - 3441: -9,28 - 3468: 0,1 - 3477: 1,1 - 3486: 2,1 - 3500: 3,0 - 3508: 3,1 - 3516: 4,0 - 3524: 4,1 - 3532: 8,12 - 3543: 9,12 - 3549: -9,12 - 3552: -8,12 - 3560: -4,0 - 3568: -4,1 - 3576: -3,0 - 3584: -3,1 - 3592: -2,1 - 3606: -1,1 - 3615: -12,-10 - 3621: -4,-1 - 3629: 4,-1 - 3640: 12,-10 - 3655: 6,16 - 3663: 6,17 - 3671: 6,18 - 3679: 6,19 - 3687: 6,20 - 3698: 9,28 - 3704: -9,28 - 3716: 0,1 - 3726: 1,1 - 3736: 2,1 - 3753: 3,0 - 3761: 3,1 - 3769: 4,0 - 3777: 4,1 - 3785: 8,12 - 3796: 9,12 - 3802: -9,12 - 3805: -8,12 - 3813: -4,0 - 3821: -4,1 - 3829: -3,0 - 3837: -3,1 - 3845: -2,1 - 3862: -1,1 - 3872: -12,-10 - 3878: -4,-1 - 3886: 4,-1 - 3897: 12,-10 - 3912: 6,16 - 3920: 6,17 - 3928: 6,18 - 3936: 6,19 - 3944: 6,20 - 3955: 9,28 - 3961: -9,28 - 3964: 0,1 - 3974: 1,1 - 3984: 2,1 - 4001: 3,0 - 4009: 3,1 - 4017: 4,0 - 4025: 4,1 - 4033: 8,12 - 4044: 9,12 - 4050: -9,12 - 4053: -8,12 - 4061: -4,0 - 4069: -4,1 - 4077: -3,0 - 4085: -3,1 - 4093: -2,1 - 4110: -1,1 - 4123: -4,-1 - 4131: 4,-1 - 4154: 6,16 - 4162: 6,17 - 4170: 6,18 - 4178: 6,19 - 4186: 6,20 - 4197: 9,28 - 4203: -9,28 - 4206: -12,-10 - 4209: 12,-10 - 4212: 0,1 - 4222: 1,1 - 4232: 2,1 - 4249: 3,0 - 4257: 3,1 - 4265: 4,0 - 4273: 4,1 - 4281: 8,12 - 4292: 9,12 - 4298: -9,12 - 4301: -8,12 - 4309: -4,0 - 4317: -4,1 - 4325: -3,0 - 4333: -3,1 - 4341: -2,1 - 4358: -1,1 - 4368: -12,-10 - 4374: -4,-1 - 4382: 4,-1 - 4393: 12,-10 - 4408: 6,16 - 4416: 6,17 - 4424: 6,18 - 4432: 6,19 - 4440: 6,20 - 4451: 9,28 - 4457: -9,28 + 878: 0,1 + 886: 1,1 + 894: 2,1 + 902: 3,0 + 910: 3,1 + 918: 4,0 + 926: 4,1 + 934: 8,12 + 945: 9,12 + 951: -9,12 + 954: -8,12 + 962: -4,0 + 970: -4,1 + 978: -3,0 + 986: -3,1 + 994: -2,1 + 1002: -1,1 + 1010: -12,-10 + 1016: -4,-1 + 1024: 4,-1 + 1035: 12,-10 + 1050: 6,16 + 1058: 6,17 + 1066: 6,18 + 1074: 6,19 + 1082: 6,20 + 1093: 9,28 + 1099: -9,28 + 1102: 0,1 + 1110: 1,1 + 1118: 2,1 + 1126: 3,0 + 1134: 3,1 + 1142: 4,0 + 1150: 4,1 + 1158: 8,12 + 1169: 9,12 + 1175: -9,12 + 1178: -8,12 + 1186: -4,0 + 1194: -4,1 + 1202: -3,0 + 1210: -3,1 + 1218: -2,1 + 1226: -1,1 + 1234: -12,-10 + 1240: -4,-1 + 1248: 4,-1 + 1259: 12,-10 + 1274: 6,16 + 1282: 6,17 + 1290: 6,18 + 1298: 6,19 + 1306: 6,20 + 1317: 9,28 + 1323: -9,28 + 1326: 0,1 + 1334: 1,1 + 1342: 2,1 + 1350: 3,0 + 1358: 3,1 + 1366: 4,0 + 1374: 4,1 + 1382: 8,12 + 1393: 9,12 + 1399: -9,12 + 1402: -8,12 + 1410: -4,0 + 1418: -4,1 + 1426: -3,0 + 1434: -3,1 + 1442: -2,1 + 1450: -1,1 + 1458: -12,-10 + 1464: -4,-1 + 1472: 4,-1 + 1483: 12,-10 + 1498: 6,16 + 1506: 6,17 + 1514: 6,18 + 1522: 6,19 + 1530: 6,20 + 1541: 9,28 + 1547: -9,28 + 1550: 0,1 + 1558: 1,1 + 1566: 2,1 + 1574: 3,0 + 1582: 3,1 + 1590: 4,0 + 1598: 4,1 + 1606: 8,12 + 1617: 9,12 + 1623: -9,12 + 1626: -8,12 + 1634: -4,0 + 1642: -4,1 + 1650: -3,0 + 1658: -3,1 + 1666: -2,1 + 1674: -1,1 + 1682: -12,-10 + 1688: -4,-1 + 1696: 4,-1 + 1707: 12,-10 + 1722: 6,16 + 1730: 6,17 + 1738: 6,18 + 1746: 6,19 + 1754: 6,20 + 1765: 9,28 + 1771: -9,28 + 1774: 0,1 + 1782: 1,1 + 1790: 2,1 + 1798: 3,0 + 1806: 3,1 + 1814: 4,0 + 1822: 4,1 + 1830: 8,12 + 1841: 9,12 + 1847: -4,0 + 1855: -4,1 + 1863: -3,0 + 1871: -3,1 + 1879: -2,1 + 1887: -1,1 + 1895: -12,-10 + 1901: -4,-1 + 1909: 4,-1 + 1920: 12,-10 + 1935: 6,16 + 1943: 6,17 + 1951: 6,18 + 1959: 6,19 + 1967: 6,20 + 1978: 9,28 + 1984: -9,28 + 1987: -8,12 + 1995: -9,12 + 1998: 0,1 + 2006: 1,1 + 2014: 2,1 + 2022: 3,0 + 2030: 3,1 + 2038: 4,0 + 2046: 4,1 + 2054: 8,12 + 2065: 9,12 + 2071: -9,12 + 2074: -8,12 + 2082: -4,0 + 2090: -4,1 + 2098: -3,0 + 2106: -3,1 + 2114: -2,1 + 2122: -1,1 + 2130: -12,-10 + 2136: -4,-1 + 2144: 4,-1 + 2155: 12,-10 + 2170: 6,16 + 2178: 6,17 + 2186: 6,18 + 2194: 6,19 + 2202: 6,20 + 2213: 9,28 + 2219: -9,28 + 2222: 0,1 + 2230: 1,1 + 2238: 2,1 + 2246: 3,0 + 2254: 3,1 + 2262: 4,0 + 2270: 4,1 + 2278: 8,12 + 2289: 9,12 + 2295: -9,12 + 2298: -8,12 + 2306: -4,0 + 2314: -4,1 + 2322: -3,0 + 2330: -3,1 + 2338: -2,1 + 2346: -1,1 + 2354: -12,-10 + 2360: -4,-1 + 2368: 4,-1 + 2379: 12,-10 + 2394: 6,16 + 2402: 6,17 + 2410: 6,18 + 2418: 6,19 + 2426: 6,20 + 2437: 9,28 + 2443: -9,28 + 2446: 0,1 + 2454: 1,1 + 2462: 2,1 + 2470: 3,0 + 2478: 3,1 + 2486: 4,0 + 2494: 4,1 + 2502: 8,12 + 2513: 9,12 + 2519: -9,12 + 2522: -8,12 + 2530: -4,0 + 2538: -4,1 + 2546: -3,0 + 2554: -3,1 + 2562: -2,1 + 2570: -1,1 + 2578: -12,-10 + 2584: -4,-1 + 2592: 4,-1 + 2603: 12,-10 + 2618: 6,16 + 2626: 6,17 + 2634: 6,18 + 2642: 6,19 + 2650: 6,20 + 2661: 9,28 + 2667: -9,28 + 2670: 0,1 + 2678: 1,1 + 2686: 2,1 + 2694: 3,0 + 2702: 3,1 + 2710: 4,0 + 2718: 4,1 + 2726: 8,12 + 2737: 9,12 + 2743: -9,12 + 2746: -8,12 + 2754: -4,0 + 2762: -4,1 + 2770: -3,0 + 2778: -3,1 + 2786: -2,1 + 2794: -1,1 + 2802: -12,-10 + 2808: -4,-1 + 2816: 4,-1 + 2827: 12,-10 + 2842: 6,16 + 2850: 6,17 + 2858: 6,18 + 2866: 6,19 + 2874: 6,20 + 2885: 9,28 + 2891: -9,28 + 2894: 0,1 + 2902: 1,1 + 2910: 2,1 + 2918: 3,0 + 2926: 3,1 + 2934: 4,0 + 2942: 4,1 + 2950: 8,12 + 2961: 9,12 + 2967: -9,12 + 2970: -8,12 + 2978: -4,0 + 2986: -4,1 + 2994: -3,0 + 3002: -3,1 + 3010: -2,1 + 3018: -1,1 + 3026: -12,-10 + 3032: -4,-1 + 3040: 4,-1 + 3051: 12,-10 + 3066: 6,16 + 3074: 6,17 + 3082: 6,18 + 3090: 6,19 + 3098: 6,20 + 3109: 9,28 + 3115: -9,28 + 3118: 0,1 + 3126: 1,1 + 3134: 2,1 + 3142: 3,0 + 3150: 3,1 + 3158: 4,0 + 3166: 4,1 + 3174: 8,12 + 3185: 9,12 + 3191: -9,12 + 3194: -8,12 + 3202: -4,0 + 3210: -4,1 + 3218: -3,0 + 3226: -3,1 + 3234: -2,1 + 3242: -1,1 + 3250: -12,-10 + 3256: -4,-1 + 3264: 4,-1 + 3275: 12,-10 + 3290: 6,16 + 3298: 6,17 + 3306: 6,18 + 3314: 6,19 + 3322: 6,20 + 3333: 9,28 + 3339: -9,28 + 3366: 0,1 + 3375: 1,1 + 3384: 2,1 + 3398: 3,0 + 3406: 3,1 + 3414: 4,0 + 3422: 4,1 + 3430: 8,12 + 3441: 9,12 + 3447: -9,12 + 3450: -8,12 + 3458: -4,0 + 3466: -4,1 + 3474: -3,0 + 3482: -3,1 + 3490: -2,1 + 3504: -1,1 + 3513: -12,-10 + 3519: -4,-1 + 3527: 4,-1 + 3538: 12,-10 + 3553: 6,16 + 3561: 6,17 + 3569: 6,18 + 3577: 6,19 + 3585: 6,20 + 3596: 9,28 + 3602: -9,28 + 3614: 0,1 + 3624: 1,1 + 3634: 2,1 + 3651: 3,0 + 3659: 3,1 + 3667: 4,0 + 3675: 4,1 + 3683: 8,12 + 3694: 9,12 + 3700: -9,12 + 3703: -8,12 + 3711: -4,0 + 3719: -4,1 + 3727: -3,0 + 3735: -3,1 + 3743: -2,1 + 3760: -1,1 + 3770: -12,-10 + 3776: -4,-1 + 3784: 4,-1 + 3795: 12,-10 + 3810: 6,16 + 3818: 6,17 + 3826: 6,18 + 3834: 6,19 + 3842: 6,20 + 3853: 9,28 + 3859: -9,28 + 3862: 0,1 + 3872: 1,1 + 3882: 2,1 + 3899: 3,0 + 3907: 3,1 + 3915: 4,0 + 3923: 4,1 + 3931: 8,12 + 3942: 9,12 + 3948: -9,12 + 3951: -8,12 + 3959: -4,0 + 3967: -4,1 + 3975: -3,0 + 3983: -3,1 + 3991: -2,1 + 4008: -1,1 + 4021: -4,-1 + 4029: 4,-1 + 4052: 6,16 + 4060: 6,17 + 4068: 6,18 + 4076: 6,19 + 4084: 6,20 + 4095: 9,28 + 4101: -9,28 + 4104: -12,-10 + 4107: 12,-10 + 4110: 0,1 + 4120: 1,1 + 4130: 2,1 + 4147: 3,0 + 4155: 3,1 + 4163: 4,0 + 4171: 4,1 + 4179: 8,12 + 4190: 9,12 + 4196: -9,12 + 4199: -8,12 + 4207: -4,0 + 4215: -4,1 + 4223: -3,0 + 4231: -3,1 + 4239: -2,1 + 4256: -1,1 + 4266: -12,-10 + 4272: -4,-1 + 4280: 4,-1 + 4291: 12,-10 + 4306: 6,16 + 4314: 6,17 + 4322: 6,18 + 4330: 6,19 + 4338: 6,20 + 4349: 9,28 + 4355: -9,28 + 4358: 0,1 + 4368: 1,1 + 4378: 2,1 + 4395: 3,0 + 4403: 3,1 + 4411: 4,0 + 4419: 4,1 + 4427: 8,12 + 4438: 9,12 + 4444: -9,12 + 4447: -8,12 + 4455: -4,0 + 4463: -4,1 + 4471: -3,0 + 4479: -3,1 + 4487: -2,1 + 4504: -1,1 + 4514: -12,-10 + 4520: -4,-1 + 4528: 4,-1 + 4539: 12,-10 + 4554: 6,16 + 4562: 6,17 + 4570: 6,18 + 4578: 6,19 + 4586: 6,20 + 4597: 9,28 + 4603: -9,28 + 4606: 0,1 + 4616: 1,1 + 4626: 2,1 + 4643: 3,0 + 4651: 3,1 + 4659: 4,0 + 4667: 4,1 + 4675: 8,12 + 4686: 9,12 + 4692: -9,12 + 4695: -8,12 + 4703: -4,0 + 4711: -4,1 + 4719: -3,0 + 4727: -3,1 + 4735: -2,1 + 4752: -1,1 + 4762: -12,-10 + 4768: -4,-1 + 4776: 4,-1 + 4787: 12,-10 + 4802: 6,16 + 4810: 6,17 + 4818: 6,18 + 4826: 6,19 + 4834: 6,20 + 4845: 9,28 + 4851: -9,28 + 4869: 0,1 + 4879: 1,1 + 4889: 2,1 + 4906: 3,0 + 4914: 3,1 + 4922: 4,0 + 4930: 4,1 + 4938: 8,12 + 4949: 9,12 + 4955: -9,12 + 4958: -8,12 + 4966: -4,0 + 4974: -4,1 + 4982: -3,0 + 4990: -3,1 + 4998: -2,1 + 5015: -1,1 + 5025: -12,-10 + 5031: -4,-1 + 5039: 4,-1 + 5050: 12,-10 + 5065: 6,16 + 5073: 6,17 + 5081: 6,18 + 5089: 6,19 + 5097: 6,20 + 5108: 9,28 + 5114: -9,28 + 5117: 0,1 + 5127: 1,1 + 5137: 2,1 + 5154: 3,0 + 5162: 3,1 + 5170: 4,0 + 5178: 4,1 + 5186: 8,12 + 5197: 9,12 + 5203: -9,12 + 5206: -8,12 + 5214: -4,0 + 5222: -4,1 + 5230: -3,0 + 5238: -3,1 + 5246: -2,1 + 5263: -1,1 + 5273: -12,-10 + 5279: -4,-1 + 5287: 4,-1 + 5298: 12,-10 + 5313: 6,16 + 5321: 6,17 + 5329: 6,18 + 5337: 6,19 + 5345: 6,20 + 5356: 9,28 + 5362: -9,28 + 5387: 0,1 + 5397: 1,1 + 5407: 2,1 + 5424: 3,0 + 5432: 3,1 + 5440: 4,0 + 5448: 4,1 + 5456: 8,12 + 5467: 9,12 + 5473: -9,12 + 5476: -8,12 + 5484: -4,0 + 5492: -4,1 + 5500: -3,0 + 5508: -3,1 + 5516: -2,1 + 5533: -1,1 + 5543: -12,-10 + 5549: -4,-1 + 5557: 4,-1 + 5568: 12,-10 + 5583: 6,16 + 5591: 6,17 + 5599: 6,18 + 5607: 6,19 + 5615: 6,20 + 5626: 9,28 + 5632: -9,28 + 5635: 0,1 + 5645: 1,1 + 5655: 2,1 + 5672: 3,0 + 5680: 3,1 + 5688: 4,0 + 5696: 4,1 + 5704: 8,12 + 5715: 9,12 + 5721: -9,12 + 5724: -8,12 + 5732: -4,0 + 5740: -4,1 + 5748: -3,0 + 5756: -3,1 + 5764: -2,1 + 5781: -1,1 + 5791: -12,-10 + 5797: -4,-1 + 5805: 4,-1 + 5816: 12,-10 + 5831: 6,16 + 5839: 6,17 + 5847: 6,18 + 5855: 6,19 + 5863: 6,20 + 5874: 9,28 + 5880: -9,28 + 5891: 0,1 + 5901: 1,1 + 5911: 2,1 + 5928: 3,0 + 5936: 3,1 + 5944: 4,0 + 5952: 4,1 + 5960: 8,12 + 5971: 9,12 + 5977: -9,12 + 5980: -8,12 + 5988: -4,0 + 5996: -4,1 + 6004: -3,0 + 6012: -3,1 + 6020: -2,1 + 6037: -1,1 + 6047: -12,-10 + 6053: -4,-1 + 6061: 4,-1 + 6072: 12,-10 + 6087: 6,16 + 6095: 6,17 + 6103: 6,18 + 6111: 6,19 + 6119: 6,20 + 6130: 9,28 + 6136: -9,28 + 6139: 0,1 + 6149: 1,1 + 6159: 2,1 + 6176: 3,0 + 6184: 3,1 + 6192: 4,0 + 6200: 4,1 + 6208: 8,12 + 6219: 9,12 + 6225: -9,12 + 6228: -8,12 + 6236: -4,0 + 6244: -4,1 + 6252: -3,0 + 6260: -3,1 + 6268: -2,1 + 6285: -1,1 + 6295: -12,-10 + 6301: -4,-1 + 6309: 4,-1 + 6320: 12,-10 + 6335: 6,16 + 6343: 6,17 + 6351: 6,18 + 6359: 6,19 + 6367: 6,20 + 6378: 9,28 + 6384: -9,28 + 6387: 0,1 + 6397: 1,1 + 6407: 2,1 + 6424: 3,0 + 6432: 3,1 + 6440: 4,0 + 6448: 4,1 + 6459: 9,12 + 6465: -9,12 + 6468: -8,12 + 6476: -4,0 + 6484: -4,1 + 6492: -3,0 + 6500: -3,1 + 6508: -2,1 + 6525: -1,1 + 6535: -12,-10 + 6541: -4,-1 + 6549: 4,-1 + 6560: 12,-10 + 6575: 6,16 + 6583: 6,17 + 6591: 6,18 + 6599: 6,19 + 6607: 6,20 + 6618: 9,28 + 6624: -9,28 + 6629: 8,12 + 6657: 0,1 + 6667: 1,1 + 6677: 2,1 + 6694: 3,0 + 6702: 3,1 + 6710: 4,0 + 6718: 4,1 + 6726: 8,12 + 6737: 9,12 + 6743: -9,12 + 6746: -8,12 + 6754: -4,0 + 6762: -4,1 + 6770: -3,0 + 6778: -3,1 + 6786: -2,1 + 6803: -1,1 + 6813: -12,-10 + 6819: -4,-1 + 6827: 4,-1 + 6838: 12,-10 + 6853: 6,16 + 6861: 6,17 + 6869: 6,18 + 6877: 6,19 + 6885: 6,20 + 6896: 9,28 + 6902: -9,28 - node: id: LatticeEdgeW decals: - 985: 0,1 - 993: 1,1 - 1001: 2,1 - 1009: 3,0 - 1017: 3,1 - 1025: 4,0 - 1033: 4,1 - 1041: 8,12 - 1045: 9,4 - 1048: 9,12 - 1061: -8,12 - 1069: -4,0 - 1077: -4,1 - 1085: -3,0 - 1093: -3,1 - 1101: -2,1 - 1109: -1,1 - 1123: -4,-1 - 1131: 4,-1 - 1135: 10,-16 - 1138: 12,-10 - 1141: 3,-20 - 1144: 9,-17 - 1157: 6,16 - 1165: 6,17 - 1173: 6,18 - 1181: 6,19 - 1189: 6,20 - 1193: 9,24 - 1196: 9,28 - 1209: 0,1 - 1217: 1,1 - 1225: 2,1 - 1233: 3,0 - 1241: 3,1 - 1249: 4,0 - 1257: 4,1 - 1265: 8,12 - 1269: 9,4 - 1272: 9,12 - 1285: -8,12 - 1293: -4,0 - 1301: -4,1 - 1309: -3,0 - 1317: -3,1 - 1325: -2,1 - 1333: -1,1 - 1347: -4,-1 - 1355: 4,-1 - 1359: 10,-16 - 1362: 12,-10 - 1365: 3,-20 - 1368: 9,-17 - 1381: 6,16 - 1389: 6,17 - 1397: 6,18 - 1405: 6,19 - 1413: 6,20 - 1417: 9,24 - 1420: 9,28 - 1433: 0,1 - 1441: 1,1 - 1449: 2,1 - 1457: 3,0 - 1465: 3,1 - 1473: 4,0 - 1481: 4,1 - 1489: 8,12 - 1493: 9,4 - 1496: 9,12 - 1509: -8,12 - 1517: -4,0 - 1525: -4,1 - 1533: -3,0 - 1541: -3,1 - 1549: -2,1 - 1557: -1,1 - 1571: -4,-1 - 1579: 4,-1 - 1583: 10,-16 - 1586: 12,-10 - 1589: 3,-20 - 1592: 9,-17 - 1605: 6,16 - 1613: 6,17 - 1621: 6,18 - 1629: 6,19 - 1637: 6,20 - 1641: 9,24 - 1644: 9,28 - 1657: 0,1 - 1665: 1,1 - 1673: 2,1 - 1681: 3,0 - 1689: 3,1 - 1697: 4,0 - 1705: 4,1 - 1713: 8,12 - 1717: 9,4 - 1720: 9,12 - 1733: -8,12 - 1741: -4,0 - 1749: -4,1 - 1757: -3,0 - 1765: -3,1 - 1773: -2,1 - 1781: -1,1 - 1795: -4,-1 - 1803: 4,-1 - 1807: 10,-16 - 1810: 12,-10 - 1813: 3,-20 - 1816: 9,-17 - 1829: 6,16 - 1837: 6,17 - 1845: 6,18 - 1853: 6,19 - 1861: 6,20 - 1865: 9,24 - 1868: 9,28 - 1881: 0,1 - 1889: 1,1 - 1897: 2,1 - 1905: 3,0 - 1913: 3,1 - 1921: 4,0 - 1929: 4,1 - 1937: 8,12 - 1941: 9,4 - 1944: 9,12 - 1954: -4,0 - 1962: -4,1 - 1970: -3,0 - 1978: -3,1 - 1986: -2,1 - 1994: -1,1 - 2008: -4,-1 - 2016: 4,-1 - 2020: 10,-16 - 2023: 12,-10 - 2026: 3,-20 - 2029: 9,-17 - 2042: 6,16 - 2050: 6,17 - 2058: 6,18 - 2066: 6,19 - 2074: 6,20 - 2078: 9,24 - 2081: 9,28 - 2094: -8,12 - 2105: 0,1 - 2113: 1,1 - 2121: 2,1 - 2129: 3,0 - 2137: 3,1 - 2145: 4,0 - 2153: 4,1 - 2161: 8,12 - 2165: 9,4 - 2168: 9,12 - 2181: -8,12 - 2189: -4,0 - 2197: -4,1 - 2205: -3,0 - 2213: -3,1 - 2221: -2,1 - 2229: -1,1 - 2243: -4,-1 - 2251: 4,-1 - 2255: 10,-16 - 2258: 12,-10 - 2261: 3,-20 - 2264: 9,-17 - 2277: 6,16 - 2285: 6,17 - 2293: 6,18 - 2301: 6,19 - 2309: 6,20 - 2313: 9,24 - 2316: 9,28 - 2329: 0,1 - 2337: 1,1 - 2345: 2,1 - 2353: 3,0 - 2361: 3,1 - 2369: 4,0 - 2377: 4,1 - 2385: 8,12 - 2389: 9,4 - 2392: 9,12 - 2405: -8,12 - 2413: -4,0 - 2421: -4,1 - 2429: -3,0 - 2437: -3,1 - 2445: -2,1 - 2453: -1,1 - 2467: -4,-1 - 2475: 4,-1 - 2479: 10,-16 - 2482: 12,-10 - 2485: 3,-20 - 2488: 9,-17 - 2501: 6,16 - 2509: 6,17 - 2517: 6,18 - 2525: 6,19 - 2533: 6,20 - 2537: 9,24 - 2540: 9,28 - 2553: 0,1 - 2561: 1,1 - 2569: 2,1 - 2577: 3,0 - 2585: 3,1 - 2593: 4,0 - 2601: 4,1 - 2609: 8,12 - 2613: 9,4 - 2616: 9,12 - 2629: -8,12 - 2637: -4,0 - 2645: -4,1 - 2653: -3,0 - 2661: -3,1 - 2669: -2,1 - 2677: -1,1 - 2691: -4,-1 - 2699: 4,-1 - 2703: 10,-16 - 2706: 12,-10 - 2709: 3,-20 - 2712: 9,-17 - 2725: 6,16 - 2733: 6,17 - 2741: 6,18 - 2749: 6,19 - 2757: 6,20 - 2761: 9,24 - 2764: 9,28 - 2777: 0,1 - 2785: 1,1 - 2793: 2,1 - 2801: 3,0 - 2809: 3,1 - 2817: 4,0 - 2825: 4,1 - 2833: 8,12 - 2837: 9,4 - 2840: 9,12 - 2853: -8,12 - 2861: -4,0 - 2869: -4,1 - 2877: -3,0 - 2885: -3,1 - 2893: -2,1 - 2901: -1,1 - 2915: -4,-1 - 2923: 4,-1 - 2927: 10,-16 - 2930: 12,-10 - 2933: 3,-20 - 2936: 9,-17 - 2949: 6,16 - 2957: 6,17 - 2965: 6,18 - 2973: 6,19 - 2981: 6,20 - 2985: 9,24 - 2988: 9,28 - 3001: 0,1 - 3009: 1,1 - 3017: 2,1 - 3025: 3,0 - 3033: 3,1 - 3041: 4,0 - 3049: 4,1 - 3057: 8,12 - 3061: 9,4 - 3064: 9,12 - 3077: -8,12 - 3085: -4,0 - 3093: -4,1 - 3101: -3,0 - 3109: -3,1 - 3117: -2,1 - 3125: -1,1 - 3139: -4,-1 - 3147: 4,-1 - 3151: 10,-16 - 3154: 12,-10 - 3157: 3,-20 - 3160: 9,-17 - 3173: 6,16 - 3181: 6,17 - 3189: 6,18 - 3197: 6,19 - 3205: 6,20 - 3209: 9,24 - 3212: 9,28 - 3225: 0,1 - 3233: 1,1 - 3241: 2,1 - 3249: 3,0 - 3257: 3,1 - 3265: 4,0 - 3273: 4,1 - 3281: 8,12 - 3285: 9,4 - 3288: 9,12 - 3301: -8,12 - 3309: -4,0 - 3317: -4,1 - 3325: -3,0 - 3333: -3,1 - 3341: -2,1 - 3349: -1,1 - 3363: -4,-1 - 3371: 4,-1 - 3375: 10,-16 - 3378: 12,-10 - 3381: 3,-20 - 3384: 9,-17 - 3397: 6,16 - 3405: 6,17 - 3413: 6,18 - 3421: 6,19 - 3429: 6,20 - 3433: 9,24 - 3436: 9,28 - 3473: 0,1 - 3482: 1,1 - 3491: 2,1 - 3505: 3,0 - 3513: 3,1 - 3521: 4,0 - 3529: 4,1 - 3537: 8,12 - 3541: 9,4 - 3544: 9,12 - 3557: -8,12 - 3565: -4,0 - 3573: -4,1 - 3581: -3,0 - 3589: -3,1 - 3597: -2,1 - 3611: -1,1 - 3626: -4,-1 - 3634: 4,-1 - 3638: 10,-16 - 3641: 12,-10 - 3644: 3,-20 - 3647: 9,-17 - 3660: 6,16 - 3668: 6,17 - 3676: 6,18 - 3684: 6,19 - 3692: 6,20 - 3696: 9,24 - 3699: 9,28 - 3721: 0,1 - 3731: 1,1 - 3741: 2,1 - 3758: 3,0 - 3766: 3,1 - 3774: 4,0 - 3782: 4,1 - 3790: 8,12 - 3794: 9,4 - 3797: 9,12 - 3810: -8,12 - 3818: -4,0 - 3826: -4,1 - 3834: -3,0 - 3842: -3,1 - 3850: -2,1 - 3867: -1,1 - 3883: -4,-1 - 3891: 4,-1 - 3895: 10,-16 - 3898: 12,-10 - 3901: 3,-20 - 3904: 9,-17 - 3917: 6,16 - 3925: 6,17 - 3933: 6,18 - 3941: 6,19 - 3949: 6,20 - 3953: 9,24 - 3956: 9,28 - 3969: 0,1 - 3979: 1,1 - 3989: 2,1 - 4006: 3,0 - 4014: 3,1 - 4022: 4,0 - 4030: 4,1 - 4038: 8,12 - 4042: 9,4 - 4045: 9,12 - 4058: -8,12 - 4066: -4,0 - 4074: -4,1 - 4082: -3,0 - 4090: -3,1 - 4098: -2,1 - 4115: -1,1 - 4128: -4,-1 - 4136: 4,-1 - 4140: 10,-16 - 4143: 3,-20 - 4146: 9,-17 - 4159: 6,16 - 4167: 6,17 - 4175: 6,18 - 4183: 6,19 - 4191: 6,20 - 4195: 9,24 - 4198: 9,28 - 4210: 12,-10 - 4217: 0,1 - 4227: 1,1 - 4237: 2,1 - 4254: 3,0 - 4262: 3,1 - 4270: 4,0 - 4278: 4,1 - 4286: 8,12 - 4290: 9,4 - 4293: 9,12 - 4306: -8,12 - 4314: -4,0 - 4322: -4,1 - 4330: -3,0 - 4338: -3,1 - 4346: -2,1 - 4363: -1,1 - 4379: -4,-1 - 4387: 4,-1 - 4391: 10,-16 - 4394: 12,-10 - 4397: 3,-20 - 4400: 9,-17 - 4413: 6,16 - 4421: 6,17 - 4429: 6,18 - 4437: 6,19 - 4445: 6,20 - 4449: 9,24 - 4452: 9,28 + 883: 0,1 + 891: 1,1 + 899: 2,1 + 907: 3,0 + 915: 3,1 + 923: 4,0 + 931: 4,1 + 939: 8,12 + 943: 9,4 + 946: 9,12 + 959: -8,12 + 967: -4,0 + 975: -4,1 + 983: -3,0 + 991: -3,1 + 999: -2,1 + 1007: -1,1 + 1021: -4,-1 + 1029: 4,-1 + 1033: 10,-16 + 1036: 12,-10 + 1039: 3,-20 + 1042: 9,-17 + 1055: 6,16 + 1063: 6,17 + 1071: 6,18 + 1079: 6,19 + 1087: 6,20 + 1091: 9,24 + 1094: 9,28 + 1107: 0,1 + 1115: 1,1 + 1123: 2,1 + 1131: 3,0 + 1139: 3,1 + 1147: 4,0 + 1155: 4,1 + 1163: 8,12 + 1167: 9,4 + 1170: 9,12 + 1183: -8,12 + 1191: -4,0 + 1199: -4,1 + 1207: -3,0 + 1215: -3,1 + 1223: -2,1 + 1231: -1,1 + 1245: -4,-1 + 1253: 4,-1 + 1257: 10,-16 + 1260: 12,-10 + 1263: 3,-20 + 1266: 9,-17 + 1279: 6,16 + 1287: 6,17 + 1295: 6,18 + 1303: 6,19 + 1311: 6,20 + 1315: 9,24 + 1318: 9,28 + 1331: 0,1 + 1339: 1,1 + 1347: 2,1 + 1355: 3,0 + 1363: 3,1 + 1371: 4,0 + 1379: 4,1 + 1387: 8,12 + 1391: 9,4 + 1394: 9,12 + 1407: -8,12 + 1415: -4,0 + 1423: -4,1 + 1431: -3,0 + 1439: -3,1 + 1447: -2,1 + 1455: -1,1 + 1469: -4,-1 + 1477: 4,-1 + 1481: 10,-16 + 1484: 12,-10 + 1487: 3,-20 + 1490: 9,-17 + 1503: 6,16 + 1511: 6,17 + 1519: 6,18 + 1527: 6,19 + 1535: 6,20 + 1539: 9,24 + 1542: 9,28 + 1555: 0,1 + 1563: 1,1 + 1571: 2,1 + 1579: 3,0 + 1587: 3,1 + 1595: 4,0 + 1603: 4,1 + 1611: 8,12 + 1615: 9,4 + 1618: 9,12 + 1631: -8,12 + 1639: -4,0 + 1647: -4,1 + 1655: -3,0 + 1663: -3,1 + 1671: -2,1 + 1679: -1,1 + 1693: -4,-1 + 1701: 4,-1 + 1705: 10,-16 + 1708: 12,-10 + 1711: 3,-20 + 1714: 9,-17 + 1727: 6,16 + 1735: 6,17 + 1743: 6,18 + 1751: 6,19 + 1759: 6,20 + 1763: 9,24 + 1766: 9,28 + 1779: 0,1 + 1787: 1,1 + 1795: 2,1 + 1803: 3,0 + 1811: 3,1 + 1819: 4,0 + 1827: 4,1 + 1835: 8,12 + 1839: 9,4 + 1842: 9,12 + 1852: -4,0 + 1860: -4,1 + 1868: -3,0 + 1876: -3,1 + 1884: -2,1 + 1892: -1,1 + 1906: -4,-1 + 1914: 4,-1 + 1918: 10,-16 + 1921: 12,-10 + 1924: 3,-20 + 1927: 9,-17 + 1940: 6,16 + 1948: 6,17 + 1956: 6,18 + 1964: 6,19 + 1972: 6,20 + 1976: 9,24 + 1979: 9,28 + 1992: -8,12 + 2003: 0,1 + 2011: 1,1 + 2019: 2,1 + 2027: 3,0 + 2035: 3,1 + 2043: 4,0 + 2051: 4,1 + 2059: 8,12 + 2063: 9,4 + 2066: 9,12 + 2079: -8,12 + 2087: -4,0 + 2095: -4,1 + 2103: -3,0 + 2111: -3,1 + 2119: -2,1 + 2127: -1,1 + 2141: -4,-1 + 2149: 4,-1 + 2153: 10,-16 + 2156: 12,-10 + 2159: 3,-20 + 2162: 9,-17 + 2175: 6,16 + 2183: 6,17 + 2191: 6,18 + 2199: 6,19 + 2207: 6,20 + 2211: 9,24 + 2214: 9,28 + 2227: 0,1 + 2235: 1,1 + 2243: 2,1 + 2251: 3,0 + 2259: 3,1 + 2267: 4,0 + 2275: 4,1 + 2283: 8,12 + 2287: 9,4 + 2290: 9,12 + 2303: -8,12 + 2311: -4,0 + 2319: -4,1 + 2327: -3,0 + 2335: -3,1 + 2343: -2,1 + 2351: -1,1 + 2365: -4,-1 + 2373: 4,-1 + 2377: 10,-16 + 2380: 12,-10 + 2383: 3,-20 + 2386: 9,-17 + 2399: 6,16 + 2407: 6,17 + 2415: 6,18 + 2423: 6,19 + 2431: 6,20 + 2435: 9,24 + 2438: 9,28 + 2451: 0,1 + 2459: 1,1 + 2467: 2,1 + 2475: 3,0 + 2483: 3,1 + 2491: 4,0 + 2499: 4,1 + 2507: 8,12 + 2511: 9,4 + 2514: 9,12 + 2527: -8,12 + 2535: -4,0 + 2543: -4,1 + 2551: -3,0 + 2559: -3,1 + 2567: -2,1 + 2575: -1,1 + 2589: -4,-1 + 2597: 4,-1 + 2601: 10,-16 + 2604: 12,-10 + 2607: 3,-20 + 2610: 9,-17 + 2623: 6,16 + 2631: 6,17 + 2639: 6,18 + 2647: 6,19 + 2655: 6,20 + 2659: 9,24 + 2662: 9,28 + 2675: 0,1 + 2683: 1,1 + 2691: 2,1 + 2699: 3,0 + 2707: 3,1 + 2715: 4,0 + 2723: 4,1 + 2731: 8,12 + 2735: 9,4 + 2738: 9,12 + 2751: -8,12 + 2759: -4,0 + 2767: -4,1 + 2775: -3,0 + 2783: -3,1 + 2791: -2,1 + 2799: -1,1 + 2813: -4,-1 + 2821: 4,-1 + 2825: 10,-16 + 2828: 12,-10 + 2831: 3,-20 + 2834: 9,-17 + 2847: 6,16 + 2855: 6,17 + 2863: 6,18 + 2871: 6,19 + 2879: 6,20 + 2883: 9,24 + 2886: 9,28 + 2899: 0,1 + 2907: 1,1 + 2915: 2,1 + 2923: 3,0 + 2931: 3,1 + 2939: 4,0 + 2947: 4,1 + 2955: 8,12 + 2959: 9,4 + 2962: 9,12 + 2975: -8,12 + 2983: -4,0 + 2991: -4,1 + 2999: -3,0 + 3007: -3,1 + 3015: -2,1 + 3023: -1,1 + 3037: -4,-1 + 3045: 4,-1 + 3049: 10,-16 + 3052: 12,-10 + 3055: 3,-20 + 3058: 9,-17 + 3071: 6,16 + 3079: 6,17 + 3087: 6,18 + 3095: 6,19 + 3103: 6,20 + 3107: 9,24 + 3110: 9,28 + 3123: 0,1 + 3131: 1,1 + 3139: 2,1 + 3147: 3,0 + 3155: 3,1 + 3163: 4,0 + 3171: 4,1 + 3179: 8,12 + 3183: 9,4 + 3186: 9,12 + 3199: -8,12 + 3207: -4,0 + 3215: -4,1 + 3223: -3,0 + 3231: -3,1 + 3239: -2,1 + 3247: -1,1 + 3261: -4,-1 + 3269: 4,-1 + 3273: 10,-16 + 3276: 12,-10 + 3279: 3,-20 + 3282: 9,-17 + 3295: 6,16 + 3303: 6,17 + 3311: 6,18 + 3319: 6,19 + 3327: 6,20 + 3331: 9,24 + 3334: 9,28 + 3371: 0,1 + 3380: 1,1 + 3389: 2,1 + 3403: 3,0 + 3411: 3,1 + 3419: 4,0 + 3427: 4,1 + 3435: 8,12 + 3439: 9,4 + 3442: 9,12 + 3455: -8,12 + 3463: -4,0 + 3471: -4,1 + 3479: -3,0 + 3487: -3,1 + 3495: -2,1 + 3509: -1,1 + 3524: -4,-1 + 3532: 4,-1 + 3536: 10,-16 + 3539: 12,-10 + 3542: 3,-20 + 3545: 9,-17 + 3558: 6,16 + 3566: 6,17 + 3574: 6,18 + 3582: 6,19 + 3590: 6,20 + 3594: 9,24 + 3597: 9,28 + 3619: 0,1 + 3629: 1,1 + 3639: 2,1 + 3656: 3,0 + 3664: 3,1 + 3672: 4,0 + 3680: 4,1 + 3688: 8,12 + 3692: 9,4 + 3695: 9,12 + 3708: -8,12 + 3716: -4,0 + 3724: -4,1 + 3732: -3,0 + 3740: -3,1 + 3748: -2,1 + 3765: -1,1 + 3781: -4,-1 + 3789: 4,-1 + 3793: 10,-16 + 3796: 12,-10 + 3799: 3,-20 + 3802: 9,-17 + 3815: 6,16 + 3823: 6,17 + 3831: 6,18 + 3839: 6,19 + 3847: 6,20 + 3851: 9,24 + 3854: 9,28 + 3867: 0,1 + 3877: 1,1 + 3887: 2,1 + 3904: 3,0 + 3912: 3,1 + 3920: 4,0 + 3928: 4,1 + 3936: 8,12 + 3940: 9,4 + 3943: 9,12 + 3956: -8,12 + 3964: -4,0 + 3972: -4,1 + 3980: -3,0 + 3988: -3,1 + 3996: -2,1 + 4013: -1,1 + 4026: -4,-1 + 4034: 4,-1 + 4038: 10,-16 + 4041: 3,-20 + 4044: 9,-17 + 4057: 6,16 + 4065: 6,17 + 4073: 6,18 + 4081: 6,19 + 4089: 6,20 + 4093: 9,24 + 4096: 9,28 + 4108: 12,-10 + 4115: 0,1 + 4125: 1,1 + 4135: 2,1 + 4152: 3,0 + 4160: 3,1 + 4168: 4,0 + 4176: 4,1 + 4184: 8,12 + 4188: 9,4 + 4191: 9,12 + 4204: -8,12 + 4212: -4,0 + 4220: -4,1 + 4228: -3,0 + 4236: -3,1 + 4244: -2,1 + 4261: -1,1 + 4277: -4,-1 + 4285: 4,-1 + 4289: 10,-16 + 4292: 12,-10 + 4295: 3,-20 + 4298: 9,-17 + 4311: 6,16 + 4319: 6,17 + 4327: 6,18 + 4335: 6,19 + 4343: 6,20 + 4347: 9,24 + 4350: 9,28 + 4363: 0,1 + 4373: 1,1 + 4383: 2,1 + 4400: 3,0 + 4408: 3,1 + 4416: 4,0 + 4424: 4,1 + 4432: 8,12 + 4436: 9,4 + 4439: 9,12 + 4452: -8,12 + 4460: -4,0 + 4468: -4,1 + 4476: -3,0 + 4484: -3,1 + 4492: -2,1 + 4509: -1,1 + 4525: -4,-1 + 4533: 4,-1 + 4537: 10,-16 + 4540: 12,-10 + 4543: 3,-20 + 4546: 9,-17 + 4559: 6,16 + 4567: 6,17 + 4575: 6,18 + 4583: 6,19 + 4591: 6,20 + 4595: 9,24 + 4598: 9,28 + 4611: 0,1 + 4621: 1,1 + 4631: 2,1 + 4648: 3,0 + 4656: 3,1 + 4664: 4,0 + 4672: 4,1 + 4680: 8,12 + 4684: 9,4 + 4687: 9,12 + 4700: -8,12 + 4708: -4,0 + 4716: -4,1 + 4724: -3,0 + 4732: -3,1 + 4740: -2,1 + 4757: -1,1 + 4773: -4,-1 + 4781: 4,-1 + 4785: 10,-16 + 4788: 12,-10 + 4791: 3,-20 + 4794: 9,-17 + 4807: 6,16 + 4815: 6,17 + 4823: 6,18 + 4831: 6,19 + 4839: 6,20 + 4843: 9,24 + 4846: 9,28 + 4874: 0,1 + 4884: 1,1 + 4894: 2,1 + 4911: 3,0 + 4919: 3,1 + 4927: 4,0 + 4935: 4,1 + 4943: 8,12 + 4947: 9,4 + 4950: 9,12 + 4963: -8,12 + 4971: -4,0 + 4979: -4,1 + 4987: -3,0 + 4995: -3,1 + 5003: -2,1 + 5020: -1,1 + 5036: -4,-1 + 5044: 4,-1 + 5048: 10,-16 + 5051: 12,-10 + 5054: 3,-20 + 5057: 9,-17 + 5070: 6,16 + 5078: 6,17 + 5086: 6,18 + 5094: 6,19 + 5102: 6,20 + 5106: 9,24 + 5109: 9,28 + 5122: 0,1 + 5132: 1,1 + 5142: 2,1 + 5159: 3,0 + 5167: 3,1 + 5175: 4,0 + 5183: 4,1 + 5191: 8,12 + 5195: 9,4 + 5198: 9,12 + 5211: -8,12 + 5219: -4,0 + 5227: -4,1 + 5235: -3,0 + 5243: -3,1 + 5251: -2,1 + 5268: -1,1 + 5284: -4,-1 + 5292: 4,-1 + 5296: 10,-16 + 5299: 12,-10 + 5302: 3,-20 + 5305: 9,-17 + 5318: 6,16 + 5326: 6,17 + 5334: 6,18 + 5342: 6,19 + 5350: 6,20 + 5354: 9,24 + 5357: 9,28 + 5392: 0,1 + 5402: 1,1 + 5412: 2,1 + 5429: 3,0 + 5437: 3,1 + 5445: 4,0 + 5453: 4,1 + 5461: 8,12 + 5465: 9,4 + 5468: 9,12 + 5481: -8,12 + 5489: -4,0 + 5497: -4,1 + 5505: -3,0 + 5513: -3,1 + 5521: -2,1 + 5538: -1,1 + 5554: -4,-1 + 5562: 4,-1 + 5566: 10,-16 + 5569: 12,-10 + 5572: 3,-20 + 5575: 9,-17 + 5588: 6,16 + 5596: 6,17 + 5604: 6,18 + 5612: 6,19 + 5620: 6,20 + 5624: 9,24 + 5627: 9,28 + 5640: 0,1 + 5650: 1,1 + 5660: 2,1 + 5677: 3,0 + 5685: 3,1 + 5693: 4,0 + 5701: 4,1 + 5709: 8,12 + 5713: 9,4 + 5716: 9,12 + 5729: -8,12 + 5737: -4,0 + 5745: -4,1 + 5753: -3,0 + 5761: -3,1 + 5769: -2,1 + 5786: -1,1 + 5802: -4,-1 + 5810: 4,-1 + 5814: 10,-16 + 5817: 12,-10 + 5820: 3,-20 + 5823: 9,-17 + 5836: 6,16 + 5844: 6,17 + 5852: 6,18 + 5860: 6,19 + 5868: 6,20 + 5872: 9,24 + 5875: 9,28 + 5896: 0,1 + 5906: 1,1 + 5916: 2,1 + 5933: 3,0 + 5941: 3,1 + 5949: 4,0 + 5957: 4,1 + 5965: 8,12 + 5969: 9,4 + 5972: 9,12 + 5985: -8,12 + 5993: -4,0 + 6001: -4,1 + 6009: -3,0 + 6017: -3,1 + 6025: -2,1 + 6042: -1,1 + 6058: -4,-1 + 6066: 4,-1 + 6070: 10,-16 + 6073: 12,-10 + 6076: 3,-20 + 6079: 9,-17 + 6092: 6,16 + 6100: 6,17 + 6108: 6,18 + 6116: 6,19 + 6124: 6,20 + 6128: 9,24 + 6131: 9,28 + 6144: 0,1 + 6154: 1,1 + 6164: 2,1 + 6181: 3,0 + 6189: 3,1 + 6197: 4,0 + 6205: 4,1 + 6213: 8,12 + 6217: 9,4 + 6220: 9,12 + 6233: -8,12 + 6241: -4,0 + 6249: -4,1 + 6257: -3,0 + 6265: -3,1 + 6273: -2,1 + 6290: -1,1 + 6306: -4,-1 + 6314: 4,-1 + 6318: 10,-16 + 6321: 12,-10 + 6324: 3,-20 + 6327: 9,-17 + 6340: 6,16 + 6348: 6,17 + 6356: 6,18 + 6364: 6,19 + 6372: 6,20 + 6376: 9,24 + 6379: 9,28 + 6392: 0,1 + 6402: 1,1 + 6412: 2,1 + 6429: 3,0 + 6437: 3,1 + 6445: 4,0 + 6453: 4,1 + 6457: 9,4 + 6460: 9,12 + 6473: -8,12 + 6481: -4,0 + 6489: -4,1 + 6497: -3,0 + 6505: -3,1 + 6513: -2,1 + 6530: -1,1 + 6546: -4,-1 + 6554: 4,-1 + 6558: 10,-16 + 6561: 12,-10 + 6564: 3,-20 + 6567: 9,-17 + 6580: 6,16 + 6588: 6,17 + 6596: 6,18 + 6604: 6,19 + 6612: 6,20 + 6616: 9,24 + 6619: 9,28 + 6634: 8,12 + 6662: 0,1 + 6672: 1,1 + 6682: 2,1 + 6699: 3,0 + 6707: 3,1 + 6715: 4,0 + 6723: 4,1 + 6731: 8,12 + 6735: 9,4 + 6738: 9,12 + 6751: -8,12 + 6759: -4,0 + 6767: -4,1 + 6775: -3,0 + 6783: -3,1 + 6791: -2,1 + 6808: -1,1 + 6824: -4,-1 + 6832: 4,-1 + 6836: 10,-16 + 6839: 12,-10 + 6842: 3,-20 + 6845: 9,-17 + 6858: 6,16 + 6866: 6,17 + 6874: 6,18 + 6882: 6,19 + 6890: 6,20 + 6894: 9,24 + 6897: 9,28 - node: color: '#FFFFFFFF' id: Rust decals: - 894: -6,11 - 895: -1,11 - 896: -8,34 + 805: -6,11 + 806: -1,11 + 807: -8,34 - node: color: '#FFFFFFFF' id: TechCornerN decals: - 292: -5,31 + 261: -5,31 - node: color: '#FFFFFFFF' id: TechE decals: - 255: 7,6 - 284: -2,30 - 285: -2,31 - 295: -4,36 - 296: -4,37 - 309: 1,22 - 310: 1,23 - 311: 1,24 - 312: 1,25 - 313: 1,26 - 406: 5,25 - 407: 5,26 - 408: 5,27 - 462: -2,-7 - 463: -2,-6 - 506: 6,-4 - 507: 6,-3 - 508: 6,-2 - 509: 6,-1 - 510: 6,0 - 511: 6,1 - 512: 6,2 - 591: -10,-13 - 592: -10,-11 + 253: -2,30 + 254: -2,31 + 264: -4,36 + 265: -4,37 + 351: 5,25 + 352: 5,26 + 353: 5,27 + 406: -2,-7 + 407: -2,-6 + 450: 6,-4 + 451: 6,-3 + 452: 6,-2 + 453: 6,-1 + 454: 6,0 + 455: 6,1 + 456: 6,2 + 535: -10,-13 + 536: -10,-11 + - node: + color: '#FFFFFFFF' + id: TechN + decals: + 260: -6,31 + 333: -8,25 + 334: -7,25 + 340: -6,25 + 345: 6,25 + 346: 7,25 + 347: 8,25 + 382: 2,15 + 383: 3,15 + 384: -2,15 + 385: -3,15 + 386: 4,15 + 387: -4,15 + 410: 3,-5 + 411: -3,-5 + 416: -1,-4 + 417: 0,-4 + 418: 1,-4 + 499: 9,-13 + 500: 10,-13 + 533: -9,-14 + 534: -8,-14 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechN decals: - 242: 6,10 - 252: 6,7 - 291: -6,31 - 303: 0,27 - 388: -8,25 - 389: -7,25 - 395: -6,25 - 400: 6,25 - 401: 7,25 - 402: 8,25 - 438: 2,15 - 439: 3,15 - 440: -2,15 - 441: -3,15 - 442: 4,15 - 443: -4,15 - 466: 3,-5 - 467: -3,-5 - 472: -1,-4 - 473: 0,-4 - 474: 1,-4 - 555: 9,-13 - 556: 10,-13 - 589: -9,-14 - 590: -8,-14 + 6639: 6,6 + 6645: 6,11 + - node: + color: '#FFFFFFFF' + id: TechNE + decals: + 408: -2,-5 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 245: 7,10 - 248: 7,7 - 300: 1,27 - 464: -2,-5 + 6628: 7,6 + 6641: 7,11 + - node: + color: '#FFFFFFFF' + id: TechNW + decals: + 409: 2,-5 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNW decals: - 246: 5,10 - 250: 5,7 - 301: -1,27 - 465: 2,-5 + 6638: 5,6 + 6642: 5,11 + - node: + color: '#FFFFFFFF' + id: TechS + decals: + 240: -1,32 + 241: 0,32 + 242: 1,32 + 335: -8,27 + 336: -7,27 + 341: -6,27 + 348: 6,27 + 349: 8,27 + 350: 7,27 + 369: 7,28 + 370: 6,28 + 371: -7,28 + 372: -6,28 + 414: 3,-3 + 415: -3,-3 + 487: -1,-7 + 488: 0,-7 + 489: 1,-7 + 490: -1,-3 + 491: 1,-3 + 492: 0,-3 + 497: 9,-11 + 498: 10,-11 + 531: -9,-10 + 532: -8,-10 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechS decals: - 243: 6,9 - 253: 6,5 - 271: -1,32 - 272: 0,32 - 273: 1,32 - 314: 0,21 - 390: -8,27 - 391: -7,27 - 396: -6,27 - 403: 6,27 - 404: 8,27 - 405: 7,27 - 424: 7,28 - 425: 6,28 - 426: -7,28 - 427: -6,28 - 470: 3,-3 - 471: -3,-3 - 543: -1,-7 - 544: 0,-7 - 545: 1,-7 - 546: -1,-3 - 547: 1,-3 - 548: 0,-3 - 553: 9,-11 - 554: 10,-11 - 587: -9,-10 - 588: -8,-10 + 6640: 6,5 + 6646: 6,10 + - node: + color: '#FFFFFFFF' + id: TechSE + decals: + 413: -2,-3 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSE decals: - 247: 7,9 - 251: 7,5 - 302: 1,21 - 469: -2,-3 + 6637: 7,5 + 6644: 7,10 + - node: + color: '#FFFFFFFF' + id: TechSW + decals: + 412: 2,-3 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSW decals: - 244: 5,9 - 249: 5,5 - 299: -1,21 - 468: 2,-3 + 6627: 5,5 + 6643: 5,10 - node: color: '#FFFFFFFF' id: TechW decals: - 254: 5,6 - 286: 2,30 - 287: 2,31 - 288: -5,32 - 289: -5,33 - 290: -5,34 - 297: 4,36 - 298: 4,37 - 304: -1,22 - 305: -1,23 - 306: -1,24 - 307: -1,25 - 308: -1,26 - 397: -5,25 - 398: -5,26 - 399: -5,27 - 460: 2,-7 - 461: 2,-6 - 513: -6,-4 - 514: -6,-3 - 515: -6,-2 - 516: -6,-1 - 517: -6,0 - 518: -6,1 - 519: -6,2 - 557: 10,-12 + 255: 2,30 + 256: 2,31 + 257: -5,32 + 258: -5,33 + 259: -5,34 + 266: 4,36 + 267: 4,37 + 342: -5,25 + 343: -5,26 + 344: -5,27 + 404: 2,-7 + 405: 2,-6 + 457: -6,-4 + 458: -6,-3 + 459: -6,-2 + 460: -6,-1 + 461: -6,0 + 462: -6,1 + 463: -6,2 + 501: 10,-12 + - node: + color: '#EFB34196' + id: TrimWarnNorth + decals: + 4858: 0,22 + 5369: 0,25 + - node: + color: '#EFB34196' + id: TrimWarnNorthEast + decals: + 4856: 1,22 + 5368: 1,25 + - node: + color: '#EFB34196' + id: TrimWarnNorthWest + decals: + 4857: -1,22 + 5367: -1,25 + - node: + color: '#EFB34196' + id: TrimWarnSouth + decals: + 4859: 0,21 + 5370: 0,24 + - node: + color: '#EFB34196' + id: TrimWarnSouthEast + decals: + 4854: 1,21 + 5365: 1,24 + - node: + color: '#EFB34196' + id: TrimWarnSouthWest + decals: + 4855: -1,21 + 5366: -1,24 + - node: + color: '#EFB34196' + id: TrimlineEast + decals: + 5374: -2,23 + 5377: 2,23 + - node: + color: '#EFB34196' + id: TrimlineNorthEnd + decals: + 5375: -2,24 + 5378: 2,24 + - node: + color: '#EFB34196' + id: TrimlineSouthEnd + decals: + 4860: 2,22 + 4861: -2,22 + - node: + color: '#EFB34196' + id: TrimlineWest + decals: + 5373: -2,23 + 5376: 2,23 - node: color: '#EFB34196' id: WarnBoxGreyscale decals: - 38: -7,16 - 39: -7,18 - 40: -7,20 - 41: 7,20 - 42: 7,18 - 43: 7,16 - 44: -8,22 - 45: -8,13 - 46: 8,13 - 47: 8,22 - 56: 8,-20 - 57: 0,-21 - 58: -8,-20 - 59: -7,34 - 60: -8,34 - 61: 7,34 - 62: 8,34 - 64: -7,36 - 65: 7,36 - 151: -8,2 - 152: -8,-4 - 153: 8,-4 - 154: 8,2 - 155: -6,38 - 156: 6,38 - 157: 8,-1 - 158: -8,-1 + 30: -7,16 + 31: -7,18 + 32: -7,20 + 33: 7,20 + 34: 7,18 + 35: 7,16 + 36: -8,22 + 37: -8,13 + 38: 8,13 + 39: 8,22 + 48: 8,-20 + 49: 0,-21 + 50: -8,-20 + 51: -7,34 + 52: -8,34 + 53: 7,34 + 54: 8,34 + 56: -7,36 + 57: 7,36 + 142: -8,2 + 143: -8,-4 + 144: 8,-4 + 145: 8,2 + 146: -6,38 + 147: 6,38 + 148: 8,-1 + 149: -8,-1 + - node: + color: '#EFB34196' + id: WarnCornerSmallNE + decals: + 246: 2,30 + 263: -5,34 + 301: -4,20 + 302: 2,20 + 5382: 2,24 - node: + angle: 6.283185307179586 rad color: '#EFB34196' id: WarnCornerSmallNE decals: - 262: 5,5 - 277: 2,30 - 294: -5,34 - 356: -4,20 - 357: 2,20 + 4867: -4,24 + - node: + color: '#EFB34196' + id: WarnCornerSmallNW + decals: + 244: -2,30 + 299: 4,20 + 300: -2,20 + 5381: -2,24 - node: + angle: 6.283185307179586 rad color: '#EFB34196' id: WarnCornerSmallNW decals: - 260: 7,5 - 275: -2,30 - 354: 4,20 - 355: -2,20 + 4868: 4,24 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: - 263: 5,7 - 282: -1,30 - 346: 2,24 - 347: -4,24 - 348: -4,28 - 349: 2,28 + 251: -1,30 + 293: -4,24 + 294: -4,28 + 295: 2,28 + 5384: 2,24 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: - 261: 7,7 - 283: 1,30 - 350: 4,28 - 351: -2,28 - 352: -2,24 - 353: 4,24 + 252: 1,30 + 296: 4,28 + 297: -2,28 + 298: 4,24 + 5380: -2,24 - node: color: '#EFB34196' id: WarnEndE decals: - 24: 7,11 - 25: 7,11 - 100: 3,-17 - 101: 3,-17 + 92: 3,-17 + 93: 3,-17 - node: color: '#EFB34196' id: WarnEndW decals: - 26: 5,11 - 27: 5,11 - 98: 2,-17 - 99: 2,-17 + 90: 2,-17 + 91: 2,-17 - node: color: '#EFB34196' id: WarnFull decals: - 392: -8,26 - 393: -7,26 - 409: 7,26 - 410: 8,26 - 428: -4,16 - 429: -4,17 - 430: -4,18 - 431: -2,18 + 337: -8,26 + 338: -7,26 + 354: 7,26 + 355: 8,26 + 373: -4,16 + 374: -4,17 + 375: -4,18 - node: color: '#EFB34196' id: WarnFullGreyscale @@ -4488,345 +7038,361 @@ entities: 21: -8,31 22: 8,31 23: 8,30 - 32: -8,32 - 33: 8,32 - 34: 10,-8 - 35: 9,-8 - 36: -9,-8 - 37: -10,-8 - 48: -6,37 - 49: -5,38 - 50: 5,38 - 51: 6,37 - 52: -8,-5 - 53: -8,3 - 54: 8,3 - 55: 8,-5 + 24: -8,32 + 25: 8,32 + 26: 10,-8 + 27: 9,-8 + 28: -9,-8 + 29: -10,-8 + 40: -6,37 + 41: -5,38 + 42: 5,38 + 43: 6,37 + 44: -8,-5 + 45: -8,3 + 46: 8,3 + 47: 8,-5 - node: color: '#EFB34196' id: WarnLineE decals: - 88: -7,-12 - 89: -7,-12 - 94: 8,-12 - 95: 8,-12 - 102: -3,31 - 103: -3,31 - 124: -4,6 - 125: -4,6 - 126: 3,31 - 127: 3,31 - 130: 1,16 - 131: 1,16 - 134: 4,8 - 135: 4,8 - 149: -1,16 - 150: -1,16 - 159: -7,-2 - 160: -7,0 - 161: -7,0 - 162: -7,-2 - 163: 7,-2 - 164: 7,-2 - 165: 7,0 - 166: 7,0 - 175: 1,38 - 178: 1,37 - 179: 1,35 - 180: 1,36 - 189: -9,27 - 190: -9,27 - 191: -9,26 - 192: -9,26 - 193: -9,25 - 194: -9,25 - 195: 9,27 - 196: 9,27 - 197: 9,26 - 198: 9,26 - 199: 9,25 - 200: 9,25 - 201: -8,22 - 213: -8,13 - 214: -7,15 - 215: -7,16 - 216: -7,18 - 217: -7,20 - 218: -8,2 - 219: -8,-1 - 220: -8,-4 - 256: 5,6 - 265: 3,36 - 266: 3,37 - 270: -5,36 - 276: 2,31 - 315: 2,25 - 316: 2,26 - 317: 2,27 - 318: -4,25 - 319: -4,26 - 320: -4,21 - 321: -4,22 - 322: -4,23 - 323: 2,21 - 324: 2,22 - 325: 2,23 - 378: 4,25 - 379: 4,26 - 380: 4,27 - 411: 6,26 - 412: 9,25 - 413: 9,26 - 414: 9,27 - 415: -9,25 - 416: -9,26 - 417: -9,27 - 444: 4,3 - 445: -4,3 - 448: -6,13 - 449: -6,14 - 476: 3,-4 - 490: -5,-4 - 530: -5,3 - 558: -8,-13 - 559: -8,-12 - 560: -8,-11 + 80: -7,-12 + 81: -7,-12 + 86: 8,-12 + 87: 8,-12 + 94: -3,31 + 95: -3,31 + 116: -4,6 + 117: -4,6 + 118: 3,31 + 119: 3,31 + 122: 1,16 + 123: 1,16 + 126: 4,8 + 127: 4,8 + 140: -1,16 + 141: -1,16 + 150: -7,-2 + 151: -7,0 + 152: -7,0 + 153: -7,-2 + 154: 7,-2 + 155: 7,-2 + 156: 7,0 + 157: 7,0 + 166: 1,38 + 169: 1,37 + 170: 1,35 + 171: 1,36 + 180: -9,27 + 181: -9,27 + 182: -9,26 + 183: -9,26 + 184: -9,25 + 185: -9,25 + 186: 9,27 + 187: 9,27 + 188: 9,26 + 189: 9,26 + 190: 9,25 + 191: 9,25 + 192: -8,22 + 204: -8,13 + 205: -7,15 + 206: -7,16 + 207: -7,18 + 208: -7,20 + 209: -8,2 + 210: -8,-1 + 211: -8,-4 + 234: 3,36 + 235: 3,37 + 239: -5,36 + 245: 2,31 + 268: 2,25 + 269: 2,26 + 270: 2,27 + 271: -4,25 + 272: -4,26 + 273: -4,21 + 274: -4,22 + 275: -4,23 + 323: 4,25 + 324: 4,26 + 325: 4,27 + 356: 6,26 + 357: 9,25 + 358: 9,26 + 359: 9,27 + 360: -9,25 + 361: -9,26 + 362: -9,27 + 388: 4,3 + 389: -4,3 + 392: -6,13 + 393: -6,14 + 420: 3,-4 + 434: -5,-4 + 474: -5,3 + 502: -8,-13 + 503: -8,-12 + 504: -8,-11 + 5383: 2,23 + 5885: 1,17 + 5886: 1,15 + 5887: -1,15 + 5888: -1,17 + - node: + angle: 3.141592653589793 rad + color: '#EFB34196' + id: WarnLineE + decals: + 4864: -2,22 + 4865: -2,21 - node: + angle: 6.283185307179586 rad color: '#EFB34196' - id: WarnLineGreyscaleE + id: WarnLineE decals: - 138: 7,8 + 4862: 2,22 + 4863: 2,21 + 4866: -4,27 + 6651: 7,9 + 6652: 7,7 + 6653: 7,8 - node: color: '#EFB34196' id: WarnLineN decals: - 28: 6,11 - 29: 6,11 - 68: 0,13 - 69: 0,13 - 70: 0,19 - 71: 0,19 - 76: -6,-8 - 77: -6,-8 - 78: 7,-8 - 79: 7,-8 - 82: 5,-15 - 83: 5,-15 - 92: -3,-15 - 93: -3,-15 - 108: -4,35 - 109: -4,35 - 110: 4,35 - 111: 4,35 - 116: -6,23 - 117: -6,23 - 118: 6,23 - 119: 6,23 - 143: -6,15 - 144: -6,15 - 145: 6,15 - 146: 6,15 - 224: -8,8 - 225: -8,8 - 241: -8,9 - 257: 6,7 - 281: 0,30 - 338: 3,28 - 339: -3,28 - 340: -3,24 - 341: 3,24 - 364: 0,20 - 432: -3,19 - 434: 2,19 - 435: 3,19 - 495: -6,-5 - 496: -5,-5 - 497: 5,-5 - 498: 6,-5 - 564: -5,-14 - 565: -3,-14 + 60: 0,13 + 61: 0,13 + 62: 0,19 + 63: 0,19 + 68: -6,-8 + 69: -6,-8 + 70: 7,-8 + 71: 7,-8 + 74: 5,-15 + 75: 5,-15 + 84: -3,-15 + 85: -3,-15 + 100: -4,35 + 101: -4,35 + 102: 4,35 + 103: 4,35 + 108: -6,23 + 109: -6,23 + 110: 6,23 + 111: 6,23 + 134: -6,15 + 135: -6,15 + 136: 6,15 + 137: 6,15 + 215: -8,8 + 216: -8,8 + 232: -8,9 + 250: 0,30 + 285: 3,28 + 286: -3,28 + 287: -3,24 + 288: 3,24 + 309: 0,20 + 376: -3,19 + 378: 2,19 + 379: 3,19 + 439: -6,-5 + 440: -5,-5 + 441: 5,-5 + 442: 6,-5 + 508: -5,-14 + 509: -3,-14 + 5883: -2,19 - node: color: '#EFB34196' id: WarnLineS decals: - 86: -7,-12 - 87: -7,-12 - 96: 8,-12 - 97: 8,-12 - 120: -3,31 - 121: -3,31 - 122: -4,6 - 123: -4,6 - 128: 3,31 - 129: 3,31 - 132: 1,16 - 133: 1,16 - 136: 4,8 - 137: 4,8 - 147: -1,16 - 148: -1,16 - 167: -7,0 - 168: -7,0 - 169: -7,-2 - 170: -7,-2 - 171: 7,-2 - 172: 7,-2 - 173: 7,0 - 174: 7,0 - 176: -1,38 - 177: -1,37 - 181: -1,36 - 182: -1,35 - 183: -9,25 - 184: -9,25 - 185: -9,26 - 186: -9,26 - 187: -9,27 - 188: -9,27 - 202: 9,27 - 203: 9,27 - 204: 9,26 - 205: 9,26 - 206: 9,25 - 207: 9,25 - 208: 8,22 - 209: 7,20 - 210: 7,18 - 211: 7,16 - 212: 8,13 - 221: 8,-4 - 222: 8,-1 - 223: 8,2 - 258: 7,6 - 264: 5,8 - 267: -3,36 - 268: -3,37 - 269: 5,36 - 274: -2,31 - 326: 4,21 - 327: 4,22 - 328: 4,23 - 329: 4,25 - 330: 4,26 - 331: 4,27 - 332: -2,21 - 333: -2,22 - 334: -2,23 - 335: -2,25 - 336: -2,26 - 337: -2,27 - 376: -4,25 - 377: -4,26 - 394: -6,26 - 418: -9,25 - 419: -9,26 - 420: -9,27 - 421: 9,25 - 422: 9,26 - 423: 9,27 - 446: 4,3 - 447: -4,3 - 450: 6,13 - 451: 6,14 - 475: -3,-4 - 489: 5,-4 - 529: 5,3 - 561: -6,-13 - 562: -6,-12 - 563: -6,-11 + 78: -7,-12 + 79: -7,-12 + 88: 8,-12 + 89: 8,-12 + 112: -3,31 + 113: -3,31 + 114: -4,6 + 115: -4,6 + 120: 3,31 + 121: 3,31 + 124: 1,16 + 125: 1,16 + 128: 4,8 + 129: 4,8 + 138: -1,16 + 139: -1,16 + 158: -7,0 + 159: -7,0 + 160: -7,-2 + 161: -7,-2 + 162: 7,-2 + 163: 7,-2 + 164: 7,0 + 165: 7,0 + 167: -1,38 + 168: -1,37 + 172: -1,36 + 173: -1,35 + 174: -9,25 + 175: -9,25 + 176: -9,26 + 177: -9,26 + 178: -9,27 + 179: -9,27 + 193: 9,27 + 194: 9,27 + 195: 9,26 + 196: 9,26 + 197: 9,25 + 198: 9,25 + 199: 8,22 + 200: 7,20 + 201: 7,18 + 202: 7,16 + 203: 8,13 + 212: 8,-4 + 213: 8,-1 + 214: 8,2 + 233: 5,8 + 236: -3,36 + 237: -3,37 + 238: 5,36 + 243: -2,31 + 276: 4,21 + 277: 4,22 + 278: 4,23 + 279: 4,25 + 280: 4,26 + 281: 4,27 + 282: -2,25 + 283: -2,26 + 284: -2,27 + 321: -4,25 + 322: -4,26 + 339: -6,26 + 363: -9,25 + 364: -9,26 + 365: -9,27 + 366: 9,25 + 367: 9,26 + 368: 9,27 + 390: 4,3 + 391: -4,3 + 394: 6,13 + 395: 6,14 + 419: -3,-4 + 433: 5,-4 + 473: 5,3 + 505: -6,-13 + 506: -6,-12 + 507: -6,-11 + 5379: -2,23 + 5889: -1,17 + 5890: -1,15 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: WarnLineS + decals: + 6654: 5,9 + 6655: 5,7 - node: color: '#EFB34196' id: WarnLineW decals: - 30: 6,11 - 31: 6,11 - 66: 0,13 - 67: 0,13 - 72: 0,19 - 73: 0,19 - 74: -6,-8 - 75: -6,-8 - 80: 7,-8 - 81: 7,-8 - 84: 5,-15 - 85: 5,-15 - 90: -3,-15 - 91: -3,-15 - 104: -4,35 - 105: -4,35 - 106: 4,35 - 107: 4,35 - 112: -6,23 - 113: -6,23 - 114: 6,23 - 115: 6,23 - 139: -6,15 - 140: -6,15 - 141: 6,15 - 142: 6,15 - 259: 6,5 - 278: -1,31 - 279: 0,31 - 280: 1,31 - 293: -4,34 - 342: 3,20 - 343: -3,20 - 344: -3,24 - 345: 3,24 - 387: 0,28 - 433: -3,19 - 436: 2,19 - 437: 3,19 - 491: 5,-5 - 492: 6,-5 - 493: -5,-5 - 494: -6,-5 - 549: 3,-13 - 550: 4,-13 - 551: 5,-13 - 552: 6,-13 - 566: -3,-16 - 567: -5,-16 + 58: 0,13 + 59: 0,13 + 64: 0,19 + 65: 0,19 + 66: -6,-8 + 67: -6,-8 + 72: 7,-8 + 73: 7,-8 + 76: 5,-15 + 77: 5,-15 + 82: -3,-15 + 83: -3,-15 + 96: -4,35 + 97: -4,35 + 98: 4,35 + 99: 4,35 + 104: -6,23 + 105: -6,23 + 106: 6,23 + 107: 6,23 + 130: -6,15 + 131: -6,15 + 132: 6,15 + 133: 6,15 + 247: -1,31 + 248: 0,31 + 249: 1,31 + 262: -4,34 + 289: 3,20 + 290: -3,20 + 291: -3,24 + 292: 3,24 + 332: 0,28 + 377: -3,19 + 380: 2,19 + 381: 3,19 + 435: 5,-5 + 436: 6,-5 + 437: -5,-5 + 438: -6,-5 + 493: 3,-13 + 494: 4,-13 + 495: 5,-13 + 496: 6,-13 + 510: -3,-16 + 511: -5,-16 + 5884: -2,19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 459: 1,-9 + 403: 1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 458: -1,-9 + 402: -1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 457: 1,-11 + 401: 1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 452: -1,-11 + 396: -1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 453: 1,-10 + 397: 1,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 454: 0,-9 + 398: 0,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 455: 0,-11 + 399: 0,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 456: -1,-10 + 400: -1,-10 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -5060,9 +7626,10 @@ entities: id: Clementine - type: StationCargoOrderDatabase orders: [] + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 1204 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad @@ -5070,12 +7637,12 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 12 + - 1139 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic entities: - - uid: 257 + - uid: 3 components: - type: Transform rot: -1.5707963267948966 rad @@ -5083,7 +7650,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 330 + - uid: 4 components: - type: Transform rot: 1.5707963267948966 rad @@ -5091,7 +7658,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 732 + - uid: 5 components: - type: Transform rot: -1.5707963267948966 rad @@ -5099,7 +7666,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 737 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad @@ -5107,7 +7674,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 772 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -5115,7 +7682,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 842 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad @@ -5123,7 +7690,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 948 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad @@ -5131,7 +7698,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 1020 + - uid: 10 components: - type: Transform rot: 1.5707963267948966 rad @@ -5141,14 +7708,14 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 150 + - uid: 11 components: - type: Transform pos: 8.5,-19.5 parent: 1 - type: Physics canCollide: False - - uid: 180 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad @@ -5156,7 +7723,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 563 + - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad @@ -5164,7 +7731,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 564 + - uid: 14 components: - type: Transform rot: 1.5707963267948966 rad @@ -5172,7 +7739,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 566 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad @@ -5180,14 +7747,14 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 727 + - uid: 16 components: - type: Transform pos: -6.5,36.5 parent: 1 - type: Physics canCollide: False - - uid: 728 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad @@ -5195,7 +7762,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 730 + - uid: 18 components: - type: Transform rot: 1.5707963267948966 rad @@ -5203,7 +7770,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 733 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad @@ -5211,14 +7778,14 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 734 + - uid: 20 components: - type: Transform pos: 0.5,-20.5 parent: 1 - type: Physics canCollide: False - - uid: 735 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad @@ -5226,7 +7793,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 736 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad @@ -5234,7 +7801,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 833 + - uid: 23 components: - type: Transform rot: -1.5707963267948966 rad @@ -5242,7 +7809,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 834 + - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad @@ -5250,7 +7817,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 838 + - uid: 25 components: - type: Transform rot: 3.141592653589793 rad @@ -5258,7 +7825,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 952 + - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad @@ -5266,7 +7833,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 966 + - uid: 27 components: - type: Transform pos: -7.5,-19.5 @@ -5275,30 +7842,36 @@ entities: canCollide: False - proto: AcceleratorCannon entities: - - uid: 148 + - uid: 28 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,34.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 25000 + - type: Battery + startingCharge: 77516.22 + - type: ApcPowerReceiverBattery + enabled: True - type: BallisticAmmoProvider entities: - - 746 - - 747 - - 749 - - 752 - - 758 + - 29 + - 30 + - 31 + - 32 + - 33 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: - - 746 - - 747 - - 749 - - 752 - - 758 + - 29 + - 30 + - 31 + - 32 + - 33 SpaceArtillery-CoolantSlot: !type:ContainerSlot showEnts: False occludes: True @@ -5316,7 +7889,7 @@ entities: - type: ItemSlots - proto: AirAlarm entities: - - uid: 2145 + - uid: 34 components: - type: Transform rot: -1.5707963267948966 rad @@ -5324,13 +7897,13 @@ entities: parent: 1 - type: DeviceList devices: - - 2009 - - 2008 - - 2010 - - 2011 - - 2012 - - 2013 - - uid: 2146 + - 1399 + - 1402 + - 1400 + - 1403 + - 1404 + - 1401 + - uid: 35 components: - type: Transform rot: -1.5707963267948966 rad @@ -5338,24 +7911,29 @@ entities: parent: 1 - type: DeviceList configurators: - - 2148 + - 1468 devices: - - 2009 - - 2008 - - 2010 - - 2011 - - 2012 - - 2013 + - 1399 + - 1402 + - 1400 + - 1403 + - 1404 + - 1401 - proto: AirCanister entities: - - uid: 511 + - uid: 36 components: - type: Transform pos: 10.5,-11.5 parent: 1 + - uid: 37 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 - proto: AirlockCommand entities: - - uid: 1012 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad @@ -5363,65 +7941,56 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWL entities: - - uid: 133 + - uid: 39 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 1 - - uid: 394 + - uid: 40 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 1 - - uid: 402 + - uid: 41 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-7.5 parent: 1 - - uid: 567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - - uid: 589 + - uid: 42 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 1 - - uid: 599 + - uid: 43 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 1 - - uid: 661 + - uid: 44 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,19.5 parent: 1 -- proto: AirlockCommandLockedNCWLAdministrator - entities: - - uid: 71 + - uid: 45 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - proto: AirlockCommandLockedNCWLCommandHorizontal entities: - - uid: 274 + - uid: 46 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 521 + - uid: 47 components: - type: Transform rot: -1.5707963267948966 rad @@ -5429,73 +7998,61 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 174 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 243 + - uid: 49 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 989 + - uid: 50 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 1045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - - uid: 1054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - - uid: 1056 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1061 + - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 1062 + - uid: 53 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1293 + - uid: 54 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 1294 + - uid: 55 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 1295 + - uid: 56 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 1296 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad @@ -5503,13 +8060,13 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLJail entities: - - uid: 331 + - uid: 58 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 1 - - uid: 332 + - uid: 59 components: - type: Transform rot: 3.141592653589793 rad @@ -5517,7 +8074,7 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLKommissar entities: - - uid: 364 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad @@ -5525,44 +8082,41 @@ entities: parent: 1 - proto: AirlockExternal entities: - - uid: 374 + - uid: 61 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,21.5 + pos: 4.5,35.5 parent: 1 - - uid: 397 +- proto: AirlockExternalLocked + entities: + - uid: 62 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,21.5 + pos: 6.5,21.5 parent: 1 - - uid: 415 + - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 420 + - uid: 64 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: -5.5,21.5 parent: 1 - - uid: 424 + - uid: 65 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,35.5 + pos: 6.5,15.5 parent: 1 - - uid: 819 + - uid: 66 components: - type: Transform - pos: 4.5,35.5 + pos: -3.5,35.5 parent: 1 - proto: AirlockMaint entities: - - uid: 506 + - uid: 67 components: - type: Transform rot: 3.141592653589793 rad @@ -5570,66 +8124,72 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 281 + - uid: 68 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 286 + - uid: 69 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 507 + - uid: 70 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 1 - - uid: 508 + - uid: 71 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 parent: 1 - - uid: 831 + - uid: 72 components: - type: Transform pos: 8.5,-11.5 parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 - proto: AirlockShuttle entities: - - uid: 479 + - uid: 74 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 494 + - uid: 75 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 603 + - uid: 76 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,38.5 parent: 1 - - uid: 604 + - uid: 77 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,38.5 parent: 1 - - uid: 1156 + - uid: 78 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 1185 + - uid: 79 components: - type: Transform rot: 1.5707963267948966 rad @@ -5637,69 +8197,69 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 520 + - uid: 81 components: - type: Transform - parent: 442 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 664 + - uid: 87 components: - type: Transform - parent: 621 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 674 + - uid: 93 components: - type: Transform - parent: 666 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 702 + - uid: 99 components: - type: Transform - parent: 700 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 763 + - uid: 105 components: - type: Transform - parent: 761 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 775 + - uid: 111 components: - type: Transform - parent: 774 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 805 + - uid: 117 components: - type: Transform - parent: 804 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 813 + - uid: 123 components: - type: Transform - parent: 811 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 470 + - uid: 128 components: - type: Transform pos: 3.5,-12.5 @@ -5712,33 +8272,33 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 471 + ent: 129 - proto: AmeJar entities: - - uid: 471 + - uid: 129 components: - type: Transform - parent: 470 + parent: 128 - type: Physics canCollide: False - - uid: 514 + - uid: 130 components: - type: Transform pos: 2.1912324,-12.405361 parent: 1 - - uid: 515 + - uid: 131 components: - type: Transform pos: 2.3398516,-12.405361 parent: 1 - - uid: 516 + - uid: 132 components: - type: Transform pos: 2.5033343,-12.405361 parent: 1 - proto: AmeShielding entities: - - uid: 191 + - uid: 133 components: - type: Transform pos: 5.5,-9.5 @@ -5746,12 +8306,12 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 192 + - uid: 134 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 193 + - uid: 135 components: - type: Transform pos: 5.5,-10.5 @@ -5759,17 +8319,17 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 194 + - uid: 136 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 300 + - uid: 137 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 301 + - uid: 138 components: - type: Transform pos: 4.5,-9.5 @@ -5777,7 +8337,7 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 302 + - uid: 139 components: - type: Transform pos: 4.5,-10.5 @@ -5785,290 +8345,298 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 303 + - uid: 140 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 304 + - uid: 141 components: - type: Transform pos: 3.5,-8.5 parent: 1 - - uid: 305 + - uid: 142 components: - type: Transform pos: 3.5,-9.5 parent: 1 - - uid: 306 + - uid: 143 components: - type: Transform pos: 3.5,-10.5 parent: 1 - - uid: 307 + - uid: 144 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 309 + - uid: 145 components: - type: Transform pos: 6.5,-8.5 parent: 1 - - uid: 423 + - uid: 146 components: - type: Transform pos: 6.5,-10.5 parent: 1 - - uid: 430 + - uid: 147 components: - type: Transform pos: 6.5,-11.5 parent: 1 - - uid: 435 + - uid: 148 components: - type: Transform pos: 6.5,-9.5 parent: 1 -- proto: AmmoTechFab - entities: - - uid: 1079 - components: - - type: Transform - pos: -2.5,14.5 - parent: 1 - proto: APCBasic entities: - - uid: 1416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 1 - - uid: 1476 + - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 1494 + - uid: 150 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 1496 + - uid: 151 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 1 - - uid: 1531 + - uid: 152 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,19.5 parent: 1 - - uid: 1532 + - uid: 153 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1842 + - uid: 154 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 1 - - uid: 2210 + - uid: 155 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 366 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 388 + - uid: 158 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 1 - - uid: 398 + - uid: 159 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 407 + - uid: 160 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,21.5 parent: 1 - - uid: 408 + - uid: 161 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,21.5 parent: 1 - - uid: 458 + - uid: 162 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,27.5 parent: 1 - - uid: 459 + - uid: 163 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 475 + - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 595 + - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 601 + - uid: 166 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 602 + - uid: 167 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 709 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - uid: 716 + - uid: 169 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,22.5 parent: 1 - - uid: 717 + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 718 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 1 - - uid: 719 + - uid: 172 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 753 + - uid: 173 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 781 + - uid: 174 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 1011 + - uid: 175 components: - type: Transform pos: -0.5,37.5 parent: 1 - - uid: 1015 + - uid: 176 components: - type: Transform pos: 1.5,37.5 parent: 1 - - uid: 1018 + - uid: 177 components: - type: Transform pos: 0.5,37.5 parent: 1 -- proto: Autolathe - entities: - - uid: 951 + - uid: 178 components: - type: Transform - pos: 4.5,17.5 + pos: -6.5,-10.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -6.5,-12.5 parent: 1 - proto: Bed entities: - - uid: 333 + - uid: 181 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 334 + - uid: 182 components: - type: Transform pos: -1.5,-16.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 335 + - uid: 183 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 336 + - uid: 184 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 1 +- proto: BiomassReclaimer + entities: + - uid: 185 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 - proto: BlastDoor entities: - - uid: 512 + - uid: 186 components: - type: Transform pos: 1.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1014 - - uid: 1016 + - 1661 + - uid: 187 components: - type: Transform pos: 0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1014 - - uid: 1017 + - 1661 + - uid: 188 components: - type: Transform pos: -0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1014 - - uid: 2152 + - 1661 + - uid: 189 components: - type: Transform rot: 1.5707963267948966 rad @@ -6076,8 +8644,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2159 - - uid: 2153 + - 1666 + - uid: 190 components: - type: Transform rot: 1.5707963267948966 rad @@ -6085,8 +8653,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2158 - - uid: 2154 + - 1665 + - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad @@ -6094,8 +8662,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2157 - - uid: 2155 + - 1664 + - uid: 192 components: - type: Transform rot: -1.5707963267948966 rad @@ -6103,8 +8671,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2156 - - uid: 2233 + - 1663 + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad @@ -6112,8 +8680,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1141 - - uid: 2234 + - 1662 + - uid: 194 components: - type: Transform rot: -1.5707963267948966 rad @@ -6121,90 +8689,107 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 964 + - 1660 - proto: BlastDoorOpen entities: - - uid: 48 + - uid: 195 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1669 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1668 + - uid: 197 components: - type: Transform pos: 1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 60 + - 1658 + - uid: 198 components: - type: Transform pos: 2.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 63 + - 1658 + - uid: 199 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 64 + - 1658 + - uid: 200 components: - type: Transform pos: -0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 65 + - 1658 + - uid: 201 components: - type: Transform pos: -1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 786 + - 1658 + - uid: 202 components: - type: Transform pos: -1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 787 + - 1658 + - uid: 203 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 788 + - 1658 + - uid: 204 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 789 + - 1658 + - uid: 205 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 790 + - 1658 + - uid: 206 components: - type: Transform pos: 2.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1600 + - 1658 + - uid: 207 components: - type: Transform rot: -1.5707963267948966 rad @@ -6212,8 +8797,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1613 + - 1658 + - uid: 208 components: - type: Transform rot: -1.5707963267948966 rad @@ -6221,8 +8806,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1832 + - 1658 + - uid: 209 components: - type: Transform rot: 1.5707963267948966 rad @@ -6230,8 +8815,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1834 + - 1658 + - uid: 210 components: - type: Transform rot: 1.5707963267948966 rad @@ -6239,20 +8824,88 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 -- proto: BoriaticGeneratorHerculesShuttle - entities: - - uid: 486 + - 1658 + - uid: 211 components: - type: Transform - pos: -5.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 parent: 1 - - type: FuelGenerator - on: False - - type: Physics - bodyType: Static - - uid: 2235 - components: + - type: DeviceLinkSink + links: + - 1667 + - uid: 212 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1669 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1667 + - uid: 214 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1669 + - uid: 215 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1669 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1668 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1668 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1667 +- proto: BoozeDispenser + entities: + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 +- proto: BoriaticGeneratorHerculesShuttle + entities: + - uid: 220 + components: - type: Transform pos: 5.5,-16.5 parent: 1 @@ -6260,4358 +8913,4576 @@ entities: on: False - type: Physics bodyType: Static + - uid: 221 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static - proto: BoxBeaker entities: - - uid: 816 + - uid: 222 components: - type: Transform pos: -4.677565,11.774466 parent: 1 +- proto: BoxFolderBlack + entities: + - uid: 223 + components: + - type: MetaData + name: Volgin Files + - type: Transform + pos: -0.6409803,-9.360698 + parent: 1 +- proto: BoxMRE + entities: + - uid: 224 + components: + - type: Transform + pos: 4.6842628,17.118946 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 0.00010101579391630366 rad + pos: 7.7330775,9.584986 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 7.324431,9.478947 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 7.787846,8.884231 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 7.3696423,8.83902 + parent: 1 - proto: BoxSyringe entities: - - uid: 1022 + - uid: 229 components: - type: Transform - pos: -5.2123933,11.760755 + pos: -4.7007365,11.41998 parent: 1 - type: Physics angularDamping: 0 linearDamping: 0 - proto: ButtonFrameCaution entities: - - uid: 141 + - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 143 + - uid: 231 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 528 + - uid: 232 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 - parent: 1 - - uid: 963 + - uid: 233 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 991 + - uid: 234 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 1288 + - uid: 235 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 2149 + - uid: 236 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 2150 + - uid: 237 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 2151 + - uid: 238 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,14.5 parent: 1 + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 694 + - uid: 242 components: - type: Transform pos: 2.5,35.5 parent: 1 - proto: CableApcExtension entities: - - uid: 570 + - uid: 243 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 571 + - uid: 244 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 572 + - uid: 245 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 573 + - uid: 246 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 574 + - uid: 247 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 575 + - uid: 248 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 576 + - uid: 249 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 577 + - uid: 250 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 723 + - uid: 251 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 724 + - uid: 252 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 729 + - uid: 253 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 780 + - uid: 254 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 806 + - uid: 255 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 913 + - uid: 256 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1107 + - uid: 257 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 1108 + - uid: 258 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 1178 + - uid: 259 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1276 + - uid: 260 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1278 + - uid: 261 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1569 + - uid: 262 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1570 + - uid: 263 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 1571 + - uid: 264 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 1572 + - uid: 265 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 1573 + - uid: 266 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1574 + - uid: 267 components: - type: Transform pos: 0.5,31.5 parent: 1 - - uid: 1575 + - uid: 268 components: - type: Transform pos: -0.5,31.5 parent: 1 - - uid: 1576 + - uid: 269 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 1577 + - uid: 270 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 1578 + - uid: 271 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 1579 + - uid: 272 components: - type: Transform pos: -4.5,31.5 parent: 1 - - uid: 1580 + - uid: 273 components: - type: Transform pos: -4.5,32.5 parent: 1 - - uid: 1581 + - uid: 274 components: - type: Transform pos: -4.5,33.5 parent: 1 - - uid: 1582 + - uid: 275 components: - type: Transform pos: -4.5,34.5 parent: 1 - - uid: 1583 + - uid: 276 components: - type: Transform pos: -4.5,35.5 parent: 1 - - uid: 1584 + - uid: 277 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 1585 + - uid: 278 components: - type: Transform pos: -3.5,36.5 parent: 1 - - uid: 1586 + - uid: 279 components: - type: Transform pos: -3.5,37.5 parent: 1 - - uid: 1587 + - uid: 280 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 1588 + - uid: 281 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 1589 + - uid: 282 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 1590 + - uid: 283 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 1591 + - uid: 284 components: - type: Transform pos: 5.5,32.5 parent: 1 - - uid: 1592 + - uid: 285 components: - type: Transform pos: 5.5,33.5 parent: 1 - - uid: 1593 + - uid: 286 components: - type: Transform pos: 5.5,34.5 parent: 1 - - uid: 1594 + - uid: 287 components: - type: Transform pos: 4.5,34.5 parent: 1 - - uid: 1595 + - uid: 288 components: - type: Transform pos: 4.5,35.5 parent: 1 - - uid: 1596 + - uid: 289 components: - type: Transform pos: 4.5,36.5 parent: 1 - - uid: 1597 + - uid: 290 components: - type: Transform pos: 4.5,37.5 parent: 1 - - uid: 1598 + - uid: 291 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 1599 + - uid: 292 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 1601 + - uid: 293 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1602 + - uid: 294 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 1603 + - uid: 295 components: - type: Transform pos: 7.5,36.5 parent: 1 - - uid: 1604 + - uid: 296 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1605 + - uid: 297 components: - type: Transform pos: 7.5,34.5 parent: 1 - - uid: 1606 + - uid: 298 components: - type: Transform pos: 8.5,34.5 parent: 1 - - uid: 1607 + - uid: 299 components: - type: Transform pos: -5.5,34.5 parent: 1 - - uid: 1608 + - uid: 300 components: - type: Transform pos: -6.5,34.5 parent: 1 - - uid: 1609 + - uid: 301 components: - type: Transform pos: -7.5,34.5 parent: 1 - - uid: 1610 + - uid: 302 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 1611 + - uid: 303 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 1612 + - uid: 304 components: - type: Transform pos: -6.5,36.5 parent: 1 - - uid: 1614 + - uid: 305 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 1615 + - uid: 306 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 1616 + - uid: 307 components: - type: Transform pos: 8.5,32.5 parent: 1 - - uid: 1617 + - uid: 308 components: - type: Transform pos: 8.5,31.5 parent: 1 - - uid: 1618 + - uid: 309 components: - type: Transform pos: 8.5,30.5 parent: 1 - - uid: 1619 + - uid: 310 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 1620 + - uid: 311 components: - type: Transform pos: -7.5,32.5 parent: 1 - - uid: 1621 + - uid: 312 components: - type: Transform pos: -7.5,31.5 parent: 1 - - uid: 1622 + - uid: 313 components: - type: Transform pos: -7.5,30.5 parent: 1 - - uid: 1623 + - uid: 314 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1624 + - uid: 315 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 1625 + - uid: 316 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 1626 + - uid: 317 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 1627 + - uid: 318 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 1628 + - uid: 319 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 1629 + - uid: 320 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 1630 + - uid: 321 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 1631 + - uid: 322 components: - type: Transform pos: -0.5,27.5 parent: 1 - - uid: 1632 + - uid: 323 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 1633 + - uid: 324 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 1634 + - uid: 325 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 1635 + - uid: 326 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 1636 + - uid: 327 components: - type: Transform pos: -3.5,27.5 parent: 1 - - uid: 1637 + - uid: 328 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 1638 + - uid: 329 components: - type: Transform pos: -3.5,25.5 parent: 1 - - uid: 1639 + - uid: 330 components: - type: Transform pos: -3.5,24.5 parent: 1 - - uid: 1640 + - uid: 331 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 1641 + - uid: 332 components: - type: Transform pos: -3.5,22.5 parent: 1 - - uid: 1642 + - uid: 333 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 1643 + - uid: 334 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 1644 + - uid: 335 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 1645 + - uid: 336 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 1646 + - uid: 337 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 1647 + - uid: 338 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 1648 + - uid: 339 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 1649 + - uid: 340 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 1650 + - uid: 341 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 1651 + - uid: 342 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 1652 + - uid: 343 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 1653 + - uid: 344 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 1654 + - uid: 345 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 1655 + - uid: 346 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 1656 + - uid: 347 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 1657 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1 - - uid: 1658 + - uid: 348 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 1659 + - uid: 349 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1660 + - uid: 350 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 1661 + - uid: 351 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 1662 + - uid: 352 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 1663 + - uid: 353 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1664 + - uid: 354 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 1665 + - uid: 355 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 1666 + - uid: 356 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1667 + - uid: 357 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1668 + - uid: 358 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1669 + - uid: 359 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 1670 + - uid: 360 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 1671 + - uid: 361 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 1672 + - uid: 362 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1673 + - uid: 363 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 1674 + - uid: 364 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 1675 + - uid: 365 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 1676 + - uid: 366 components: - type: Transform pos: 4.5,20.5 parent: 1 - - uid: 1677 + - uid: 367 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 1678 + - uid: 368 components: - type: Transform pos: 4.5,22.5 parent: 1 - - uid: 1679 + - uid: 369 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 1680 + - uid: 370 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 1681 + - uid: 371 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 1682 + - uid: 372 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 1683 + - uid: 373 components: - type: Transform pos: 4.5,27.5 parent: 1 - - uid: 1684 + - uid: 374 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 1685 + - uid: 375 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 1686 + - uid: 376 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1687 + - uid: 377 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1688 + - uid: 378 components: - type: Transform pos: 0.5,28.5 parent: 1 - - uid: 1689 + - uid: 379 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 1690 + - uid: 380 components: - type: Transform pos: 6.5,26.5 parent: 1 - - uid: 1691 + - uid: 381 components: - type: Transform pos: 7.5,26.5 parent: 1 - - uid: 1692 + - uid: 382 components: - type: Transform pos: 6.5,27.5 parent: 1 - - uid: 1693 + - uid: 383 components: - type: Transform pos: 6.5,28.5 parent: 1 - - uid: 1694 + - uid: 384 components: - type: Transform pos: 6.5,25.5 parent: 1 - - uid: 1695 + - uid: 385 components: - type: Transform pos: 6.5,24.5 parent: 1 - - uid: 1696 + - uid: 386 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 1697 + - uid: 387 components: - type: Transform pos: 6.5,22.5 parent: 1 - - uid: 1698 + - uid: 388 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 1699 + - uid: 389 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 1700 + - uid: 390 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 1701 + - uid: 391 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 1702 + - uid: 392 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 1703 + - uid: 393 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 1704 + - uid: 394 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1705 + - uid: 395 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1706 + - uid: 396 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1707 + - uid: 397 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1708 + - uid: 398 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 1709 + - uid: 399 components: - type: Transform pos: 7.5,18.5 parent: 1 - - uid: 1710 + - uid: 400 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 1711 + - uid: 401 components: - type: Transform pos: 7.5,22.5 parent: 1 - - uid: 1712 + - uid: 402 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1713 + - uid: 403 components: - type: Transform pos: 7.5,13.5 parent: 1 - - uid: 1714 + - uid: 404 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 1715 + - uid: 405 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 1716 + - uid: 406 components: - type: Transform pos: -4.5,14.5 parent: 1 - - uid: 1717 + - uid: 407 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 1718 + - uid: 408 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 1719 + - uid: 409 components: - type: Transform pos: -5.5,15.5 parent: 1 - - uid: 1720 + - uid: 410 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 1721 + - uid: 411 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 1722 + - uid: 412 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 1723 + - uid: 413 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 1724 + - uid: 414 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 1725 + - uid: 415 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 1726 + - uid: 416 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 1727 + - uid: 417 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 1728 + - uid: 418 components: - type: Transform pos: -6.5,18.5 parent: 1 - - uid: 1729 + - uid: 419 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 1730 + - uid: 420 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1731 + - uid: 421 components: - type: Transform pos: -6.5,13.5 parent: 1 - - uid: 1732 + - uid: 422 components: - type: Transform pos: -7.5,13.5 parent: 1 - - uid: 1733 + - uid: 423 components: - type: Transform pos: -5.5,22.5 parent: 1 - - uid: 1734 + - uid: 424 components: - type: Transform pos: -6.5,22.5 parent: 1 - - uid: 1735 + - uid: 425 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1736 + - uid: 426 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 1737 + - uid: 427 components: - type: Transform pos: -5.5,24.5 parent: 1 - - uid: 1738 + - uid: 428 components: - type: Transform pos: -5.5,25.5 parent: 1 - - uid: 1739 + - uid: 429 components: - type: Transform pos: -5.5,26.5 parent: 1 - - uid: 1740 + - uid: 430 components: - type: Transform pos: -5.5,27.5 parent: 1 - - uid: 1741 + - uid: 431 components: - type: Transform pos: -5.5,28.5 parent: 1 - - uid: 1742 + - uid: 432 components: - type: Transform pos: -6.5,28.5 parent: 1 - - uid: 1743 + - uid: 433 components: - type: Transform pos: -7.5,28.5 parent: 1 - - uid: 1744 + - uid: 434 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1745 + - uid: 435 components: - type: Transform pos: -7.5,26.5 parent: 1 - - uid: 1746 + - uid: 436 components: - type: Transform pos: -7.5,25.5 parent: 1 - - uid: 1747 + - uid: 437 components: - type: Transform pos: -7.5,24.5 parent: 1 - - uid: 1748 + - uid: 438 components: - type: Transform pos: -7.5,23.5 parent: 1 - - uid: 1749 + - uid: 439 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 1750 + - uid: 440 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 1751 + - uid: 441 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 1752 + - uid: 442 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1753 + - uid: 443 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 1754 + - uid: 444 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 1755 + - uid: 445 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 1756 + - uid: 446 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 1758 + - uid: 447 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1759 + - uid: 448 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 1760 + - uid: 449 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1761 + - uid: 450 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1762 + - uid: 451 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1763 + - uid: 452 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1764 + - uid: 453 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1765 + - uid: 454 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 1766 + - uid: 455 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1767 + - uid: 456 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 1768 + - uid: 457 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1769 + - uid: 458 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 1770 + - uid: 459 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 1771 + - uid: 460 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1772 + - uid: 461 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1773 + - uid: 462 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 1774 + - uid: 463 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1775 + - uid: 464 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1776 + - uid: 465 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1777 + - uid: 466 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1778 + - uid: 467 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1779 + - uid: 468 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1780 + - uid: 469 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1781 + - uid: 470 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1782 + - uid: 471 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1783 + - uid: 472 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1784 + - uid: 473 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1785 + - uid: 474 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1786 + - uid: 475 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1787 + - uid: 476 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 1788 + - uid: 477 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 1789 + - uid: 478 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 1790 + - uid: 479 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1791 + - uid: 480 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1792 + - uid: 481 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1793 + - uid: 482 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 1794 + - uid: 483 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1795 + - uid: 484 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 1796 + - uid: 485 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1797 + - uid: 486 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1798 + - uid: 487 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 1799 + - uid: 488 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1800 + - uid: 489 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 1801 + - uid: 490 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 1802 + - uid: 491 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1803 + - uid: 492 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1804 + - uid: 493 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1805 + - uid: 494 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 1806 + - uid: 495 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1807 + - uid: 496 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1808 + - uid: 497 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1809 + - uid: 498 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1810 + - uid: 499 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1811 + - uid: 500 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1812 + - uid: 501 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1813 + - uid: 502 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1814 + - uid: 503 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1815 + - uid: 504 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1816 + - uid: 505 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1817 + - uid: 506 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1818 + - uid: 507 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 1819 + - uid: 508 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 1820 + - uid: 509 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1821 + - uid: 510 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1822 + - uid: 511 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 1823 + - uid: 512 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1824 + - uid: 513 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1825 + - uid: 514 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 1826 + - uid: 515 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 1827 + - uid: 516 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1828 + - uid: 517 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1829 + - uid: 518 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1830 + - uid: 519 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1831 + - uid: 520 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 1833 + - uid: 521 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 1835 + - uid: 522 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1837 + - uid: 523 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1843 + - uid: 524 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1844 + - uid: 525 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1845 + - uid: 526 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1846 + - uid: 527 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1847 + - uid: 528 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1848 + - uid: 529 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1849 + - uid: 530 components: - type: Transform pos: -6.5,-11.5 parent: 1 - - uid: 1850 + - uid: 531 components: - type: Transform pos: -7.5,-11.5 parent: 1 - - uid: 1851 + - uid: 532 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 1852 + - uid: 533 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 1853 + - uid: 534 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1854 + - uid: 535 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 1855 + - uid: 536 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 1856 + - uid: 537 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1857 + - uid: 538 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1858 + - uid: 539 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 1859 + - uid: 540 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1861 + - uid: 541 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1862 + - uid: 542 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1864 + - uid: 543 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1865 + - uid: 544 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 1866 + - uid: 545 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 1867 + - uid: 546 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1868 + - uid: 547 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1869 + - uid: 548 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1870 + - uid: 549 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1871 + - uid: 550 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1872 + - uid: 551 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 1873 + - uid: 552 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1874 + - uid: 553 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 1875 + - uid: 554 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1876 + - uid: 555 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1877 + - uid: 556 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1878 + - uid: 557 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1879 + - uid: 558 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1880 + - uid: 559 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1881 + - uid: 560 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1882 + - uid: 561 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1886 + - uid: 562 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1887 + - uid: 563 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1888 + - uid: 564 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1889 + - uid: 565 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1890 + - uid: 566 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1891 + - uid: 567 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1892 + - uid: 568 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1893 + - uid: 569 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1894 + - uid: 570 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1895 + - uid: 571 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1896 + - uid: 572 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1897 + - uid: 573 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1898 + - uid: 574 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1899 + - uid: 575 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1900 + - uid: 576 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1901 + - uid: 577 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1902 + - uid: 578 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 1903 + - uid: 579 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1904 + - uid: 580 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 1905 + - uid: 581 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - uid: 1906 + - uid: 582 components: - type: Transform pos: 3.5,-6.5 parent: 1 - - uid: 1907 + - uid: 583 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 1908 + - uid: 584 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1909 + - uid: 585 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 1910 + - uid: 586 components: - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 1911 + - uid: 587 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 1912 + - uid: 588 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1913 + - uid: 589 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 1914 + - uid: 590 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1915 + - uid: 591 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1916 + - uid: 592 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 1917 + - uid: 593 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1918 + - uid: 594 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 1919 + - uid: 595 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 1920 + - uid: 596 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1921 + - uid: 597 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1922 + - uid: 598 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1923 + - uid: 599 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1924 + - uid: 600 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1925 + - uid: 601 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 1926 + - uid: 602 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1927 + - uid: 603 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 1928 + - uid: 604 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 1929 + - uid: 605 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 1930 + - uid: 606 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 1931 + - uid: 607 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1932 + - uid: 608 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1933 + - uid: 609 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1934 + - uid: 610 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 1935 + - uid: 611 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 1936 + - uid: 612 components: - type: Transform pos: 5.5,-10.5 parent: 1 - - uid: 1937 + - uid: 613 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 1938 + - uid: 614 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 1939 + - uid: 615 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 1940 + - uid: 616 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 1941 + - uid: 617 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 1942 + - uid: 618 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 1943 + - uid: 619 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1944 + - uid: 620 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1946 + - uid: 621 components: - type: Transform pos: -4.5,-14.5 parent: 1 - - uid: 1947 + - uid: 622 components: - type: Transform pos: -4.5,-15.5 parent: 1 - - uid: 1948 + - uid: 623 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 1949 + - uid: 624 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 1950 + - uid: 625 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 1951 + - uid: 626 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 1952 + - uid: 627 components: - type: Transform pos: -1.5,-15.5 parent: 1 - - uid: 1953 + - uid: 628 components: - type: Transform pos: -1.5,-16.5 parent: 1 - - uid: 1954 + - uid: 629 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1955 + - uid: 630 components: - type: Transform pos: -4.5,-18.5 parent: 1 - - uid: 1956 + - uid: 631 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 1957 + - uid: 632 components: - type: Transform pos: -6.5,-18.5 parent: 1 - - uid: 1958 + - uid: 633 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 1959 + - uid: 634 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 1960 + - uid: 635 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1961 + - uid: 636 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1962 + - uid: 637 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1963 + - uid: 638 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1964 + - uid: 639 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1965 + - uid: 640 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1966 + - uid: 641 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1967 + - uid: 642 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1968 + - uid: 643 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1969 + - uid: 644 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 1970 + - uid: 645 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1971 + - uid: 646 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1972 + - uid: 647 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1973 + - uid: 648 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 1974 + - uid: 649 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1975 + - uid: 650 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1976 + - uid: 651 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1977 + - uid: 652 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1978 + - uid: 653 components: - type: Transform pos: 4.5,-18.5 parent: 1 - - uid: 1979 + - uid: 654 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 1980 + - uid: 655 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 1981 + - uid: 656 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1982 + - uid: 657 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1983 + - uid: 658 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1984 + - uid: 659 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 1985 + - uid: 660 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 1986 + - uid: 661 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 1987 + - uid: 662 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 1988 + - uid: 663 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1989 + - uid: 664 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1990 + - uid: 665 components: - type: Transform pos: 9.5,-8.5 parent: 1 - - uid: 1991 + - uid: 666 components: - type: Transform pos: 10.5,-8.5 parent: 1 - - uid: 1993 + - uid: 667 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1994 + - uid: 668 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 1995 + - uid: 669 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 1996 + - uid: 670 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1997 + - uid: 671 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 1998 + - uid: 672 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 1999 + - uid: 673 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 2000 + - uid: 674 components: - type: Transform pos: 12.5,-12.5 parent: 1 - - uid: 2001 + - uid: 675 components: - type: Transform pos: 12.5,-11.5 parent: 1 - - uid: 2002 + - uid: 676 components: - type: Transform pos: 12.5,-10.5 parent: 1 - - uid: 2003 + - uid: 677 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 2004 + - uid: 678 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 2006 + - uid: 679 components: - type: Transform pos: 11.5,-14.5 parent: 1 - - uid: 2212 + - uid: 680 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 2213 + - uid: 681 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 2214 + - uid: 682 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 2215 + - uid: 683 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 2216 + - uid: 684 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 2217 + - uid: 685 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 2218 + - uid: 686 components: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 2221 + - uid: 687 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 2222 + - uid: 688 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 2223 + - uid: 689 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 2224 + - uid: 690 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 2225 + - uid: 691 components: - type: Transform pos: -7.5,4.5 parent: 1 + - uid: 692 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 - proto: CableHV entities: - - uid: 276 + - uid: 703 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 378 + - uid: 704 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 477 + - uid: 705 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 485 + - uid: 706 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 487 + - uid: 707 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 488 + - uid: 708 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 489 + - uid: 709 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 495 + - uid: 710 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 550 + - uid: 711 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 579 + - uid: 712 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 600 + - uid: 713 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 607 + - uid: 714 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 608 + - uid: 715 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 611 + - uid: 716 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 612 + - uid: 717 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 613 + - uid: 718 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 614 + - uid: 719 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 617 + - uid: 720 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 618 + - uid: 721 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 832 + - uid: 722 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 836 + - uid: 723 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 837 + - uid: 724 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 839 + - uid: 725 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 845 + - uid: 726 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 925 + - uid: 727 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 926 + - uid: 728 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 927 + - uid: 729 components: - type: Transform pos: 5.5,-16.5 parent: 1 - - uid: 928 + - uid: 730 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 929 + - uid: 731 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 930 + - uid: 732 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 931 + - uid: 733 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 932 + - uid: 734 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 933 + - uid: 735 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 934 + - uid: 736 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 935 + - uid: 737 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 936 + - uid: 738 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 937 + - uid: 739 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 938 + - uid: 740 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 939 + - uid: 741 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 940 + - uid: 742 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 941 + - uid: 743 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 942 + - uid: 744 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 943 + - uid: 745 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 944 + - uid: 746 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 945 + - uid: 747 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 947 + - uid: 748 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 961 + - uid: 749 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 962 + - uid: 750 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 990 + - uid: 751 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 993 + - uid: 752 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 994 + - uid: 753 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1183 + - uid: 754 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1184 + - uid: 755 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1287 + - uid: 756 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1302 + - uid: 757 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1400 + - uid: 758 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1495 + - uid: 759 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1503 + - uid: 760 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1504 + - uid: 761 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1505 + - uid: 762 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1559 + - uid: 763 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1560 + - uid: 764 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1561 + - uid: 765 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1562 + - uid: 766 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1563 + - uid: 767 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1564 + - uid: 768 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1565 + - uid: 769 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1566 + - uid: 770 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1567 + - uid: 771 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1568 + - uid: 772 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 1839 + - uid: 773 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1840 + - uid: 774 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1841 + - uid: 775 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1863 + - uid: 776 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1945 + - uid: 777 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1992 + - uid: 778 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 2005 + - uid: 779 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 2141 + - uid: 780 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 2172 + - uid: 781 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 2173 + - uid: 782 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 2174 + - uid: 783 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 2175 + - uid: 784 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 2176 + - uid: 785 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 2177 + - uid: 786 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 2178 + - uid: 787 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 2179 + - uid: 788 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 2180 + - uid: 789 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 2181 + - uid: 790 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 2182 + - uid: 791 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 2183 + - uid: 792 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 2184 + - uid: 793 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 2185 + - uid: 794 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 2186 + - uid: 795 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 2187 + - uid: 796 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 2188 + - uid: 797 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 2189 + - uid: 798 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 2190 + - uid: 799 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 2191 + - uid: 800 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 2192 + - uid: 801 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 2193 + - uid: 802 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 2194 + - uid: 803 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 2195 + - uid: 804 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 2196 + - uid: 805 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 2197 + - uid: 806 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 2198 + - uid: 807 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 2199 + - uid: 808 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 2200 + - uid: 809 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 2201 + - uid: 810 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 2202 + - uid: 811 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 2203 + - uid: 812 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 2204 + - uid: 813 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 2205 + - uid: 814 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 2206 + - uid: 815 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 2207 + - uid: 816 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 2208 + - uid: 817 components: - type: Transform pos: -2.5,7.5 parent: 1 + - uid: 818 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 - proto: CableMV entities: - - uid: 1405 + - uid: 820 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1406 + - uid: 821 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1407 + - uid: 822 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 1408 + - uid: 823 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1409 + - uid: 824 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 1410 + - uid: 825 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 1411 + - uid: 826 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 1412 + - uid: 827 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 1413 + - uid: 828 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1414 + - uid: 829 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 1415 + - uid: 830 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1417 + - uid: 831 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1418 + - uid: 832 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1419 + - uid: 833 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1420 + - uid: 834 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1421 + - uid: 835 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1422 + - uid: 836 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1423 + - uid: 837 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1424 + - uid: 838 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1425 + - uid: 839 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1426 + - uid: 840 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1427 + - uid: 841 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1428 + - uid: 842 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1429 + - uid: 843 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1430 + - uid: 844 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1431 + - uid: 845 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1432 + - uid: 846 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1433 + - uid: 847 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1434 + - uid: 848 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1435 + - uid: 849 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1436 + - uid: 850 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1437 + - uid: 851 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1438 + - uid: 852 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1439 + - uid: 853 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1440 + - uid: 854 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1441 + - uid: 855 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1442 + - uid: 856 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1443 + - uid: 857 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1444 + - uid: 858 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1445 + - uid: 859 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 1446 + - uid: 860 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1447 + - uid: 861 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1448 + - uid: 862 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1449 + - uid: 863 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1450 + - uid: 864 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1451 + - uid: 865 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1452 + - uid: 866 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1453 + - uid: 867 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 1454 + - uid: 868 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1455 + - uid: 869 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1456 + - uid: 870 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1457 + - uid: 871 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1458 + - uid: 872 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 1459 + - uid: 873 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 1460 + - uid: 874 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1461 + - uid: 875 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1462 + - uid: 876 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 1463 + - uid: 877 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1464 + - uid: 878 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1465 + - uid: 879 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 1466 + - uid: 880 components: - type: Transform pos: 6.5,-6.5 parent: 1 - - uid: 1467 + - uid: 881 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1468 + - uid: 882 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1469 + - uid: 883 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1470 + - uid: 884 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1471 + - uid: 885 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1472 + - uid: 886 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 1473 + - uid: 887 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 1474 + - uid: 888 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 1475 + - uid: 889 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 1477 + - uid: 890 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 1478 + - uid: 891 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 1479 + - uid: 892 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1480 + - uid: 893 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1481 + - uid: 894 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1482 + - uid: 895 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1483 + - uid: 896 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1484 + - uid: 897 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1485 + - uid: 898 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1486 + - uid: 899 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1487 + - uid: 900 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 1488 + - uid: 901 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1489 + - uid: 902 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1490 + - uid: 903 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1491 + - uid: 904 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1492 + - uid: 905 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1493 + - uid: 906 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1497 + - uid: 907 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 1498 + - uid: 908 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1499 + - uid: 909 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1500 + - uid: 910 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1501 + - uid: 911 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 1502 + - uid: 912 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 1506 + - uid: 913 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1507 + - uid: 914 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1508 + - uid: 915 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1509 + - uid: 916 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1510 + - uid: 917 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1511 + - uid: 918 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1512 + - uid: 919 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 1513 + - uid: 920 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 1514 + - uid: 921 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 1515 + - uid: 922 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1516 + - uid: 923 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1517 + - uid: 924 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1518 + - uid: 925 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 1519 + - uid: 926 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1520 + - uid: 927 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 1521 + - uid: 928 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1522 + - uid: 929 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1523 + - uid: 930 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 1524 + - uid: 931 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1525 + - uid: 932 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 1526 + - uid: 933 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 1527 + - uid: 934 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1528 + - uid: 935 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1529 + - uid: 936 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1530 + - uid: 937 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1533 + - uid: 938 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 1534 + - uid: 939 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 1535 + - uid: 940 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 1536 + - uid: 941 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 1537 + - uid: 942 components: - type: Transform pos: 0.5,17.5 parent: 1 - - uid: 1538 + - uid: 943 components: - type: Transform pos: 0.5,18.5 parent: 1 - - uid: 1539 + - uid: 944 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 1540 + - uid: 945 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 1541 + - uid: 946 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1542 + - uid: 947 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1543 + - uid: 948 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 1544 + - uid: 949 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1545 + - uid: 950 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1546 + - uid: 951 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1547 + - uid: 952 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1548 + - uid: 953 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1549 + - uid: 954 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1550 + - uid: 955 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1551 + - uid: 956 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1552 + - uid: 957 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1553 + - uid: 958 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1554 + - uid: 959 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1555 + - uid: 960 components: - type: Transform pos: 1.5,32.5 parent: 1 - - uid: 1556 + - uid: 961 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 1557 + - uid: 962 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 1558 + - uid: 963 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1883 + - uid: 964 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1884 + - uid: 965 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 1885 + - uid: 966 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 2211 + - uid: 967 components: - type: Transform pos: -3.5,7.5 parent: 1 -- proto: CartridgeRailHighExplosive - entities: - - uid: 569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.9289885,30.44183 - parent: 1 - - uid: 676 - components: - - type: Transform - pos: 2.1747465,30.236162 - parent: 1 - - uid: 701 - components: - - type: Transform - pos: 2.2158842,30.428118 - parent: 1 - - uid: 725 - components: - - type: Transform - pos: 2.1747465,30.866877 - parent: 1 - - uid: 726 + - uid: 968 components: - type: Transform - pos: 2.2021704,30.688631 + pos: 3.5,-14.5 parent: 1 - - uid: 746 +- proto: CartridgeRailHighExplosive + entities: + - uid: 29 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 747 + - uid: 30 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 749 + - uid: 31 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 752 + - uid: 32 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 758 + - uid: 33 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.9289885,30.44183 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 2.1747465,30.236162 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 2.2158842,30.428118 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 2.1747465,30.866877 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 2.2021704,30.688631 + parent: 1 - proto: Catwalk entities: - - uid: 21 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,22.5 + parent: 1 + - uid: 975 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 22 + - uid: 976 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 24 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 1 - - uid: 25 + - uid: 978 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 - - uid: 26 + - uid: 979 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 35 + - uid: 980 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 36 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 37 + - uid: 982 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 39 + - uid: 983 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 - - uid: 40 + - uid: 984 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 145 + - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 146 + - uid: 986 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 175 + - uid: 987 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 185 + - uid: 988 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 187 + - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 240 + - uid: 990 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 242 + - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 290 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 391 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 431 + - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 586 + - uid: 995 components: - type: Transform pos: -0.5,34.5 parent: 1 - - uid: 704 + - uid: 996 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 705 + - uid: 997 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 706 + - uid: 998 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 707 + - uid: 999 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 708 + - uid: 1000 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 711 + - uid: 1001 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 712 + - uid: 1002 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 713 + - uid: 1003 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 714 + - uid: 1004 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 715 + - uid: 1005 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 760 + - uid: 1006 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 776 + - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 820 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,16.5 parent: 1 - - uid: 821 + - uid: 1009 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 - - uid: 822 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 1 - - uid: 824 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 1 - - uid: 825 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 826 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - - uid: 828 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 829 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 - - uid: 841 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 846 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 parent: 1 - - uid: 847 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - - uid: 848 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 - - uid: 849 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 1 - - uid: 850 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 851 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 852 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 853 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 854 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 855 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 1 - - uid: 856 + - uid: 1027 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 857 + - uid: 1028 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 1 - - uid: 858 + - uid: 1029 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 859 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 - - uid: 860 + - uid: 1031 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 861 + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 862 + - uid: 1033 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 863 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 864 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 1 - - uid: 865 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 866 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 867 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 868 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 869 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 1 - - uid: 870 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 1 - - uid: 871 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 872 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 873 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 874 + - uid: 1045 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 - - uid: 875 + - uid: 1046 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 876 + - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 1 - - uid: 877 + - uid: 1048 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 1 - - uid: 878 + - uid: 1049 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 879 + - uid: 1050 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 1 - - uid: 880 + - uid: 1051 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 1 - - uid: 881 + - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 882 + - uid: 1053 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 1 - - uid: 883 + - uid: 1054 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 884 + - uid: 1055 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 1 - - uid: 983 + - uid: 1056 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 1 - - uid: 987 + - uid: 1057 components: - type: Transform pos: 1.5,34.5 parent: 1 - - uid: 988 + - uid: 1058 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 1001 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1002 + - uid: 1060 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,33.5 parent: 1 - - uid: 1003 + - uid: 1061 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 1 - - uid: 1004 + - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 1 - - uid: 1005 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,30.5 parent: 1 - - uid: 1006 + - uid: 1064 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,33.5 parent: 1 - - uid: 1007 + - uid: 1065 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,33.5 parent: 1 - - uid: 1009 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,34.5 parent: 1 - - uid: 1010 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 +- proto: Chair + entities: + - uid: 1079 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: -3.5,28.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 3.5,28.5 + parent: 1 - proto: ChairFolding entities: - - uid: 2122 + - uid: 1083 components: - type: Transform rot: 3.141592653589793 rad pos: 5.6385274,33.79165 parent: 1 - - uid: 2123 + - uid: 1084 components: - type: Transform rot: 3.141592653589793 rad pos: 6.455937,33.79165 parent: 1 + - uid: 1085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.530381,16.808573 + parent: 1 - proto: ChairOfficeDark entities: - - uid: 38 + - uid: 1086 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0168126,-2.2222314 parent: 1 - - uid: 68 + - uid: 1087 components: - type: Transform rot: 3.141592653589793 rad pos: -2.008704,-2.1479003 parent: 1 - - uid: 101 + - uid: 1088 components: - type: Transform rot: 3.141592653589793 rad pos: -2.011708,-5.226958 parent: 1 - - uid: 102 + - uid: 1089 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5255032,-8.341822 parent: 1 - - uid: 103 + - uid: 1090 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0077765,-5.271557 parent: 1 - - uid: 127 + - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.4135564,-9.459794 parent: 1 - - uid: 358 + - uid: 1092 components: - type: Transform rot: 3.141592653589793 rad pos: -4.0172853,-12.316838 parent: 1 - - uid: 490 - components: - - type: Transform - pos: -5.0352683,6.5428276 - parent: 1 - - uid: 503 + - uid: 1093 components: - type: Transform pos: 2.9927013,-15.537149 parent: 1 - - uid: 527 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.6448607,-8.383146 parent: 1 - - uid: 1048 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.58989,8.69132 + pos: 6.5891604,8.650975 parent: 1 - proto: ChairPilotSeat entities: - - uid: 28 + - uid: 1096 components: - type: Transform rot: 3.141592653589793 rad @@ -10619,42 +13490,59 @@ entities: parent: 1 - proto: ChemDispenser entities: - - uid: 792 + - uid: 1097 components: - type: Transform pos: -7.5,11.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 762 + - uid: 1098 components: - type: Transform pos: -4.5,10.5 parent: 1 - proto: ChemMaster entities: - - uid: 1103 + - uid: 1099 components: - type: Transform pos: -6.5,11.5 parent: 1 +- proto: CloningPod + entities: + - uid: 1100 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1137 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1021 + - uid: 1101 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 1037 + - uid: 1102 components: - type: Transform pos: -6.5,-5.5 parent: 1 +- proto: ClosetToolFilled + entities: + - uid: 1103 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 - proto: ClosetWallOrange entities: - - uid: 341 + - uid: 1104 components: - type: Transform rot: -1.5707963267948966 rad @@ -10666,14 +13554,14 @@ entities: showEnts: False occludes: True ents: - - 342 - - 343 - - 344 - - 345 - - 346 - - 347 - - 348 - - uid: 349 + - 1108 + - 1105 + - 1106 + - 1109 + - 1107 + - 1111 + - 1110 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad @@ -10685,79 +13573,69 @@ entities: showEnts: False occludes: True ents: - - 350 - - 351 - - 352 - - 353 - - 354 - - 355 -- proto: ClothingBackpackDuffelSurgeryAdvancedFilled + - 1117 + - 1115 + - 1114 + - 1116 + - 1118 + - 1113 +- proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 548 - components: - - type: Transform - pos: -4.911055,11.182386 - parent: 1 - - uid: 549 - components: - - type: Transform - pos: -4.73918,11.088572 - parent: 1 - - uid: 562 + - uid: 1119 components: - type: Transform - pos: -4.411055,10.963485 + pos: -4.3876457,10.904082 parent: 1 - proto: ClothingBeltHolsterFilled entities: - - uid: 119 + - uid: 1121 components: - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: - - uid: 1040 + - uid: 1128 components: - type: Transform pos: -3.4274457,17.92572 parent: 1 - - uid: 1049 + - uid: 1129 components: - type: Transform pos: -3.5072637,18.067436 parent: 1 - proto: ClothingHandsGlovesCombat entities: - - uid: 124 + - uid: 1122 components: - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLBeretAdmiral entities: - - uid: 120 + - uid: 1123 components: - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLKommissarHat entities: - - uid: 531 + - uid: 1131 components: - type: Transform - parent: 530 + parent: 1130 - type: Physics canCollide: False - proto: ClothingHeadHatWelding entities: - - uid: 1033 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad @@ -10765,347 +13643,354 @@ entities: parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 588 + - uid: 82 components: - type: Transform - parent: 442 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 625 + - uid: 88 components: - type: Transform - parent: 621 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 681 + - uid: 94 components: - type: Transform - parent: 666 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 741 + - uid: 100 components: - type: Transform - parent: 700 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 764 + - uid: 106 components: - type: Transform - parent: 761 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 799 + - uid: 112 components: - type: Transform - parent: 774 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 810 + - uid: 118 components: - type: Transform - parent: 804 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 817 + - uid: 124 components: - type: Transform - parent: 811 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 446 + - uid: 83 components: - type: Transform - parent: 442 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 662 + - uid: 89 components: - type: Transform - parent: 621 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 685 + - uid: 95 components: - type: Transform - parent: 666 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 745 + - uid: 101 components: - type: Transform - parent: 700 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 770 + - uid: 107 components: - type: Transform - parent: 761 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 801 + - uid: 113 components: - type: Transform - parent: 774 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 808 + - uid: 119 components: - type: Transform - parent: 804 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 812 + - uid: 125 components: - type: Transform - parent: 811 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckAdminCapelet entities: - - uid: 118 + - uid: 1124 components: - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 587 + - uid: 84 components: - type: Transform - parent: 442 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 623 + - uid: 90 components: - type: Transform - parent: 621 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 669 + - uid: 96 components: - type: Transform - parent: 666 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 739 + - uid: 102 components: - type: Transform - parent: 700 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 771 + - uid: 108 components: - type: Transform - parent: 761 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 802 + - uid: 114 components: - type: Transform - parent: 774 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 807 + - uid: 120 components: - type: Transform - parent: 804 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 815 + - uid: 126 components: - type: Transform - parent: 811 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCowboyBlack entities: - - uid: 122 + - uid: 1125 components: - type: MetaData desc: Made from real Imperial leather. name: polished officer's longboots - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 519 + - uid: 85 components: - type: Transform - parent: 442 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 622 + - uid: 91 components: - type: Transform - parent: 621 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 677 + - uid: 97 components: - type: Transform - parent: 666 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 740 + - uid: 103 components: - type: Transform - parent: 700 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 769 + - uid: 109 components: - type: Transform - parent: 761 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 800 + - uid: 115 components: - type: Transform - parent: 774 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 809 + - uid: 121 components: - type: Transform - parent: 804 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 814 + - uid: 127 components: - type: Transform - parent: 811 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorOrange entities: - - uid: 343 + - uid: 1105 components: - type: Transform - parent: 341 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 355 + - uid: 1113 components: - type: Transform - parent: 349 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 344 + - uid: 1106 components: - type: Transform - parent: 341 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 352 + - uid: 1114 components: - type: Transform - parent: 349 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNCWLCommunications entities: - - uid: 125 + - uid: 1126 components: - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 346 + - uid: 1107 components: - type: Transform - parent: 341 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 351 + - uid: 1115 components: - type: Transform - parent: 349 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 921 + - uid: 1133 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Cobweb2 entities: - - uid: 920 + - uid: 1134 components: - type: Transform pos: 7.5,-15.5 parent: 1 +- proto: ComputerAdvancedRadar + entities: + - uid: 1135 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 - proto: ComputerBankATM entities: - - uid: 1113 + - uid: 1136 components: - type: Transform rot: -1.5707963267948966 rad @@ -11121,21 +14006,35 @@ entities: showEnts: False occludes: True ents: [] -- proto: ComputerRadar +- proto: ComputerCloningConsole entities: - - uid: 899 + - uid: 1137 components: - type: Transform - pos: 2.5,28.5 + pos: -4.5,7.5 parent: 1 - - uid: 1035 + - type: DeviceLinkSource + linkedPorts: + 1449: + - - CloningPodSender + - MedicalScannerReceiver + - - MedicalScannerSender + - MedicalScannerReceiver + 1100: + - - CloningPodSender + - CloningPodReceiver + - - MedicalScannerSender + - CloningPodReceiver +- proto: ComputerRadar + entities: + - uid: 1138 components: - type: Transform - pos: -1.5,18.5 + pos: 2.5,28.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 12 + - uid: 1139 components: - type: Transform pos: 0.5,-0.5 @@ -11157,8 +14056,9 @@ entities: - type: DeviceLinkSource range: 300 linkedPorts: - 1204: - - Group1: SpaceArtilleryFire + 2: + - - Group1 + - SpaceArtilleryFire - type: NamedModules buttonNames: - Fire 320mm @@ -11168,116 +14068,58 @@ entities: - Module E - proto: ComputerTabletopAdvancedRadar entities: - - uid: 147 + - uid: 1140 components: - type: Transform pos: 3.5,-4.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 152 + - uid: 1141 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 465 + - uid: 1142 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 1 - - uid: 492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 149 + - uid: 1143 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 151 + - uid: 1144 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 363 + - uid: 1145 components: - type: Transform pos: -4.5,-11.5 parent: 1 - proto: ComputerTabletopTargeting entities: - - uid: 886 + - uid: 1146 components: - type: Transform - pos: 2.5,-1.5 + pos: -1.5,-1.5 parent: 1 - - type: TargetingConsole - cannonGroups: - all: - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - artillery: - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - machinegun: - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid -- proto: ComputerWallmountBankATM - entities: - - uid: 1114 + - uid: 1147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 + pos: 2.5,-4.5 parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 1138 +- proto: ComputerWallmountBankATM + entities: + - uid: 1148 components: - type: Transform rot: -1.5707963267948966 rad @@ -11295,11 +14137,11 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1139 + - uid: 1149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - type: ContainerContainer containers: @@ -11313,11 +14155,10 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1140 + - uid: 1150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 3.5,29.5 parent: 1 - type: ContainerContainer containers: @@ -11333,7 +14174,7 @@ entities: canCollide: False - proto: ConveyorBelt entities: - - uid: 379 + - uid: 1151 components: - type: Transform rot: 1.5707963267948966 rad @@ -11341,8 +14182,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 958 - - uid: 765 + - 1799 + - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad @@ -11350,8 +14191,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 958 - - uid: 766 + - 1799 + - uid: 1153 components: - type: Transform rot: 1.5707963267948966 rad @@ -11359,8 +14200,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 958 - - uid: 767 + - 1799 + - uid: 1154 components: - type: Transform rot: -1.5707963267948966 rad @@ -11368,8 +14209,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 959 - - uid: 768 + - 1800 + - uid: 1155 components: - type: Transform rot: -1.5707963267948966 rad @@ -11377,8 +14218,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 959 - - uid: 1284 + - 1800 + - uid: 1156 components: - type: Transform rot: -1.5707963267948966 rad @@ -11386,29 +14227,50 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 959 -- proto: CrateArtifactContainer + - 1800 +- proto: CrateArtilleryAmmo entities: - - uid: 1060 + - uid: 1157 components: - type: Transform - pos: 3.5,14.5 + pos: -2.5,26.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 3.5,26.5 parent: 1 - proto: CrateCoolant entities: - - uid: 722 + - uid: 1159 components: - type: Transform pos: -1.5,30.5 parent: 1 - type: Lock + lockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_on.ogg + unlockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_off.ogg locked: False - - uid: 982 + - uid: 1160 components: - type: Transform pos: -5.5,34.5 parent: 1 - type: Lock + lockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_on.ogg + unlockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_off.ogg locked: False - type: EntityStorage air: @@ -11428,60 +14290,84 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringMetalFoamFast +- proto: CrateFoodMRE entities: - - uid: 1105 + - uid: 1161 components: - type: Transform - pos: 3.5,28.5 + pos: 2.5,14.5 parent: 1 - - uid: 1106 + - uid: 1162 components: - type: Transform - pos: 4.5,28.5 + pos: 3.5,14.5 parent: 1 - proto: CrateMortarAmmo entities: - - uid: 843 + - uid: 1163 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 890 + - uid: 1164 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 894 + - uid: 1165 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 897 + - uid: 1166 components: - type: Transform pos: -2.5,21.5 parent: 1 +- proto: CrateSumitomoAmmoHighYield + entities: + - uid: 1167 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 +- proto: CrateVulcanAmmo + entities: + - uid: 1169 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 896 + - uid: 1171 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 916 + - uid: 1172 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1028 + - uid: 1173 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 830 + - uid: 1174 components: - type: Transform rot: 1.5707963267948966 rad @@ -11489,33 +14375,33 @@ entities: parent: 1 - proto: DiceBag entities: - - uid: 353 + - uid: 1116 components: - type: Transform - parent: 349 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DisposalBend entities: - - uid: 1318 + - uid: 1175 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1362 + - uid: 1176 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 1 - - uid: 1363 + - uid: 1177 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 1 - - uid: 1364 + - uid: 1178 components: - type: Transform rot: -1.5707963267948966 rad @@ -11523,334 +14409,334 @@ entities: parent: 1 - proto: DisposalJunction entities: - - uid: 1344 + - uid: 1179 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1358 + - uid: 1180 components: - type: Transform pos: 1.5,-6.5 parent: 1 - proto: DisposalPipe entities: - - uid: 1312 + - uid: 1181 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 1 - - uid: 1313 + - uid: 1182 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,31.5 parent: 1 - - uid: 1314 + - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1315 + - uid: 1184 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,31.5 parent: 1 - - uid: 1316 + - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,31.5 parent: 1 - - uid: 1317 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 - - uid: 1319 + - uid: 1187 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1320 + - uid: 1188 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1321 + - uid: 1189 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1322 + - uid: 1190 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1323 + - uid: 1191 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1324 + - uid: 1192 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1325 + - uid: 1193 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1326 + - uid: 1194 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1327 + - uid: 1195 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1328 + - uid: 1196 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1329 + - uid: 1197 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1330 + - uid: 1198 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1331 + - uid: 1199 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1332 + - uid: 1200 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1333 + - uid: 1201 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1334 + - uid: 1202 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1335 + - uid: 1203 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1336 + - uid: 1204 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1337 + - uid: 1205 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1338 + - uid: 1206 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1339 + - uid: 1207 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1340 + - uid: 1208 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1341 + - uid: 1209 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1342 + - uid: 1210 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1343 + - uid: 1211 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1345 + - uid: 1212 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1346 + - uid: 1213 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1347 + - uid: 1214 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1348 + - uid: 1215 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1349 + - uid: 1216 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1350 + - uid: 1217 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1351 + - uid: 1218 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1352 + - uid: 1219 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1353 + - uid: 1220 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1354 + - uid: 1221 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1355 + - uid: 1222 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1356 + - uid: 1223 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1357 + - uid: 1224 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 1359 + - uid: 1225 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1360 + - uid: 1226 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1361 + - uid: 1227 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1365 + - uid: 1228 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 1366 + - uid: 1229 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 1 - - uid: 1367 + - uid: 1230 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 1368 + - uid: 1231 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 1 - - uid: 1369 + - uid: 1232 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 1370 + - uid: 1233 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1371 + - uid: 1234 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1372 + - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1373 + - uid: 1236 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1374 + - uid: 1237 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 1 - - uid: 1375 + - uid: 1238 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 1 - - uid: 1376 + - uid: 1239 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 1 - - uid: 1377 + - uid: 1240 components: - type: Transform rot: 1.5707963267948966 rad @@ -11858,25 +14744,25 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 1305 + - uid: 1241 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 1 - - uid: 1306 + - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1310 + - uid: 1243 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1311 + - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad @@ -11884,26 +14770,26 @@ entities: parent: 1 - proto: DisposalUnit entities: - - uid: 1274 + - uid: 1245 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1275 + - uid: 1246 components: - type: Transform pos: -5.5,31.5 parent: 1 - proto: Dresser entities: - - uid: 530 + - uid: 1130 components: - type: Transform pos: -3.5,-9.5 parent: 1 - type: Storage storedItems: - 531: + 1131: position: 0,0 _rotation: East - type: ContainerContainer @@ -11912,63 +14798,124 @@ entities: showEnts: False occludes: True ents: - - 531 + - 1131 - proto: DrinkFlaskOld entities: - - uid: 121 + - uid: 1127 components: - type: Transform - parent: 117 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkGlass + entities: + - uid: 1247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.211298,16.269606 + parent: 1 + - uid: 1248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.509692,16.337423 + parent: 1 + - uid: 1249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.3062415,16.676508 + parent: 1 + - uid: 1250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.591072,16.662943 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 7.2453113,8.272466 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 7.414853,8.3289795 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 7.2679167,8.080318 + parent: 1 - proto: DrinkMREFlask entities: - - uid: 342 + - uid: 1108 components: - type: Transform - parent: 341 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 350 + - uid: 1117 components: - type: Transform - parent: 349 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkVodkaBottleFull entities: - - uid: 134 + - uid: 1254 components: - type: Transform pos: -0.59381837,-9.968295 parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 4.618585,15.914518 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 7.607001,8.080318 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: 7.776543,7.662114 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: 7.3809447,7.662114 + parent: 1 - proto: DrinkVodkaGlass entities: - - uid: 135 + - uid: 1259 components: - type: Transform pos: -0.3151583,-9.854951 parent: 1 - proto: EncryptionKeyNCWL entities: - - uid: 923 + - uid: 1261 components: - type: Transform - parent: 922 + parent: 1260 - type: Physics canCollide: False - proto: ExplosivesSignMed entities: - - uid: 1174 + - uid: 1262 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 1 - - uid: 1282 + - uid: 1263 components: - type: Transform rot: -1.5707963267948966 rad @@ -11976,28 +14923,28 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 513 + - uid: 1264 components: - type: Transform pos: 3.5,-1.5 parent: 1 - proto: filingCabinetDrawerRandom entities: - - uid: 104 + - uid: 1265 components: - type: Transform pos: 3.5,-6.5 parent: 1 - proto: filingCabinetTallRandom entities: - - uid: 114 + - uid: 1266 components: - type: Transform pos: -2.5,-6.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 2147 + - uid: 1267 components: - type: Transform rot: 1.5707963267948966 rad @@ -12005,134 +14952,122 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 10 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 359 + - uid: 1269 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 375 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 559 + - uid: 1271 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 629 + - uid: 1272 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - - uid: 630 + - uid: 1273 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - - uid: 631 + - uid: 1274 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - - uid: 656 + - uid: 1275 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,27.5 parent: 1 - - uid: 657 + - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,25.5 parent: 1 - - uid: 658 + - uid: 1277 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 1 - - uid: 695 + - uid: 1278 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 1 - - uid: 755 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 1 - - uid: 756 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 1 - - uid: 793 + - uid: 1281 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 794 + - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 795 + - uid: 1283 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - - uid: 796 + - uid: 1284 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 980 + - uid: 1285 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1008 + - uid: 1286 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - - uid: 1058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - proto: FloorDrain entities: - - uid: 965 + - uid: 1287 components: - type: Transform pos: 0.5,6.5 @@ -12141,23 +15076,23 @@ entities: fixtures: {} - proto: FoodSnackMREBrownie entities: - - uid: 345 + - uid: 1109 components: - type: Transform - parent: 341 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 354 + - uid: 1118 components: - type: Transform - parent: 349 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GasPassiveVent entities: - - uid: 2007 + - uid: 1288 components: - type: Transform rot: -1.5707963267948966 rad @@ -12165,580 +15100,580 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 2017 + - uid: 1289 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 2018 + - uid: 1290 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - uid: 2026 + - uid: 1291 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 2027 + - uid: 1292 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 2037 + - uid: 1293 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 2044 + - uid: 1294 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 2045 + - uid: 1295 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 2047 + - uid: 1296 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 2048 + - uid: 1297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 2049 + - uid: 1298 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 2059 + - uid: 1299 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 2060 + - uid: 1300 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 2061 + - uid: 1301 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 2062 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 2068 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 1 - - uid: 2069 + - uid: 1304 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 2070 + - uid: 1305 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 2071 + - uid: 1306 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 2097 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 1 - - uid: 2106 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - - uid: 2107 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 2108 + - uid: 1310 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 2109 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 2110 + - uid: 1312 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 2111 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 1 - - uid: 2112 + - uid: 1314 components: - type: Transform pos: 1.5,-11.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1153 + - uid: 1315 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 1154 + - uid: 1316 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1155 + - uid: 1317 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 1301 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 2014 + - uid: 1319 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 2015 + - uid: 1320 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 2016 + - uid: 1321 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 2019 + - uid: 1322 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 2020 + - uid: 1323 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 2021 + - uid: 1324 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 2022 + - uid: 1325 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 2023 + - uid: 1326 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 2024 + - uid: 1327 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 2025 + - uid: 1328 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 2028 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 2029 + - uid: 1330 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 2030 + - uid: 1331 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 2031 + - uid: 1332 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 2032 + - uid: 1333 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 2033 + - uid: 1334 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 2034 + - uid: 1335 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 2036 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 2038 + - uid: 1337 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 1 - - uid: 2039 + - uid: 1338 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 2040 + - uid: 1339 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 2041 + - uid: 1340 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 2042 + - uid: 1341 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 2043 + - uid: 1342 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 2050 + - uid: 1343 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 2051 + - uid: 1344 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 2052 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 2053 + - uid: 1346 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 2054 + - uid: 1347 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 2055 + - uid: 1348 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 2056 + - uid: 1349 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 2057 + - uid: 1350 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 1 - - uid: 2058 + - uid: 1351 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - uid: 2063 + - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 2064 + - uid: 1353 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 2065 + - uid: 1354 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 1 - - uid: 2066 + - uid: 1355 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,22.5 parent: 1 - - uid: 2067 + - uid: 1356 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 - - uid: 2072 + - uid: 1357 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 2073 + - uid: 1358 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 2074 + - uid: 1359 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 2075 + - uid: 1360 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 2076 + - uid: 1361 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 2077 + - uid: 1362 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 2078 + - uid: 1363 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 2079 + - uid: 1364 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 2080 + - uid: 1365 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 2081 + - uid: 1366 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 2082 + - uid: 1367 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 2083 + - uid: 1368 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 2085 + - uid: 1369 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 2086 + - uid: 1370 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 2087 + - uid: 1371 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 2088 + - uid: 1372 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 2089 + - uid: 1373 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 2090 + - uid: 1374 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 2091 + - uid: 1375 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 2092 + - uid: 1376 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 2093 + - uid: 1377 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 2094 + - uid: 1378 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 2095 + - uid: 1379 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 2096 + - uid: 1380 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 2099 + - uid: 1381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 2100 + - uid: 1382 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - - uid: 2101 + - uid: 1383 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 2102 + - uid: 1384 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - - uid: 2103 + - uid: 1385 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 1 - - uid: 2104 + - uid: 1386 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 2105 + - uid: 1387 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 2113 + - uid: 1388 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 2114 + - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 2115 + - uid: 1390 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 2116 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 1 - - uid: 2117 + - uid: 1392 components: - type: Transform rot: -1.5707963267948966 rad @@ -12746,25 +15681,25 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 2035 + - uid: 1393 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 2046 + - uid: 1394 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 2084 + - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 2098 + - uid: 1396 components: - type: Transform rot: -1.5707963267948966 rad @@ -12772,7 +15707,7 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 510 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad @@ -12780,7 +15715,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 835 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad @@ -12790,18 +15725,18 @@ entities: targetPressure: 90.325 - proto: GasVentPump entities: - - uid: 2009 + - uid: 1399 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1468 deviceLists: - - 2146 - - 2145 - - uid: 2010 + - 35 + - 34 + - uid: 1400 components: - type: Transform rot: 1.5707963267948966 rad @@ -12809,35 +15744,35 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1468 deviceLists: - - 2146 - - 2145 - - uid: 2013 + - 35 + - 34 + - uid: 1401 components: - type: Transform pos: 2.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1468 deviceLists: - - 2146 - - 2145 + - 35 + - 34 - proto: GasVentScrubber entities: - - uid: 2008 + - uid: 1402 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1468 deviceLists: - - 2146 - - 2145 - - uid: 2011 + - 35 + - 34 + - uid: 1403 components: - type: Transform rot: -1.5707963267948966 rad @@ -12845,143 +15780,143 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1468 deviceLists: - - 2146 - - 2145 - - uid: 2012 + - 35 + - 34 + - uid: 1404 components: - type: Transform pos: -1.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1468 deviceLists: - - 2146 - - 2145 + - 35 + - 34 - proto: GravityGeneratorMini entities: - - uid: 153 + - uid: 1405 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Grille entities: - - uid: 3 + - uid: 1406 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 4 + - uid: 1407 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 5 + - uid: 1408 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 6 + - uid: 1409 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 7 + - uid: 1410 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 54 + - uid: 1411 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 83 + - uid: 1412 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 88 + - uid: 1413 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 89 + - uid: 1414 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 90 + - uid: 1415 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 91 + - uid: 1416 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 292 + - uid: 1417 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 296 + - uid: 1418 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 710 + - uid: 1419 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 720 + - uid: 1420 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 782 + - uid: 1421 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 783 + - uid: 1422 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1256 + - uid: 1423 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1257 + - uid: 1424 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1258 + - uid: 1425 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1259 + - uid: 1426 components: - type: Transform rot: -1.5707963267948966 rad @@ -12989,46 +15924,46 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 76 + - uid: 1427 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 505 + - uid: 1428 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1149 + - uid: 1429 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 1151 + - uid: 1430 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1152 + - uid: 1431 components: - type: Transform pos: -4.5,36.5 parent: 1 - proto: HandHeldMassScannerEE entities: - - uid: 2144 + - uid: 1432 components: - type: Transform pos: 6.6539893,34.626114 parent: 1 - proto: JugBoriaticFuel entities: - - uid: 517 + - uid: 1433 components: - type: Transform pos: 2.77085,-12.420227 parent: 1 - - uid: 518 + - uid: 1434 components: - type: Transform rot: -1.5707963267948966 rad @@ -13036,35 +15971,22 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 840 + - uid: 1435 components: - type: Transform pos: -4.5,9.5 parent: 1 - proto: LampGold entities: - - uid: 535 + - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.700062,-7.996625 parent: 1 -- proto: LightBulbBroken - entities: - - uid: 1122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.6952374,22.684963 - parent: 1 - - uid: 1157 - components: - - type: Transform - pos: 1.9922628,28.825588 - parent: 1 - proto: LightStripInner entities: - - uid: 171 + - uid: 1437 components: - type: Transform rot: 1.5707963267948966 rad @@ -13073,7 +15995,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 184 + - uid: 1438 components: - type: Transform rot: 3.141592653589793 rad @@ -13082,7 +16004,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 224 + - uid: 1439 components: - type: Transform rot: -1.5707963267948966 rad @@ -13091,7 +16013,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 234 + - uid: 1440 components: - type: Transform pos: -0.5,10.5 @@ -13099,7 +16021,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 693 + - uid: 1441 components: - type: Transform rot: 1.5707963267948966 rad @@ -13110,7 +16032,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 395 + - uid: 1442 components: - type: Transform rot: -1.5707963267948966 rad @@ -13119,7 +16041,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 560 + - uid: 1443 components: - type: Transform rot: 3.141592653589793 rad @@ -13128,7 +16050,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 565 + - uid: 1444 components: - type: Transform rot: 1.5707963267948966 rad @@ -13137,7 +16059,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 568 + - uid: 1445 components: - type: Transform pos: 0.5,8.5 @@ -13145,18 +16067,9 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF -- proto: LockerBoozeFilled - entities: - - uid: 1039 - components: - - type: Transform - pos: 7.5,7.5 - parent: 1 - - type: Lock - locked: False - proto: LockerWoodenGeneric entities: - - uid: 117 + - uid: 1120 components: - type: Transform pos: 1.5,-10.5 @@ -13185,45 +16098,62 @@ entities: showEnts: False occludes: True ents: - - 125 - - 124 - - 122 - - 121 - - 120 - - 119 - - 118 + - 1124 + - 1126 + - 1125 + - 1127 + - 1123 + - 1121 + - 1122 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LuxuryPen entities: - - uid: 536 + - uid: 1446 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.3285117,-8.219619 parent: 1 +- proto: MaterialBiomass + entities: + - uid: 1447 + components: + - type: Transform + pos: -5.5318866,7.5747604 + parent: 1 - proto: MedalCase entities: - - uid: 532 + - uid: 1448 components: - type: Transform pos: -3.4919944,-9.185922 parent: 1 -- proto: MedkitAdvancedFilled +- proto: MedicalScanner entities: - - uid: 1109 + - uid: 1449 components: - type: Transform - pos: -4.2157016,11.484386 + pos: -6.5,7.5 parent: 1 - - type: Physics - angularDamping: 0 + - type: DeviceLinkSink + links: + - 1137 +- proto: MedkitAdvancedFilled + entities: + - uid: 1450 + components: + - type: Transform + pos: -4.2157016,11.484386 + parent: 1 + - type: Physics + angularDamping: 0 linearDamping: 0 - proto: MedkitBruteFilled entities: - - uid: 1099 + - uid: 1451 components: - type: Transform pos: -6.129805,8.493019 @@ -13233,7 +16163,7 @@ entities: linearDamping: 0 - proto: MedkitBurnFilled entities: - - uid: 1098 + - uid: 1452 components: - type: Transform pos: -6.11418,8.680649 @@ -13243,7 +16173,7 @@ entities: linearDamping: 0 - proto: MedkitCombatFilled entities: - - uid: 1100 + - uid: 1453 components: - type: Transform pos: -6.567305,8.743193 @@ -13251,9 +16181,14 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 + - uid: 2203 + components: + - type: Transform + pos: -6.58401,8.625718 + parent: 1 - proto: MedkitFilled entities: - - uid: 1093 + - uid: 1454 components: - type: Transform pos: -6.11418,8.821372 @@ -13263,7 +16198,7 @@ entities: linearDamping: 0 - proto: MedkitOxygenFilled entities: - - uid: 1101 + - uid: 1455 components: - type: Transform pos: -6.11418,8.2741165 @@ -13273,7 +16208,7 @@ entities: linearDamping: 0 - proto: MedkitToxinFilled entities: - - uid: 1097 + - uid: 1456 components: - type: Transform pos: -6.58293,8.383568 @@ -13283,112 +16218,135 @@ entities: linearDamping: 0 - proto: Multitool entities: - - uid: 1038 + - uid: 1457 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4180918,17.145731 parent: 1 - - uid: 1067 + - uid: 1458 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.566712,17.294394 parent: 1 +- proto: N14TableCounterBar + entities: + - uid: 1459 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 - proto: NCWLConscriptAmmoVendory entities: - - uid: 697 + - uid: 1463 components: - type: Transform pos: -2.5,22.5 parent: 1 - proto: NCWLConscriptGearVendory entities: - - uid: 844 + - uid: 1464 components: - type: Transform pos: 3.5,22.5 parent: 1 - proto: NCWLConscriptShipVendory entities: - - uid: 1055 + - uid: 1465 components: - type: Transform pos: -0.5,28.5 parent: 1 -- proto: NCWLPoster1 - entities: - - uid: 2168 - components: - - type: Transform - pos: -1.5,13.5 - parent: 1 -- proto: NCWLPoster2 +- proto: NCWLPoster3 entities: - - uid: 2167 + - uid: 1466 components: - type: Transform - pos: 2.5,13.5 + pos: -3.5,5.5 parent: 1 -- proto: NCWLPoster3 +- proto: NCWLVolginPhoto entities: - - uid: 2166 + - uid: 1467 components: - type: Transform - pos: -3.5,5.5 + pos: 2.9100273,-1.380785 parent: 1 - proto: NetworkConfigurator entities: - - uid: 2148 + - uid: 1468 components: - type: Transform pos: -3.7073967,18.259022 parent: 1 - type: NetworkConfigurator devices: - 'UID: 58949': 2009 - 'UID: 58952': 2008 - 'UID: 58950': 2010 - 'UID: 58953': 2011 - 'UID: 58954': 2012 - 'UID: 58951': 2013 + 'UID: 58949': 1399 + 'UID: 58952': 1402 + 'UID: 58950': 1400 + 'UID: 58953': 1403 + 'UID: 58954': 1404 + 'UID: 58951': 1401 linkModeActive: False -- proto: OreBox +- proto: OxygenCanister entities: - - uid: 1025 + - uid: 1469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + pos: -3.5,20.5 parent: 1 - - uid: 1030 + - uid: 1470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 + pos: 4.5,20.5 parent: 1 -- proto: OreProcessor +- proto: PaintingNCWLVolgin entities: - - uid: 949 + - uid: 1471 components: - type: Transform - pos: 4.5,15.5 + pos: 1.5,29.5 parent: 1 -- proto: OxygenCanister +- proto: Paper entities: - - uid: 906 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1 - - uid: 907 + - uid: 1472 components: - type: Transform - pos: 4.5,20.5 - parent: 1 + pos: 0.6101261,-10.405304 + parent: 1 + - type: Paper + content: >- + Captain’s To-Do List + + + 1. Gather the crew and conduct a briefing. + + + 2. Establish authority as the Captain of the Dear Clementine and organise the command hierarchy among the other captains. + + + 3. Deploy fighters and prepare the ship for the upcoming battle. + + + 4. I forgot... - proto: PaperBin20 entities: - - uid: 1135 + - uid: 1473 components: - type: Transform rot: -1.5707963267948966 rad @@ -13396,13 +16354,24 @@ entities: parent: 1 - proto: PaperOffice entities: - - uid: 533 + - uid: 1474 + components: + - type: Transform + pos: 2.4212117,-1.4017487 + parent: 1 + - type: Paper + content: >- + The weapons were emptied while we polished and treated them to remove corrosion. Do not forget to reload them before battle. + + + -Engineering + - uid: 1475 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.3582358,-8.516942 parent: 1 - - uid: 534 + - uid: 1476 components: - type: Transform rot: 1.5707963267948966 rad @@ -13410,7 +16379,7 @@ entities: parent: 1 - proto: Pen entities: - - uid: 1124 + - uid: 1477 components: - type: Transform rot: -1.5707963267948966 rad @@ -13418,22 +16387,22 @@ entities: parent: 1 - proto: PersonalAI entities: - - uid: 348 + - uid: 1110 components: - type: Transform - parent: 341 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasticFlapsAirtightOpaque entities: - - uid: 2231 + - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,26.5 parent: 1 - - uid: 2232 + - uid: 1479 components: - type: Transform rot: -1.5707963267948966 rad @@ -13441,212 +16410,223 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 2 + - uid: 1480 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 8 + - uid: 1481 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 9 + - uid: 1482 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 55 + - uid: 1483 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 61 + - uid: 1484 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 62 + - uid: 1485 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 81 + - uid: 1486 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 82 + - uid: 1487 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 96 + - uid: 1488 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 97 + - uid: 1489 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 98 + - uid: 1490 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 293 + - uid: 1491 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 295 + - uid: 1492 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 998 + - uid: 1493 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1297 + - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1298 + - uid: 1495 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1299 + - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1300 + - uid: 1497 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 2236 + - uid: 1498 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 2237 + - uid: 1499 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 2238 + - uid: 1500 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 -- proto: PowerCellRecharger +- proto: PosterContrabandCommunistState entities: - - uid: 2209 + - uid: 1501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 + pos: 3.5,2.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: PosterLegitBarDrinks + entities: + - uid: 1503 + components: + - type: Transform + pos: 4.5,19.5 parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 1160 + - uid: 1504 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1169 + - uid: 1505 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1260 + - uid: 1506 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 1261 + - uid: 1507 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 1262 + - uid: 1508 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,37.5 parent: 1 - - uid: 1263 + - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1264 + - uid: 1510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 1265 + - uid: 1511 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 - - uid: 1266 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 1267 + - uid: 1513 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1268 + - uid: 1514 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 1 - - uid: 1269 + - uid: 1515 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1270 + - uid: 1516 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1273 + - uid: 1517 components: - type: Transform rot: -1.5707963267948966 rad @@ -13654,1159 +16634,1325 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 1118 + - uid: 1518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,22.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + - uid: 1520 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 1119 + - uid: 1521 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1120 + - uid: 1522 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 1 - - uid: 1121 + - uid: 1523 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 1 - - uid: 1123 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 1 - - uid: 1144 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1159 + - uid: 1526 components: - type: Transform pos: 8.5,27.5 parent: 1 - - uid: 1179 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 1 - - uid: 1180 + - uid: 1528 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 1 - - uid: 1181 + - uid: 1529 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1182 + - uid: 1530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 + rot: -1.5707963267948966 rad + pos: 0.5,18.5 parent: 1 - - uid: 1189 + - uid: 1531 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1190 + - uid: 1532 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1191 + - uid: 1533 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 1192 + - uid: 1534 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 1194 + - uid: 1535 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1195 + - uid: 1536 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1196 + - uid: 1537 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1197 + - uid: 1538 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1200 + - uid: 1539 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 1201 + - uid: 1540 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1202 + - uid: 1541 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1203 + - uid: 1542 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1205 + - uid: 1543 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - - uid: 1206 + - uid: 1544 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1207 + - uid: 1545 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 1208 + - uid: 1546 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1209 + - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1210 + - uid: 1548 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1212 + - uid: 1549 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1213 + - uid: 1550 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1214 + - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1215 + - uid: 1552 components: - type: Transform - pos: -0.5,28.5 + pos: 3.5,28.5 parent: 1 - - uid: 1216 + - uid: 1553 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 1 -- proto: PoweredlightRed - entities: - - uid: 1075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 1 - - uid: 1076 + - uid: 1554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,36.5 + pos: -2.5,28.5 parent: 1 - - uid: 1077 + - uid: 1555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,38.5 + rot: -1.5707963267948966 rad + pos: 4.5,22.5 parent: 1 - - uid: 1078 +- proto: PoweredlightRed + entities: + - uid: 1556 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,38.5 + pos: 1.5,36.5 parent: 1 - - uid: 1158 + - uid: 1557 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 1 - - uid: 1161 + - uid: 1558 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 1 - - uid: 1162 + - uid: 1559 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1163 + - uid: 1560 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1165 + - uid: 1561 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 1 - - uid: 1167 + - uid: 1562 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1168 + - uid: 1563 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1170 + - uid: 1564 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1172 + - uid: 1565 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1176 + - uid: 1566 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1177 + - uid: 1567 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1303 + - uid: 1568 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1304 + - uid: 1569 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - - uid: 1383 + - uid: 1570 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 1384 + - uid: 1571 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 2130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - - uid: 2131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 -- proto: PoweredSmallLightEmpty - entities: - - uid: 827 - components: - - type: Transform - pos: 2.5,28.5 - parent: 1 - - uid: 1143 + - uid: 1572 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,22.5 + pos: -1.5,30.5 parent: 1 - proto: Rack entities: - - uid: 472 + - uid: 1573 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 887 + - uid: 1574 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 891 + - uid: 1575 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 1050 + - uid: 1576 components: - type: Transform pos: -9.5,-10.5 parent: 1 - proto: RadioHandheld entities: - - uid: 2135 + - uid: 1577 components: - type: Transform pos: 5.370796,34.6056 parent: 1 - - uid: 2136 + - uid: 1578 components: - type: Transform pos: 5.4748306,34.67993 parent: 1 - - uid: 2137 + - uid: 1579 components: - type: Transform pos: 5.534279,34.560997 parent: 1 - - uid: 2138 + - uid: 1580 components: - type: Transform pos: 5.2964873,34.67993 parent: 1 - - uid: 2139 + - uid: 1581 components: - type: Transform pos: 5.564003,34.739395 parent: 1 - - uid: 2140 + - uid: 1582 components: - type: Transform pos: 5.682898,34.665062 parent: 1 - proto: Railing entities: - - uid: 16 + - uid: 1583 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 31 + - uid: 1584 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 33 + - uid: 1585 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 123 + - uid: 1586 components: - type: Transform pos: -0.5,35.5 parent: 1 - - uid: 129 + - uid: 1587 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 130 + - uid: 1588 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 269 + - uid: 1589 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 596 + - uid: 1590 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 673 + - uid: 1591 components: - type: Transform pos: 1.5,35.5 parent: 1 - - uid: 759 + - uid: 1592 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 779 + - uid: 1593 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 960 + - uid: 1594 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 968 + - uid: 1595 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 1 - - uid: 969 + - uid: 1596 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 - - uid: 995 + - uid: 1597 components: - type: Transform pos: -5.5,8.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 15 + - uid: 1598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 + rot: 1.5707963267948966 rad + pos: 7.5,20.5 parent: 1 - - uid: 27 + - uid: 1599 components: - type: Transform - pos: 1.5,-2.5 + rot: 1.5707963267948966 rad + pos: 7.5,19.5 parent: 1 - - uid: 131 + - uid: 1600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,33.5 + rot: 1.5707963267948966 rad + pos: 7.5,17.5 parent: 1 - - uid: 619 + - uid: 1601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 + rot: 1.5707963267948966 rad + pos: 7.5,18.5 parent: 1 - - uid: 967 + - uid: 1602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,32.5 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 parent: 1 - - uid: 1019 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,33.5 + pos: 8.5,2.5 parent: 1 -- proto: RailingCornerSmall - entities: - - uid: 66 + - uid: 1604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 + rot: 1.5707963267948966 rad + pos: 7.5,16.5 parent: 1 - - uid: 67 + - uid: 1605 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-0.5 + pos: 8.5,-0.5 parent: 1 -- proto: RCD - entities: - - uid: 500 + - uid: 1606 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.3939753,-16.458853 + pos: 8.5,-1.5 parent: 1 -- proto: RCDAmmo - entities: - - uid: 501 + - uid: 1607 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.646629,-16.607515 + pos: 8.5,-3.5 parent: 1 - - uid: 502 + - uid: 1608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.646629,-16.414255 + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 parent: 1 -- proto: RemoteSignallerAdvanced - entities: - - uid: 1072 + - uid: 1609 components: - - type: MetaData - name: fire supercannon - type: Transform - pos: 3.0348194,-1.3908072 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 parent: 1 -- proto: RubberStampApproved - entities: - - uid: 136 + - uid: 1610 components: - type: Transform - pos: -0.015409172,-10.201724 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 parent: 1 -- proto: RubberStampDenied - entities: - - uid: 137 + - uid: 1611 components: - type: Transform - pos: -0.015409172,-10.380118 + rot: -1.5707963267948966 rad + pos: -7.5,0.5 parent: 1 -- proto: RubberStampNCWLCommand - entities: - - uid: 138 + - uid: 1612 components: - type: Transform - pos: -0.0005475879,-10.5733795 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 parent: 1 -- proto: SheetGlass - entities: - - uid: 1031 + - uid: 1613 components: - type: Transform - pos: -5.2448807,5.3164644 + rot: -1.5707963267948966 rad + pos: -6.5,20.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: SheetPlasma1 - entities: - - uid: 912 + - uid: 1614 components: - type: Transform - pos: -5.7609353,11.555087 + rot: -1.5707963267948966 rad + pos: -6.5,19.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 919 + - uid: 1615 components: - type: Transform - pos: -5.6512265,11.280864 + rot: -1.5707963267948966 rad + pos: -6.5,18.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 984 + - uid: 1616 components: - type: Transform - pos: -5.870644,11.747044 + rot: -1.5707963267948966 rad + pos: -6.5,17.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: SheetPlastic - entities: - - uid: 1041 + - uid: 1617 components: - type: Transform - pos: -5.7111416,5.412442 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: SheetSteel - entities: - - uid: 1064 + - uid: 1618 components: - type: Transform - pos: -5.5191517,5.3850203 + rot: 3.141592653589793 rad + pos: -0.5,38.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: ShotGunCabinetFilled - entities: - - uid: 126 + - uid: 1619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 + rot: 3.141592653589793 rad + pos: 0.5,38.5 parent: 1 -- proto: ShuttersNormal - entities: - - uid: 523 + - uid: 1620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 + rot: 3.141592653589793 rad + pos: 1.5,38.5 parent: 1 - - type: DeviceLinkSink - links: - - 529 - - uid: 524 + - uid: 1621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 + pos: 0.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 529 - - uid: 525 +- proto: RailingCorner + entities: + - uid: 1622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 529 -- proto: ShuttersNormalOpen - entities: - - uid: 139 + - uid: 1623 components: - type: Transform - pos: 0.5,-7.5 + pos: 1.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 142 - - uid: 140 + - uid: 1624 components: - type: Transform - pos: 1.5,-7.5 + rot: 3.141592653589793 rad + pos: -0.5,33.5 parent: 1 - - type: DeviceLinkSink - links: - - 142 - - uid: 751 + - uid: 1625 components: - type: Transform - pos: 3.5,19.5 + rot: -1.5707963267948966 rad + pos: -6.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 823 - - uid: 754 + - uid: 1626 components: - type: Transform - pos: 2.5,19.5 + rot: 3.141592653589793 rad + pos: 5.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 823 -- proto: SignalButton - entities: - - uid: 142 + - uid: 1627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,33.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 140: - - Pressed: Toggle - 139: - - Pressed: Toggle - - uid: 144 + - uid: 1628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 8.5,22.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 60: - - Pressed: Toggle - 48: - - Pressed: Toggle - 63: - - Pressed: Toggle - 64: - - Pressed: Toggle - 65: - - Pressed: Toggle - 790: - - Pressed: Toggle - 789: - - Pressed: Toggle - 788: - - Pressed: Toggle - 787: - - Pressed: Toggle - 786: - - Pressed: Toggle - 1834: - - Pressed: Toggle - 1832: - - Pressed: Toggle - 1613: - - Pressed: Toggle - 1600: - - Pressed: Toggle - - uid: 529 + - uid: 1629 components: - - type: MetaData - name: armory shutters - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 + rot: 3.141592653589793 rad + pos: -7.5,13.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 523: - - Pressed: Toggle - 524: - - Pressed: Toggle - 525: - - Pressed: Toggle - - uid: 823 + - uid: 1630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,22.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 754: - - Pressed: Toggle - 751: - - Pressed: Toggle - - uid: 964 + - uid: 1631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,24.5 + pos: 8.5,13.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2234: - - Pressed: Toggle - - uid: 1014 + - uid: 1632 components: - type: Transform - pos: 2.5,35.5 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 512: - - Pressed: Toggle - 1016: - - Pressed: Toggle - 1017: - - Pressed: Toggle - - uid: 1141 + - uid: 1633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,24.5 + rot: 3.141592653589793 rad + pos: -10.5,-8.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2233: - - Pressed: Toggle - - uid: 2156 + - uid: 1634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,14.5 + rot: 1.5707963267948966 rad + pos: 8.5,34.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2155: - - Pressed: Toggle - - uid: 2157 + - uid: 1635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + rot: 3.141592653589793 rad + pos: -7.5,34.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2154: - - Pressed: Toggle - - uid: 2158 + - uid: 1636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,22.5 + rot: 3.141592653589793 rad + pos: -6.5,36.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2153: - - Pressed: Toggle - - uid: 2159 + - uid: 1637 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,14.5 + pos: 7.5,36.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2152: - - Pressed: Toggle -- proto: SignChem - entities: - - uid: 1110 + - uid: 1638 components: - type: Transform - pos: -3.5,10.5 + pos: 1.5,26.5 parent: 1 -- proto: SignCryo - entities: - - uid: 918 + - uid: 1639 components: - type: Transform - pos: 4.5,7.5 + rot: -1.5707963267948966 rad + pos: -0.5,26.5 parent: 1 -- proto: SignLastIdiot +- proto: RailingCornerSmall entities: - - uid: 2169 + - uid: 1640 components: - type: Transform - pos: -3.5,29.5 + rot: 3.141592653589793 rad + pos: 1.5,-0.5 parent: 1 -- proto: SignSpace - entities: - - uid: 1291 + - uid: 1641 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: -0.5,-0.5 parent: 1 - - uid: 1292 +- proto: RCD + entities: + - uid: 1642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-0.5 + pos: 3.3939753,-16.458853 parent: 1 -- proto: SinkWide +- proto: RCDAmmo entities: - - uid: 339 + - uid: 1643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 + rot: 1.5707963267948966 rad + pos: 3.646629,-16.607515 parent: 1 - - uid: 340 + - uid: 1644 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-15.5 + pos: 3.646629,-16.414255 parent: 1 -- proto: SMESBasic +- proto: RubberStampApproved entities: - - uid: 504 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 1 - - uid: 509 + - uid: 1645 components: - type: Transform - pos: 10.5,-12.5 + pos: -0.015409172,-10.201724 parent: 1 - - uid: 1091 +- proto: RubberStampDenied + entities: + - uid: 1646 components: - type: Transform - pos: -6.5,4.5 + pos: -0.015409172,-10.380118 parent: 1 - - uid: 1092 +- proto: RubberStampNCWLCommand + entities: + - uid: 1647 components: - type: Transform - pos: -7.5,4.5 + pos: -0.0005475879,-10.5733795 parent: 1 -- proto: SoapDeluxe +- proto: SheetPlasma1 entities: - - uid: 347 + - uid: 1648 components: - type: Transform - parent: 341 + pos: -4.402343,9.6974325 + parent: 1 - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: StairStageDark + angularDamping: 0 + linearDamping: 0 + - uid: 1649 + components: + - type: Transform + pos: -4.79568,10.145023 + parent: 1 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1650 + components: + - type: Transform + pos: -4.226019,10.185714 + parent: 1 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ShotGunCabinetFilled entities: - - uid: 23 + - uid: 1651 components: - type: Transform - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 parent: 1 - - uid: 624 +- proto: ShuttersNormal + entities: + - uid: 1652 components: - type: Transform - pos: 2.5,32.5 + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 parent: 1 - - uid: 626 + - type: DeviceLinkSink + links: + - 1659 + - uid: 1653 components: - type: Transform - pos: -1.5,32.5 + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 parent: 1 - - uid: 1088 + - type: DeviceLinkSink + links: + - 1659 + - uid: 1654 components: - type: Transform - pos: -7.5,8.5 + rot: 1.5707963267948966 rad + pos: -6.5,-12.5 parent: 1 - - uid: 1147 + - type: DeviceLinkSink + links: + - 1659 +- proto: ShuttersNormalOpen + entities: + - uid: 1655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,32.5 + pos: 0.5,-7.5 parent: 1 -- proto: StationMap + - type: DeviceLinkSink + links: + - 1657 + - uid: 1656 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1657 +- proto: SignalButton entities: - - uid: 578 + - uid: 1657 components: - type: Transform - pos: -0.5,13.5 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 parent: 1 - - uid: 580 + - type: DeviceLinkSource + linkedPorts: + 1656: + - - Pressed + - Toggle + 1655: + - - Pressed + - Toggle + - uid: 1658 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,18.5 + pos: 4.5,-2.5 parent: 1 - - uid: 581 + - type: DeviceLinkSource + linkedPorts: + 198: + - - Pressed + - Toggle + 197: + - - Pressed + - Toggle + 199: + - - Pressed + - Toggle + 200: + - - Pressed + - Toggle + 201: + - - Pressed + - Toggle + 206: + - - Pressed + - Toggle + 205: + - - Pressed + - Toggle + 204: + - - Pressed + - Toggle + 203: + - - Pressed + - Toggle + 202: + - - Pressed + - Toggle + 210: + - - Pressed + - Toggle + 209: + - - Pressed + - Toggle + 208: + - - Pressed + - Toggle + 207: + - - Pressed + - Toggle + - uid: 1659 components: + - type: MetaData + name: armory shutters - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,33.5 + pos: -1.5,-8.5 parent: 1 - - uid: 582 + - type: DeviceLinkSource + linkedPorts: + 1652: + - - Pressed + - Toggle + 1653: + - - Pressed + - Toggle + 1654: + - - Pressed + - Toggle + - uid: 1660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,9.5 + pos: 5.5,24.5 parent: 1 - - uid: 583 + - type: DeviceLinkSource + linkedPorts: + 194: + - - Pressed + - Toggle + - uid: 1661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: 2.5,35.5 parent: 1 - - uid: 584 + - type: DeviceLinkSource + linkedPorts: + 186: + - - Pressed + - Toggle + 187: + - - Pressed + - Toggle + 188: + - - Pressed + - Toggle + - uid: 1662 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,0.5 + pos: -4.5,24.5 parent: 1 - - uid: 585 + - type: DeviceLinkSource + linkedPorts: + 193: + - - Pressed + - Toggle + - uid: 1663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 192: + - - Pressed + - Toggle + - uid: 1664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: 5.5,22.5 parent: 1 - - uid: 620 + - type: DeviceLinkSource + linkedPorts: + 191: + - - Pressed + - Toggle + - uid: 1665 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-9.5 + pos: -4.5,22.5 parent: 1 - - uid: 798 + - type: DeviceLinkSource + linkedPorts: + 190: + - - Pressed + - Toggle + - uid: 1666 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-9.5 + pos: -6.5,14.5 parent: 1 - - uid: 2142 + - type: DeviceLinkSource + linkedPorts: + 189: + - - Pressed + - Toggle + - uid: 1667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,23.5 + pos: -0.5,14.5 parent: 1 - - uid: 2143 + - type: DeviceLinkSource + linkedPorts: + 213: + - - Pressed + - Toggle + 211: + - - Pressed + - Toggle + 218: + - - Pressed + - Toggle + - uid: 1668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,23.5 + pos: 1.5,14.5 parent: 1 -- proto: SteelBench - entities: - - uid: 1052 + - type: DeviceLinkSource + linkedPorts: + 196: + - - Pressed + - Toggle + 217: + - - Pressed + - Toggle + 216: + - - Pressed + - Toggle + - uid: 1669 components: - type: Transform - pos: 6.5,-6.5 + rot: 3.141592653589793 rad + pos: 1.5,19.5 parent: 1 -- proto: SubstationBasic + - type: DeviceLinkSource + linkedPorts: + 212: + - - Pressed + - Toggle + 195: + - - Pressed + - Toggle + 215: + - - Pressed + - Toggle + 214: + - - Pressed + - Toggle +- proto: SignBridge entities: - - uid: 186 + - uid: 1670 components: - type: Transform - pos: 0.5,-16.5 + pos: -3.5,-4.5 parent: 1 - - uid: 491 + - uid: 1671 components: - type: Transform - pos: -4.5,7.5 + pos: 4.5,-4.5 parent: 1 -- proto: SuitStorageBase +- proto: SignChem entities: - - uid: 442 + - uid: 1672 components: - type: Transform - pos: -2.5,36.5 + pos: -3.5,10.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 588 - - 587 - - 520 - - 519 - - 446 - - uid: 621 +- proto: SignConference + entities: + - uid: 1673 components: - type: Transform - pos: -2.5,37.5 + pos: 1.5,13.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 622 - - 623 - - 625 - - 662 - - 664 - - uid: 666 +- proto: SignCryo + entities: + - uid: 1674 components: - type: Transform - pos: 3.5,37.5 + pos: 4.5,7.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 669 - - 674 - - 677 - - 681 - - 685 - - uid: 700 +- proto: SignEngineering + entities: + - uid: 1675 components: - type: Transform - pos: 7.5,28.5 + pos: 6.5,-7.5 parent: 1 - - type: EntityStorage +- proto: SignLastIdiot + entities: + - uid: 1676 + components: + - type: Transform + pos: -3.5,29.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 1679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 1681 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 +- proto: SoapDeluxe + entities: + - uid: 1111 + components: + - type: Transform + parent: 1104 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SodaDispenser + entities: + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 +- proto: StairStageDark + entities: + - uid: 1686 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -1.5,32.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,32.5 + parent: 1 +- proto: StationMap + entities: + - uid: 1691 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - uid: 1695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 1 +- proto: SteelBench + entities: + - uid: 1702 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 1703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 1706 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 80 + components: + - type: Transform + pos: -2.5,36.5 + parent: 1 + - type: EntityStorage air: volume: 200 immutable: False @@ -14830,15 +17976,15 @@ entities: showEnts: False occludes: True ents: - - 702 - - 739 - - 740 - - 741 - - 745 - - uid: 761 + - 82 + - 84 + - 81 + - 85 + - 83 + - uid: 86 components: - type: Transform - pos: -6.5,28.5 + pos: -2.5,37.5 parent: 1 - type: EntityStorage air: @@ -14864,15 +18010,15 @@ entities: showEnts: False occludes: True ents: - - 763 - - 764 - - 769 - - 770 - - 771 - - uid: 774 + - 91 + - 90 + - 88 + - 89 + - 87 + - uid: 92 components: - type: Transform - pos: 3.5,36.5 + pos: 3.5,37.5 parent: 1 - type: EntityStorage air: @@ -14898,15 +18044,15 @@ entities: showEnts: False occludes: True ents: - - 802 - - 801 - - 800 - - 799 - - 775 - - uid: 804 + - 96 + - 93 + - 97 + - 94 + - 95 + - uid: 98 components: - type: Transform - pos: -5.5,28.5 + pos: 7.5,28.5 parent: 1 - type: EntityStorage air: @@ -14932,15 +18078,15 @@ entities: showEnts: False occludes: True ents: - - 810 - - 809 - - 808 - - 807 - - 805 - - uid: 811 + - 99 + - 102 + - 103 + - 100 + - 101 + - uid: 104 components: - type: Transform - pos: 6.5,28.5 + pos: -6.5,28.5 parent: 1 - type: EntityStorage air: @@ -14966,152 +18112,254 @@ entities: showEnts: False occludes: True ents: - - 812 - - 813 - - 814 - - 815 - - 817 -- proto: SurveillanceCameraGeneral - entities: - - uid: 404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,1.5 - parent: 1 - - uid: 443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - - uid: 1379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 1 - - uid: 1380 + - 105 + - 106 + - 109 + - 107 + - 108 + - uid: 110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,3.5 + pos: 3.5,36.5 parent: 1 - - uid: 1381 - components: - - type: Transform - rot: 1.5707963267948966 rad + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 114 + - 113 + - 115 + - 112 + - 111 + - uid: 116 + components: + - type: Transform + pos: -5.5,28.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 118 + - 121 + - 119 + - 120 + - 117 + - uid: 122 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 125 + - 123 + - 127 + - 126 + - 124 +- proto: SurveillanceCameraGeneral + entities: + - uid: 1708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1382 + - uid: 1713 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1385 + - uid: 1714 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1386 + - uid: 1715 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1387 + - uid: 1716 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1388 + - uid: 1717 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1389 + - uid: 1718 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1390 + - uid: 1719 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-11.5 parent: 1 - - uid: 1391 + - uid: 1720 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1392 + - uid: 1721 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1393 + - uid: 1722 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 1394 + - uid: 1723 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1395 + - uid: 1724 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1396 + - uid: 1725 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1397 + - uid: 1726 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1398 + - uid: 1727 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1399 + - uid: 1728 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,28.5 parent: 1 - - uid: 1401 + - uid: 1729 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1402 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 1 - - uid: 1403 + - uid: 1731 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1404 + - uid: 1732 components: - type: Transform rot: 1.5707963267948966 rad @@ -15119,159 +18367,146 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 924 + - uid: 1733 components: - type: Transform pos: 5.5,13.5 parent: 1 - proto: Table entities: - - uid: 1145 + - uid: 1734 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1146 + - uid: 1735 components: - type: Transform pos: 5.5,34.5 parent: 1 - proto: TableGlass entities: - - uid: 791 + - uid: 1736 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 892 - components: - - type: Transform - pos: -5.5,11.5 - parent: 1 - - uid: 895 + - uid: 1737 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1102 + - uid: 1738 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: TableReinforced entities: - - uid: 53 + - uid: 1739 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1740 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 105 + - uid: 1742 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 106 + - uid: 1743 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 107 + - uid: 1744 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - - uid: 108 + - uid: 1745 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 109 + - uid: 1746 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 110 + - uid: 1747 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 111 + - uid: 1748 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 112 + - uid: 1749 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - uid: 275 + - uid: 1750 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 356 + - uid: 1751 components: - type: Transform pos: -4.5,-11.5 parent: 1 - - uid: 476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 1 - - uid: 498 + - uid: 1752 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 499 + - uid: 1753 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 950 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - uid: 996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1 - - uid: 1042 + - uid: 1754 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - uid: 1044 + - uid: 1755 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 1 - - uid: 1057 + - uid: 1756 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1066 + - uid: 1757 components: - type: Transform rot: 1.5707963267948966 rad @@ -15279,25 +18514,25 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 113 + - uid: 1758 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 116 + - uid: 1759 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 128 + - uid: 1760 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 526 + - uid: 1761 components: - type: Transform rot: 1.5707963267948966 rad @@ -15305,7 +18540,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 922 + - uid: 1260 components: - type: Transform pos: -4.5,13.5 @@ -15316,7 +18551,7 @@ entities: showEnts: False occludes: True ents: - - 923 + - 1261 machine_board: !type:Container showEnts: False occludes: True @@ -15327,38 +18562,38 @@ entities: ents: [] - proto: TelecomServerFilledNovaBalreska entities: - - uid: 1222 + - uid: 1762 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ThrusterNCWLFighter entities: - - uid: 449 + - uid: 1763 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 555 + - uid: 1764 components: - type: Transform pos: -9.5,-7.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 204 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 1 - - uid: 206 + - uid: 1766 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 1 - - uid: 208 + - uid: 1767 components: - type: Transform rot: -1.5707963267948966 rad @@ -15366,85 +18601,85 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 210 + - uid: 1768 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 1 - - uid: 211 + - uid: 1769 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 1 - - uid: 212 + - uid: 1770 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 1 - - uid: 244 + - uid: 1771 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 1 - - uid: 245 + - uid: 1772 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 247 + - uid: 1773 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 250 + - uid: 1774 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 251 + - uid: 1775 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 1 - - uid: 252 + - uid: 1776 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 1 - - uid: 253 + - uid: 1777 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 1 - - uid: 254 + - uid: 1778 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 1 - - uid: 255 + - uid: 1779 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 - - uid: 261 + - uid: 1780 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 1 - - uid: 262 + - uid: 1781 components: - type: Transform rot: 3.141592653589793 rad @@ -15452,25 +18687,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 327 + - uid: 1782 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 328 + - uid: 1783 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 329 + - uid: 1784 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 410 + - uid: 1785 components: - type: Transform rot: -1.5707963267948966 rad @@ -15478,25 +18713,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 416 + - uid: 1786 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,32.5 parent: 1 - - uid: 418 + - uid: 1787 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 1 - - uid: 605 + - uid: 1788 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 1 - - uid: 615 + - uid: 1789 components: - type: Transform rot: -1.5707963267948966 rad @@ -15506,7 +18741,7 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 1 - - uid: 616 + - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad @@ -15514,35 +18749,35 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 743 + - uid: 1791 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 744 + - uid: 1792 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1283 + - uid: 1793 components: - type: Transform pos: 6.5,38.5 parent: 1 - - uid: 1286 + - uid: 1794 components: - type: Transform pos: -5.5,38.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 337 + - uid: 1795 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 338 + - uid: 1796 components: - type: Transform rot: 1.5707963267948966 rad @@ -15550,103 +18785,114 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1024 + - uid: 1797 components: - type: Transform pos: -3.4924016,18.751282 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1065 + - uid: 1798 components: - type: Transform pos: -3.4924016,18.498556 parent: 1 - proto: TwoWayLever entities: - - uid: 958 + - uid: 1799 components: - type: Transform pos: -5.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 766: - - Left: Forward - - Right: Reverse - - Middle: Off - 765: - - Left: Forward - - Right: Reverse - - Middle: Off - 379: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 959 + 1153: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1152: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1151: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + - uid: 1800 components: - type: Transform pos: 6.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 768: - - Left: Forward - - Right: Reverse - - Middle: Off - 767: - - Left: Forward - - Right: Reverse - - Middle: Off - 1284: - - Left: Forward - - Right: Reverse - - Middle: Off + 1155: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1154: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1156: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - proto: UnionfallClementineMothershipComputer entities: - - uid: 1086 + - uid: 1801 components: - type: Transform pos: 1.5,28.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 543 + - uid: 1802 components: - type: Transform pos: 0.5,9.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 721 + - uid: 1803 components: - type: Transform pos: -4.5,8.5 parent: 1 - proto: VendingMachineColaBlack entities: - - uid: 1068 + - uid: 1804 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 561 + - uid: 1805 components: - type: Transform pos: -5.5,8.5 parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 1000 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1 - proto: VendingMachineSnack entities: - - uid: 1036 + - uid: 1806 components: - type: Transform rot: 3.141592653589793 rad @@ -15654,14 +18900,14 @@ entities: parent: 1 - proto: VendingMachineSnackOrange entities: - - uid: 1034 + - uid: 1807 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: VendingMachineSoda entities: - - uid: 893 + - uid: 1808 components: - type: Transform rot: 3.141592653589793 rad @@ -15669,14 +18915,14 @@ entities: parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 803 + - uid: 1809 components: - type: Transform pos: -5.5,30.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 917 + - uid: 1810 components: - type: Transform rot: 3.141592653589793 rad @@ -15684,1849 +18930,1790 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 914 + - uid: 1811 components: - type: Transform pos: 6.5,31.5 parent: 1 - - uid: 915 + - uid: 1812 components: - type: Transform pos: 6.5,30.5 parent: 1 - - uid: 956 + - uid: 1813 components: - type: Transform pos: -6.5,24.5 parent: 1 - - uid: 957 + - uid: 1814 components: - type: Transform pos: 7.5,24.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1023 + - uid: 1815 components: - type: Transform pos: -3.5,15.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 14 + - uid: 1816 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 19 + - uid: 1817 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 20 + - uid: 1818 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 29 + - uid: 1819 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 30 + - uid: 1820 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 32 + - uid: 1821 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 34 + - uid: 1822 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 41 + - uid: 1823 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 42 + - uid: 1824 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 43 + - uid: 1825 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 44 + - uid: 1826 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 45 + - uid: 1827 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 46 + - uid: 1828 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 47 + - uid: 1829 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 49 + - uid: 1830 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 1 - - uid: 50 + - uid: 1831 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 51 + - uid: 1832 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 - - uid: 52 + - uid: 1833 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 1 - - uid: 56 + - uid: 1834 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - uid: 57 + - uid: 1835 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 1 - - uid: 58 + - uid: 1836 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 59 + - uid: 1837 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - - uid: 70 + - uid: 1838 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 73 + - uid: 1839 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 77 + - uid: 1840 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - - uid: 78 + - uid: 1841 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - - uid: 79 + - uid: 1842 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - uid: 80 + - uid: 1843 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 84 + - uid: 1844 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 85 + - uid: 1845 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 86 + - uid: 1846 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 87 + - uid: 1847 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 92 + - uid: 1848 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 93 + - uid: 1849 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 94 + - uid: 1850 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 95 + - uid: 1851 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 99 + - uid: 1852 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 100 + - uid: 1853 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 132 + - uid: 1854 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,30.5 parent: 1 - - uid: 154 + - uid: 1855 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 155 + - uid: 1856 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 156 + - uid: 1857 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 157 + - uid: 1858 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 158 + - uid: 1859 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 159 + - uid: 1860 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 160 + - uid: 1861 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 161 + - uid: 1862 components: - type: Transform pos: -1.5,-17.5 parent: 1 - - uid: 162 + - uid: 1863 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 163 + - uid: 1864 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 164 + - uid: 1865 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 165 + - uid: 1866 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 166 + - uid: 1867 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 167 + - uid: 1868 components: - type: Transform pos: 11.5,-12.5 parent: 1 - - uid: 168 + - uid: 1869 components: - type: Transform pos: 11.5,-10.5 parent: 1 - - uid: 169 + - uid: 1870 components: - type: Transform pos: 11.5,-9.5 parent: 1 - - uid: 170 + - uid: 1871 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 172 + - uid: 1872 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 173 + - uid: 1873 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - - uid: 176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 1 - - uid: 177 + - uid: 1874 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 178 + - uid: 1875 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 181 + - uid: 1876 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 183 + - uid: 1877 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 188 + - uid: 1878 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 189 + - uid: 1879 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 1 - - uid: 190 + - uid: 1880 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 195 + - uid: 1881 components: - type: Transform pos: 8.5,-15.5 parent: 1 - - uid: 196 + - uid: 1882 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 197 + - uid: 1883 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 198 + - uid: 1884 components: - type: Transform pos: -1.5,-18.5 parent: 1 - - uid: 199 + - uid: 1885 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 200 + - uid: 1886 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - uid: 201 + - uid: 1887 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 202 + - uid: 1888 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 1 - - uid: 203 + - uid: 1889 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 205 + - uid: 1890 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - uid: 207 + - uid: 1891 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 209 + - uid: 1892 components: - type: Transform pos: 9.5,-15.5 parent: 1 - - uid: 213 + - uid: 1893 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 214 + - uid: 1894 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 215 + - uid: 1895 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 216 + - uid: 1896 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 217 + - uid: 1897 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 219 + - uid: 1898 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 221 + - uid: 1899 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 222 + - uid: 1900 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 223 + - uid: 1901 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - - uid: 225 + - uid: 1902 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 226 + - uid: 1903 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 227 + - uid: 1904 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 228 + - uid: 1905 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 229 + - uid: 1906 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 230 + - uid: 1907 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 231 + - uid: 1908 components: - type: Transform pos: 11.5,-11.5 parent: 1 - - uid: 232 + - uid: 1909 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 233 + - uid: 1910 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 235 + - uid: 1911 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 236 + - uid: 1912 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 237 + - uid: 1913 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 238 + - uid: 1914 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 239 + - uid: 1915 components: - type: Transform pos: 10.5,-14.5 parent: 1 - - uid: 241 + - uid: 1916 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 246 + - uid: 1917 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 248 + - uid: 1918 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 249 + - uid: 1919 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 256 + - uid: 1920 components: - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 259 + - uid: 1921 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 260 + - uid: 1922 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 263 + - uid: 1923 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - uid: 264 + - uid: 1924 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-9.5 parent: 1 - - uid: 265 + - uid: 1925 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 - - uid: 266 + - uid: 1926 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 1 - - uid: 267 + - uid: 1927 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 268 + - uid: 1928 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - - uid: 270 + - uid: 1929 components: - type: Transform pos: 8.5,-12.5 parent: 1 - - uid: 271 + - uid: 1930 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 272 + - uid: 1931 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 273 + - uid: 1932 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 277 + - uid: 1933 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 278 + - uid: 1934 components: - type: Transform pos: -6.5,-14.5 parent: 1 - - uid: 279 + - uid: 1935 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 280 + - uid: 1936 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 282 + - uid: 1937 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 283 + - uid: 1938 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 284 + - uid: 1939 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 285 + - uid: 1940 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 287 + - uid: 1941 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 288 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 1 - - uid: 289 + - uid: 1942 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 294 + - uid: 1943 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 297 + - uid: 1944 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 298 + - uid: 1945 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 299 + - uid: 1946 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 310 + - uid: 1947 components: - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 311 + - uid: 1948 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 312 + - uid: 1949 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 313 + - uid: 1950 components: - type: Transform pos: 8.5,-14.5 parent: 1 - - uid: 314 + - uid: 1951 components: - type: Transform pos: 8.5,-13.5 parent: 1 - - uid: 315 + - uid: 1952 components: - type: Transform pos: 9.5,-14.5 parent: 1 - - uid: 316 + - uid: 1953 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 317 + - uid: 1954 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 318 + - uid: 1955 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 319 + - uid: 1956 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 320 + - uid: 1957 components: - type: Transform pos: 6.5,-14.5 parent: 1 - - uid: 321 + - uid: 1958 components: - type: Transform pos: 7.5,-14.5 parent: 1 - - uid: 322 + - uid: 1959 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 325 + - uid: 1960 components: - type: Transform pos: 4.5,-16.5 parent: 1 - - uid: 326 + - uid: 1961 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 357 + - uid: 1962 components: - type: Transform pos: -4.5,37.5 parent: 1 - - uid: 360 + - uid: 1963 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 361 + - uid: 1964 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 362 + - uid: 1965 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 1 - - uid: 365 + - uid: 1966 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 367 + - uid: 1967 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 368 + - uid: 1968 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 369 + - uid: 1969 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 370 + - uid: 1970 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 371 + - uid: 1971 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 372 + - uid: 1972 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 373 + - uid: 1973 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 376 + - uid: 1974 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 377 + - uid: 1975 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 380 + - uid: 1976 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 381 + - uid: 1977 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - - uid: 382 + - uid: 1978 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - - uid: 383 + - uid: 1979 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - - uid: 384 + - uid: 1980 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 385 + - uid: 1981 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 1 - - uid: 386 + - uid: 1982 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 387 + - uid: 1983 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 - - uid: 389 + - uid: 1984 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 1 - - uid: 390 + - uid: 1985 components: - type: Transform pos: -6.5,12.5 parent: 1 - - uid: 392 + - uid: 1986 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 393 + - uid: 1987 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 396 + - uid: 1988 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 1 - - uid: 399 + - uid: 1989 components: - type: Transform pos: -6.5,21.5 parent: 1 - - uid: 400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - - uid: 401 + - uid: 1990 components: - type: Transform pos: -6.5,23.5 parent: 1 - - uid: 403 + - uid: 1991 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 405 + - uid: 1992 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 406 + - uid: 1993 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 409 + - uid: 1994 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 1 - - uid: 411 + - uid: 1995 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,24.5 parent: 1 - - uid: 412 + - uid: 1996 components: - type: Transform pos: 7.5,21.5 parent: 1 - - uid: 413 + - uid: 1997 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 414 + - uid: 1998 components: - type: Transform pos: 7.5,23.5 parent: 1 - - uid: 417 + - uid: 1999 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 419 + - uid: 2000 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 421 + - uid: 2001 components: - type: Transform pos: 5.5,37.5 parent: 1 - - uid: 422 + - uid: 2002 components: - type: Transform pos: -7.5,29.5 parent: 1 - - uid: 425 + - uid: 2003 components: - type: Transform pos: -1.5,37.5 parent: 1 - - uid: 426 + - uid: 2004 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,34.5 parent: 1 - - uid: 427 + - uid: 2005 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 428 + - uid: 2006 components: - type: Transform pos: 8.5,29.5 parent: 1 - - uid: 429 + - uid: 2007 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 432 + - uid: 2008 components: - type: Transform pos: -6.5,32.5 parent: 1 - - uid: 433 + - uid: 2009 components: - type: Transform pos: -6.5,31.5 parent: 1 - - uid: 434 + - uid: 2010 components: - type: Transform pos: 7.5,31.5 parent: 1 - - uid: 436 + - uid: 2011 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 437 + - uid: 2012 components: - type: Transform pos: 7.5,32.5 parent: 1 - - uid: 438 + - uid: 2013 components: - type: Transform pos: -1.5,35.5 parent: 1 - - uid: 439 + - uid: 2014 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 440 + - uid: 2015 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,34.5 parent: 1 - - uid: 441 + - uid: 2016 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,35.5 parent: 1 - - uid: 444 + - uid: 2017 components: - type: Transform pos: -1.5,38.5 parent: 1 - - uid: 445 + - uid: 2018 components: - type: Transform pos: -1.5,36.5 parent: 1 - - uid: 447 + - uid: 2019 components: - type: Transform pos: -5.5,35.5 parent: 1 - - uid: 448 + - uid: 2020 components: - type: Transform pos: 6.5,35.5 parent: 1 - - uid: 450 + - uid: 2021 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 1 - - uid: 451 + - uid: 2022 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 1 - - uid: 452 + - uid: 2023 components: - type: Transform pos: 7.5,33.5 parent: 1 - - uid: 453 + - uid: 2024 components: - type: Transform pos: -6.5,33.5 parent: 1 - - uid: 460 + - uid: 2025 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,14.5 - parent: 1 - - uid: 462 + - uid: 2026 components: - type: Transform pos: -6.5,29.5 parent: 1 - - uid: 467 + - uid: 2027 components: - type: Transform pos: -6.5,30.5 parent: 1 - - uid: 473 + - uid: 2028 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 1 - - uid: 474 + - uid: 2029 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 1 - - uid: 480 + - uid: 2030 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 482 + - uid: 2031 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 483 + - uid: 2032 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 484 + - uid: 2033 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 493 + - uid: 2034 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 496 + - uid: 2035 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 497 + - uid: 2036 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 537 + - uid: 2037 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 538 + - uid: 2038 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 539 + - uid: 2039 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 540 + - uid: 2040 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 541 + - uid: 2041 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 542 + - uid: 2042 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 544 + - uid: 2043 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 545 + - uid: 2044 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 546 + - uid: 2045 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 547 + - uid: 2046 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 551 + - uid: 2047 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 552 + - uid: 2048 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 553 + - uid: 2049 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 554 + - uid: 2050 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 556 + - uid: 2051 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 557 + - uid: 2052 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 558 + - uid: 2053 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 590 + - uid: 2054 components: - type: Transform pos: 2.5,36.5 parent: 1 - - uid: 591 + - uid: 2055 components: - type: Transform pos: 2.5,37.5 parent: 1 - - uid: 592 + - uid: 2056 components: - type: Transform pos: 2.5,38.5 parent: 1 - - uid: 593 + - uid: 2057 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,38.5 parent: 1 - - uid: 594 + - uid: 2058 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 1 - - uid: 597 + - uid: 2059 components: - type: Transform pos: 2.5,35.5 parent: 1 - - uid: 598 + - uid: 2060 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 606 + - uid: 2061 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 1 - - uid: 609 + - uid: 2062 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,28.5 parent: 1 - - uid: 610 + - uid: 2063 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 1 - - uid: 627 + - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 1 - - uid: 628 + - uid: 2065 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,28.5 parent: 1 - - uid: 632 + - uid: 2066 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 633 + - uid: 2067 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 634 + - uid: 2068 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 635 + - uid: 2069 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 1 - - uid: 636 + - uid: 2070 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 1 - - uid: 637 + - uid: 2071 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 1 - - uid: 638 + - uid: 2072 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,18.5 parent: 1 - - uid: 639 + - uid: 2073 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 1 - - uid: 640 + - uid: 2074 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 1 - - uid: 641 + - uid: 2075 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 1 - - uid: 642 + - uid: 2076 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 643 + - uid: 2077 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 1 - - uid: 644 + - uid: 2078 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 1 - - uid: 645 + - uid: 2079 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 646 + - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 1 - - uid: 647 + - uid: 2081 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 1 - - uid: 648 + - uid: 2082 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,17.5 parent: 1 - - uid: 649 + - uid: 2083 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 1 - - uid: 650 + - uid: 2084 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,19.5 parent: 1 - - uid: 651 + - uid: 2085 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 1 - - uid: 652 + - uid: 2086 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 1 - - uid: 653 + - uid: 2087 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 654 + - uid: 2088 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,23.5 parent: 1 - - uid: 655 + - uid: 2089 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 659 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,28.5 parent: 1 - - uid: 660 + - uid: 2091 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 1 - - uid: 663 + - uid: 2092 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 1 - - uid: 665 + - uid: 2093 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,35.5 parent: 1 - - uid: 667 + - uid: 2094 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,29.5 parent: 1 - - uid: 668 + - uid: 2095 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,29.5 parent: 1 - - uid: 670 + - uid: 2096 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 1 - - uid: 671 + - uid: 2097 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 672 + - uid: 2098 components: - type: Transform pos: -2.5,35.5 parent: 1 - - uid: 675 + - uid: 2099 components: - type: Transform pos: -5.5,29.5 parent: 1 - - uid: 678 + - uid: 2100 components: - type: Transform pos: 6.5,29.5 parent: 1 - - uid: 679 + - uid: 2101 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - uid: 682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - - uid: 683 + - uid: 2102 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 684 + - uid: 2103 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 1 - - uid: 686 + - uid: 2104 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 687 + - uid: 2105 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - - uid: 689 + - uid: 2106 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 1 - - uid: 690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - uid: 691 + - uid: 2107 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 1 - - uid: 692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 1 - - uid: 696 + - uid: 2108 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - - uid: 699 + - uid: 2109 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 703 + - uid: 2110 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - - uid: 742 + - uid: 2111 components: - type: Transform pos: 3.5,35.5 parent: 1 - - uid: 748 + - uid: 2112 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 750 + - uid: 2113 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,34.5 parent: 1 - - uid: 777 + - uid: 2114 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 778 + - uid: 2115 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 784 + - uid: 2116 components: - type: Transform pos: -5.5,37.5 parent: 1 - - uid: 785 + - uid: 2117 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 818 + - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,35.5 parent: 1 - - uid: 885 + - uid: 2119 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 1 - - uid: 978 + - uid: 2120 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 - - uid: 985 + - uid: 2121 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,29.5 parent: 1 - - uid: 986 + - uid: 2122 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 1 - - uid: 992 + - uid: 2123 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 1013 + - uid: 2124 components: - type: Transform pos: -2.5,34.5 parent: 1 - - uid: 1027 + - uid: 2125 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 1094 + - uid: 2126 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 1164 + - uid: 2127 components: - type: Transform pos: 6.5,37.5 parent: 1 - - uid: 1166 + - uid: 2128 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 1171 + - uid: 2129 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 1173 + - uid: 2130 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 1186 + - uid: 2131 components: - type: Transform pos: -8.5,10.5 parent: 1 - - uid: 1187 + - uid: 2132 components: - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 1188 + - uid: 2133 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,29.5 parent: 1 - - uid: 1211 + - uid: 2134 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 1223 + - uid: 2135 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 1255 + - uid: 2136 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 2118 + - uid: 2137 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 2119 + - uid: 2138 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 2120 + - uid: 2139 components: - type: Transform rot: -1.5707963267948966 rad @@ -17534,123 +20721,376 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 18 + - uid: 2140 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 220 + - uid: 2141 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 1029 + - uid: 2142 components: - type: Transform pos: -8.5,28.5 parent: 1 - - uid: 1142 + - uid: 2143 components: - type: Transform pos: -8.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 17 + - uid: 2144 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 218 + - uid: 2145 components: - type: Transform pos: 12.5,-9.5 parent: 1 - - uid: 1026 + - uid: 2146 components: - type: Transform pos: 9.5,28.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 478 + - uid: 2147 components: - type: Transform pos: 9.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 13 + - uid: 2148 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 323 + - uid: 2149 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 481 + - uid: 2150 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 1059 + - uid: 2151 components: - type: Transform pos: -8.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 72 + - uid: 2152 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 324 + - uid: 2153 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 999 + - uid: 2154 components: - type: Transform pos: 9.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 258 + - uid: 2155 components: - type: Transform pos: 10.5,-15.5 parent: 1 - - uid: 291 + - uid: 2156 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: WarpPointShip entities: - - uid: 1069 + - uid: 2157 components: + - type: MetaData + name: NCWL Dear Clementine - type: Transform pos: 0.5,-3.5 parent: 1 - proto: WaterCooler entities: - - uid: 115 + - uid: 2158 components: - type: Transform pos: 2.5,-6.5 parent: 1 +- proto: WeaponPistolZodum + entities: + - uid: 2159 + components: + - type: Transform + pos: -0.25773263,-10.528703 + parent: 1 - proto: WeaponTurretMortar entities: - - uid: 731 + - uid: 2160 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: [] + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: [] + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: [] + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: 2164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: [] + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: 2166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !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: 2167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17660,124 +21100,414 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ent: null + gun_chamber: !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: WeaponTurretPDT + entities: + - uid: 2168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,34.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,36.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2171 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,22.5 + parent: 1 + - type: PointCannon + linkedConsoleId: 1147 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - type: PointCannon - linkedConsoleId: 886 - - uid: 738 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,20.5 + rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - type: PointCannon - linkedConsoleId: 886 - - uid: 898 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,16.5 + pos: 8.5,13.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - type: PointCannon - linkedConsoleId: 886 - - uid: 910 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 + rot: 3.141592653589793 rad + pos: -6.5,36.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - uid: 946 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2181 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,16.5 + pos: -6.5,18.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - type: PointCannon - linkedConsoleId: 886 - - uid: 953 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2182 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,2.5 + pos: 7.5,18.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - uid: 954 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 + pos: 0.5,-20.5 parent: 1 - type: ContainerContainer containers: @@ -17785,19 +21515,24 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null - - uid: 955 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - type: PointCannon + linkedConsoleId: 1147 + - uid: 2184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 + pos: 8.5,-19.5 parent: 1 - type: ContainerContainer containers: @@ -17805,169 +21540,64 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null -- proto: WeaponTurretPDT - entities: - - uid: 179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,34.5 - parent: 1 - - type: PointCannon - linkedConsoleId: 886 - - uid: 182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,34.5 - parent: 1 - - type: PointCannon - linkedConsoleId: 886 - - uid: 522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,36.5 - parent: 1 - - type: PointCannon - linkedConsoleId: 886 - - uid: 970 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 1 - - uid: 971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 1 - - uid: 972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - - uid: 973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1 - - uid: 974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1 - - uid: 975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - - uid: 979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 - parent: 1 - - uid: 981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1 - - uid: 997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - - uid: 1043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,36.5 - parent: 1 - - uid: 1046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - - uid: 1053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - - uid: 1198 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 1 - - type: PointCannon - linkedConsoleId: 886 - - uid: 1199 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1 + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 886 + linkedConsoleId: 1147 - proto: WindoorSecure entities: - - uid: 69 + - uid: 2185 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 74 + - uid: 2186 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 75 + - uid: 2187 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 469 + - uid: 2188 components: - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 976 + - uid: 2189 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 977 + - uid: 2190 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1089 + - uid: 2191 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 1090 + - uid: 2192 components: - type: Transform rot: 3.141592653589793 rad @@ -17975,60 +21605,60 @@ entities: parent: 1 - proto: WindoorSecureNCWLCommand entities: - - uid: 11 + - uid: 2193 components: - type: Transform pos: 1.5,-7.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 308 + - uid: 2194 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 - - uid: 454 + - uid: 2195 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 455 + - uid: 2196 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 456 + - uid: 2197 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 457 + - uid: 2198 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 1 - - uid: 463 + - uid: 2199 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 464 + - uid: 2200 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 466 + - uid: 2201 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - - uid: 468 + - uid: 2202 components: - type: Transform pos: 5.5,-12.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml index cd49c610f5b..32b7efabf37 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml @@ -1,8 +1,21 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 12:03:03 + entityCount: 1885 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space + 19: FloorBrokenWood + 17: FloorDark 1: FloorDarkDiagonal 6: FloorDarkDiagonalMini 12: FloorDarkMono @@ -11,12 +24,15 @@ tilemap: 13: FloorMS13CarpetFancyBlue 10: FloorMiningDark 8: FloorReinforced + 21: FloorShuttleWhite 2: FloorTechMaint 7: FloorTechMaint2 14: FloorTechMaintDirectional + 20: FloorWhite 4: FloorWhiteOffset 9: FloorWhitePavementVertical 5: FloorWood + 18: FloorWoodHouseBroken 129: Lattice 130: Plating 16: PlatingBurnt @@ -36,40 +52,40 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BgAAAAAADQAAAAAADQAAAAAADQAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAggAAAAAAAAEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAABAAAAAAAAEQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAABEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAABEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAggAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAggAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAARAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAgAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAABQAAAAAAABIAAAAAAAATAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAABMAAAAAAAAFAAAAAAAAEgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEgAAAAAAABMAAAAAAAAFAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAPAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAYAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAIIAAAAAAACBAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAABEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAgQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACBAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -94,3062 +110,4851 @@ entities: nodes: - node: color: '#D381C996' - id: ArrowsGreyscale + id: BoxGreyscale decals: - 109: -7,-15 - 110: -5,-15 - 111: -7,-13 + 21: 2,6 + 22: 2,6 + 23: 3,6 + 24: 3,6 + 25: 6,6 + 26: 6,6 + 27: 5,6 + 28: 5,6 + 2354: 2,0 - node: angle: 3.141592653589793 rad color: '#D381C996' - id: ArrowsGreyscale + id: BoxGreyscale decals: - 112: -7,-13 - 113: -5,-13 + 29: -2,-27 + 30: -2,-27 + 31: -2,-27 - node: color: '#D381C996' - id: BoxGreyscale + id: BrickTileSteelCornerNe decals: - 70: -10,-20 - 71: -9,-20 - 72: -10,-20 - 81: 2,6 - 82: 2,6 - 83: 3,6 - 84: 3,6 - 85: 6,6 - 86: 6,6 - 87: 5,6 - 88: 5,6 - 89: -4,-12 - 90: -4,-12 - 91: -5,-12 - 92: -5,-12 - 93: -8,-12 - 94: -8,-12 - 95: -7,-12 - 96: -7,-12 - 97: -8,-14 - 98: -8,-14 - 99: -7,-14 - 100: -7,-14 - 101: -8,-16 - 102: -8,-16 - 103: -7,-16 - 104: -7,-16 - 105: -4,-16 - 106: -4,-16 - 107: -5,-16 - 108: -5,-16 - 177: -5,-14 - 192: 0,-24 - 193: -12,-24 + 2277: 5,4 + 2317: 0,-19 + 2396: 8,1 + 2405: 8,1 + 2407: 0,5 + 2408: 1,4 + 3989: 8,-24 + 4031: -4,-25 - node: - angle: 3.141592653589793 rad + angle: 6.283185307179586 rad color: '#D381C996' - id: BoxGreyscale + id: BrickTileSteelCornerNe decals: - 114: -2,-27 - 115: -2,-27 - 116: -2,-27 + 4046: -9,-18 + 4058: -5,-18 - node: color: '#D381C996' - id: ConcreteTrimCornerNe + id: BrickTileSteelCornerNw + decals: + 2275: 3,4 + 2285: -2,0 + 2294: -3,-18 + 2406: 7,4 + 2420: 1,1 + 3991: 3,-24 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelCornerNw decals: - 37: 0,-19 - 124: -6,-8 - 125: -6,-8 - 126: -6,-8 - 137: 6,-19 - 157: 8,-25 - 167: -4,0 + 4038: -7,-25 + 4059: -7,-18 + 4074: -12,-23 - node: color: '#D381C996' - id: ConcreteTrimCornerNw + id: BrickTileSteelCornerSe decals: - 7: -2,0 - 22: -3,-18 - 121: -5,-8 - 122: -5,-8 - 123: -5,-8 - 140: 2,-19 - 164: -7,0 + 2276: 5,3 + 2316: 0,-21 + 2409: 1,3 + 3990: 8,-27 - node: + angle: 6.283185307179586 rad color: '#D381C996' - id: ConcreteTrimCornerSe + id: BrickTileSteelCornerSe decals: - 36: 0,-21 - 130: -6,-7 - 131: -6,-7 - 132: -6,-7 - 158: 8,-26 - 166: -4,-2 + 4033: -4,-27 + 4041: -9,-26 + 4045: -9,-20 + 4056: -5,-20 - node: color: '#D381C996' - id: ConcreteTrimCornerSw + id: BrickTileSteelCornerSw + decals: + 2286: -7,-23 + 2413: -2,2 + 3992: 3,-27 + 4024: 10,-23 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 4032: -7,-27 + 4057: -7,-20 + 4075: -12,-25 + - node: + color: '#D381C996' + id: BrickTileSteelEndS + decals: + 4025: 11,-24 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNe + decals: + 2389: -1,-19 + 2404: 7,1 + 2417: 0,4 + 4023: 8,-22 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelInnerNe + decals: + 4055: -9,-19 + 4063: -5,-19 + 4066: -6,-25 + 4070: -10,-22 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNw + decals: + 2387: -3,-22 + 2390: -2,-18 + 2401: 7,1 + 2422: 1,0 + 3999: 3,-25 + 4019: 2,-21 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelInnerNw + decals: + 4064: -7,-19 + 4069: -6,-25 + 4072: -10,-23 + - node: + color: '#D381C996' + id: BrickTileSteelInnerSe + decals: + 2388: -2,-21 + 2416: -1,3 + 4015: 3,-22 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelInnerSe + decals: + 4054: -9,-19 + 4062: -5,-19 + 4068: -6,-23 + - node: + color: '#D381C996' + id: BrickTileSteelInnerSw + decals: + 3998: 3,-25 + 4026: 11,-23 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelInnerSw + decals: + 4053: -10,-19 + 4065: -7,-19 + 4067: -6,-23 + - node: + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 2313: -2,-22 + 2318: -1,-18 + 2319: -1,-16 + 2320: -1,-17 + 2321: -1,-15 + 2322: -1,-14 + 2323: -1,-13 + 2324: -1,-10 + 2325: -1,-9 + 2326: -1,-8 + 2327: -1,-7 + 2328: -1,-6 + 2329: -1,-5 + 2392: 8,-3 + 2393: 8,-2 + 2394: 8,-1 + 2395: 8,0 + 2402: 7,3 + 2403: 7,2 + 2415: -1,2 + 4000: 8,-26 + 4001: 8,-25 + 4020: 8,-21 + 4021: 8,-20 + 4027: 11,-23 + 4028: 11,-22 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 4034: -4,-26 + 4042: -9,-25 + 4043: -9,-24 + 4044: -9,-23 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 2287: -7,-22 + 2288: -6,-22 + 2289: -5,-22 + 2290: -4,-22 + 2399: 6,1 + 2400: 5,1 + 2410: -2,5 + 2421: 0,0 + 2423: 2,1 + 4002: 7,-24 + 4003: 6,-24 + 4004: 5,-24 + 4005: 4,-24 + 4006: 7,-19 + 4007: 6,-19 + 4008: 5,-19 + 4009: 4,-19 + 4010: 3,-19 + 4029: 10,-22 + 4030: -9,-22 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelLineN decals: - 29: -7,-23 - 127: -5,-7 - 128: -5,-7 - 129: -5,-7 - 141: 2,-21 - 159: 4,-26 - 165: -7,-2 + 4039: -5,-25 + 4047: -10,-18 + 4048: -11,-18 + 4049: -12,-18 + 4060: -6,-18 + 4073: -11,-23 - node: color: '#D381C996' - id: ConcreteTrimInnerNe + id: BrickTileSteelLineS decals: - 38: -1,-19 + 2272: 5,3 + 2273: 4,3 + 2274: 5,3 + 2278: 8,-4 + 2279: 7,-4 + 2280: 6,-4 + 2308: -5,-23 + 2309: -4,-23 + 2310: -3,-23 + 2311: -2,-23 + 2312: -1,-23 + 2314: -1,-21 + 2315: 0,-21 + 2391: 5,-4 + 2414: 0,3 + 3993: 7,-27 + 3994: 6,-27 + 3995: 5,-27 + 3996: 4,-27 + 4011: 7,-22 + 4012: 6,-22 + 4013: 5,-22 + 4014: 4,-22 + 4017: 2,-21 + 4022: 8,-22 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 4035: -5,-27 + 4036: -6,-27 + 4040: -10,-26 + 4050: -12,-19 + 4051: -11,-19 + 4061: -6,-20 - node: color: '#D381C996' - id: ConcreteTrimInnerNw + id: BrickTileSteelLineW decals: - 21: -2,-18 - 25: -3,-22 + 2281: -2,-4 + 2282: -2,-2 + 2283: -2,-3 + 2284: -2,-1 + 2291: -3,-21 + 2292: -3,-20 + 2293: -3,-19 + 2295: -2,-17 + 2296: -2,-16 + 2297: -2,-15 + 2298: -2,-14 + 2299: -2,-13 + 2300: -2,-12 + 2301: -2,-11 + 2302: -2,-10 + 2303: -2,-9 + 2304: -2,-8 + 2305: -2,-7 + 2306: -2,-6 + 2307: -2,-5 + 2397: 7,3 + 2398: 7,2 + 2411: -2,4 + 2412: -2,3 + 2418: 3,3 + 2419: 3,2 + 3997: 3,-26 + 4016: 3,-22 + 4018: 2,-20 - node: + angle: 6.283185307179586 rad color: '#D381C996' - id: ConcreteTrimInnerSe + id: BrickTileSteelLineW decals: - 34: -2,-21 + 4037: -7,-26 + 4052: -10,-20 + 4071: -10,-22 + 4076: -12,-24 - node: color: '#D381C996' - id: ConcreteTrimInnerSw + id: ConcreteTrimCornerNe decals: - 146: 4,-21 - 147: -6,-20 + 36: -6,-8 + 37: -6,-8 + 38: -6,-8 - node: color: '#D381C996' - id: ConcreteTrimLineE + id: ConcreteTrimCornerNw decals: - 33: -2,-22 - 39: -1,-18 - 40: -1,-17 - 41: -1,-16 - 42: -1,-15 - 43: -1,-14 - 44: -1,-13 - 45: -1,-10 - 46: -1,-9 - 47: -1,-8 - 48: -1,-7 - 117: -1,-5 - 120: -1,-6 - 138: 6,-21 - 139: 6,-21 + 33: -5,-8 + 34: -5,-8 + 35: -5,-8 - node: color: '#D381C996' - id: ConcreteTrimLineN + id: ConcreteTrimCornerSe decals: - 26: -4,-22 - 27: -5,-22 - 28: -6,-22 - 69: -9,-18 - 143: 3,-19 - 144: 4,-19 - 145: 5,-19 - 155: 6,-25 - 156: 7,-25 - 169: -6,0 - 170: -5,0 + 42: -6,-7 + 43: -6,-7 + 44: -6,-7 - node: color: '#D381C996' - id: ConcreteTrimLineS + id: ConcreteTrimCornerSw decals: - 30: -5,-23 - 31: -4,-23 - 32: -3,-23 - 35: -1,-21 - 142: 3,-21 - 161: 5,-26 - 162: 6,-26 - 163: 7,-26 - 171: -6,-2 - 172: -5,-2 + 39: -5,-7 + 40: -5,-7 + 41: -5,-7 - node: color: '#D381C996' id: ConcreteTrimLineW decals: - 8: -2,-2 - 9: -2,-4 - 10: -2,-3 - 11: -2,-7 - 12: -2,-8 - 13: -2,-9 - 14: -2,-10 - 15: -2,-11 - 16: -2,-12 - 17: -2,-13 - 18: -2,-15 - 19: -2,-16 - 20: -2,-17 - 23: -3,-20 - 24: -3,-21 - 118: -2,-5 - 160: 4,-25 - 168: -7,-1 + 32: -2,-5 - node: color: '#FF94FF43' id: DeliveryGreyscale decals: - 194: -11,-9 - 195: -10,-4 - 199: 11,-5 - 200: 10,0 - 201: 9,6 - 202: 8,10 + 61: -11,-9 + 62: -10,-4 + - node: + color: '#D381C996' + id: DirtHeavy + decals: + 2234: -4,9 + 2235: -5,10 + 2236: -3,10 + 2237: -5,11 + 2238: -3,9 + 2239: -4,8 + 2454: 6,10 + 2455: 6,11 + 2456: 2,9 - node: - angle: 6.283185307179586 rad color: '#FFFFFFFF' - id: Dirt + id: DirtHeavy decals: - 340: -4,-14 - 341: -5,-14 - 342: -5,-15 - 343: -4,-15 - 344: -4,-16 - 345: -5,-16 - 346: -6,-16 - 347: -6,-15 - 348: -7,-15 - 349: -7,-16 - 350: -8,-16 - 351: -8,-15 - 352: -8,-14 - 353: -7,-14 - 354: -7,-13 - 355: -8,-13 - 356: -8,-12 - 357: -6,-12 - 358: -6,-12 - 359: -6,-13 - 360: -5,-13 - 361: -4,-13 - 362: -4,-12 - 363: -5,-12 + 2355: -1,-4 + 2356: -2,-3 + 2357: 3,-3 + 2358: 7,-3 + 2359: 7,2 + 2360: 6,-1 + 2361: 8,-2 + 2362: 1,-1 + 2363: -5,4 + 2364: -3,7 + 2365: -5,9 + 2366: -5,8 + 2367: -4,8 + 2368: -1,7 + 2369: 4,7 + 2370: 2,9 + 2371: 6,11 + 2372: 6,7 + 2373: 2,7 + 2374: 4,3 + 2375: 4,4 + 2376: -6,-7 + 2377: -5,-9 + 2378: 2,11 + 2379: 2,-30 + 2380: -1,-30 + 2381: -1,-29 + 2382: -3,-31 + 2383: -5,-30 + 2424: 7,-21 + 2425: 2,-20 + 2426: -2,-20 + 2427: -3,-19 + 2428: -2,-12 + 2429: -1,-10 + 2430: -2,-16 + 2431: -5,-22 + 2432: -7,-23 + 2433: -6,-25 + 2434: -6,-27 + 2435: 8,-20 + 2436: 7,-22 + 2437: 11,-22 + 2438: 11,-23 + 2464: -2,4 + 2465: -1,5 + 2466: -4,9 + 2467: -4,10 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 239: -1,-13 - 240: -2,-13 - 241: -1,-12 - 242: -1,-11 - 243: -1,-11 - 244: -2,-10 - 245: -2,-9 - 246: -2,-8 - 247: -2,-7 - 248: -2,-6 - 249: -1,-3 - 250: -1,-2 - 251: -1,-1 - 252: -2,-1 - 253: -2,-3 - 254: -2,-5 - 255: -2,-8 - 256: -1,-10 - 257: -1,-11 - 258: -1,-13 - 259: -2,-15 - 260: -2,-16 - 261: -1,-18 - 262: -2,-19 - 263: -2,-21 - 264: -3,-22 - 265: -3,-23 - 266: -5,-22 - 267: -6,-22 - 268: -7,-22 - 269: -7,-23 - 270: -5,-23 - 271: -2,-23 - 272: -2,-23 - 273: -2,-23 - 274: -2,-22 - 275: -1,-21 - 276: 0,-21 - 277: 0,-20 - 278: 0,-20 - 279: 0,-19 - 280: -1,-13 - 281: -2,-13 - 282: -2,-13 - 283: -2,-13 - 284: -2,-13 - 285: -2,-14 - 286: -2,-14 - 287: -1,-15 - 288: -2,-17 - 289: -2,-17 - 290: -5,-14 - 291: -5,-14 - 292: -4,-13 - 293: -5,-13 - 294: -2,-12 - 295: -2,-10 - 296: -2,-8 - 297: -2,-6 - 298: -2,-4 - 299: -1,-3 - 300: -1,-2 - 301: -1,-1 - 302: -2,-1 - 303: -2,-2 - 304: -2,-3 - 305: 3,-1 - 306: 3,-2 - 307: 3,-3 - 308: 4,-3 - 309: 4,-1 - 310: 4,-1 - 311: 3,-4 - 312: 5,-3 - 313: 5,0 - 314: 5,0 - 315: 3,0 - 398: 6,-26 - 399: 6,-26 - 400: 5,-26 - 401: 5,-25 - 402: 7,-25 - 403: 7,-26 - 404: 8,-26 - 405: 8,-25 - 406: 8,-25 - 407: 5,-25 - 408: 5,-24 - 409: 4,-24 - 410: 4,-24 - 411: 6,-25 + 85: -1,-1 + 86: -2,-5 + 87: -2,-19 + 88: -1,-1 + 89: 5,0 + 90: 5,0 + 91: 3,0 + 4077: 5,-25 + 4078: 6,-27 + 4079: 5,-27 + 4080: 6,-25 + 4081: 3,-24 + 4082: 8,-25 + 4083: 4,-27 + 4084: 0,-26 + 4085: 3,-21 + 4086: 8,-21 + 4087: 7,-21 + 4088: 4,-21 + 4089: -2,-21 + 4090: -1,-18 + 4091: -5,-19 + 4092: -7,-19 + 4093: -10,-19 + 4094: -11,-18 + 4095: -10,-20 + 4096: -2,-8 + 4097: -2,-6 + - node: + color: '#D381C996' + id: DirtHeavyMonotile + decals: + 2457: -5,-22 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2458: -6,-22 + 2459: -5,-22 + 2460: -1,-12 + 2461: -2,-10 + 2462: 2,-3 + 2463: 7,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 316: -4,-2 - 317: -5,-2 - 318: -5,-2 - 319: -6,-2 - 320: -6,0 - 321: -5,0 - 322: -4,-1 - 323: -4,-1 - 324: -5,-1 - 325: -6,-1 - 326: -6,-1 + 92: -5,-1 + 93: -6,-1 + 94: -6,-1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 364: -10,-24 - 365: -11,-25 - 366: -11,-26 - 367: -11,-25 - 368: -11,-24 - 369: -11,-24 - 370: -10,-23 - 371: -10,-22 - 372: -10,-22 - 373: -10,-23 - 374: -10,-24 - 375: -10,-25 - 376: -10,-26 - 377: -9,-26 - 378: -9,-20 - 379: -10,-20 - 380: -11,-19 - 381: -12,-19 - 382: -11,-18 - 383: -10,-18 - 384: -9,-19 - 385: -10,-20 - 386: 5,-22 - 387: 4,-21 - 388: 2,-21 - 389: 2,-20 - 390: 5,-21 - 391: 4,-20 - 392: 4,-20 - 393: 4,-25 - 394: 4,-25 - 395: 4,-24 - 396: 4,-26 - 397: 5,-26 + 104: -10,-24 + 105: -11,-25 + 106: -11,-26 + 107: -11,-25 + 108: -11,-24 + 109: -11,-24 + 110: -10,-23 + 111: -10,-22 + 112: -10,-22 + 113: -10,-23 + 114: -10,-24 + 115: -10,-25 + 116: -10,-26 + 117: -9,-26 + 118: -9,-19 + 119: 5,-21 + 120: 4,-20 + 121: 4,-20 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 327: -5,3 - 328: -5,5 - 329: -6,5 - 330: -6,4 - 331: -1,2 - 332: -1,2 - 333: -1,4 - 334: -4,7 - 335: -5,7 - 336: -6,7 - 337: -3,7 - 338: -2,7 - 339: 0,7 + 95: -5,3 + 96: -5,5 + 97: -6,5 + 98: -6,4 + 99: -1,2 + 100: -1,2 + 101: -1,4 + 102: -2,7 + 103: 0,7 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 2062: -8,-12 - 2174: -8,-12 - 2378: -8,-12 - 2659: -8,-12 + 2586: -8,-12 + 2805: -8,-12 + 3024: -8,-12 + 3243: -8,-12 + 3447: -8,-12 + 3677: -8,-12 + 3892: -8,-12 + 4216: -8,-12 + 4431: -8,-12 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 2056: -8,-16 - 2168: -8,-16 - 2372: -8,-16 - 2653: -8,-16 + 2580: -8,-16 + 2799: -8,-16 + 3018: -8,-16 + 3237: -8,-16 + 3441: -8,-16 + 3671: -8,-16 + 3886: -8,-16 + 4210: -8,-16 + 4425: -8,-16 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 2043: -4,-16 - 2183: -4,-16 - 2387: -4,-16 - 2668: -4,-16 + 2595: -4,-16 + 2814: -4,-16 + 3033: -4,-16 + 3252: -4,-16 + 3456: -4,-16 + 3686: -4,-16 + 3901: -4,-16 + 4225: -4,-16 + 4440: -4,-16 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 2049: -4,-12 - 2189: -4,-12 - 2393: -4,-12 - 2674: -4,-12 + 2601: -4,-12 + 2820: -4,-12 + 3039: -4,-12 + 3258: -4,-12 + 3462: -4,-12 + 3692: -4,-12 + 3907: -4,-12 + 4231: -4,-12 + 4446: -4,-12 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 2055: -8,-16 - 2058: -8,-15 - 2059: -8,-13 - 2061: -8,-12 - 2063: -8,-14 - 2167: -8,-16 - 2169: -8,-15 - 2170: -8,-14 - 2171: -8,-13 - 2173: -8,-12 - 2371: -8,-16 - 2373: -8,-15 - 2374: -8,-14 - 2375: -8,-13 - 2377: -8,-12 - 2652: -8,-16 - 2654: -8,-15 - 2655: -8,-14 - 2656: -8,-13 - 2658: -8,-12 + 2579: -8,-16 + 2581: -8,-15 + 2582: -8,-14 + 2583: -8,-13 + 2585: -8,-12 + 2798: -8,-16 + 2800: -8,-15 + 2801: -8,-14 + 2802: -8,-13 + 2804: -8,-12 + 3017: -8,-16 + 3019: -8,-15 + 3020: -8,-14 + 3021: -8,-13 + 3023: -8,-12 + 3236: -8,-16 + 3238: -8,-15 + 3239: -8,-14 + 3240: -8,-13 + 3242: -8,-12 + 3440: -8,-16 + 3442: -8,-15 + 3443: -8,-14 + 3444: -8,-13 + 3446: -8,-12 + 3670: -8,-16 + 3672: -8,-15 + 3673: -8,-14 + 3674: -8,-13 + 3676: -8,-12 + 3885: -8,-16 + 3887: -8,-15 + 3888: -8,-14 + 3889: -8,-13 + 3891: -8,-12 + 4209: -8,-16 + 4211: -8,-15 + 4212: -8,-14 + 4213: -8,-13 + 4215: -8,-12 + 4424: -8,-16 + 4426: -8,-15 + 4427: -8,-14 + 4428: -8,-13 + 4430: -8,-12 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 2041: -4,-16 - 2050: -5,-16 - 2052: -6,-16 - 2054: -8,-16 - 2057: -7,-16 - 2166: -8,-16 - 2175: -7,-16 - 2177: -6,-16 - 2179: -5,-16 - 2181: -4,-16 - 2370: -8,-16 - 2379: -7,-16 - 2381: -6,-16 - 2383: -5,-16 - 2385: -4,-16 - 2651: -8,-16 - 2660: -7,-16 - 2662: -6,-16 - 2664: -5,-16 - 2666: -4,-16 + 2578: -8,-16 + 2587: -7,-16 + 2589: -6,-16 + 2591: -5,-16 + 2593: -4,-16 + 2797: -8,-16 + 2806: -7,-16 + 2808: -6,-16 + 2810: -5,-16 + 2812: -4,-16 + 3016: -8,-16 + 3025: -7,-16 + 3027: -6,-16 + 3029: -5,-16 + 3031: -4,-16 + 3235: -8,-16 + 3244: -7,-16 + 3246: -6,-16 + 3248: -5,-16 + 3250: -4,-16 + 3439: -8,-16 + 3448: -7,-16 + 3450: -6,-16 + 3452: -5,-16 + 3454: -4,-16 + 3669: -8,-16 + 3678: -7,-16 + 3680: -6,-16 + 3682: -5,-16 + 3684: -4,-16 + 3884: -8,-16 + 3893: -7,-16 + 3895: -6,-16 + 3897: -5,-16 + 3899: -4,-16 + 4208: -8,-16 + 4217: -7,-16 + 4219: -6,-16 + 4221: -5,-16 + 4223: -4,-16 + 4423: -8,-16 + 4432: -7,-16 + 4434: -6,-16 + 4436: -5,-16 + 4438: -4,-16 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 2042: -4,-16 - 2044: -4,-15 - 2045: -4,-13 - 2046: -4,-14 - 2047: -4,-12 - 2182: -4,-16 - 2184: -4,-15 - 2185: -4,-14 - 2186: -4,-13 - 2187: -4,-12 - 2386: -4,-16 - 2388: -4,-15 - 2389: -4,-14 - 2390: -4,-13 - 2391: -4,-12 - 2667: -4,-16 - 2669: -4,-15 - 2670: -4,-14 - 2671: -4,-13 - 2672: -4,-12 + 2594: -4,-16 + 2596: -4,-15 + 2597: -4,-14 + 2598: -4,-13 + 2599: -4,-12 + 2813: -4,-16 + 2815: -4,-15 + 2816: -4,-14 + 2817: -4,-13 + 2818: -4,-12 + 3032: -4,-16 + 3034: -4,-15 + 3035: -4,-14 + 3036: -4,-13 + 3037: -4,-12 + 3251: -4,-16 + 3253: -4,-15 + 3254: -4,-14 + 3255: -4,-13 + 3256: -4,-12 + 3455: -4,-16 + 3457: -4,-15 + 3458: -4,-14 + 3459: -4,-13 + 3460: -4,-12 + 3685: -4,-16 + 3687: -4,-15 + 3688: -4,-14 + 3689: -4,-13 + 3690: -4,-12 + 3900: -4,-16 + 3902: -4,-15 + 3903: -4,-14 + 3904: -4,-13 + 3905: -4,-12 + 4224: -4,-16 + 4226: -4,-15 + 4227: -4,-14 + 4228: -4,-13 + 4229: -4,-12 + 4439: -4,-16 + 4441: -4,-15 + 4442: -4,-14 + 4443: -4,-13 + 4444: -4,-12 + - node: + id: FloorTechMaintDirectionalEdge + decals: + 2584: -8,-12 + 2588: -7,-12 + 2590: -6,-12 + 2592: -5,-12 + 2600: -4,-12 + 2803: -8,-12 + 2807: -7,-12 + 2809: -6,-12 + 2811: -5,-12 + 2819: -4,-12 + 3022: -8,-12 + 3026: -7,-12 + 3028: -6,-12 + 3030: -5,-12 + 3038: -4,-12 + 3241: -8,-12 + 3245: -7,-12 + 3247: -6,-12 + 3249: -5,-12 + 3257: -4,-12 + 3445: -8,-12 + 3449: -7,-12 + 3451: -6,-12 + 3453: -5,-12 + 3461: -4,-12 + 3675: -8,-12 + 3679: -7,-12 + 3681: -6,-12 + 3683: -5,-12 + 3691: -4,-12 + 3890: -8,-12 + 3894: -7,-12 + 3896: -6,-12 + 3898: -5,-12 + 3906: -4,-12 + 4214: -8,-12 + 4218: -7,-12 + 4220: -6,-12 + 4222: -5,-12 + 4230: -4,-12 + 4429: -8,-12 + 4433: -7,-12 + 4435: -6,-12 + 4437: -5,-12 + 4445: -4,-12 - node: + color: '#D381C996' id: FloorTechMaintDirectionalEdge decals: - 2048: -4,-12 - 2051: -5,-12 - 2053: -6,-12 - 2060: -8,-12 - 2064: -7,-12 - 2172: -8,-12 - 2176: -7,-12 - 2178: -6,-12 - 2180: -5,-12 - 2188: -4,-12 - 2376: -8,-12 - 2380: -7,-12 - 2382: -6,-12 - 2384: -5,-12 - 2392: -4,-12 - 2657: -8,-12 - 2661: -7,-12 - 2663: -6,-12 - 2665: -5,-12 - 2673: -4,-12 + 2439: -7,-12 + 2440: -6,-12 + 2441: -5,-12 - node: zIndex: 1 id: LatticeCornerNE decals: - 452: 4,12 - 460: 4,13 - 468: 4,14 - 476: 4,15 - 484: 8,2 - 492: 8,3 - 500: 8,4 - 543: -13,-15 - 548: -13,-14 - 556: -13,-22 - 561: -13,-21 - 566: -13,-20 - 569: -10,-28 - 574: -8,-32 - 579: 2,-27 - 590: 10,-27 - 598: 11,-26 - 616: 4,16 - 629: 4,12 - 637: 4,13 - 645: 4,14 - 653: 4,15 - 661: 8,2 - 669: 8,3 - 677: 8,4 - 720: -13,-15 - 725: -13,-14 - 733: -13,-22 - 738: -13,-21 - 743: -13,-20 - 746: -10,-28 - 751: -8,-32 - 756: 2,-27 - 767: 10,-27 - 775: 11,-26 - 793: 4,16 - 806: 4,12 - 814: 4,13 - 822: 4,14 - 830: 4,15 - 838: 8,2 - 846: 8,3 - 854: 8,4 - 897: -13,-15 - 902: -13,-14 - 910: -13,-22 - 915: -13,-21 - 920: -13,-20 - 923: -10,-28 - 928: -8,-32 - 933: 2,-27 - 944: 10,-27 - 952: 11,-26 - 970: 4,16 - 983: 4,12 - 991: 4,13 - 999: 4,14 - 1007: 4,15 - 1015: 8,2 - 1023: 8,3 - 1031: 8,4 - 1074: -13,-15 - 1079: -13,-14 - 1087: -13,-22 - 1092: -13,-21 - 1097: -13,-20 - 1100: -10,-28 - 1105: -8,-32 - 1110: 2,-27 - 1121: 10,-27 - 1129: 11,-26 - 1147: 4,16 - 1160: 4,12 - 1168: 4,13 - 1176: 4,14 - 1184: 4,15 - 1192: 8,2 - 1200: 8,3 - 1208: 8,4 - 1251: -13,-15 - 1256: -13,-14 - 1264: -13,-22 - 1269: -13,-21 - 1274: -13,-20 - 1277: -10,-28 - 1282: -8,-32 - 1287: 2,-27 - 1298: 10,-27 - 1306: 11,-26 - 1324: 4,16 - 1337: 4,12 - 1345: 4,13 - 1353: 4,14 - 1361: 4,15 - 1369: 8,2 - 1377: 8,3 - 1385: 8,4 - 1428: -13,-15 - 1433: -13,-14 - 1441: -13,-22 - 1446: -13,-21 + 126: 4,12 + 134: 4,13 + 142: 4,14 + 150: 4,15 + 158: 8,2 + 166: 8,3 + 204: -13,-22 + 209: -13,-20 + 212: -10,-28 + 217: -8,-32 + 225: 10,-27 + 233: 11,-26 + 251: 4,16 + 264: 4,12 + 272: 4,13 + 280: 4,14 + 288: 4,15 + 296: 8,2 + 304: 8,3 + 342: -13,-22 + 347: -13,-20 + 350: -10,-28 + 355: -8,-32 + 363: 10,-27 + 371: 11,-26 + 389: 4,16 + 402: 4,12 + 410: 4,13 + 418: 4,14 + 426: 4,15 + 434: 8,2 + 442: 8,3 + 480: -13,-22 + 485: -13,-20 + 488: -10,-28 + 493: -8,-32 + 501: 10,-27 + 509: 11,-26 + 527: 4,16 + 540: 4,12 + 548: 4,13 + 556: 4,14 + 564: 4,15 + 572: 8,2 + 580: 8,3 + 618: -13,-22 + 623: -13,-20 + 626: -10,-28 + 631: -8,-32 + 639: 10,-27 + 647: 11,-26 + 665: 4,16 + 678: 4,12 + 686: 4,13 + 694: 4,14 + 702: 4,15 + 710: 8,2 + 718: 8,3 + 756: -13,-22 + 761: -13,-20 + 764: -10,-28 + 769: -8,-32 + 777: 10,-27 + 785: 11,-26 + 803: 4,16 + 816: 4,12 + 824: 4,13 + 832: 4,14 + 840: 4,15 + 848: 8,2 + 856: 8,3 + 894: -13,-22 + 899: -13,-20 + 902: -10,-28 + 907: -8,-32 + 915: 10,-27 + 923: 11,-26 + 941: 4,16 + 954: 4,12 + 962: 4,13 + 970: 4,14 + 978: 4,15 + 986: 8,2 + 994: 8,3 + 1032: -13,-22 + 1037: -13,-20 + 1040: -10,-28 + 1045: -8,-32 + 1053: 10,-27 + 1061: 11,-26 + 1079: 4,16 + 1092: 4,12 + 1100: 4,13 + 1108: 4,14 + 1116: 4,15 + 1124: 8,2 + 1132: 8,3 + 1170: -13,-22 + 1175: -13,-20 + 1178: -10,-28 + 1183: -8,-32 + 1191: 10,-27 + 1199: 11,-26 + 1217: 4,16 + 1230: 4,12 + 1238: 4,13 + 1246: 4,14 + 1254: 4,15 + 1262: 8,2 + 1270: 8,3 + 1308: -13,-22 + 1313: -13,-20 + 1316: -10,-28 + 1321: -8,-32 + 1329: 10,-27 + 1337: 11,-26 + 1355: 4,16 + 1368: 4,12 + 1376: 4,13 + 1384: 4,14 + 1392: 4,15 + 1400: 8,2 + 1408: 8,3 + 1446: -13,-22 1451: -13,-20 1454: -10,-28 1459: -8,-32 - 1464: 2,-27 - 1475: 10,-27 - 1483: 11,-26 - 1501: 4,16 - 1514: 4,12 - 1522: 4,13 - 1530: 4,14 - 1538: 4,15 - 1546: 8,2 - 1554: 8,3 - 1562: 8,4 - 1605: -13,-15 - 1610: -13,-14 - 1618: -13,-22 - 1623: -13,-21 - 1628: -13,-20 - 1631: -10,-28 - 1636: -8,-32 - 1641: 2,-27 - 1652: 10,-27 - 1660: 11,-26 - 1678: 4,16 - 1691: 4,12 - 1699: 4,13 - 1707: 4,14 - 1715: 4,15 - 1723: 8,2 - 1731: 8,3 - 1739: 8,4 - 1782: -13,-15 - 1787: -13,-14 - 1795: -13,-22 - 1800: -13,-21 - 1805: -13,-20 - 1808: -10,-28 - 1813: -8,-32 - 1818: 2,-27 - 1829: 10,-27 - 1837: 11,-26 - 1855: 4,16 - 1868: 4,12 - 1876: 4,13 - 1884: 4,14 - 1892: 4,15 - 1900: 8,2 - 1908: 8,3 - 1916: 8,4 - 1959: -13,-15 - 1964: -13,-14 - 1972: -13,-22 - 1977: -13,-21 - 1982: -13,-20 - 1985: -10,-28 - 1990: -8,-32 - 1995: 2,-27 - 2006: 10,-27 - 2014: 11,-26 - 2032: 4,16 - 2069: 4,12 - 2077: 4,13 - 2085: 4,14 - 2093: 4,15 - 2101: 8,2 - 2109: 8,3 - 2117: 8,4 - 2160: -13,-15 - 2165: -13,-14 - 2194: -13,-22 - 2199: -13,-21 - 2204: -13,-20 - 2207: -10,-28 - 2212: -8,-32 - 2217: 2,-27 - 2228: 10,-27 - 2236: 11,-26 - 2254: 4,16 - 2270: 4,12 - 2278: 4,13 - 2286: 4,14 - 2294: 4,15 - 2302: 8,2 - 2310: 8,3 - 2318: 8,4 - 2361: -13,-15 - 2366: -13,-14 - 2398: -13,-22 - 2403: -13,-21 - 2408: -13,-20 - 2411: -10,-28 - 2418: 2,-27 - 2426: 10,-27 - 2434: 11,-26 - 2442: 4,16 - 2458: 11,-20 - 2475: -8,-32 - 2478: -9,-30 - 2491: -10,-5 - 2496: -10,-6 - 2504: -10,-8 - 2512: -10,-7 - 2517: -8,7 - 2525: 4,12 - 2533: 4,13 - 2541: 4,14 - 2549: 4,15 - 2557: 8,2 - 2565: 8,3 - 2573: 8,4 - 2616: -13,-15 - 2621: -13,-14 - 2632: -10,-8 - 2640: -10,-7 - 2645: -10,-6 - 2650: -10,-5 - 2679: -8,7 - 2687: -13,-22 - 2692: -13,-21 - 2697: -13,-20 - 2700: -10,-28 - 2705: -9,-30 - 2708: -8,-32 - 2713: 2,-27 - 2727: 10,-27 - 2735: 11,-26 - 2743: 11,-20 - 2764: 4,16 + 1467: 10,-27 + 1475: 11,-26 + 1493: 4,16 + 1506: 4,12 + 1514: 4,13 + 1522: 4,14 + 1530: 4,15 + 1538: 8,2 + 1546: 8,3 + 1584: -13,-22 + 1589: -13,-20 + 1592: -10,-28 + 1599: 10,-27 + 1607: 11,-26 + 1615: 4,16 + 1628: 11,-20 + 1645: -8,-32 + 1648: -9,-30 + 1661: -10,-5 + 1666: -10,-6 + 1674: -10,-8 + 1682: -10,-7 + 1687: -8,7 + 1695: 4,12 + 1703: 4,13 + 1711: 4,14 + 1719: 4,15 + 1727: 8,2 + 1735: 8,3 + 1776: -10,-8 + 1784: -10,-7 + 1789: -10,-6 + 1794: -10,-5 + 1799: -8,7 + 1807: -13,-22 + 1812: -13,-20 + 1815: -10,-28 + 1820: -9,-30 + 1823: -8,-32 + 1834: 10,-27 + 1842: 11,-26 + 1850: 11,-20 + 1871: 4,16 + 1884: 4,12 + 1892: 4,13 + 1900: 4,14 + 1908: 4,15 + 1916: 8,2 + 1924: 8,3 + 1965: -10,-8 + 1973: -10,-7 + 1978: -10,-6 + 1983: -10,-5 + 1988: -8,7 + 1996: -13,-22 + 2001: -13,-20 + 2004: -10,-28 + 2009: -9,-30 + 2012: -8,-32 + 2023: 10,-27 + 2031: 11,-26 + 2039: 11,-20 + 2060: 4,16 + 2073: 4,12 + 2081: 4,13 + 2089: 4,14 + 2097: 4,15 + 2128: -10,-8 + 2136: -10,-7 + 2141: -10,-6 + 2146: -10,-5 + 2151: -8,7 + 2159: -13,-22 + 2164: -13,-20 + 2167: -10,-28 + 2172: -9,-30 + 2183: 10,-27 + 2191: 11,-26 + 2199: 11,-20 + 2220: 4,16 + 2260: 8,3 + 2268: 8,2 + 2386: -8,-32 + 2472: 4,12 + 2480: 4,13 + 2488: 4,14 + 2496: 4,15 + 2504: 8,2 + 2512: 8,3 + 2559: -10,-8 + 2567: -10,-7 + 2572: -10,-6 + 2577: -10,-5 + 2606: -8,7 + 2614: -13,-22 + 2619: -13,-20 + 2622: -10,-28 + 2627: -9,-30 + 2630: -8,-32 + 2641: 10,-27 + 2649: 11,-26 + 2657: 11,-20 + 2678: 4,16 + 2691: 4,12 + 2699: 4,13 + 2707: 4,14 + 2715: 4,15 + 2723: 8,2 + 2731: 8,3 + 2778: -10,-8 + 2786: -10,-7 + 2791: -10,-6 + 2796: -10,-5 + 2825: -8,7 + 2833: -13,-22 + 2838: -13,-20 + 2841: -10,-28 + 2846: -9,-30 + 2849: -8,-32 + 2860: 10,-27 + 2868: 11,-26 + 2876: 11,-20 + 2897: 4,16 + 2910: 4,12 + 2918: 4,13 + 2926: 4,14 + 2934: 4,15 + 2942: 8,2 + 2950: 8,3 + 2997: -10,-8 + 3005: -10,-7 + 3010: -10,-6 + 3015: -10,-5 + 3044: -8,7 + 3052: -13,-22 + 3057: -13,-20 + 3060: -10,-28 + 3065: -9,-30 + 3068: -8,-32 + 3079: 10,-27 + 3087: 11,-26 + 3095: 11,-20 + 3116: 4,16 + 3129: 4,12 + 3137: 4,13 + 3145: 4,14 + 3153: 4,15 + 3161: 8,2 + 3169: 8,3 + 3216: -10,-8 + 3224: -10,-7 + 3229: -10,-6 + 3234: -10,-5 + 3263: -8,7 + 3271: -13,-22 + 3276: -13,-20 + 3279: -10,-28 + 3284: -9,-30 + 3287: -8,-32 + 3298: 10,-27 + 3306: 11,-26 + 3314: 11,-20 + 3335: 4,16 + 3348: 4,12 + 3356: 4,13 + 3364: 4,14 + 3372: 4,15 + 3380: 8,2 + 3388: 8,3 + 3435: -10,-8 + 3467: -8,7 + 3473: -10,-28 + 3478: -9,-30 + 3481: -8,-32 + 3492: 10,-27 + 3500: 11,-26 + 3508: 11,-20 + 3529: 4,16 + 3542: -10,-6 + 3547: -10,-7 + 3552: -10,-5 + 3555: -13,-20 + 3563: 4,12 + 3571: 4,13 + 3579: 4,14 + 3587: 4,15 + 3595: 8,2 + 3603: 8,3 + 3650: -10,-8 + 3658: -10,-7 + 3663: -10,-6 + 3668: -10,-5 + 3697: -8,7 + 3706: -13,-20 + 3709: -10,-28 + 3714: -9,-30 + 3717: -8,-32 + 3728: 10,-27 + 3736: 11,-26 + 3744: 11,-20 + 3765: 4,16 + 3778: 4,12 + 3786: 4,13 + 3794: 4,14 + 3802: 4,15 + 3810: 8,2 + 3818: 8,3 + 3865: -10,-8 + 3873: -10,-7 + 3878: -10,-6 + 3883: -10,-5 + 3912: -8,7 + 3921: -13,-20 + 3924: -10,-28 + 3929: -9,-30 + 3932: -8,-32 + 3943: 10,-27 + 3951: 11,-26 + 3959: 11,-20 + 3980: 4,16 + 4102: 4,12 + 4110: 4,13 + 4118: 4,14 + 4126: 4,15 + 4134: 8,2 + 4142: 8,3 + 4189: -10,-8 + 4197: -10,-7 + 4202: -10,-6 + 4207: -10,-5 + 4236: -8,7 + 4245: -13,-20 + 4248: -10,-28 + 4253: -9,-30 + 4256: -8,-32 + 4267: 10,-27 + 4275: 11,-26 + 4283: 11,-20 + 4304: 4,16 + 4317: 4,12 + 4325: 4,13 + 4333: 4,14 + 4341: 4,15 + 4349: 8,2 + 4357: 8,3 + 4404: -10,-8 + 4412: -10,-7 + 4417: -10,-6 + 4422: -10,-5 + 4451: -8,7 + 4460: -13,-20 + 4463: -10,-28 + 4468: -9,-30 + 4471: -8,-32 + 4482: 10,-27 + 4490: 11,-26 + 4498: 11,-20 + 4519: 4,16 - node: zIndex: 1 id: LatticeCornerNW decals: - 455: 4,12 - 463: 4,13 - 471: 4,14 - 479: 4,15 - 487: 8,2 - 495: 8,3 - 503: 8,4 - 508: 9,2 - 513: 9,3 - 518: 9,4 - 523: 2,-13 - 528: 2,-12 - 533: 2,-11 - 538: 2,-10 - 571: -10,-28 - 582: 2,-27 - 585: 8,-32 - 593: 10,-27 - 601: 11,-26 - 606: 11,-20 - 611: 11,-19 - 619: 4,16 - 632: 4,12 - 640: 4,13 - 648: 4,14 - 656: 4,15 - 664: 8,2 - 672: 8,3 - 680: 8,4 - 685: 9,2 - 690: 9,3 - 695: 9,4 - 700: 2,-13 - 705: 2,-12 - 710: 2,-11 - 715: 2,-10 - 748: -10,-28 - 759: 2,-27 - 762: 8,-32 - 770: 10,-27 - 778: 11,-26 - 783: 11,-20 - 788: 11,-19 - 796: 4,16 - 809: 4,12 - 817: 4,13 - 825: 4,14 - 833: 4,15 - 841: 8,2 - 849: 8,3 - 857: 8,4 - 862: 9,2 - 867: 9,3 - 872: 9,4 - 877: 2,-13 - 882: 2,-12 - 887: 2,-11 - 892: 2,-10 - 925: -10,-28 - 936: 2,-27 - 939: 8,-32 - 947: 10,-27 - 955: 11,-26 - 960: 11,-20 - 965: 11,-19 - 973: 4,16 - 986: 4,12 - 994: 4,13 - 1002: 4,14 - 1010: 4,15 - 1018: 8,2 - 1026: 8,3 - 1034: 8,4 - 1039: 9,2 - 1044: 9,3 - 1049: 9,4 - 1054: 2,-13 - 1059: 2,-12 - 1064: 2,-11 - 1069: 2,-10 - 1102: -10,-28 - 1113: 2,-27 - 1116: 8,-32 - 1124: 10,-27 - 1132: 11,-26 - 1137: 11,-20 - 1142: 11,-19 - 1150: 4,16 - 1163: 4,12 - 1171: 4,13 - 1179: 4,14 - 1187: 4,15 - 1195: 8,2 - 1203: 8,3 - 1211: 8,4 - 1216: 9,2 - 1221: 9,3 - 1226: 9,4 - 1231: 2,-13 - 1236: 2,-12 - 1241: 2,-11 - 1246: 2,-10 - 1279: -10,-28 - 1290: 2,-27 - 1293: 8,-32 - 1301: 10,-27 - 1309: 11,-26 - 1314: 11,-20 - 1319: 11,-19 - 1327: 4,16 - 1340: 4,12 - 1348: 4,13 - 1356: 4,14 - 1364: 4,15 - 1372: 8,2 - 1380: 8,3 - 1388: 8,4 - 1393: 9,2 - 1398: 9,3 - 1403: 9,4 - 1408: 2,-13 - 1413: 2,-12 - 1418: 2,-11 - 1423: 2,-10 + 129: 4,12 + 137: 4,13 + 145: 4,14 + 153: 4,15 + 161: 8,2 + 169: 8,3 + 174: 9,3 + 179: 9,4 + 184: 2,-13 + 189: 2,-12 + 194: 2,-11 + 199: 2,-10 + 214: -10,-28 + 220: 8,-32 + 228: 10,-27 + 236: 11,-26 + 241: 11,-20 + 246: 11,-19 + 254: 4,16 + 267: 4,12 + 275: 4,13 + 283: 4,14 + 291: 4,15 + 299: 8,2 + 307: 8,3 + 312: 9,3 + 317: 9,4 + 322: 2,-13 + 327: 2,-12 + 332: 2,-11 + 337: 2,-10 + 352: -10,-28 + 358: 8,-32 + 366: 10,-27 + 374: 11,-26 + 379: 11,-20 + 384: 11,-19 + 392: 4,16 + 405: 4,12 + 413: 4,13 + 421: 4,14 + 429: 4,15 + 437: 8,2 + 445: 8,3 + 450: 9,3 + 455: 9,4 + 460: 2,-13 + 465: 2,-12 + 470: 2,-11 + 475: 2,-10 + 490: -10,-28 + 496: 8,-32 + 504: 10,-27 + 512: 11,-26 + 517: 11,-20 + 522: 11,-19 + 530: 4,16 + 543: 4,12 + 551: 4,13 + 559: 4,14 + 567: 4,15 + 575: 8,2 + 583: 8,3 + 588: 9,3 + 593: 9,4 + 598: 2,-13 + 603: 2,-12 + 608: 2,-11 + 613: 2,-10 + 628: -10,-28 + 634: 8,-32 + 642: 10,-27 + 650: 11,-26 + 655: 11,-20 + 660: 11,-19 + 668: 4,16 + 681: 4,12 + 689: 4,13 + 697: 4,14 + 705: 4,15 + 713: 8,2 + 721: 8,3 + 726: 9,3 + 731: 9,4 + 736: 2,-13 + 741: 2,-12 + 746: 2,-11 + 751: 2,-10 + 766: -10,-28 + 772: 8,-32 + 780: 10,-27 + 788: 11,-26 + 793: 11,-20 + 798: 11,-19 + 806: 4,16 + 819: 4,12 + 827: 4,13 + 835: 4,14 + 843: 4,15 + 851: 8,2 + 859: 8,3 + 864: 9,3 + 869: 9,4 + 874: 2,-13 + 879: 2,-12 + 884: 2,-11 + 889: 2,-10 + 904: -10,-28 + 910: 8,-32 + 918: 10,-27 + 926: 11,-26 + 931: 11,-20 + 936: 11,-19 + 944: 4,16 + 957: 4,12 + 965: 4,13 + 973: 4,14 + 981: 4,15 + 989: 8,2 + 997: 8,3 + 1002: 9,3 + 1007: 9,4 + 1012: 2,-13 + 1017: 2,-12 + 1022: 2,-11 + 1027: 2,-10 + 1042: -10,-28 + 1048: 8,-32 + 1056: 10,-27 + 1064: 11,-26 + 1069: 11,-20 + 1074: 11,-19 + 1082: 4,16 + 1095: 4,12 + 1103: 4,13 + 1111: 4,14 + 1119: 4,15 + 1127: 8,2 + 1135: 8,3 + 1140: 9,3 + 1145: 9,4 + 1150: 2,-13 + 1155: 2,-12 + 1160: 2,-11 + 1165: 2,-10 + 1180: -10,-28 + 1186: 8,-32 + 1194: 10,-27 + 1202: 11,-26 + 1207: 11,-20 + 1212: 11,-19 + 1220: 4,16 + 1233: 4,12 + 1241: 4,13 + 1249: 4,14 + 1257: 4,15 + 1265: 8,2 + 1273: 8,3 + 1278: 9,3 + 1283: 9,4 + 1288: 2,-13 + 1293: 2,-12 + 1298: 2,-11 + 1303: 2,-10 + 1318: -10,-28 + 1324: 8,-32 + 1332: 10,-27 + 1340: 11,-26 + 1345: 11,-20 + 1350: 11,-19 + 1358: 4,16 + 1371: 4,12 + 1379: 4,13 + 1387: 4,14 + 1395: 4,15 + 1403: 8,2 + 1411: 8,3 + 1416: 9,3 + 1421: 9,4 + 1426: 2,-13 + 1431: 2,-12 + 1436: 2,-11 + 1441: 2,-10 1456: -10,-28 - 1467: 2,-27 - 1470: 8,-32 - 1478: 10,-27 - 1486: 11,-26 - 1491: 11,-20 - 1496: 11,-19 - 1504: 4,16 - 1517: 4,12 - 1525: 4,13 - 1533: 4,14 - 1541: 4,15 - 1549: 8,2 - 1557: 8,3 - 1565: 8,4 - 1570: 9,2 - 1575: 9,3 - 1580: 9,4 - 1585: 2,-13 - 1590: 2,-12 - 1595: 2,-11 - 1600: 2,-10 - 1633: -10,-28 - 1644: 2,-27 - 1647: 8,-32 - 1655: 10,-27 - 1663: 11,-26 - 1668: 11,-20 - 1673: 11,-19 - 1681: 4,16 - 1694: 4,12 - 1702: 4,13 - 1710: 4,14 - 1718: 4,15 - 1726: 8,2 - 1734: 8,3 - 1742: 8,4 - 1747: 9,2 - 1752: 9,3 - 1757: 9,4 - 1762: 2,-13 - 1767: 2,-12 - 1772: 2,-11 - 1777: 2,-10 - 1810: -10,-28 - 1821: 2,-27 - 1824: 8,-32 - 1832: 10,-27 - 1840: 11,-26 - 1845: 11,-20 - 1850: 11,-19 - 1858: 4,16 - 1871: 4,12 - 1879: 4,13 - 1887: 4,14 - 1895: 4,15 - 1903: 8,2 - 1911: 8,3 - 1919: 8,4 - 1924: 9,2 - 1929: 9,3 - 1934: 9,4 - 1939: 2,-13 - 1944: 2,-12 - 1949: 2,-11 - 1954: 2,-10 - 1987: -10,-28 - 1998: 2,-27 - 2001: 8,-32 - 2009: 10,-27 - 2017: 11,-26 - 2022: 11,-20 - 2027: 11,-19 - 2035: 4,16 - 2072: 4,12 - 2080: 4,13 - 2088: 4,14 - 2096: 4,15 - 2104: 8,2 - 2112: 8,3 - 2120: 8,4 - 2125: 9,2 - 2130: 9,3 - 2135: 9,4 - 2140: 2,-13 - 2145: 2,-12 - 2150: 2,-11 - 2155: 2,-10 - 2209: -10,-28 - 2220: 2,-27 - 2223: 8,-32 - 2231: 10,-27 - 2239: 11,-26 - 2244: 11,-20 - 2249: 11,-19 - 2257: 4,16 - 2273: 4,12 - 2281: 4,13 - 2289: 4,14 - 2297: 4,15 - 2305: 8,2 - 2313: 8,3 - 2321: 8,4 - 2326: 9,2 - 2331: 9,3 - 2336: 9,4 - 2341: 2,-13 - 2346: 2,-12 - 2351: 2,-11 - 2356: 2,-10 - 2413: -10,-28 - 2421: 2,-27 - 2429: 10,-27 - 2437: 11,-26 - 2445: 4,16 - 2461: 11,-20 - 2466: 11,-19 - 2469: 8,-32 - 2472: 9,-30 - 2507: -10,-8 - 2528: 4,12 - 2536: 4,13 - 2544: 4,14 - 2552: 4,15 - 2560: 8,2 - 2568: 8,3 - 2576: 8,4 - 2581: 9,2 - 2586: 9,3 - 2591: 9,4 - 2596: 2,-13 - 2601: 2,-12 - 2606: 2,-11 - 2611: 2,-10 - 2635: -10,-8 - 2702: -10,-28 - 2716: 2,-27 - 2719: 8,-32 - 2722: 9,-30 - 2730: 10,-27 - 2738: 11,-26 - 2746: 11,-20 - 2751: 11,-19 - 2767: 4,16 + 1462: 8,-32 + 1470: 10,-27 + 1478: 11,-26 + 1483: 11,-20 + 1488: 11,-19 + 1496: 4,16 + 1509: 4,12 + 1517: 4,13 + 1525: 4,14 + 1533: 4,15 + 1541: 8,2 + 1549: 8,3 + 1554: 9,3 + 1559: 9,4 + 1564: 2,-13 + 1569: 2,-12 + 1574: 2,-11 + 1579: 2,-10 + 1594: -10,-28 + 1602: 10,-27 + 1610: 11,-26 + 1618: 4,16 + 1631: 11,-20 + 1636: 11,-19 + 1639: 8,-32 + 1642: 9,-30 + 1677: -10,-8 + 1698: 4,12 + 1706: 4,13 + 1714: 4,14 + 1722: 4,15 + 1730: 8,2 + 1738: 8,3 + 1743: 9,3 + 1748: 9,4 + 1753: 2,-13 + 1758: 2,-12 + 1763: 2,-11 + 1768: 2,-10 + 1779: -10,-8 + 1817: -10,-28 + 1826: 8,-32 + 1829: 9,-30 + 1837: 10,-27 + 1845: 11,-26 + 1853: 11,-20 + 1858: 11,-19 + 1874: 4,16 + 1887: 4,12 + 1895: 4,13 + 1903: 4,14 + 1911: 4,15 + 1919: 8,2 + 1927: 8,3 + 1932: 9,3 + 1937: 9,4 + 1942: 2,-13 + 1947: 2,-12 + 1952: 2,-11 + 1957: 2,-10 + 1968: -10,-8 + 2006: -10,-28 + 2015: 8,-32 + 2018: 9,-30 + 2026: 10,-27 + 2034: 11,-26 + 2042: 11,-20 + 2047: 11,-19 + 2063: 4,16 + 2076: 4,12 + 2084: 4,13 + 2092: 4,14 + 2100: 4,15 + 2105: 2,-13 + 2110: 2,-12 + 2115: 2,-11 + 2120: 2,-10 + 2131: -10,-8 + 2169: -10,-28 + 2175: 8,-32 + 2178: 9,-30 + 2186: 10,-27 + 2194: 11,-26 + 2202: 11,-20 + 2207: 11,-19 + 2223: 4,16 + 2242: 10,-5 + 2250: 9,4 + 2255: 9,3 + 2263: 8,3 + 2271: 8,2 + 2475: 4,12 + 2483: 4,13 + 2491: 4,14 + 2499: 4,15 + 2507: 8,2 + 2515: 8,3 + 2520: 9,3 + 2525: 9,4 + 2530: 2,-13 + 2535: 2,-12 + 2540: 2,-11 + 2545: 2,-10 + 2548: 10,-5 + 2562: -10,-8 + 2624: -10,-28 + 2633: 8,-32 + 2636: 9,-30 + 2644: 10,-27 + 2652: 11,-26 + 2660: 11,-20 + 2665: 11,-19 + 2681: 4,16 + 2694: 4,12 + 2702: 4,13 + 2710: 4,14 + 2718: 4,15 + 2726: 8,2 + 2734: 8,3 + 2739: 9,3 + 2744: 9,4 + 2749: 2,-13 + 2754: 2,-12 + 2759: 2,-11 + 2764: 2,-10 + 2767: 10,-5 + 2781: -10,-8 + 2843: -10,-28 + 2852: 8,-32 + 2855: 9,-30 + 2863: 10,-27 + 2871: 11,-26 + 2879: 11,-20 + 2884: 11,-19 + 2900: 4,16 + 2913: 4,12 + 2921: 4,13 + 2929: 4,14 + 2937: 4,15 + 2945: 8,2 + 2953: 8,3 + 2958: 9,3 + 2963: 9,4 + 2968: 2,-13 + 2973: 2,-12 + 2978: 2,-11 + 2983: 2,-10 + 2986: 10,-5 + 3000: -10,-8 + 3062: -10,-28 + 3071: 8,-32 + 3074: 9,-30 + 3082: 10,-27 + 3090: 11,-26 + 3098: 11,-20 + 3103: 11,-19 + 3119: 4,16 + 3132: 4,12 + 3140: 4,13 + 3148: 4,14 + 3156: 4,15 + 3164: 8,2 + 3172: 8,3 + 3177: 9,3 + 3182: 9,4 + 3187: 2,-13 + 3192: 2,-12 + 3197: 2,-11 + 3202: 2,-10 + 3205: 10,-5 + 3219: -10,-8 + 3281: -10,-28 + 3290: 8,-32 + 3293: 9,-30 + 3301: 10,-27 + 3309: 11,-26 + 3317: 11,-20 + 3322: 11,-19 + 3338: 4,16 + 3351: 4,12 + 3359: 4,13 + 3367: 4,14 + 3375: 4,15 + 3383: 8,2 + 3391: 8,3 + 3396: 9,3 + 3401: 9,4 + 3406: 2,-13 + 3411: 2,-12 + 3416: 2,-11 + 3421: 2,-10 + 3424: 10,-5 + 3438: -10,-8 + 3475: -10,-28 + 3484: 8,-32 + 3487: 9,-30 + 3495: 10,-27 + 3503: 11,-26 + 3511: 11,-20 + 3516: 11,-19 + 3532: 4,16 + 3566: 4,12 + 3574: 4,13 + 3582: 4,14 + 3590: 4,15 + 3598: 8,2 + 3606: 8,3 + 3611: 9,3 + 3616: 9,4 + 3621: 2,-13 + 3626: 2,-12 + 3631: 2,-11 + 3636: 2,-10 + 3639: 10,-5 + 3653: -10,-8 + 3711: -10,-28 + 3720: 8,-32 + 3723: 9,-30 + 3731: 10,-27 + 3739: 11,-26 + 3747: 11,-20 + 3752: 11,-19 + 3768: 4,16 + 3781: 4,12 + 3789: 4,13 + 3797: 4,14 + 3805: 4,15 + 3813: 8,2 + 3821: 8,3 + 3826: 9,3 + 3831: 9,4 + 3836: 2,-13 + 3841: 2,-12 + 3846: 2,-11 + 3851: 2,-10 + 3854: 10,-5 + 3868: -10,-8 + 3926: -10,-28 + 3935: 8,-32 + 3938: 9,-30 + 3946: 10,-27 + 3954: 11,-26 + 3962: 11,-20 + 3967: 11,-19 + 3983: 4,16 + 4105: 4,12 + 4113: 4,13 + 4121: 4,14 + 4129: 4,15 + 4137: 8,2 + 4145: 8,3 + 4150: 9,3 + 4155: 9,4 + 4160: 2,-13 + 4165: 2,-12 + 4170: 2,-11 + 4175: 2,-10 + 4178: 10,-5 + 4192: -10,-8 + 4250: -10,-28 + 4259: 8,-32 + 4262: 9,-30 + 4270: 10,-27 + 4278: 11,-26 + 4286: 11,-20 + 4291: 11,-19 + 4307: 4,16 + 4320: 4,12 + 4328: 4,13 + 4336: 4,14 + 4344: 4,15 + 4352: 8,2 + 4360: 8,3 + 4365: 9,3 + 4370: 9,4 + 4375: 2,-13 + 4380: 2,-12 + 4385: 2,-11 + 4390: 2,-10 + 4393: 10,-5 + 4407: -10,-8 + 4465: -10,-28 + 4474: 8,-32 + 4477: 9,-30 + 4485: 10,-27 + 4493: 11,-26 + 4501: 11,-20 + 4506: 11,-19 + 4522: 4,16 - node: zIndex: 1 id: LatticeCornerSE decals: - 450: 4,12 - 458: 4,13 - 466: 4,14 - 474: 4,15 - 482: 8,2 - 490: 8,3 - 498: 8,4 - 541: -13,-15 - 546: -13,-14 - 551: -13,-13 - 554: -13,-22 - 559: -13,-21 - 564: -13,-20 - 577: 2,-27 - 588: 10,-27 - 596: 11,-26 - 614: 4,16 - 622: 4,17 - 627: 4,12 - 635: 4,13 - 643: 4,14 - 651: 4,15 - 659: 8,2 - 667: 8,3 - 675: 8,4 - 718: -13,-15 - 723: -13,-14 - 728: -13,-13 - 731: -13,-22 - 736: -13,-21 - 741: -13,-20 - 754: 2,-27 - 765: 10,-27 - 773: 11,-26 - 791: 4,16 - 799: 4,17 - 804: 4,12 - 812: 4,13 - 820: 4,14 - 828: 4,15 - 836: 8,2 - 844: 8,3 - 852: 8,4 - 895: -13,-15 - 900: -13,-14 - 905: -13,-13 - 908: -13,-22 - 913: -13,-21 - 918: -13,-20 - 931: 2,-27 - 942: 10,-27 - 950: 11,-26 - 968: 4,16 - 976: 4,17 - 981: 4,12 - 989: 4,13 - 997: 4,14 - 1005: 4,15 - 1013: 8,2 - 1021: 8,3 - 1029: 8,4 - 1072: -13,-15 - 1077: -13,-14 - 1082: -13,-13 - 1085: -13,-22 - 1090: -13,-21 - 1095: -13,-20 - 1108: 2,-27 - 1119: 10,-27 - 1127: 11,-26 - 1145: 4,16 - 1153: 4,17 - 1158: 4,12 - 1166: 4,13 - 1174: 4,14 - 1182: 4,15 - 1190: 8,2 - 1198: 8,3 - 1206: 8,4 - 1249: -13,-15 - 1254: -13,-14 - 1259: -13,-13 - 1262: -13,-22 - 1267: -13,-21 - 1272: -13,-20 - 1285: 2,-27 - 1296: 10,-27 - 1304: 11,-26 - 1322: 4,16 - 1330: 4,17 - 1335: 4,12 - 1343: 4,13 - 1351: 4,14 - 1359: 4,15 - 1367: 8,2 - 1375: 8,3 - 1383: 8,4 - 1426: -13,-15 - 1431: -13,-14 - 1436: -13,-13 - 1439: -13,-22 - 1444: -13,-21 + 124: 4,12 + 132: 4,13 + 140: 4,14 + 148: 4,15 + 156: 8,2 + 164: 8,3 + 202: -13,-22 + 207: -13,-20 + 223: 10,-27 + 231: 11,-26 + 249: 4,16 + 257: 4,17 + 262: 4,12 + 270: 4,13 + 278: 4,14 + 286: 4,15 + 294: 8,2 + 302: 8,3 + 340: -13,-22 + 345: -13,-20 + 361: 10,-27 + 369: 11,-26 + 387: 4,16 + 395: 4,17 + 400: 4,12 + 408: 4,13 + 416: 4,14 + 424: 4,15 + 432: 8,2 + 440: 8,3 + 478: -13,-22 + 483: -13,-20 + 499: 10,-27 + 507: 11,-26 + 525: 4,16 + 533: 4,17 + 538: 4,12 + 546: 4,13 + 554: 4,14 + 562: 4,15 + 570: 8,2 + 578: 8,3 + 616: -13,-22 + 621: -13,-20 + 637: 10,-27 + 645: 11,-26 + 663: 4,16 + 671: 4,17 + 676: 4,12 + 684: 4,13 + 692: 4,14 + 700: 4,15 + 708: 8,2 + 716: 8,3 + 754: -13,-22 + 759: -13,-20 + 775: 10,-27 + 783: 11,-26 + 801: 4,16 + 809: 4,17 + 814: 4,12 + 822: 4,13 + 830: 4,14 + 838: 4,15 + 846: 8,2 + 854: 8,3 + 892: -13,-22 + 897: -13,-20 + 913: 10,-27 + 921: 11,-26 + 939: 4,16 + 947: 4,17 + 952: 4,12 + 960: 4,13 + 968: 4,14 + 976: 4,15 + 984: 8,2 + 992: 8,3 + 1030: -13,-22 + 1035: -13,-20 + 1051: 10,-27 + 1059: 11,-26 + 1077: 4,16 + 1085: 4,17 + 1090: 4,12 + 1098: 4,13 + 1106: 4,14 + 1114: 4,15 + 1122: 8,2 + 1130: 8,3 + 1168: -13,-22 + 1173: -13,-20 + 1189: 10,-27 + 1197: 11,-26 + 1215: 4,16 + 1223: 4,17 + 1228: 4,12 + 1236: 4,13 + 1244: 4,14 + 1252: 4,15 + 1260: 8,2 + 1268: 8,3 + 1306: -13,-22 + 1311: -13,-20 + 1327: 10,-27 + 1335: 11,-26 + 1353: 4,16 + 1361: 4,17 + 1366: 4,12 + 1374: 4,13 + 1382: 4,14 + 1390: 4,15 + 1398: 8,2 + 1406: 8,3 + 1444: -13,-22 1449: -13,-20 - 1462: 2,-27 - 1473: 10,-27 - 1481: 11,-26 - 1499: 4,16 - 1507: 4,17 - 1512: 4,12 - 1520: 4,13 - 1528: 4,14 - 1536: 4,15 - 1544: 8,2 - 1552: 8,3 - 1560: 8,4 - 1603: -13,-15 - 1608: -13,-14 - 1613: -13,-13 - 1616: -13,-22 - 1621: -13,-21 - 1626: -13,-20 - 1639: 2,-27 - 1650: 10,-27 - 1658: 11,-26 - 1676: 4,16 - 1684: 4,17 - 1689: 4,12 - 1697: 4,13 - 1705: 4,14 - 1713: 4,15 - 1721: 8,2 - 1729: 8,3 - 1737: 8,4 - 1780: -13,-15 - 1785: -13,-14 - 1790: -13,-13 - 1793: -13,-22 - 1798: -13,-21 - 1803: -13,-20 - 1816: 2,-27 - 1827: 10,-27 - 1835: 11,-26 - 1853: 4,16 - 1861: 4,17 - 1866: 4,12 - 1874: 4,13 - 1882: 4,14 - 1890: 4,15 - 1898: 8,2 - 1906: 8,3 - 1914: 8,4 - 1957: -13,-15 - 1962: -13,-14 - 1967: -13,-13 - 1970: -13,-22 - 1975: -13,-21 - 1980: -13,-20 - 1993: 2,-27 - 2004: 10,-27 - 2012: 11,-26 - 2030: 4,16 - 2038: 4,17 - 2067: 4,12 - 2075: 4,13 - 2083: 4,14 - 2091: 4,15 - 2099: 8,2 - 2107: 8,3 - 2115: 8,4 - 2158: -13,-15 - 2163: -13,-14 - 2192: -13,-22 - 2197: -13,-21 - 2202: -13,-20 - 2215: 2,-27 - 2226: 10,-27 - 2234: 11,-26 - 2252: 4,16 - 2260: 4,17 - 2265: -13,-13 - 2268: 4,12 - 2276: 4,13 - 2284: 4,14 - 2292: 4,15 - 2300: 8,2 - 2308: 8,3 - 2316: 8,4 - 2359: -13,-15 - 2364: -13,-14 - 2369: -13,-13 - 2396: -13,-22 - 2401: -13,-21 - 2406: -13,-20 - 2416: 2,-27 - 2424: 10,-27 - 2432: 11,-26 - 2440: 4,16 - 2448: 4,17 - 2456: 11,-20 - 2484: 12,-20 - 2489: -10,-5 - 2494: -10,-6 - 2499: -11,-8 - 2502: -10,-8 - 2510: -10,-7 - 2515: -8,7 - 2520: -8,9 - 2523: 4,12 - 2531: 4,13 - 2539: 4,14 - 2547: 4,15 - 2555: 8,2 - 2563: 8,3 - 2571: 8,4 - 2614: -13,-15 - 2619: -13,-14 - 2624: -13,-13 - 2627: -11,-8 - 2630: -10,-8 - 2638: -10,-7 - 2643: -10,-6 - 2648: -10,-5 - 2677: -8,7 - 2682: -8,9 - 2685: -13,-22 - 2690: -13,-21 - 2695: -13,-20 - 2711: 2,-27 - 2725: 10,-27 - 2733: 11,-26 - 2741: 11,-20 - 2754: 12,-20 - 2762: 4,16 - 2770: 4,17 - - node: - zIndex: 1 - id: LatticeCornerSW - decals: - 454: 4,12 - 462: 4,13 - 470: 4,14 - 478: 4,15 - 486: 8,2 - 494: 8,3 - 502: 8,4 - 507: 9,2 - 512: 9,3 - 517: 9,4 - 522: 2,-13 - 527: 2,-12 - 532: 2,-11 - 537: 2,-10 - 581: 2,-27 - 592: 10,-27 - 600: 11,-26 - 605: 11,-20 - 610: 11,-19 - 618: 4,16 - 624: 4,17 - 631: 4,12 - 639: 4,13 - 647: 4,14 - 655: 4,15 - 663: 8,2 - 671: 8,3 - 679: 8,4 - 684: 9,2 - 689: 9,3 - 694: 9,4 - 699: 2,-13 - 704: 2,-12 - 709: 2,-11 - 714: 2,-10 - 758: 2,-27 - 769: 10,-27 - 777: 11,-26 - 782: 11,-20 - 787: 11,-19 - 795: 4,16 - 801: 4,17 - 808: 4,12 - 816: 4,13 - 824: 4,14 - 832: 4,15 - 840: 8,2 - 848: 8,3 - 856: 8,4 - 861: 9,2 - 866: 9,3 - 871: 9,4 - 876: 2,-13 - 881: 2,-12 - 886: 2,-11 - 891: 2,-10 - 935: 2,-27 - 946: 10,-27 - 954: 11,-26 - 959: 11,-20 - 964: 11,-19 - 972: 4,16 - 978: 4,17 - 985: 4,12 - 993: 4,13 - 1001: 4,14 - 1009: 4,15 - 1017: 8,2 - 1025: 8,3 - 1033: 8,4 - 1038: 9,2 - 1043: 9,3 - 1048: 9,4 - 1053: 2,-13 - 1058: 2,-12 - 1063: 2,-11 - 1068: 2,-10 - 1112: 2,-27 - 1123: 10,-27 - 1131: 11,-26 - 1136: 11,-20 - 1141: 11,-19 - 1149: 4,16 - 1155: 4,17 - 1162: 4,12 - 1170: 4,13 - 1178: 4,14 - 1186: 4,15 - 1194: 8,2 - 1202: 8,3 - 1210: 8,4 - 1215: 9,2 - 1220: 9,3 - 1225: 9,4 - 1230: 2,-13 - 1235: 2,-12 - 1240: 2,-11 - 1245: 2,-10 - 1289: 2,-27 - 1300: 10,-27 - 1308: 11,-26 - 1313: 11,-20 - 1318: 11,-19 - 1326: 4,16 - 1332: 4,17 - 1339: 4,12 - 1347: 4,13 - 1355: 4,14 - 1363: 4,15 - 1371: 8,2 - 1379: 8,3 - 1387: 8,4 - 1392: 9,2 - 1397: 9,3 - 1402: 9,4 - 1407: 2,-13 - 1412: 2,-12 - 1417: 2,-11 - 1422: 2,-10 - 1466: 2,-27 - 1477: 10,-27 - 1485: 11,-26 - 1490: 11,-20 - 1495: 11,-19 - 1503: 4,16 - 1509: 4,17 - 1516: 4,12 - 1524: 4,13 - 1532: 4,14 - 1540: 4,15 - 1548: 8,2 - 1556: 8,3 - 1564: 8,4 - 1569: 9,2 - 1574: 9,3 - 1579: 9,4 - 1584: 2,-13 - 1589: 2,-12 - 1594: 2,-11 - 1599: 2,-10 - 1643: 2,-27 - 1654: 10,-27 - 1662: 11,-26 - 1667: 11,-20 - 1672: 11,-19 - 1680: 4,16 - 1686: 4,17 + 1465: 10,-27 + 1473: 11,-26 + 1491: 4,16 + 1499: 4,17 + 1504: 4,12 + 1512: 4,13 + 1520: 4,14 + 1528: 4,15 + 1536: 8,2 + 1544: 8,3 + 1582: -13,-22 + 1587: -13,-20 + 1597: 10,-27 + 1605: 11,-26 + 1613: 4,16 + 1621: 4,17 + 1626: 11,-20 + 1654: 12,-20 + 1659: -10,-5 + 1664: -10,-6 + 1669: -11,-8 + 1672: -10,-8 + 1680: -10,-7 + 1685: -8,7 + 1690: -8,9 1693: 4,12 1701: 4,13 1709: 4,14 1717: 4,15 1725: 8,2 1733: 8,3 - 1741: 8,4 - 1746: 9,2 - 1751: 9,3 - 1756: 9,4 - 1761: 2,-13 - 1766: 2,-12 - 1771: 2,-11 - 1776: 2,-10 - 1820: 2,-27 - 1831: 10,-27 - 1839: 11,-26 - 1844: 11,-20 - 1849: 11,-19 - 1857: 4,16 - 1863: 4,17 - 1870: 4,12 - 1878: 4,13 - 1886: 4,14 - 1894: 4,15 - 1902: 8,2 - 1910: 8,3 - 1918: 8,4 - 1923: 9,2 - 1928: 9,3 - 1933: 9,4 - 1938: 2,-13 - 1943: 2,-12 - 1948: 2,-11 - 1953: 2,-10 - 1997: 2,-27 - 2008: 10,-27 - 2016: 11,-26 - 2021: 11,-20 - 2026: 11,-19 - 2034: 4,16 - 2040: 4,17 + 1771: -11,-8 + 1774: -10,-8 + 1782: -10,-7 + 1787: -10,-6 + 1792: -10,-5 + 1797: -8,7 + 1802: -8,9 + 1805: -13,-22 + 1810: -13,-20 + 1832: 10,-27 + 1840: 11,-26 + 1848: 11,-20 + 1861: 12,-20 + 1869: 4,16 + 1877: 4,17 + 1882: 4,12 + 1890: 4,13 + 1898: 4,14 + 1906: 4,15 + 1914: 8,2 + 1922: 8,3 + 1960: -11,-8 + 1963: -10,-8 + 1971: -10,-7 + 1976: -10,-6 + 1981: -10,-5 + 1986: -8,7 + 1991: -8,9 + 1994: -13,-22 + 1999: -13,-20 + 2021: 10,-27 + 2029: 11,-26 + 2037: 11,-20 + 2050: 12,-20 + 2058: 4,16 + 2066: 4,17 2071: 4,12 2079: 4,13 2087: 4,14 2095: 4,15 - 2103: 8,2 - 2111: 8,3 - 2119: 8,4 - 2124: 9,2 - 2129: 9,3 - 2134: 9,4 - 2139: 2,-13 - 2144: 2,-12 - 2149: 2,-11 - 2154: 2,-10 - 2219: 2,-27 - 2230: 10,-27 - 2238: 11,-26 - 2243: 11,-20 - 2248: 11,-19 - 2256: 4,16 - 2262: 4,17 - 2272: 4,12 - 2280: 4,13 - 2288: 4,14 - 2296: 4,15 - 2304: 8,2 - 2312: 8,3 - 2320: 8,4 - 2325: 9,2 - 2330: 9,3 - 2335: 9,4 - 2340: 2,-13 - 2345: 2,-12 - 2350: 2,-11 - 2355: 2,-10 - 2420: 2,-27 - 2428: 10,-27 - 2436: 11,-26 - 2444: 4,16 - 2450: 4,17 - 2460: 11,-20 - 2465: 11,-19 - 2481: 13,-20 - 2486: 12,-20 - 2506: -10,-8 - 2527: 4,12 - 2535: 4,13 - 2543: 4,14 - 2551: 4,15 - 2559: 8,2 - 2567: 8,3 - 2575: 8,4 - 2580: 9,2 - 2585: 9,3 - 2590: 9,4 - 2595: 2,-13 - 2600: 2,-12 - 2605: 2,-11 - 2610: 2,-10 - 2634: -10,-8 - 2715: 2,-27 - 2729: 10,-27 - 2737: 11,-26 - 2745: 11,-20 - 2750: 11,-19 - 2756: 12,-20 - 2759: 13,-20 - 2766: 4,16 - 2772: 4,17 - - node: - id: LatticeEdgeE - decals: - 449: 4,12 - 457: 4,13 - 465: 4,14 - 473: 4,15 - 481: 8,2 - 489: 8,3 - 497: 8,4 - 540: -13,-15 - 545: -13,-14 - 550: -13,-13 - 553: -13,-22 - 558: -13,-21 - 563: -13,-20 - 567: -10,-28 - 572: -8,-32 - 576: 2,-27 - 587: 10,-27 - 595: 11,-26 - 613: 4,16 - 621: 4,17 - 626: 4,12 - 634: 4,13 - 642: 4,14 - 650: 4,15 - 658: 8,2 - 666: 8,3 - 674: 8,4 - 717: -13,-15 - 722: -13,-14 - 727: -13,-13 - 730: -13,-22 - 735: -13,-21 - 740: -13,-20 - 744: -10,-28 - 749: -8,-32 - 753: 2,-27 - 764: 10,-27 - 772: 11,-26 - 790: 4,16 - 798: 4,17 - 803: 4,12 - 811: 4,13 - 819: 4,14 - 827: 4,15 - 835: 8,2 - 843: 8,3 - 851: 8,4 - 894: -13,-15 - 899: -13,-14 - 904: -13,-13 - 907: -13,-22 - 912: -13,-21 - 917: -13,-20 - 921: -10,-28 - 926: -8,-32 - 930: 2,-27 - 941: 10,-27 - 949: 11,-26 - 967: 4,16 - 975: 4,17 - 980: 4,12 - 988: 4,13 - 996: 4,14 - 1004: 4,15 - 1012: 8,2 - 1020: 8,3 - 1028: 8,4 - 1071: -13,-15 - 1076: -13,-14 - 1081: -13,-13 - 1084: -13,-22 - 1089: -13,-21 - 1094: -13,-20 - 1098: -10,-28 - 1103: -8,-32 - 1107: 2,-27 - 1118: 10,-27 - 1126: 11,-26 - 1144: 4,16 - 1152: 4,17 - 1157: 4,12 - 1165: 4,13 - 1173: 4,14 - 1181: 4,15 - 1189: 8,2 - 1197: 8,3 - 1205: 8,4 - 1248: -13,-15 - 1253: -13,-14 - 1258: -13,-13 - 1261: -13,-22 - 1266: -13,-21 - 1271: -13,-20 - 1275: -10,-28 - 1280: -8,-32 - 1284: 2,-27 - 1295: 10,-27 - 1303: 11,-26 - 1321: 4,16 - 1329: 4,17 - 1334: 4,12 - 1342: 4,13 - 1350: 4,14 - 1358: 4,15 - 1366: 8,2 - 1374: 8,3 - 1382: 8,4 - 1425: -13,-15 - 1430: -13,-14 - 1435: -13,-13 - 1438: -13,-22 - 1443: -13,-21 - 1448: -13,-20 - 1452: -10,-28 - 1457: -8,-32 - 1461: 2,-27 - 1472: 10,-27 - 1480: 11,-26 - 1498: 4,16 - 1506: 4,17 - 1511: 4,12 - 1519: 4,13 - 1527: 4,14 - 1535: 4,15 - 1543: 8,2 - 1551: 8,3 - 1559: 8,4 - 1602: -13,-15 - 1607: -13,-14 - 1612: -13,-13 - 1615: -13,-22 - 1620: -13,-21 - 1625: -13,-20 - 1629: -10,-28 - 1634: -8,-32 - 1638: 2,-27 - 1649: 10,-27 - 1657: 11,-26 - 1675: 4,16 - 1683: 4,17 - 1688: 4,12 - 1696: 4,13 - 1704: 4,14 - 1712: 4,15 - 1720: 8,2 - 1728: 8,3 - 1736: 8,4 - 1779: -13,-15 - 1784: -13,-14 - 1789: -13,-13 - 1792: -13,-22 - 1797: -13,-21 - 1802: -13,-20 - 1806: -10,-28 - 1811: -8,-32 - 1815: 2,-27 - 1826: 10,-27 - 1834: 11,-26 - 1852: 4,16 - 1860: 4,17 - 1865: 4,12 - 1873: 4,13 - 1881: 4,14 - 1889: 4,15 - 1897: 8,2 - 1905: 8,3 - 1913: 8,4 - 1956: -13,-15 - 1961: -13,-14 - 1966: -13,-13 - 1969: -13,-22 - 1974: -13,-21 - 1979: -13,-20 - 1983: -10,-28 - 1988: -8,-32 - 1992: 2,-27 - 2003: 10,-27 - 2011: 11,-26 - 2029: 4,16 - 2037: 4,17 - 2066: 4,12 - 2074: 4,13 - 2082: 4,14 - 2090: 4,15 - 2098: 8,2 - 2106: 8,3 - 2114: 8,4 - 2157: -13,-15 - 2162: -13,-14 - 2191: -13,-22 - 2196: -13,-21 - 2201: -13,-20 - 2205: -10,-28 - 2210: -8,-32 - 2214: 2,-27 - 2225: 10,-27 - 2233: 11,-26 - 2251: 4,16 - 2259: 4,17 - 2264: -13,-13 - 2267: 4,12 - 2275: 4,13 - 2283: 4,14 - 2291: 4,15 - 2299: 8,2 - 2307: 8,3 - 2315: 8,4 - 2358: -13,-15 - 2363: -13,-14 - 2368: -13,-13 - 2395: -13,-22 - 2400: -13,-21 - 2405: -13,-20 - 2409: -10,-28 - 2415: 2,-27 - 2423: 10,-27 - 2431: 11,-26 - 2439: 4,16 - 2447: 4,17 - 2455: 11,-20 - 2473: -8,-32 - 2476: -9,-30 - 2483: 12,-20 - 2488: -10,-5 - 2493: -10,-6 - 2498: -11,-8 - 2501: -10,-8 - 2509: -10,-7 - 2514: -8,7 - 2519: -8,9 - 2522: 4,12 - 2530: 4,13 - 2538: 4,14 - 2546: 4,15 - 2554: 8,2 - 2562: 8,3 - 2570: 8,4 - 2613: -13,-15 - 2618: -13,-14 - 2623: -13,-13 - 2626: -11,-8 - 2629: -10,-8 - 2637: -10,-7 - 2642: -10,-6 - 2647: -10,-5 - 2676: -8,7 - 2681: -8,9 - 2684: -13,-22 - 2689: -13,-21 - 2694: -13,-20 - 2698: -10,-28 - 2703: -9,-30 - 2706: -8,-32 - 2710: 2,-27 - 2724: 10,-27 - 2732: 11,-26 - 2740: 11,-20 - 2753: 12,-20 - 2761: 4,16 - 2769: 4,17 - - node: - id: LatticeEdgeN - decals: - 451: 4,12 - 459: 4,13 - 467: 4,14 - 475: 4,15 - 483: 8,2 - 491: 8,3 - 499: 8,4 - 505: 9,2 - 510: 9,3 - 515: 9,4 - 520: 2,-13 - 525: 2,-12 - 530: 2,-11 - 535: 2,-10 - 542: -13,-15 - 547: -13,-14 - 555: -13,-22 - 560: -13,-21 - 565: -13,-20 - 568: -10,-28 - 573: -8,-32 - 578: 2,-27 - 583: 8,-32 - 589: 10,-27 - 597: 11,-26 - 603: 11,-20 - 608: 11,-19 - 615: 4,16 - 628: 4,12 - 636: 4,13 - 644: 4,14 - 652: 4,15 - 660: 8,2 - 668: 8,3 - 676: 8,4 - 682: 9,2 - 687: 9,3 - 692: 9,4 - 697: 2,-13 - 702: 2,-12 - 707: 2,-11 - 712: 2,-10 - 719: -13,-15 - 724: -13,-14 - 732: -13,-22 - 737: -13,-21 - 742: -13,-20 - 745: -10,-28 - 750: -8,-32 - 755: 2,-27 - 760: 8,-32 - 766: 10,-27 - 774: 11,-26 - 780: 11,-20 - 785: 11,-19 - 792: 4,16 - 805: 4,12 - 813: 4,13 - 821: 4,14 - 829: 4,15 - 837: 8,2 - 845: 8,3 - 853: 8,4 - 859: 9,2 - 864: 9,3 - 869: 9,4 - 874: 2,-13 - 879: 2,-12 - 884: 2,-11 - 889: 2,-10 - 896: -13,-15 - 901: -13,-14 - 909: -13,-22 - 914: -13,-21 - 919: -13,-20 - 922: -10,-28 - 927: -8,-32 - 932: 2,-27 - 937: 8,-32 - 943: 10,-27 - 951: 11,-26 - 957: 11,-20 - 962: 11,-19 - 969: 4,16 - 982: 4,12 - 990: 4,13 - 998: 4,14 - 1006: 4,15 - 1014: 8,2 - 1022: 8,3 - 1030: 8,4 - 1036: 9,2 - 1041: 9,3 - 1046: 9,4 - 1051: 2,-13 - 1056: 2,-12 - 1061: 2,-11 - 1066: 2,-10 - 1073: -13,-15 - 1078: -13,-14 - 1086: -13,-22 - 1091: -13,-21 - 1096: -13,-20 - 1099: -10,-28 - 1104: -8,-32 - 1109: 2,-27 - 1114: 8,-32 - 1120: 10,-27 - 1128: 11,-26 - 1134: 11,-20 - 1139: 11,-19 - 1146: 4,16 - 1159: 4,12 - 1167: 4,13 - 1175: 4,14 - 1183: 4,15 - 1191: 8,2 - 1199: 8,3 - 1207: 8,4 - 1213: 9,2 - 1218: 9,3 - 1223: 9,4 - 1228: 2,-13 - 1233: 2,-12 - 1238: 2,-11 - 1243: 2,-10 - 1250: -13,-15 - 1255: -13,-14 - 1263: -13,-22 - 1268: -13,-21 - 1273: -13,-20 - 1276: -10,-28 - 1281: -8,-32 - 1286: 2,-27 - 1291: 8,-32 - 1297: 10,-27 - 1305: 11,-26 - 1311: 11,-20 - 1316: 11,-19 - 1323: 4,16 - 1336: 4,12 - 1344: 4,13 - 1352: 4,14 - 1360: 4,15 - 1368: 8,2 - 1376: 8,3 - 1384: 8,4 - 1390: 9,2 - 1395: 9,3 - 1400: 9,4 - 1405: 2,-13 - 1410: 2,-12 - 1415: 2,-11 - 1420: 2,-10 - 1427: -13,-15 - 1432: -13,-14 - 1440: -13,-22 - 1445: -13,-21 - 1450: -13,-20 - 1453: -10,-28 - 1458: -8,-32 - 1463: 2,-27 - 1468: 8,-32 - 1474: 10,-27 - 1482: 11,-26 - 1488: 11,-20 - 1493: 11,-19 - 1500: 4,16 - 1513: 4,12 - 1521: 4,13 - 1529: 4,14 - 1537: 4,15 - 1545: 8,2 - 1553: 8,3 - 1561: 8,4 - 1567: 9,2 - 1572: 9,3 - 1577: 9,4 - 1582: 2,-13 - 1587: 2,-12 - 1592: 2,-11 - 1597: 2,-10 - 1604: -13,-15 - 1609: -13,-14 - 1617: -13,-22 - 1622: -13,-21 - 1627: -13,-20 - 1630: -10,-28 - 1635: -8,-32 - 1640: 2,-27 - 1645: 8,-32 - 1651: 10,-27 - 1659: 11,-26 - 1665: 11,-20 - 1670: 11,-19 - 1677: 4,16 - 1690: 4,12 - 1698: 4,13 - 1706: 4,14 - 1714: 4,15 - 1722: 8,2 - 1730: 8,3 - 1738: 8,4 - 1744: 9,2 - 1749: 9,3 - 1754: 9,4 - 1759: 2,-13 - 1764: 2,-12 - 1769: 2,-11 - 1774: 2,-10 - 1781: -13,-15 - 1786: -13,-14 - 1794: -13,-22 - 1799: -13,-21 - 1804: -13,-20 - 1807: -10,-28 - 1812: -8,-32 - 1817: 2,-27 - 1822: 8,-32 - 1828: 10,-27 - 1836: 11,-26 - 1842: 11,-20 - 1847: 11,-19 - 1854: 4,16 - 1867: 4,12 - 1875: 4,13 - 1883: 4,14 - 1891: 4,15 - 1899: 8,2 - 1907: 8,3 - 1915: 8,4 - 1921: 9,2 - 1926: 9,3 - 1931: 9,4 - 1936: 2,-13 - 1941: 2,-12 - 1946: 2,-11 - 1951: 2,-10 - 1958: -13,-15 - 1963: -13,-14 - 1971: -13,-22 - 1976: -13,-21 - 1981: -13,-20 - 1984: -10,-28 - 1989: -8,-32 - 1994: 2,-27 - 1999: 8,-32 - 2005: 10,-27 - 2013: 11,-26 - 2019: 11,-20 - 2024: 11,-19 - 2031: 4,16 - 2068: 4,12 - 2076: 4,13 - 2084: 4,14 - 2092: 4,15 - 2100: 8,2 - 2108: 8,3 - 2116: 8,4 - 2122: 9,2 - 2127: 9,3 - 2132: 9,4 - 2137: 2,-13 - 2142: 2,-12 - 2147: 2,-11 - 2152: 2,-10 - 2159: -13,-15 - 2164: -13,-14 - 2193: -13,-22 - 2198: -13,-21 - 2203: -13,-20 - 2206: -10,-28 - 2211: -8,-32 - 2216: 2,-27 - 2221: 8,-32 - 2227: 10,-27 - 2235: 11,-26 - 2241: 11,-20 - 2246: 11,-19 - 2253: 4,16 - 2269: 4,12 - 2277: 4,13 - 2285: 4,14 - 2293: 4,15 - 2301: 8,2 - 2309: 8,3 - 2317: 8,4 - 2323: 9,2 - 2328: 9,3 - 2333: 9,4 - 2338: 2,-13 - 2343: 2,-12 - 2348: 2,-11 - 2353: 2,-10 - 2360: -13,-15 - 2365: -13,-14 - 2397: -13,-22 - 2402: -13,-21 - 2407: -13,-20 - 2410: -10,-28 - 2417: 2,-27 - 2425: 10,-27 - 2433: 11,-26 - 2441: 4,16 - 2457: 11,-20 - 2463: 11,-19 - 2467: 8,-32 - 2470: 9,-30 - 2474: -8,-32 - 2477: -9,-30 - 2490: -10,-5 - 2495: -10,-6 - 2503: -10,-8 - 2511: -10,-7 - 2516: -8,7 - 2524: 4,12 - 2532: 4,13 - 2540: 4,14 - 2548: 4,15 - 2556: 8,2 - 2564: 8,3 - 2572: 8,4 - 2578: 9,2 - 2583: 9,3 - 2588: 9,4 - 2593: 2,-13 - 2598: 2,-12 - 2603: 2,-11 - 2608: 2,-10 - 2615: -13,-15 - 2620: -13,-14 - 2631: -10,-8 - 2639: -10,-7 - 2644: -10,-6 - 2649: -10,-5 - 2678: -8,7 - 2686: -13,-22 - 2691: -13,-21 - 2696: -13,-20 - 2699: -10,-28 - 2704: -9,-30 - 2707: -8,-32 - 2712: 2,-27 - 2717: 8,-32 - 2720: 9,-30 - 2726: 10,-27 - 2734: 11,-26 - 2742: 11,-20 - 2748: 11,-19 - 2763: 4,16 + 2123: -11,-8 + 2126: -10,-8 + 2134: -10,-7 + 2139: -10,-6 + 2144: -10,-5 + 2149: -8,7 + 2154: -8,9 + 2157: -13,-22 + 2162: -13,-20 + 2181: 10,-27 + 2189: 11,-26 + 2197: 11,-20 + 2210: 12,-20 + 2218: 4,16 + 2226: 4,17 + 2258: 8,3 + 2266: 8,2 + 2470: 4,12 + 2478: 4,13 + 2486: 4,14 + 2494: 4,15 + 2502: 8,2 + 2510: 8,3 + 2554: -11,-8 + 2557: -10,-8 + 2565: -10,-7 + 2570: -10,-6 + 2575: -10,-5 + 2604: -8,7 + 2609: -8,9 + 2612: -13,-22 + 2617: -13,-20 + 2639: 10,-27 + 2647: 11,-26 + 2655: 11,-20 + 2668: 12,-20 + 2676: 4,16 + 2684: 4,17 + 2689: 4,12 + 2697: 4,13 + 2705: 4,14 + 2713: 4,15 + 2721: 8,2 + 2729: 8,3 + 2773: -11,-8 + 2776: -10,-8 + 2784: -10,-7 + 2789: -10,-6 + 2794: -10,-5 + 2823: -8,7 + 2828: -8,9 + 2831: -13,-22 + 2836: -13,-20 + 2858: 10,-27 + 2866: 11,-26 + 2874: 11,-20 + 2887: 12,-20 + 2895: 4,16 + 2903: 4,17 + 2908: 4,12 + 2916: 4,13 + 2924: 4,14 + 2932: 4,15 + 2940: 8,2 + 2948: 8,3 + 2992: -11,-8 + 2995: -10,-8 + 3003: -10,-7 + 3008: -10,-6 + 3013: -10,-5 + 3042: -8,7 + 3047: -8,9 + 3050: -13,-22 + 3055: -13,-20 + 3077: 10,-27 + 3085: 11,-26 + 3093: 11,-20 + 3106: 12,-20 + 3114: 4,16 + 3122: 4,17 + 3127: 4,12 + 3135: 4,13 + 3143: 4,14 + 3151: 4,15 + 3159: 8,2 + 3167: 8,3 + 3211: -11,-8 + 3214: -10,-8 + 3222: -10,-7 + 3227: -10,-6 + 3232: -10,-5 + 3261: -8,7 + 3266: -8,9 + 3269: -13,-22 + 3274: -13,-20 + 3296: 10,-27 + 3304: 11,-26 + 3312: 11,-20 + 3325: 12,-20 + 3333: 4,16 + 3341: 4,17 + 3346: 4,12 + 3354: 4,13 + 3362: 4,14 + 3370: 4,15 + 3378: 8,2 + 3386: 8,3 + 3430: -11,-8 + 3433: -10,-8 + 3465: -8,7 + 3470: -8,9 + 3490: 10,-27 + 3498: 11,-26 + 3506: 11,-20 + 3519: 12,-20 + 3527: 4,16 + 3535: 4,17 + 3540: -10,-6 + 3545: -10,-7 + 3550: -10,-5 + 3558: -13,-22 + 3561: 4,12 + 3569: 4,13 + 3577: 4,14 + 3585: 4,15 + 3593: 8,2 + 3601: 8,3 + 3645: -11,-8 + 3648: -10,-8 + 3656: -10,-7 + 3661: -10,-6 + 3666: -10,-5 + 3695: -8,7 + 3700: -8,9 + 3703: -13,-22 + 3726: 10,-27 + 3734: 11,-26 + 3742: 11,-20 + 3755: 12,-20 + 3763: 4,16 + 3771: 4,17 + 3776: 4,12 + 3784: 4,13 + 3792: 4,14 + 3800: 4,15 + 3808: 8,2 + 3816: 8,3 + 3860: -11,-8 + 3863: -10,-8 + 3871: -10,-7 + 3876: -10,-6 + 3881: -10,-5 + 3910: -8,7 + 3915: -8,9 + 3918: -13,-22 + 3941: 10,-27 + 3949: 11,-26 + 3957: 11,-20 + 3970: 12,-20 + 3978: 4,16 + 3986: 4,17 + 4100: 4,12 + 4108: 4,13 + 4116: 4,14 + 4124: 4,15 + 4132: 8,2 + 4140: 8,3 + 4184: -11,-8 + 4187: -10,-8 + 4195: -10,-7 + 4200: -10,-6 + 4205: -10,-5 + 4234: -8,7 + 4239: -8,9 + 4242: -13,-22 + 4265: 10,-27 + 4273: 11,-26 + 4281: 11,-20 + 4294: 12,-20 + 4302: 4,16 + 4310: 4,17 + 4315: 4,12 + 4323: 4,13 + 4331: 4,14 + 4339: 4,15 + 4347: 8,2 + 4355: 8,3 + 4399: -11,-8 + 4402: -10,-8 + 4410: -10,-7 + 4415: -10,-6 + 4420: -10,-5 + 4449: -8,7 + 4454: -8,9 + 4457: -13,-22 + 4480: 10,-27 + 4488: 11,-26 + 4496: 11,-20 + 4509: 12,-20 + 4517: 4,16 + 4525: 4,17 - node: - id: LatticeEdgeS + zIndex: 1 + id: LatticeCornerSW decals: - 448: 4,12 - 456: 4,13 - 464: 4,14 - 472: 4,15 - 480: 8,2 - 488: 8,3 - 496: 8,4 - 504: 9,2 - 509: 9,3 - 514: 9,4 - 519: 2,-13 - 524: 2,-12 - 529: 2,-11 - 534: 2,-10 - 539: -13,-15 - 544: -13,-14 - 549: -13,-13 - 552: -13,-22 - 557: -13,-21 - 562: -13,-20 - 575: 2,-27 - 586: 10,-27 - 594: 11,-26 - 602: 11,-20 - 607: 11,-19 - 612: 4,16 - 620: 4,17 - 625: 4,12 - 633: 4,13 - 641: 4,14 - 649: 4,15 - 657: 8,2 - 665: 8,3 - 673: 8,4 - 681: 9,2 - 686: 9,3 - 691: 9,4 - 696: 2,-13 - 701: 2,-12 - 706: 2,-11 - 711: 2,-10 - 716: -13,-15 - 721: -13,-14 - 726: -13,-13 - 729: -13,-22 - 734: -13,-21 - 739: -13,-20 - 752: 2,-27 - 763: 10,-27 - 771: 11,-26 - 779: 11,-20 - 784: 11,-19 - 789: 4,16 - 797: 4,17 - 802: 4,12 - 810: 4,13 - 818: 4,14 - 826: 4,15 - 834: 8,2 - 842: 8,3 - 850: 8,4 - 858: 9,2 + 128: 4,12 + 136: 4,13 + 144: 4,14 + 152: 4,15 + 160: 8,2 + 168: 8,3 + 173: 9,3 + 178: 9,4 + 183: 2,-13 + 188: 2,-12 + 193: 2,-11 + 198: 2,-10 + 227: 10,-27 + 235: 11,-26 + 240: 11,-20 + 245: 11,-19 + 253: 4,16 + 259: 4,17 + 266: 4,12 + 274: 4,13 + 282: 4,14 + 290: 4,15 + 298: 8,2 + 306: 8,3 + 311: 9,3 + 316: 9,4 + 321: 2,-13 + 326: 2,-12 + 331: 2,-11 + 336: 2,-10 + 365: 10,-27 + 373: 11,-26 + 378: 11,-20 + 383: 11,-19 + 391: 4,16 + 397: 4,17 + 404: 4,12 + 412: 4,13 + 420: 4,14 + 428: 4,15 + 436: 8,2 + 444: 8,3 + 449: 9,3 + 454: 9,4 + 459: 2,-13 + 464: 2,-12 + 469: 2,-11 + 474: 2,-10 + 503: 10,-27 + 511: 11,-26 + 516: 11,-20 + 521: 11,-19 + 529: 4,16 + 535: 4,17 + 542: 4,12 + 550: 4,13 + 558: 4,14 + 566: 4,15 + 574: 8,2 + 582: 8,3 + 587: 9,3 + 592: 9,4 + 597: 2,-13 + 602: 2,-12 + 607: 2,-11 + 612: 2,-10 + 641: 10,-27 + 649: 11,-26 + 654: 11,-20 + 659: 11,-19 + 667: 4,16 + 673: 4,17 + 680: 4,12 + 688: 4,13 + 696: 4,14 + 704: 4,15 + 712: 8,2 + 720: 8,3 + 725: 9,3 + 730: 9,4 + 735: 2,-13 + 740: 2,-12 + 745: 2,-11 + 750: 2,-10 + 779: 10,-27 + 787: 11,-26 + 792: 11,-20 + 797: 11,-19 + 805: 4,16 + 811: 4,17 + 818: 4,12 + 826: 4,13 + 834: 4,14 + 842: 4,15 + 850: 8,2 + 858: 8,3 863: 9,3 868: 9,4 873: 2,-13 878: 2,-12 883: 2,-11 888: 2,-10 - 893: -13,-15 - 898: -13,-14 - 903: -13,-13 - 906: -13,-22 - 911: -13,-21 - 916: -13,-20 - 929: 2,-27 - 940: 10,-27 - 948: 11,-26 - 956: 11,-20 - 961: 11,-19 - 966: 4,16 - 974: 4,17 - 979: 4,12 - 987: 4,13 - 995: 4,14 - 1003: 4,15 - 1011: 8,2 - 1019: 8,3 - 1027: 8,4 - 1035: 9,2 - 1040: 9,3 - 1045: 9,4 - 1050: 2,-13 - 1055: 2,-12 - 1060: 2,-11 - 1065: 2,-10 - 1070: -13,-15 - 1075: -13,-14 - 1080: -13,-13 - 1083: -13,-22 - 1088: -13,-21 - 1093: -13,-20 - 1106: 2,-27 - 1117: 10,-27 - 1125: 11,-26 - 1133: 11,-20 - 1138: 11,-19 - 1143: 4,16 - 1151: 4,17 - 1156: 4,12 - 1164: 4,13 - 1172: 4,14 - 1180: 4,15 - 1188: 8,2 - 1196: 8,3 - 1204: 8,4 - 1212: 9,2 - 1217: 9,3 - 1222: 9,4 - 1227: 2,-13 - 1232: 2,-12 - 1237: 2,-11 - 1242: 2,-10 - 1247: -13,-15 - 1252: -13,-14 - 1257: -13,-13 - 1260: -13,-22 - 1265: -13,-21 - 1270: -13,-20 - 1283: 2,-27 - 1294: 10,-27 - 1302: 11,-26 - 1310: 11,-20 - 1315: 11,-19 - 1320: 4,16 - 1328: 4,17 - 1333: 4,12 - 1341: 4,13 - 1349: 4,14 - 1357: 4,15 - 1365: 8,2 - 1373: 8,3 - 1381: 8,4 - 1389: 9,2 - 1394: 9,3 - 1399: 9,4 - 1404: 2,-13 - 1409: 2,-12 - 1414: 2,-11 - 1419: 2,-10 - 1424: -13,-15 - 1429: -13,-14 - 1434: -13,-13 - 1437: -13,-22 - 1442: -13,-21 - 1447: -13,-20 - 1460: 2,-27 - 1471: 10,-27 - 1479: 11,-26 - 1487: 11,-20 - 1492: 11,-19 - 1497: 4,16 - 1505: 4,17 - 1510: 4,12 - 1518: 4,13 - 1526: 4,14 - 1534: 4,15 - 1542: 8,2 - 1550: 8,3 - 1558: 8,4 - 1566: 9,2 - 1571: 9,3 - 1576: 9,4 - 1581: 2,-13 - 1586: 2,-12 - 1591: 2,-11 - 1596: 2,-10 - 1601: -13,-15 - 1606: -13,-14 - 1611: -13,-13 - 1614: -13,-22 - 1619: -13,-21 - 1624: -13,-20 - 1637: 2,-27 - 1648: 10,-27 - 1656: 11,-26 - 1664: 11,-20 - 1669: 11,-19 - 1674: 4,16 - 1682: 4,17 - 1687: 4,12 - 1695: 4,13 - 1703: 4,14 - 1711: 4,15 - 1719: 8,2 - 1727: 8,3 - 1735: 8,4 - 1743: 9,2 - 1748: 9,3 - 1753: 9,4 - 1758: 2,-13 - 1763: 2,-12 - 1768: 2,-11 - 1773: 2,-10 - 1778: -13,-15 - 1783: -13,-14 - 1788: -13,-13 - 1791: -13,-22 - 1796: -13,-21 - 1801: -13,-20 - 1814: 2,-27 - 1825: 10,-27 - 1833: 11,-26 - 1841: 11,-20 - 1846: 11,-19 - 1851: 4,16 - 1859: 4,17 - 1864: 4,12 - 1872: 4,13 - 1880: 4,14 - 1888: 4,15 - 1896: 8,2 - 1904: 8,3 - 1912: 8,4 - 1920: 9,2 - 1925: 9,3 - 1930: 9,4 - 1935: 2,-13 - 1940: 2,-12 - 1945: 2,-11 - 1950: 2,-10 - 1955: -13,-15 - 1960: -13,-14 - 1965: -13,-13 - 1968: -13,-22 - 1973: -13,-21 - 1978: -13,-20 - 1991: 2,-27 - 2002: 10,-27 - 2010: 11,-26 - 2018: 11,-20 - 2023: 11,-19 - 2028: 4,16 - 2036: 4,17 - 2065: 4,12 - 2073: 4,13 - 2081: 4,14 - 2089: 4,15 - 2097: 8,2 - 2105: 8,3 - 2113: 8,4 - 2121: 9,2 - 2126: 9,3 - 2131: 9,4 - 2136: 2,-13 - 2141: 2,-12 - 2146: 2,-11 - 2151: 2,-10 - 2156: -13,-15 - 2161: -13,-14 - 2190: -13,-22 - 2195: -13,-21 - 2200: -13,-20 - 2213: 2,-27 - 2224: 10,-27 - 2232: 11,-26 - 2240: 11,-20 - 2245: 11,-19 - 2250: 4,16 - 2258: 4,17 - 2263: -13,-13 - 2266: 4,12 - 2274: 4,13 - 2282: 4,14 - 2290: 4,15 - 2298: 8,2 - 2306: 8,3 - 2314: 8,4 - 2322: 9,2 - 2327: 9,3 - 2332: 9,4 - 2337: 2,-13 - 2342: 2,-12 - 2347: 2,-11 - 2352: 2,-10 - 2357: -13,-15 - 2362: -13,-14 - 2367: -13,-13 - 2394: -13,-22 - 2399: -13,-21 - 2404: -13,-20 - 2414: 2,-27 - 2422: 10,-27 - 2430: 11,-26 - 2438: 4,16 - 2446: 4,17 - 2454: 11,-20 - 2462: 11,-19 - 2479: 13,-20 - 2482: 12,-20 - 2487: -10,-5 - 2492: -10,-6 - 2497: -11,-8 - 2500: -10,-8 - 2508: -10,-7 - 2513: -8,7 - 2518: -8,9 - 2521: 4,12 - 2529: 4,13 - 2537: 4,14 - 2545: 4,15 - 2553: 8,2 - 2561: 8,3 - 2569: 8,4 - 2577: 9,2 - 2582: 9,3 - 2587: 9,4 - 2592: 2,-13 - 2597: 2,-12 - 2602: 2,-11 - 2607: 2,-10 - 2612: -13,-15 - 2617: -13,-14 - 2622: -13,-13 - 2625: -11,-8 - 2628: -10,-8 - 2636: -10,-7 - 2641: -10,-6 - 2646: -10,-5 - 2675: -8,7 - 2680: -8,9 - 2683: -13,-22 - 2688: -13,-21 - 2693: -13,-20 - 2709: 2,-27 - 2723: 10,-27 - 2731: 11,-26 - 2739: 11,-20 - 2747: 11,-19 - 2752: 12,-20 - 2757: 13,-20 - 2760: 4,16 - 2768: 4,17 + 917: 10,-27 + 925: 11,-26 + 930: 11,-20 + 935: 11,-19 + 943: 4,16 + 949: 4,17 + 956: 4,12 + 964: 4,13 + 972: 4,14 + 980: 4,15 + 988: 8,2 + 996: 8,3 + 1001: 9,3 + 1006: 9,4 + 1011: 2,-13 + 1016: 2,-12 + 1021: 2,-11 + 1026: 2,-10 + 1055: 10,-27 + 1063: 11,-26 + 1068: 11,-20 + 1073: 11,-19 + 1081: 4,16 + 1087: 4,17 + 1094: 4,12 + 1102: 4,13 + 1110: 4,14 + 1118: 4,15 + 1126: 8,2 + 1134: 8,3 + 1139: 9,3 + 1144: 9,4 + 1149: 2,-13 + 1154: 2,-12 + 1159: 2,-11 + 1164: 2,-10 + 1193: 10,-27 + 1201: 11,-26 + 1206: 11,-20 + 1211: 11,-19 + 1219: 4,16 + 1225: 4,17 + 1232: 4,12 + 1240: 4,13 + 1248: 4,14 + 1256: 4,15 + 1264: 8,2 + 1272: 8,3 + 1277: 9,3 + 1282: 9,4 + 1287: 2,-13 + 1292: 2,-12 + 1297: 2,-11 + 1302: 2,-10 + 1331: 10,-27 + 1339: 11,-26 + 1344: 11,-20 + 1349: 11,-19 + 1357: 4,16 + 1363: 4,17 + 1370: 4,12 + 1378: 4,13 + 1386: 4,14 + 1394: 4,15 + 1402: 8,2 + 1410: 8,3 + 1415: 9,3 + 1420: 9,4 + 1425: 2,-13 + 1430: 2,-12 + 1435: 2,-11 + 1440: 2,-10 + 1469: 10,-27 + 1477: 11,-26 + 1482: 11,-20 + 1487: 11,-19 + 1495: 4,16 + 1501: 4,17 + 1508: 4,12 + 1516: 4,13 + 1524: 4,14 + 1532: 4,15 + 1540: 8,2 + 1548: 8,3 + 1553: 9,3 + 1558: 9,4 + 1563: 2,-13 + 1568: 2,-12 + 1573: 2,-11 + 1578: 2,-10 + 1601: 10,-27 + 1609: 11,-26 + 1617: 4,16 + 1623: 4,17 + 1630: 11,-20 + 1635: 11,-19 + 1651: 13,-20 + 1656: 12,-20 + 1676: -10,-8 + 1697: 4,12 + 1705: 4,13 + 1713: 4,14 + 1721: 4,15 + 1729: 8,2 + 1737: 8,3 + 1742: 9,3 + 1747: 9,4 + 1752: 2,-13 + 1757: 2,-12 + 1762: 2,-11 + 1767: 2,-10 + 1778: -10,-8 + 1836: 10,-27 + 1844: 11,-26 + 1852: 11,-20 + 1857: 11,-19 + 1863: 12,-20 + 1866: 13,-20 + 1873: 4,16 + 1879: 4,17 + 1886: 4,12 + 1894: 4,13 + 1902: 4,14 + 1910: 4,15 + 1918: 8,2 + 1926: 8,3 + 1931: 9,3 + 1936: 9,4 + 1941: 2,-13 + 1946: 2,-12 + 1951: 2,-11 + 1956: 2,-10 + 1967: -10,-8 + 2025: 10,-27 + 2033: 11,-26 + 2041: 11,-20 + 2046: 11,-19 + 2052: 12,-20 + 2055: 13,-20 + 2062: 4,16 + 2068: 4,17 + 2075: 4,12 + 2083: 4,13 + 2091: 4,14 + 2099: 4,15 + 2104: 2,-13 + 2109: 2,-12 + 2114: 2,-11 + 2119: 2,-10 + 2130: -10,-8 + 2185: 10,-27 + 2193: 11,-26 + 2201: 11,-20 + 2206: 11,-19 + 2212: 12,-20 + 2215: 13,-20 + 2222: 4,16 + 2228: 4,17 + 2245: 10,-3 + 2249: 9,4 + 2254: 9,3 + 2262: 8,3 + 2270: 8,2 + 2474: 4,12 + 2482: 4,13 + 2490: 4,14 + 2498: 4,15 + 2506: 8,2 + 2514: 8,3 + 2519: 9,3 + 2524: 9,4 + 2529: 2,-13 + 2534: 2,-12 + 2539: 2,-11 + 2544: 2,-10 + 2551: 10,-3 + 2561: -10,-8 + 2643: 10,-27 + 2651: 11,-26 + 2659: 11,-20 + 2664: 11,-19 + 2670: 12,-20 + 2673: 13,-20 + 2680: 4,16 + 2686: 4,17 + 2693: 4,12 + 2701: 4,13 + 2709: 4,14 + 2717: 4,15 + 2725: 8,2 + 2733: 8,3 + 2738: 9,3 + 2743: 9,4 + 2748: 2,-13 + 2753: 2,-12 + 2758: 2,-11 + 2763: 2,-10 + 2770: 10,-3 + 2780: -10,-8 + 2862: 10,-27 + 2870: 11,-26 + 2878: 11,-20 + 2883: 11,-19 + 2889: 12,-20 + 2892: 13,-20 + 2899: 4,16 + 2905: 4,17 + 2912: 4,12 + 2920: 4,13 + 2928: 4,14 + 2936: 4,15 + 2944: 8,2 + 2952: 8,3 + 2957: 9,3 + 2962: 9,4 + 2967: 2,-13 + 2972: 2,-12 + 2977: 2,-11 + 2982: 2,-10 + 2989: 10,-3 + 2999: -10,-8 + 3081: 10,-27 + 3089: 11,-26 + 3097: 11,-20 + 3102: 11,-19 + 3108: 12,-20 + 3111: 13,-20 + 3118: 4,16 + 3124: 4,17 + 3131: 4,12 + 3139: 4,13 + 3147: 4,14 + 3155: 4,15 + 3163: 8,2 + 3171: 8,3 + 3176: 9,3 + 3181: 9,4 + 3186: 2,-13 + 3191: 2,-12 + 3196: 2,-11 + 3201: 2,-10 + 3208: 10,-3 + 3218: -10,-8 + 3300: 10,-27 + 3308: 11,-26 + 3316: 11,-20 + 3321: 11,-19 + 3327: 12,-20 + 3330: 13,-20 + 3337: 4,16 + 3343: 4,17 + 3350: 4,12 + 3358: 4,13 + 3366: 4,14 + 3374: 4,15 + 3382: 8,2 + 3390: 8,3 + 3395: 9,3 + 3400: 9,4 + 3405: 2,-13 + 3410: 2,-12 + 3415: 2,-11 + 3420: 2,-10 + 3427: 10,-3 + 3437: -10,-8 + 3494: 10,-27 + 3502: 11,-26 + 3510: 11,-20 + 3515: 11,-19 + 3521: 12,-20 + 3524: 13,-20 + 3531: 4,16 + 3537: 4,17 + 3565: 4,12 + 3573: 4,13 + 3581: 4,14 + 3589: 4,15 + 3597: 8,2 + 3605: 8,3 + 3610: 9,3 + 3615: 9,4 + 3620: 2,-13 + 3625: 2,-12 + 3630: 2,-11 + 3635: 2,-10 + 3642: 10,-3 + 3652: -10,-8 + 3730: 10,-27 + 3738: 11,-26 + 3746: 11,-20 + 3751: 11,-19 + 3757: 12,-20 + 3760: 13,-20 + 3767: 4,16 + 3773: 4,17 + 3780: 4,12 + 3788: 4,13 + 3796: 4,14 + 3804: 4,15 + 3812: 8,2 + 3820: 8,3 + 3825: 9,3 + 3830: 9,4 + 3835: 2,-13 + 3840: 2,-12 + 3845: 2,-11 + 3850: 2,-10 + 3857: 10,-3 + 3867: -10,-8 + 3945: 10,-27 + 3953: 11,-26 + 3961: 11,-20 + 3966: 11,-19 + 3972: 12,-20 + 3975: 13,-20 + 3982: 4,16 + 3988: 4,17 + 4104: 4,12 + 4112: 4,13 + 4120: 4,14 + 4128: 4,15 + 4136: 8,2 + 4144: 8,3 + 4149: 9,3 + 4154: 9,4 + 4159: 2,-13 + 4164: 2,-12 + 4169: 2,-11 + 4174: 2,-10 + 4181: 10,-3 + 4191: -10,-8 + 4269: 10,-27 + 4277: 11,-26 + 4285: 11,-20 + 4290: 11,-19 + 4296: 12,-20 + 4299: 13,-20 + 4306: 4,16 + 4312: 4,17 + 4319: 4,12 + 4327: 4,13 + 4335: 4,14 + 4343: 4,15 + 4351: 8,2 + 4359: 8,3 + 4364: 9,3 + 4369: 9,4 + 4374: 2,-13 + 4379: 2,-12 + 4384: 2,-11 + 4389: 2,-10 + 4396: 10,-3 + 4406: -10,-8 + 4484: 10,-27 + 4492: 11,-26 + 4500: 11,-20 + 4505: 11,-19 + 4511: 12,-20 + 4514: 13,-20 + 4521: 4,16 + 4527: 4,17 - node: - id: LatticeEdgeW + id: LatticeEdgeE decals: - 453: 4,12 - 461: 4,13 - 469: 4,14 - 477: 4,15 - 485: 8,2 - 493: 8,3 - 501: 8,4 - 506: 9,2 - 511: 9,3 - 516: 9,4 - 521: 2,-13 - 526: 2,-12 - 531: 2,-11 - 536: 2,-10 - 570: -10,-28 - 580: 2,-27 - 584: 8,-32 - 591: 10,-27 - 599: 11,-26 - 604: 11,-20 - 609: 11,-19 - 617: 4,16 - 623: 4,17 - 630: 4,12 - 638: 4,13 - 646: 4,14 - 654: 4,15 - 662: 8,2 - 670: 8,3 - 678: 8,4 - 683: 9,2 - 688: 9,3 - 693: 9,4 - 698: 2,-13 - 703: 2,-12 - 708: 2,-11 - 713: 2,-10 - 747: -10,-28 - 757: 2,-27 - 761: 8,-32 - 768: 10,-27 - 776: 11,-26 - 781: 11,-20 - 786: 11,-19 - 794: 4,16 - 800: 4,17 - 807: 4,12 - 815: 4,13 - 823: 4,14 - 831: 4,15 - 839: 8,2 - 847: 8,3 - 855: 8,4 - 860: 9,2 - 865: 9,3 - 870: 9,4 - 875: 2,-13 - 880: 2,-12 - 885: 2,-11 - 890: 2,-10 - 924: -10,-28 - 934: 2,-27 - 938: 8,-32 - 945: 10,-27 - 953: 11,-26 - 958: 11,-20 - 963: 11,-19 - 971: 4,16 - 977: 4,17 - 984: 4,12 - 992: 4,13 - 1000: 4,14 - 1008: 4,15 - 1016: 8,2 - 1024: 8,3 - 1032: 8,4 - 1037: 9,2 - 1042: 9,3 - 1047: 9,4 - 1052: 2,-13 - 1057: 2,-12 - 1062: 2,-11 - 1067: 2,-10 - 1101: -10,-28 - 1111: 2,-27 - 1115: 8,-32 - 1122: 10,-27 - 1130: 11,-26 - 1135: 11,-20 - 1140: 11,-19 - 1148: 4,16 - 1154: 4,17 - 1161: 4,12 - 1169: 4,13 - 1177: 4,14 - 1185: 4,15 - 1193: 8,2 - 1201: 8,3 - 1209: 8,4 - 1214: 9,2 - 1219: 9,3 - 1224: 9,4 - 1229: 2,-13 - 1234: 2,-12 - 1239: 2,-11 - 1244: 2,-10 - 1278: -10,-28 - 1288: 2,-27 - 1292: 8,-32 - 1299: 10,-27 - 1307: 11,-26 - 1312: 11,-20 - 1317: 11,-19 - 1325: 4,16 - 1331: 4,17 - 1338: 4,12 - 1346: 4,13 - 1354: 4,14 - 1362: 4,15 - 1370: 8,2 - 1378: 8,3 - 1386: 8,4 - 1391: 9,2 - 1396: 9,3 - 1401: 9,4 - 1406: 2,-13 - 1411: 2,-12 - 1416: 2,-11 - 1421: 2,-10 - 1455: -10,-28 - 1465: 2,-27 - 1469: 8,-32 - 1476: 10,-27 - 1484: 11,-26 - 1489: 11,-20 - 1494: 11,-19 - 1502: 4,16 - 1508: 4,17 - 1515: 4,12 - 1523: 4,13 - 1531: 4,14 - 1539: 4,15 - 1547: 8,2 - 1555: 8,3 - 1563: 8,4 - 1568: 9,2 - 1573: 9,3 - 1578: 9,4 - 1583: 2,-13 - 1588: 2,-12 - 1593: 2,-11 - 1598: 2,-10 - 1632: -10,-28 - 1642: 2,-27 - 1646: 8,-32 - 1653: 10,-27 - 1661: 11,-26 - 1666: 11,-20 - 1671: 11,-19 - 1679: 4,16 - 1685: 4,17 + 123: 4,12 + 131: 4,13 + 139: 4,14 + 147: 4,15 + 155: 8,2 + 163: 8,3 + 201: -13,-22 + 206: -13,-20 + 210: -10,-28 + 215: -8,-32 + 222: 10,-27 + 230: 11,-26 + 248: 4,16 + 256: 4,17 + 261: 4,12 + 269: 4,13 + 277: 4,14 + 285: 4,15 + 293: 8,2 + 301: 8,3 + 339: -13,-22 + 344: -13,-20 + 348: -10,-28 + 353: -8,-32 + 360: 10,-27 + 368: 11,-26 + 386: 4,16 + 394: 4,17 + 399: 4,12 + 407: 4,13 + 415: 4,14 + 423: 4,15 + 431: 8,2 + 439: 8,3 + 477: -13,-22 + 482: -13,-20 + 486: -10,-28 + 491: -8,-32 + 498: 10,-27 + 506: 11,-26 + 524: 4,16 + 532: 4,17 + 537: 4,12 + 545: 4,13 + 553: 4,14 + 561: 4,15 + 569: 8,2 + 577: 8,3 + 615: -13,-22 + 620: -13,-20 + 624: -10,-28 + 629: -8,-32 + 636: 10,-27 + 644: 11,-26 + 662: 4,16 + 670: 4,17 + 675: 4,12 + 683: 4,13 + 691: 4,14 + 699: 4,15 + 707: 8,2 + 715: 8,3 + 753: -13,-22 + 758: -13,-20 + 762: -10,-28 + 767: -8,-32 + 774: 10,-27 + 782: 11,-26 + 800: 4,16 + 808: 4,17 + 813: 4,12 + 821: 4,13 + 829: 4,14 + 837: 4,15 + 845: 8,2 + 853: 8,3 + 891: -13,-22 + 896: -13,-20 + 900: -10,-28 + 905: -8,-32 + 912: 10,-27 + 920: 11,-26 + 938: 4,16 + 946: 4,17 + 951: 4,12 + 959: 4,13 + 967: 4,14 + 975: 4,15 + 983: 8,2 + 991: 8,3 + 1029: -13,-22 + 1034: -13,-20 + 1038: -10,-28 + 1043: -8,-32 + 1050: 10,-27 + 1058: 11,-26 + 1076: 4,16 + 1084: 4,17 + 1089: 4,12 + 1097: 4,13 + 1105: 4,14 + 1113: 4,15 + 1121: 8,2 + 1129: 8,3 + 1167: -13,-22 + 1172: -13,-20 + 1176: -10,-28 + 1181: -8,-32 + 1188: 10,-27 + 1196: 11,-26 + 1214: 4,16 + 1222: 4,17 + 1227: 4,12 + 1235: 4,13 + 1243: 4,14 + 1251: 4,15 + 1259: 8,2 + 1267: 8,3 + 1305: -13,-22 + 1310: -13,-20 + 1314: -10,-28 + 1319: -8,-32 + 1326: 10,-27 + 1334: 11,-26 + 1352: 4,16 + 1360: 4,17 + 1365: 4,12 + 1373: 4,13 + 1381: 4,14 + 1389: 4,15 + 1397: 8,2 + 1405: 8,3 + 1443: -13,-22 + 1448: -13,-20 + 1452: -10,-28 + 1457: -8,-32 + 1464: 10,-27 + 1472: 11,-26 + 1490: 4,16 + 1498: 4,17 + 1503: 4,12 + 1511: 4,13 + 1519: 4,14 + 1527: 4,15 + 1535: 8,2 + 1543: 8,3 + 1581: -13,-22 + 1586: -13,-20 + 1590: -10,-28 + 1596: 10,-27 + 1604: 11,-26 + 1612: 4,16 + 1620: 4,17 + 1625: 11,-20 + 1643: -8,-32 + 1646: -9,-30 + 1653: 12,-20 + 1658: -10,-5 + 1663: -10,-6 + 1668: -11,-8 + 1671: -10,-8 + 1679: -10,-7 + 1684: -8,7 + 1689: -8,9 1692: 4,12 1700: 4,13 1708: 4,14 1716: 4,15 1724: 8,2 1732: 8,3 - 1740: 8,4 - 1745: 9,2 - 1750: 9,3 - 1755: 9,4 - 1760: 2,-13 - 1765: 2,-12 - 1770: 2,-11 - 1775: 2,-10 - 1809: -10,-28 - 1819: 2,-27 - 1823: 8,-32 - 1830: 10,-27 - 1838: 11,-26 - 1843: 11,-20 - 1848: 11,-19 - 1856: 4,16 - 1862: 4,17 - 1869: 4,12 - 1877: 4,13 - 1885: 4,14 - 1893: 4,15 - 1901: 8,2 - 1909: 8,3 - 1917: 8,4 - 1922: 9,2 - 1927: 9,3 - 1932: 9,4 - 1937: 2,-13 - 1942: 2,-12 - 1947: 2,-11 - 1952: 2,-10 - 1986: -10,-28 - 1996: 2,-27 - 2000: 8,-32 - 2007: 10,-27 - 2015: 11,-26 - 2020: 11,-20 - 2025: 11,-19 - 2033: 4,16 - 2039: 4,17 + 1770: -11,-8 + 1773: -10,-8 + 1781: -10,-7 + 1786: -10,-6 + 1791: -10,-5 + 1796: -8,7 + 1801: -8,9 + 1804: -13,-22 + 1809: -13,-20 + 1813: -10,-28 + 1818: -9,-30 + 1821: -8,-32 + 1831: 10,-27 + 1839: 11,-26 + 1847: 11,-20 + 1860: 12,-20 + 1868: 4,16 + 1876: 4,17 + 1881: 4,12 + 1889: 4,13 + 1897: 4,14 + 1905: 4,15 + 1913: 8,2 + 1921: 8,3 + 1959: -11,-8 + 1962: -10,-8 + 1970: -10,-7 + 1975: -10,-6 + 1980: -10,-5 + 1985: -8,7 + 1990: -8,9 + 1993: -13,-22 + 1998: -13,-20 + 2002: -10,-28 + 2007: -9,-30 + 2010: -8,-32 + 2020: 10,-27 + 2028: 11,-26 + 2036: 11,-20 + 2049: 12,-20 + 2057: 4,16 + 2065: 4,17 2070: 4,12 2078: 4,13 2086: 4,14 2094: 4,15 - 2102: 8,2 - 2110: 8,3 - 2118: 8,4 - 2123: 9,2 - 2128: 9,3 - 2133: 9,4 - 2138: 2,-13 - 2143: 2,-12 - 2148: 2,-11 - 2153: 2,-10 - 2208: -10,-28 - 2218: 2,-27 - 2222: 8,-32 - 2229: 10,-27 - 2237: 11,-26 - 2242: 11,-20 - 2247: 11,-19 - 2255: 4,16 - 2261: 4,17 - 2271: 4,12 - 2279: 4,13 - 2287: 4,14 - 2295: 4,15 - 2303: 8,2 - 2311: 8,3 - 2319: 8,4 - 2324: 9,2 - 2329: 9,3 - 2334: 9,4 - 2339: 2,-13 - 2344: 2,-12 - 2349: 2,-11 - 2354: 2,-10 - 2412: -10,-28 - 2419: 2,-27 - 2427: 10,-27 - 2435: 11,-26 - 2443: 4,16 - 2449: 4,17 - 2459: 11,-20 - 2464: 11,-19 - 2468: 8,-32 - 2471: 9,-30 - 2480: 13,-20 - 2485: 12,-20 - 2505: -10,-8 - 2526: 4,12 - 2534: 4,13 - 2542: 4,14 - 2550: 4,15 - 2558: 8,2 - 2566: 8,3 - 2574: 8,4 - 2579: 9,2 - 2584: 9,3 - 2589: 9,4 - 2594: 2,-13 - 2599: 2,-12 - 2604: 2,-11 - 2609: 2,-10 - 2633: -10,-8 - 2701: -10,-28 - 2714: 2,-27 - 2718: 8,-32 - 2721: 9,-30 - 2728: 10,-27 - 2736: 11,-26 - 2744: 11,-20 - 2749: 11,-19 - 2755: 12,-20 - 2758: 13,-20 - 2765: 4,16 - 2771: 4,17 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 196: -12,-13 - 197: -12,-15 - 198: -12,-14 + 2122: -11,-8 + 2125: -10,-8 + 2133: -10,-7 + 2138: -10,-6 + 2143: -10,-5 + 2148: -8,7 + 2153: -8,9 + 2156: -13,-22 + 2161: -13,-20 + 2165: -10,-28 + 2170: -9,-30 + 2180: 10,-27 + 2188: 11,-26 + 2196: 11,-20 + 2209: 12,-20 + 2217: 4,16 + 2225: 4,17 + 2257: 8,3 + 2265: 8,2 + 2384: -8,-32 + 2469: 4,12 + 2477: 4,13 + 2485: 4,14 + 2493: 4,15 + 2501: 8,2 + 2509: 8,3 + 2553: -11,-8 + 2556: -10,-8 + 2564: -10,-7 + 2569: -10,-6 + 2574: -10,-5 + 2603: -8,7 + 2608: -8,9 + 2611: -13,-22 + 2616: -13,-20 + 2620: -10,-28 + 2625: -9,-30 + 2628: -8,-32 + 2638: 10,-27 + 2646: 11,-26 + 2654: 11,-20 + 2667: 12,-20 + 2675: 4,16 + 2683: 4,17 + 2688: 4,12 + 2696: 4,13 + 2704: 4,14 + 2712: 4,15 + 2720: 8,2 + 2728: 8,3 + 2772: -11,-8 + 2775: -10,-8 + 2783: -10,-7 + 2788: -10,-6 + 2793: -10,-5 + 2822: -8,7 + 2827: -8,9 + 2830: -13,-22 + 2835: -13,-20 + 2839: -10,-28 + 2844: -9,-30 + 2847: -8,-32 + 2857: 10,-27 + 2865: 11,-26 + 2873: 11,-20 + 2886: 12,-20 + 2894: 4,16 + 2902: 4,17 + 2907: 4,12 + 2915: 4,13 + 2923: 4,14 + 2931: 4,15 + 2939: 8,2 + 2947: 8,3 + 2991: -11,-8 + 2994: -10,-8 + 3002: -10,-7 + 3007: -10,-6 + 3012: -10,-5 + 3041: -8,7 + 3046: -8,9 + 3049: -13,-22 + 3054: -13,-20 + 3058: -10,-28 + 3063: -9,-30 + 3066: -8,-32 + 3076: 10,-27 + 3084: 11,-26 + 3092: 11,-20 + 3105: 12,-20 + 3113: 4,16 + 3121: 4,17 + 3126: 4,12 + 3134: 4,13 + 3142: 4,14 + 3150: 4,15 + 3158: 8,2 + 3166: 8,3 + 3210: -11,-8 + 3213: -10,-8 + 3221: -10,-7 + 3226: -10,-6 + 3231: -10,-5 + 3260: -8,7 + 3265: -8,9 + 3268: -13,-22 + 3273: -13,-20 + 3277: -10,-28 + 3282: -9,-30 + 3285: -8,-32 + 3295: 10,-27 + 3303: 11,-26 + 3311: 11,-20 + 3324: 12,-20 + 3332: 4,16 + 3340: 4,17 + 3345: 4,12 + 3353: 4,13 + 3361: 4,14 + 3369: 4,15 + 3377: 8,2 + 3385: 8,3 + 3429: -11,-8 + 3432: -10,-8 + 3464: -8,7 + 3469: -8,9 + 3471: -10,-28 + 3476: -9,-30 + 3479: -8,-32 + 3489: 10,-27 + 3497: 11,-26 + 3505: 11,-20 + 3518: 12,-20 + 3526: 4,16 + 3534: 4,17 + 3539: -10,-6 + 3544: -10,-7 + 3549: -10,-5 + 3553: -13,-20 + 3557: -13,-22 + 3560: 4,12 + 3568: 4,13 + 3576: 4,14 + 3584: 4,15 + 3592: 8,2 + 3600: 8,3 + 3644: -11,-8 + 3647: -10,-8 + 3655: -10,-7 + 3660: -10,-6 + 3665: -10,-5 + 3694: -8,7 + 3699: -8,9 + 3702: -13,-22 + 3704: -13,-20 + 3707: -10,-28 + 3712: -9,-30 + 3715: -8,-32 + 3725: 10,-27 + 3733: 11,-26 + 3741: 11,-20 + 3754: 12,-20 + 3762: 4,16 + 3770: 4,17 + 3775: 4,12 + 3783: 4,13 + 3791: 4,14 + 3799: 4,15 + 3807: 8,2 + 3815: 8,3 + 3859: -11,-8 + 3862: -10,-8 + 3870: -10,-7 + 3875: -10,-6 + 3880: -10,-5 + 3909: -8,7 + 3914: -8,9 + 3917: -13,-22 + 3919: -13,-20 + 3922: -10,-28 + 3927: -9,-30 + 3930: -8,-32 + 3940: 10,-27 + 3948: 11,-26 + 3956: 11,-20 + 3969: 12,-20 + 3977: 4,16 + 3985: 4,17 + 4099: 4,12 + 4107: 4,13 + 4115: 4,14 + 4123: 4,15 + 4131: 8,2 + 4139: 8,3 + 4183: -11,-8 + 4186: -10,-8 + 4194: -10,-7 + 4199: -10,-6 + 4204: -10,-5 + 4233: -8,7 + 4238: -8,9 + 4241: -13,-22 + 4243: -13,-20 + 4246: -10,-28 + 4251: -9,-30 + 4254: -8,-32 + 4264: 10,-27 + 4272: 11,-26 + 4280: 11,-20 + 4293: 12,-20 + 4301: 4,16 + 4309: 4,17 + 4314: 4,12 + 4322: 4,13 + 4330: 4,14 + 4338: 4,15 + 4346: 8,2 + 4354: 8,3 + 4398: -11,-8 + 4401: -10,-8 + 4409: -10,-7 + 4414: -10,-6 + 4419: -10,-5 + 4448: -8,7 + 4453: -8,9 + 4456: -13,-22 + 4458: -13,-20 + 4461: -10,-28 + 4466: -9,-30 + 4469: -8,-32 + 4479: 10,-27 + 4487: 11,-26 + 4495: 11,-20 + 4508: 12,-20 + 4516: 4,16 + 4524: 4,17 - node: - color: '#D381C996' - id: LoadingAreaGreyscale + id: LatticeEdgeN decals: - 133: -7,-19 - 134: -7,-19 - 135: -7,-19 + 125: 4,12 + 133: 4,13 + 141: 4,14 + 149: 4,15 + 157: 8,2 + 165: 8,3 + 171: 9,3 + 176: 9,4 + 181: 2,-13 + 186: 2,-12 + 191: 2,-11 + 196: 2,-10 + 203: -13,-22 + 208: -13,-20 + 211: -10,-28 + 216: -8,-32 + 218: 8,-32 + 224: 10,-27 + 232: 11,-26 + 238: 11,-20 + 243: 11,-19 + 250: 4,16 + 263: 4,12 + 271: 4,13 + 279: 4,14 + 287: 4,15 + 295: 8,2 + 303: 8,3 + 309: 9,3 + 314: 9,4 + 319: 2,-13 + 324: 2,-12 + 329: 2,-11 + 334: 2,-10 + 341: -13,-22 + 346: -13,-20 + 349: -10,-28 + 354: -8,-32 + 356: 8,-32 + 362: 10,-27 + 370: 11,-26 + 376: 11,-20 + 381: 11,-19 + 388: 4,16 + 401: 4,12 + 409: 4,13 + 417: 4,14 + 425: 4,15 + 433: 8,2 + 441: 8,3 + 447: 9,3 + 452: 9,4 + 457: 2,-13 + 462: 2,-12 + 467: 2,-11 + 472: 2,-10 + 479: -13,-22 + 484: -13,-20 + 487: -10,-28 + 492: -8,-32 + 494: 8,-32 + 500: 10,-27 + 508: 11,-26 + 514: 11,-20 + 519: 11,-19 + 526: 4,16 + 539: 4,12 + 547: 4,13 + 555: 4,14 + 563: 4,15 + 571: 8,2 + 579: 8,3 + 585: 9,3 + 590: 9,4 + 595: 2,-13 + 600: 2,-12 + 605: 2,-11 + 610: 2,-10 + 617: -13,-22 + 622: -13,-20 + 625: -10,-28 + 630: -8,-32 + 632: 8,-32 + 638: 10,-27 + 646: 11,-26 + 652: 11,-20 + 657: 11,-19 + 664: 4,16 + 677: 4,12 + 685: 4,13 + 693: 4,14 + 701: 4,15 + 709: 8,2 + 717: 8,3 + 723: 9,3 + 728: 9,4 + 733: 2,-13 + 738: 2,-12 + 743: 2,-11 + 748: 2,-10 + 755: -13,-22 + 760: -13,-20 + 763: -10,-28 + 768: -8,-32 + 770: 8,-32 + 776: 10,-27 + 784: 11,-26 + 790: 11,-20 + 795: 11,-19 + 802: 4,16 + 815: 4,12 + 823: 4,13 + 831: 4,14 + 839: 4,15 + 847: 8,2 + 855: 8,3 + 861: 9,3 + 866: 9,4 + 871: 2,-13 + 876: 2,-12 + 881: 2,-11 + 886: 2,-10 + 893: -13,-22 + 898: -13,-20 + 901: -10,-28 + 906: -8,-32 + 908: 8,-32 + 914: 10,-27 + 922: 11,-26 + 928: 11,-20 + 933: 11,-19 + 940: 4,16 + 953: 4,12 + 961: 4,13 + 969: 4,14 + 977: 4,15 + 985: 8,2 + 993: 8,3 + 999: 9,3 + 1004: 9,4 + 1009: 2,-13 + 1014: 2,-12 + 1019: 2,-11 + 1024: 2,-10 + 1031: -13,-22 + 1036: -13,-20 + 1039: -10,-28 + 1044: -8,-32 + 1046: 8,-32 + 1052: 10,-27 + 1060: 11,-26 + 1066: 11,-20 + 1071: 11,-19 + 1078: 4,16 + 1091: 4,12 + 1099: 4,13 + 1107: 4,14 + 1115: 4,15 + 1123: 8,2 + 1131: 8,3 + 1137: 9,3 + 1142: 9,4 + 1147: 2,-13 + 1152: 2,-12 + 1157: 2,-11 + 1162: 2,-10 + 1169: -13,-22 + 1174: -13,-20 + 1177: -10,-28 + 1182: -8,-32 + 1184: 8,-32 + 1190: 10,-27 + 1198: 11,-26 + 1204: 11,-20 + 1209: 11,-19 + 1216: 4,16 + 1229: 4,12 + 1237: 4,13 + 1245: 4,14 + 1253: 4,15 + 1261: 8,2 + 1269: 8,3 + 1275: 9,3 + 1280: 9,4 + 1285: 2,-13 + 1290: 2,-12 + 1295: 2,-11 + 1300: 2,-10 + 1307: -13,-22 + 1312: -13,-20 + 1315: -10,-28 + 1320: -8,-32 + 1322: 8,-32 + 1328: 10,-27 + 1336: 11,-26 + 1342: 11,-20 + 1347: 11,-19 + 1354: 4,16 + 1367: 4,12 + 1375: 4,13 + 1383: 4,14 + 1391: 4,15 + 1399: 8,2 + 1407: 8,3 + 1413: 9,3 + 1418: 9,4 + 1423: 2,-13 + 1428: 2,-12 + 1433: 2,-11 + 1438: 2,-10 + 1445: -13,-22 + 1450: -13,-20 + 1453: -10,-28 + 1458: -8,-32 + 1460: 8,-32 + 1466: 10,-27 + 1474: 11,-26 + 1480: 11,-20 + 1485: 11,-19 + 1492: 4,16 + 1505: 4,12 + 1513: 4,13 + 1521: 4,14 + 1529: 4,15 + 1537: 8,2 + 1545: 8,3 + 1551: 9,3 + 1556: 9,4 + 1561: 2,-13 + 1566: 2,-12 + 1571: 2,-11 + 1576: 2,-10 + 1583: -13,-22 + 1588: -13,-20 + 1591: -10,-28 + 1598: 10,-27 + 1606: 11,-26 + 1614: 4,16 + 1627: 11,-20 + 1633: 11,-19 + 1637: 8,-32 + 1640: 9,-30 + 1644: -8,-32 + 1647: -9,-30 + 1660: -10,-5 + 1665: -10,-6 + 1673: -10,-8 + 1681: -10,-7 + 1686: -8,7 + 1694: 4,12 + 1702: 4,13 + 1710: 4,14 + 1718: 4,15 + 1726: 8,2 + 1734: 8,3 + 1740: 9,3 + 1745: 9,4 + 1750: 2,-13 + 1755: 2,-12 + 1760: 2,-11 + 1765: 2,-10 + 1775: -10,-8 + 1783: -10,-7 + 1788: -10,-6 + 1793: -10,-5 + 1798: -8,7 + 1806: -13,-22 + 1811: -13,-20 + 1814: -10,-28 + 1819: -9,-30 + 1822: -8,-32 + 1824: 8,-32 + 1827: 9,-30 + 1833: 10,-27 + 1841: 11,-26 + 1849: 11,-20 + 1855: 11,-19 + 1870: 4,16 + 1883: 4,12 + 1891: 4,13 + 1899: 4,14 + 1907: 4,15 + 1915: 8,2 + 1923: 8,3 + 1929: 9,3 + 1934: 9,4 + 1939: 2,-13 + 1944: 2,-12 + 1949: 2,-11 + 1954: 2,-10 + 1964: -10,-8 + 1972: -10,-7 + 1977: -10,-6 + 1982: -10,-5 + 1987: -8,7 + 1995: -13,-22 + 2000: -13,-20 + 2003: -10,-28 + 2008: -9,-30 + 2011: -8,-32 + 2013: 8,-32 + 2016: 9,-30 + 2022: 10,-27 + 2030: 11,-26 + 2038: 11,-20 + 2044: 11,-19 + 2059: 4,16 + 2072: 4,12 + 2080: 4,13 + 2088: 4,14 + 2096: 4,15 + 2102: 2,-13 + 2107: 2,-12 + 2112: 2,-11 + 2117: 2,-10 + 2127: -10,-8 + 2135: -10,-7 + 2140: -10,-6 + 2145: -10,-5 + 2150: -8,7 + 2158: -13,-22 + 2163: -13,-20 + 2166: -10,-28 + 2171: -9,-30 + 2173: 8,-32 + 2176: 9,-30 + 2182: 10,-27 + 2190: 11,-26 + 2198: 11,-20 + 2204: 11,-19 + 2219: 4,16 + 2240: 10,-5 + 2247: 9,4 + 2252: 9,3 + 2259: 8,3 + 2267: 8,2 + 2385: -8,-32 + 2471: 4,12 + 2479: 4,13 + 2487: 4,14 + 2495: 4,15 + 2503: 8,2 + 2511: 8,3 + 2517: 9,3 + 2522: 9,4 + 2527: 2,-13 + 2532: 2,-12 + 2537: 2,-11 + 2542: 2,-10 + 2546: 10,-5 + 2558: -10,-8 + 2566: -10,-7 + 2571: -10,-6 + 2576: -10,-5 + 2605: -8,7 + 2613: -13,-22 + 2618: -13,-20 + 2621: -10,-28 + 2626: -9,-30 + 2629: -8,-32 + 2631: 8,-32 + 2634: 9,-30 + 2640: 10,-27 + 2648: 11,-26 + 2656: 11,-20 + 2662: 11,-19 + 2677: 4,16 + 2690: 4,12 + 2698: 4,13 + 2706: 4,14 + 2714: 4,15 + 2722: 8,2 + 2730: 8,3 + 2736: 9,3 + 2741: 9,4 + 2746: 2,-13 + 2751: 2,-12 + 2756: 2,-11 + 2761: 2,-10 + 2765: 10,-5 + 2777: -10,-8 + 2785: -10,-7 + 2790: -10,-6 + 2795: -10,-5 + 2824: -8,7 + 2832: -13,-22 + 2837: -13,-20 + 2840: -10,-28 + 2845: -9,-30 + 2848: -8,-32 + 2850: 8,-32 + 2853: 9,-30 + 2859: 10,-27 + 2867: 11,-26 + 2875: 11,-20 + 2881: 11,-19 + 2896: 4,16 + 2909: 4,12 + 2917: 4,13 + 2925: 4,14 + 2933: 4,15 + 2941: 8,2 + 2949: 8,3 + 2955: 9,3 + 2960: 9,4 + 2965: 2,-13 + 2970: 2,-12 + 2975: 2,-11 + 2980: 2,-10 + 2984: 10,-5 + 2996: -10,-8 + 3004: -10,-7 + 3009: -10,-6 + 3014: -10,-5 + 3043: -8,7 + 3051: -13,-22 + 3056: -13,-20 + 3059: -10,-28 + 3064: -9,-30 + 3067: -8,-32 + 3069: 8,-32 + 3072: 9,-30 + 3078: 10,-27 + 3086: 11,-26 + 3094: 11,-20 + 3100: 11,-19 + 3115: 4,16 + 3128: 4,12 + 3136: 4,13 + 3144: 4,14 + 3152: 4,15 + 3160: 8,2 + 3168: 8,3 + 3174: 9,3 + 3179: 9,4 + 3184: 2,-13 + 3189: 2,-12 + 3194: 2,-11 + 3199: 2,-10 + 3203: 10,-5 + 3215: -10,-8 + 3223: -10,-7 + 3228: -10,-6 + 3233: -10,-5 + 3262: -8,7 + 3270: -13,-22 + 3275: -13,-20 + 3278: -10,-28 + 3283: -9,-30 + 3286: -8,-32 + 3288: 8,-32 + 3291: 9,-30 + 3297: 10,-27 + 3305: 11,-26 + 3313: 11,-20 + 3319: 11,-19 + 3334: 4,16 + 3347: 4,12 + 3355: 4,13 + 3363: 4,14 + 3371: 4,15 + 3379: 8,2 + 3387: 8,3 + 3393: 9,3 + 3398: 9,4 + 3403: 2,-13 + 3408: 2,-12 + 3413: 2,-11 + 3418: 2,-10 + 3422: 10,-5 + 3434: -10,-8 + 3466: -8,7 + 3472: -10,-28 + 3477: -9,-30 + 3480: -8,-32 + 3482: 8,-32 + 3485: 9,-30 + 3491: 10,-27 + 3499: 11,-26 + 3507: 11,-20 + 3513: 11,-19 + 3528: 4,16 + 3541: -10,-6 + 3546: -10,-7 + 3551: -10,-5 + 3554: -13,-20 + 3562: 4,12 + 3570: 4,13 + 3578: 4,14 + 3586: 4,15 + 3594: 8,2 + 3602: 8,3 + 3608: 9,3 + 3613: 9,4 + 3618: 2,-13 + 3623: 2,-12 + 3628: 2,-11 + 3633: 2,-10 + 3637: 10,-5 + 3649: -10,-8 + 3657: -10,-7 + 3662: -10,-6 + 3667: -10,-5 + 3696: -8,7 + 3705: -13,-20 + 3708: -10,-28 + 3713: -9,-30 + 3716: -8,-32 + 3718: 8,-32 + 3721: 9,-30 + 3727: 10,-27 + 3735: 11,-26 + 3743: 11,-20 + 3749: 11,-19 + 3764: 4,16 + 3777: 4,12 + 3785: 4,13 + 3793: 4,14 + 3801: 4,15 + 3809: 8,2 + 3817: 8,3 + 3823: 9,3 + 3828: 9,4 + 3833: 2,-13 + 3838: 2,-12 + 3843: 2,-11 + 3848: 2,-10 + 3852: 10,-5 + 3864: -10,-8 + 3872: -10,-7 + 3877: -10,-6 + 3882: -10,-5 + 3911: -8,7 + 3920: -13,-20 + 3923: -10,-28 + 3928: -9,-30 + 3931: -8,-32 + 3933: 8,-32 + 3936: 9,-30 + 3942: 10,-27 + 3950: 11,-26 + 3958: 11,-20 + 3964: 11,-19 + 3979: 4,16 + 4101: 4,12 + 4109: 4,13 + 4117: 4,14 + 4125: 4,15 + 4133: 8,2 + 4141: 8,3 + 4147: 9,3 + 4152: 9,4 + 4157: 2,-13 + 4162: 2,-12 + 4167: 2,-11 + 4172: 2,-10 + 4176: 10,-5 + 4188: -10,-8 + 4196: -10,-7 + 4201: -10,-6 + 4206: -10,-5 + 4235: -8,7 + 4244: -13,-20 + 4247: -10,-28 + 4252: -9,-30 + 4255: -8,-32 + 4257: 8,-32 + 4260: 9,-30 + 4266: 10,-27 + 4274: 11,-26 + 4282: 11,-20 + 4288: 11,-19 + 4303: 4,16 + 4316: 4,12 + 4324: 4,13 + 4332: 4,14 + 4340: 4,15 + 4348: 8,2 + 4356: 8,3 + 4362: 9,3 + 4367: 9,4 + 4372: 2,-13 + 4377: 2,-12 + 4382: 2,-11 + 4387: 2,-10 + 4391: 10,-5 + 4403: -10,-8 + 4411: -10,-7 + 4416: -10,-6 + 4421: -10,-5 + 4450: -8,7 + 4459: -13,-20 + 4462: -10,-28 + 4467: -9,-30 + 4470: -8,-32 + 4472: 8,-32 + 4475: 9,-30 + 4481: 10,-27 + 4489: 11,-26 + 4497: 11,-20 + 4503: 11,-19 + 4518: 4,16 - node: - color: '#FFFFFFFF' - id: TechCornerE + id: LatticeEdgeS decals: - 136: -2,8 + 122: 4,12 + 130: 4,13 + 138: 4,14 + 146: 4,15 + 154: 8,2 + 162: 8,3 + 170: 9,3 + 175: 9,4 + 180: 2,-13 + 185: 2,-12 + 190: 2,-11 + 195: 2,-10 + 200: -13,-22 + 205: -13,-20 + 221: 10,-27 + 229: 11,-26 + 237: 11,-20 + 242: 11,-19 + 247: 4,16 + 255: 4,17 + 260: 4,12 + 268: 4,13 + 276: 4,14 + 284: 4,15 + 292: 8,2 + 300: 8,3 + 308: 9,3 + 313: 9,4 + 318: 2,-13 + 323: 2,-12 + 328: 2,-11 + 333: 2,-10 + 338: -13,-22 + 343: -13,-20 + 359: 10,-27 + 367: 11,-26 + 375: 11,-20 + 380: 11,-19 + 385: 4,16 + 393: 4,17 + 398: 4,12 + 406: 4,13 + 414: 4,14 + 422: 4,15 + 430: 8,2 + 438: 8,3 + 446: 9,3 + 451: 9,4 + 456: 2,-13 + 461: 2,-12 + 466: 2,-11 + 471: 2,-10 + 476: -13,-22 + 481: -13,-20 + 497: 10,-27 + 505: 11,-26 + 513: 11,-20 + 518: 11,-19 + 523: 4,16 + 531: 4,17 + 536: 4,12 + 544: 4,13 + 552: 4,14 + 560: 4,15 + 568: 8,2 + 576: 8,3 + 584: 9,3 + 589: 9,4 + 594: 2,-13 + 599: 2,-12 + 604: 2,-11 + 609: 2,-10 + 614: -13,-22 + 619: -13,-20 + 635: 10,-27 + 643: 11,-26 + 651: 11,-20 + 656: 11,-19 + 661: 4,16 + 669: 4,17 + 674: 4,12 + 682: 4,13 + 690: 4,14 + 698: 4,15 + 706: 8,2 + 714: 8,3 + 722: 9,3 + 727: 9,4 + 732: 2,-13 + 737: 2,-12 + 742: 2,-11 + 747: 2,-10 + 752: -13,-22 + 757: -13,-20 + 773: 10,-27 + 781: 11,-26 + 789: 11,-20 + 794: 11,-19 + 799: 4,16 + 807: 4,17 + 812: 4,12 + 820: 4,13 + 828: 4,14 + 836: 4,15 + 844: 8,2 + 852: 8,3 + 860: 9,3 + 865: 9,4 + 870: 2,-13 + 875: 2,-12 + 880: 2,-11 + 885: 2,-10 + 890: -13,-22 + 895: -13,-20 + 911: 10,-27 + 919: 11,-26 + 927: 11,-20 + 932: 11,-19 + 937: 4,16 + 945: 4,17 + 950: 4,12 + 958: 4,13 + 966: 4,14 + 974: 4,15 + 982: 8,2 + 990: 8,3 + 998: 9,3 + 1003: 9,4 + 1008: 2,-13 + 1013: 2,-12 + 1018: 2,-11 + 1023: 2,-10 + 1028: -13,-22 + 1033: -13,-20 + 1049: 10,-27 + 1057: 11,-26 + 1065: 11,-20 + 1070: 11,-19 + 1075: 4,16 + 1083: 4,17 + 1088: 4,12 + 1096: 4,13 + 1104: 4,14 + 1112: 4,15 + 1120: 8,2 + 1128: 8,3 + 1136: 9,3 + 1141: 9,4 + 1146: 2,-13 + 1151: 2,-12 + 1156: 2,-11 + 1161: 2,-10 + 1166: -13,-22 + 1171: -13,-20 + 1187: 10,-27 + 1195: 11,-26 + 1203: 11,-20 + 1208: 11,-19 + 1213: 4,16 + 1221: 4,17 + 1226: 4,12 + 1234: 4,13 + 1242: 4,14 + 1250: 4,15 + 1258: 8,2 + 1266: 8,3 + 1274: 9,3 + 1279: 9,4 + 1284: 2,-13 + 1289: 2,-12 + 1294: 2,-11 + 1299: 2,-10 + 1304: -13,-22 + 1309: -13,-20 + 1325: 10,-27 + 1333: 11,-26 + 1341: 11,-20 + 1346: 11,-19 + 1351: 4,16 + 1359: 4,17 + 1364: 4,12 + 1372: 4,13 + 1380: 4,14 + 1388: 4,15 + 1396: 8,2 + 1404: 8,3 + 1412: 9,3 + 1417: 9,4 + 1422: 2,-13 + 1427: 2,-12 + 1432: 2,-11 + 1437: 2,-10 + 1442: -13,-22 + 1447: -13,-20 + 1463: 10,-27 + 1471: 11,-26 + 1479: 11,-20 + 1484: 11,-19 + 1489: 4,16 + 1497: 4,17 + 1502: 4,12 + 1510: 4,13 + 1518: 4,14 + 1526: 4,15 + 1534: 8,2 + 1542: 8,3 + 1550: 9,3 + 1555: 9,4 + 1560: 2,-13 + 1565: 2,-12 + 1570: 2,-11 + 1575: 2,-10 + 1580: -13,-22 + 1585: -13,-20 + 1595: 10,-27 + 1603: 11,-26 + 1611: 4,16 + 1619: 4,17 + 1624: 11,-20 + 1632: 11,-19 + 1649: 13,-20 + 1652: 12,-20 + 1657: -10,-5 + 1662: -10,-6 + 1667: -11,-8 + 1670: -10,-8 + 1678: -10,-7 + 1683: -8,7 + 1688: -8,9 + 1691: 4,12 + 1699: 4,13 + 1707: 4,14 + 1715: 4,15 + 1723: 8,2 + 1731: 8,3 + 1739: 9,3 + 1744: 9,4 + 1749: 2,-13 + 1754: 2,-12 + 1759: 2,-11 + 1764: 2,-10 + 1769: -11,-8 + 1772: -10,-8 + 1780: -10,-7 + 1785: -10,-6 + 1790: -10,-5 + 1795: -8,7 + 1800: -8,9 + 1803: -13,-22 + 1808: -13,-20 + 1830: 10,-27 + 1838: 11,-26 + 1846: 11,-20 + 1854: 11,-19 + 1859: 12,-20 + 1864: 13,-20 + 1867: 4,16 + 1875: 4,17 + 1880: 4,12 + 1888: 4,13 + 1896: 4,14 + 1904: 4,15 + 1912: 8,2 + 1920: 8,3 + 1928: 9,3 + 1933: 9,4 + 1938: 2,-13 + 1943: 2,-12 + 1948: 2,-11 + 1953: 2,-10 + 1958: -11,-8 + 1961: -10,-8 + 1969: -10,-7 + 1974: -10,-6 + 1979: -10,-5 + 1984: -8,7 + 1989: -8,9 + 1992: -13,-22 + 1997: -13,-20 + 2019: 10,-27 + 2027: 11,-26 + 2035: 11,-20 + 2043: 11,-19 + 2048: 12,-20 + 2053: 13,-20 + 2056: 4,16 + 2064: 4,17 + 2069: 4,12 + 2077: 4,13 + 2085: 4,14 + 2093: 4,15 + 2101: 2,-13 + 2106: 2,-12 + 2111: 2,-11 + 2116: 2,-10 + 2121: -11,-8 + 2124: -10,-8 + 2132: -10,-7 + 2137: -10,-6 + 2142: -10,-5 + 2147: -8,7 + 2152: -8,9 + 2155: -13,-22 + 2160: -13,-20 + 2179: 10,-27 + 2187: 11,-26 + 2195: 11,-20 + 2203: 11,-19 + 2208: 12,-20 + 2213: 13,-20 + 2216: 4,16 + 2224: 4,17 + 2243: 10,-3 + 2246: 9,4 + 2251: 9,3 + 2256: 8,3 + 2264: 8,2 + 2468: 4,12 + 2476: 4,13 + 2484: 4,14 + 2492: 4,15 + 2500: 8,2 + 2508: 8,3 + 2516: 9,3 + 2521: 9,4 + 2526: 2,-13 + 2531: 2,-12 + 2536: 2,-11 + 2541: 2,-10 + 2549: 10,-3 + 2552: -11,-8 + 2555: -10,-8 + 2563: -10,-7 + 2568: -10,-6 + 2573: -10,-5 + 2602: -8,7 + 2607: -8,9 + 2610: -13,-22 + 2615: -13,-20 + 2637: 10,-27 + 2645: 11,-26 + 2653: 11,-20 + 2661: 11,-19 + 2666: 12,-20 + 2671: 13,-20 + 2674: 4,16 + 2682: 4,17 + 2687: 4,12 + 2695: 4,13 + 2703: 4,14 + 2711: 4,15 + 2719: 8,2 + 2727: 8,3 + 2735: 9,3 + 2740: 9,4 + 2745: 2,-13 + 2750: 2,-12 + 2755: 2,-11 + 2760: 2,-10 + 2768: 10,-3 + 2771: -11,-8 + 2774: -10,-8 + 2782: -10,-7 + 2787: -10,-6 + 2792: -10,-5 + 2821: -8,7 + 2826: -8,9 + 2829: -13,-22 + 2834: -13,-20 + 2856: 10,-27 + 2864: 11,-26 + 2872: 11,-20 + 2880: 11,-19 + 2885: 12,-20 + 2890: 13,-20 + 2893: 4,16 + 2901: 4,17 + 2906: 4,12 + 2914: 4,13 + 2922: 4,14 + 2930: 4,15 + 2938: 8,2 + 2946: 8,3 + 2954: 9,3 + 2959: 9,4 + 2964: 2,-13 + 2969: 2,-12 + 2974: 2,-11 + 2979: 2,-10 + 2987: 10,-3 + 2990: -11,-8 + 2993: -10,-8 + 3001: -10,-7 + 3006: -10,-6 + 3011: -10,-5 + 3040: -8,7 + 3045: -8,9 + 3048: -13,-22 + 3053: -13,-20 + 3075: 10,-27 + 3083: 11,-26 + 3091: 11,-20 + 3099: 11,-19 + 3104: 12,-20 + 3109: 13,-20 + 3112: 4,16 + 3120: 4,17 + 3125: 4,12 + 3133: 4,13 + 3141: 4,14 + 3149: 4,15 + 3157: 8,2 + 3165: 8,3 + 3173: 9,3 + 3178: 9,4 + 3183: 2,-13 + 3188: 2,-12 + 3193: 2,-11 + 3198: 2,-10 + 3206: 10,-3 + 3209: -11,-8 + 3212: -10,-8 + 3220: -10,-7 + 3225: -10,-6 + 3230: -10,-5 + 3259: -8,7 + 3264: -8,9 + 3267: -13,-22 + 3272: -13,-20 + 3294: 10,-27 + 3302: 11,-26 + 3310: 11,-20 + 3318: 11,-19 + 3323: 12,-20 + 3328: 13,-20 + 3331: 4,16 + 3339: 4,17 + 3344: 4,12 + 3352: 4,13 + 3360: 4,14 + 3368: 4,15 + 3376: 8,2 + 3384: 8,3 + 3392: 9,3 + 3397: 9,4 + 3402: 2,-13 + 3407: 2,-12 + 3412: 2,-11 + 3417: 2,-10 + 3425: 10,-3 + 3428: -11,-8 + 3431: -10,-8 + 3463: -8,7 + 3468: -8,9 + 3488: 10,-27 + 3496: 11,-26 + 3504: 11,-20 + 3512: 11,-19 + 3517: 12,-20 + 3522: 13,-20 + 3525: 4,16 + 3533: 4,17 + 3538: -10,-6 + 3543: -10,-7 + 3548: -10,-5 + 3556: -13,-22 + 3559: 4,12 + 3567: 4,13 + 3575: 4,14 + 3583: 4,15 + 3591: 8,2 + 3599: 8,3 + 3607: 9,3 + 3612: 9,4 + 3617: 2,-13 + 3622: 2,-12 + 3627: 2,-11 + 3632: 2,-10 + 3640: 10,-3 + 3643: -11,-8 + 3646: -10,-8 + 3654: -10,-7 + 3659: -10,-6 + 3664: -10,-5 + 3693: -8,7 + 3698: -8,9 + 3701: -13,-22 + 3724: 10,-27 + 3732: 11,-26 + 3740: 11,-20 + 3748: 11,-19 + 3753: 12,-20 + 3758: 13,-20 + 3761: 4,16 + 3769: 4,17 + 3774: 4,12 + 3782: 4,13 + 3790: 4,14 + 3798: 4,15 + 3806: 8,2 + 3814: 8,3 + 3822: 9,3 + 3827: 9,4 + 3832: 2,-13 + 3837: 2,-12 + 3842: 2,-11 + 3847: 2,-10 + 3855: 10,-3 + 3858: -11,-8 + 3861: -10,-8 + 3869: -10,-7 + 3874: -10,-6 + 3879: -10,-5 + 3908: -8,7 + 3913: -8,9 + 3916: -13,-22 + 3939: 10,-27 + 3947: 11,-26 + 3955: 11,-20 + 3963: 11,-19 + 3968: 12,-20 + 3973: 13,-20 + 3976: 4,16 + 3984: 4,17 + 4098: 4,12 + 4106: 4,13 + 4114: 4,14 + 4122: 4,15 + 4130: 8,2 + 4138: 8,3 + 4146: 9,3 + 4151: 9,4 + 4156: 2,-13 + 4161: 2,-12 + 4166: 2,-11 + 4171: 2,-10 + 4179: 10,-3 + 4182: -11,-8 + 4185: -10,-8 + 4193: -10,-7 + 4198: -10,-6 + 4203: -10,-5 + 4232: -8,7 + 4237: -8,9 + 4240: -13,-22 + 4263: 10,-27 + 4271: 11,-26 + 4279: 11,-20 + 4287: 11,-19 + 4292: 12,-20 + 4297: 13,-20 + 4300: 4,16 + 4308: 4,17 + 4313: 4,12 + 4321: 4,13 + 4329: 4,14 + 4337: 4,15 + 4345: 8,2 + 4353: 8,3 + 4361: 9,3 + 4366: 9,4 + 4371: 2,-13 + 4376: 2,-12 + 4381: 2,-11 + 4386: 2,-10 + 4394: 10,-3 + 4397: -11,-8 + 4400: -10,-8 + 4408: -10,-7 + 4413: -10,-6 + 4418: -10,-5 + 4447: -8,7 + 4452: -8,9 + 4455: -13,-22 + 4478: 10,-27 + 4486: 11,-26 + 4494: 11,-20 + 4502: 11,-19 + 4507: 12,-20 + 4512: 13,-20 + 4515: 4,16 + 4523: 4,17 - node: - color: '#FFFFFFFF' - id: TechE + id: LatticeEdgeW decals: - 238: -3,10 + 127: 4,12 + 135: 4,13 + 143: 4,14 + 151: 4,15 + 159: 8,2 + 167: 8,3 + 172: 9,3 + 177: 9,4 + 182: 2,-13 + 187: 2,-12 + 192: 2,-11 + 197: 2,-10 + 213: -10,-28 + 219: 8,-32 + 226: 10,-27 + 234: 11,-26 + 239: 11,-20 + 244: 11,-19 + 252: 4,16 + 258: 4,17 + 265: 4,12 + 273: 4,13 + 281: 4,14 + 289: 4,15 + 297: 8,2 + 305: 8,3 + 310: 9,3 + 315: 9,4 + 320: 2,-13 + 325: 2,-12 + 330: 2,-11 + 335: 2,-10 + 351: -10,-28 + 357: 8,-32 + 364: 10,-27 + 372: 11,-26 + 377: 11,-20 + 382: 11,-19 + 390: 4,16 + 396: 4,17 + 403: 4,12 + 411: 4,13 + 419: 4,14 + 427: 4,15 + 435: 8,2 + 443: 8,3 + 448: 9,3 + 453: 9,4 + 458: 2,-13 + 463: 2,-12 + 468: 2,-11 + 473: 2,-10 + 489: -10,-28 + 495: 8,-32 + 502: 10,-27 + 510: 11,-26 + 515: 11,-20 + 520: 11,-19 + 528: 4,16 + 534: 4,17 + 541: 4,12 + 549: 4,13 + 557: 4,14 + 565: 4,15 + 573: 8,2 + 581: 8,3 + 586: 9,3 + 591: 9,4 + 596: 2,-13 + 601: 2,-12 + 606: 2,-11 + 611: 2,-10 + 627: -10,-28 + 633: 8,-32 + 640: 10,-27 + 648: 11,-26 + 653: 11,-20 + 658: 11,-19 + 666: 4,16 + 672: 4,17 + 679: 4,12 + 687: 4,13 + 695: 4,14 + 703: 4,15 + 711: 8,2 + 719: 8,3 + 724: 9,3 + 729: 9,4 + 734: 2,-13 + 739: 2,-12 + 744: 2,-11 + 749: 2,-10 + 765: -10,-28 + 771: 8,-32 + 778: 10,-27 + 786: 11,-26 + 791: 11,-20 + 796: 11,-19 + 804: 4,16 + 810: 4,17 + 817: 4,12 + 825: 4,13 + 833: 4,14 + 841: 4,15 + 849: 8,2 + 857: 8,3 + 862: 9,3 + 867: 9,4 + 872: 2,-13 + 877: 2,-12 + 882: 2,-11 + 887: 2,-10 + 903: -10,-28 + 909: 8,-32 + 916: 10,-27 + 924: 11,-26 + 929: 11,-20 + 934: 11,-19 + 942: 4,16 + 948: 4,17 + 955: 4,12 + 963: 4,13 + 971: 4,14 + 979: 4,15 + 987: 8,2 + 995: 8,3 + 1000: 9,3 + 1005: 9,4 + 1010: 2,-13 + 1015: 2,-12 + 1020: 2,-11 + 1025: 2,-10 + 1041: -10,-28 + 1047: 8,-32 + 1054: 10,-27 + 1062: 11,-26 + 1067: 11,-20 + 1072: 11,-19 + 1080: 4,16 + 1086: 4,17 + 1093: 4,12 + 1101: 4,13 + 1109: 4,14 + 1117: 4,15 + 1125: 8,2 + 1133: 8,3 + 1138: 9,3 + 1143: 9,4 + 1148: 2,-13 + 1153: 2,-12 + 1158: 2,-11 + 1163: 2,-10 + 1179: -10,-28 + 1185: 8,-32 + 1192: 10,-27 + 1200: 11,-26 + 1205: 11,-20 + 1210: 11,-19 + 1218: 4,16 + 1224: 4,17 + 1231: 4,12 + 1239: 4,13 + 1247: 4,14 + 1255: 4,15 + 1263: 8,2 + 1271: 8,3 + 1276: 9,3 + 1281: 9,4 + 1286: 2,-13 + 1291: 2,-12 + 1296: 2,-11 + 1301: 2,-10 + 1317: -10,-28 + 1323: 8,-32 + 1330: 10,-27 + 1338: 11,-26 + 1343: 11,-20 + 1348: 11,-19 + 1356: 4,16 + 1362: 4,17 + 1369: 4,12 + 1377: 4,13 + 1385: 4,14 + 1393: 4,15 + 1401: 8,2 + 1409: 8,3 + 1414: 9,3 + 1419: 9,4 + 1424: 2,-13 + 1429: 2,-12 + 1434: 2,-11 + 1439: 2,-10 + 1455: -10,-28 + 1461: 8,-32 + 1468: 10,-27 + 1476: 11,-26 + 1481: 11,-20 + 1486: 11,-19 + 1494: 4,16 + 1500: 4,17 + 1507: 4,12 + 1515: 4,13 + 1523: 4,14 + 1531: 4,15 + 1539: 8,2 + 1547: 8,3 + 1552: 9,3 + 1557: 9,4 + 1562: 2,-13 + 1567: 2,-12 + 1572: 2,-11 + 1577: 2,-10 + 1593: -10,-28 + 1600: 10,-27 + 1608: 11,-26 + 1616: 4,16 + 1622: 4,17 + 1629: 11,-20 + 1634: 11,-19 + 1638: 8,-32 + 1641: 9,-30 + 1650: 13,-20 + 1655: 12,-20 + 1675: -10,-8 + 1696: 4,12 + 1704: 4,13 + 1712: 4,14 + 1720: 4,15 + 1728: 8,2 + 1736: 8,3 + 1741: 9,3 + 1746: 9,4 + 1751: 2,-13 + 1756: 2,-12 + 1761: 2,-11 + 1766: 2,-10 + 1777: -10,-8 + 1816: -10,-28 + 1825: 8,-32 + 1828: 9,-30 + 1835: 10,-27 + 1843: 11,-26 + 1851: 11,-20 + 1856: 11,-19 + 1862: 12,-20 + 1865: 13,-20 + 1872: 4,16 + 1878: 4,17 + 1885: 4,12 + 1893: 4,13 + 1901: 4,14 + 1909: 4,15 + 1917: 8,2 + 1925: 8,3 + 1930: 9,3 + 1935: 9,4 + 1940: 2,-13 + 1945: 2,-12 + 1950: 2,-11 + 1955: 2,-10 + 1966: -10,-8 + 2005: -10,-28 + 2014: 8,-32 + 2017: 9,-30 + 2024: 10,-27 + 2032: 11,-26 + 2040: 11,-20 + 2045: 11,-19 + 2051: 12,-20 + 2054: 13,-20 + 2061: 4,16 + 2067: 4,17 + 2074: 4,12 + 2082: 4,13 + 2090: 4,14 + 2098: 4,15 + 2103: 2,-13 + 2108: 2,-12 + 2113: 2,-11 + 2118: 2,-10 + 2129: -10,-8 + 2168: -10,-28 + 2174: 8,-32 + 2177: 9,-30 + 2184: 10,-27 + 2192: 11,-26 + 2200: 11,-20 + 2205: 11,-19 + 2211: 12,-20 + 2214: 13,-20 + 2221: 4,16 + 2227: 4,17 + 2241: 10,-5 + 2244: 10,-3 + 2248: 9,4 + 2253: 9,3 + 2261: 8,3 + 2269: 8,2 + 2473: 4,12 + 2481: 4,13 + 2489: 4,14 + 2497: 4,15 + 2505: 8,2 + 2513: 8,3 + 2518: 9,3 + 2523: 9,4 + 2528: 2,-13 + 2533: 2,-12 + 2538: 2,-11 + 2543: 2,-10 + 2547: 10,-5 + 2550: 10,-3 + 2560: -10,-8 + 2623: -10,-28 + 2632: 8,-32 + 2635: 9,-30 + 2642: 10,-27 + 2650: 11,-26 + 2658: 11,-20 + 2663: 11,-19 + 2669: 12,-20 + 2672: 13,-20 + 2679: 4,16 + 2685: 4,17 + 2692: 4,12 + 2700: 4,13 + 2708: 4,14 + 2716: 4,15 + 2724: 8,2 + 2732: 8,3 + 2737: 9,3 + 2742: 9,4 + 2747: 2,-13 + 2752: 2,-12 + 2757: 2,-11 + 2762: 2,-10 + 2766: 10,-5 + 2769: 10,-3 + 2779: -10,-8 + 2842: -10,-28 + 2851: 8,-32 + 2854: 9,-30 + 2861: 10,-27 + 2869: 11,-26 + 2877: 11,-20 + 2882: 11,-19 + 2888: 12,-20 + 2891: 13,-20 + 2898: 4,16 + 2904: 4,17 + 2911: 4,12 + 2919: 4,13 + 2927: 4,14 + 2935: 4,15 + 2943: 8,2 + 2951: 8,3 + 2956: 9,3 + 2961: 9,4 + 2966: 2,-13 + 2971: 2,-12 + 2976: 2,-11 + 2981: 2,-10 + 2985: 10,-5 + 2988: 10,-3 + 2998: -10,-8 + 3061: -10,-28 + 3070: 8,-32 + 3073: 9,-30 + 3080: 10,-27 + 3088: 11,-26 + 3096: 11,-20 + 3101: 11,-19 + 3107: 12,-20 + 3110: 13,-20 + 3117: 4,16 + 3123: 4,17 + 3130: 4,12 + 3138: 4,13 + 3146: 4,14 + 3154: 4,15 + 3162: 8,2 + 3170: 8,3 + 3175: 9,3 + 3180: 9,4 + 3185: 2,-13 + 3190: 2,-12 + 3195: 2,-11 + 3200: 2,-10 + 3204: 10,-5 + 3207: 10,-3 + 3217: -10,-8 + 3280: -10,-28 + 3289: 8,-32 + 3292: 9,-30 + 3299: 10,-27 + 3307: 11,-26 + 3315: 11,-20 + 3320: 11,-19 + 3326: 12,-20 + 3329: 13,-20 + 3336: 4,16 + 3342: 4,17 + 3349: 4,12 + 3357: 4,13 + 3365: 4,14 + 3373: 4,15 + 3381: 8,2 + 3389: 8,3 + 3394: 9,3 + 3399: 9,4 + 3404: 2,-13 + 3409: 2,-12 + 3414: 2,-11 + 3419: 2,-10 + 3423: 10,-5 + 3426: 10,-3 + 3436: -10,-8 + 3474: -10,-28 + 3483: 8,-32 + 3486: 9,-30 + 3493: 10,-27 + 3501: 11,-26 + 3509: 11,-20 + 3514: 11,-19 + 3520: 12,-20 + 3523: 13,-20 + 3530: 4,16 + 3536: 4,17 + 3564: 4,12 + 3572: 4,13 + 3580: 4,14 + 3588: 4,15 + 3596: 8,2 + 3604: 8,3 + 3609: 9,3 + 3614: 9,4 + 3619: 2,-13 + 3624: 2,-12 + 3629: 2,-11 + 3634: 2,-10 + 3638: 10,-5 + 3641: 10,-3 + 3651: -10,-8 + 3710: -10,-28 + 3719: 8,-32 + 3722: 9,-30 + 3729: 10,-27 + 3737: 11,-26 + 3745: 11,-20 + 3750: 11,-19 + 3756: 12,-20 + 3759: 13,-20 + 3766: 4,16 + 3772: 4,17 + 3779: 4,12 + 3787: 4,13 + 3795: 4,14 + 3803: 4,15 + 3811: 8,2 + 3819: 8,3 + 3824: 9,3 + 3829: 9,4 + 3834: 2,-13 + 3839: 2,-12 + 3844: 2,-11 + 3849: 2,-10 + 3853: 10,-5 + 3856: 10,-3 + 3866: -10,-8 + 3925: -10,-28 + 3934: 8,-32 + 3937: 9,-30 + 3944: 10,-27 + 3952: 11,-26 + 3960: 11,-20 + 3965: 11,-19 + 3971: 12,-20 + 3974: 13,-20 + 3981: 4,16 + 3987: 4,17 + 4103: 4,12 + 4111: 4,13 + 4119: 4,14 + 4127: 4,15 + 4135: 8,2 + 4143: 8,3 + 4148: 9,3 + 4153: 9,4 + 4158: 2,-13 + 4163: 2,-12 + 4168: 2,-11 + 4173: 2,-10 + 4177: 10,-5 + 4180: 10,-3 + 4190: -10,-8 + 4249: -10,-28 + 4258: 8,-32 + 4261: 9,-30 + 4268: 10,-27 + 4276: 11,-26 + 4284: 11,-20 + 4289: 11,-19 + 4295: 12,-20 + 4298: 13,-20 + 4305: 4,16 + 4311: 4,17 + 4318: 4,12 + 4326: 4,13 + 4334: 4,14 + 4342: 4,15 + 4350: 8,2 + 4358: 8,3 + 4363: 9,3 + 4368: 9,4 + 4373: 2,-13 + 4378: 2,-12 + 4383: 2,-11 + 4388: 2,-10 + 4392: 10,-5 + 4395: 10,-3 + 4405: -10,-8 + 4464: -10,-28 + 4473: 8,-32 + 4476: 9,-30 + 4483: 10,-27 + 4491: 11,-26 + 4499: 11,-20 + 4504: 11,-19 + 4510: 12,-20 + 4513: 13,-20 + 4520: 4,16 + 4526: 4,17 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: TechE - decals: - 413: -6,-4 - 414: -5,-4 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: TechN + id: LoadingArea decals: - 418: -6,-5 - 419: -5,-5 + 63: -12,-13 + 64: -12,-15 + 65: -12,-14 - node: - angle: 6.283185307179586 rad - color: '#FFFFFFFF' - id: TechN + color: '#D381C996' + id: Rust decals: - 2453: -4,11 + 2229: -5,9 + 2230: -6,8 + 2231: -4,10 + 2232: -3,11 + 2233: -3,7 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: TechNE + id: TechCornerE decals: - 417: -7,-5 + 45: -2,8 - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: TechNE + color: '#D381C996' + id: TechE decals: - 416: -4,-5 + 2446: -4,-15 + 2447: -4,-13 - node: - angle: 6.283185307179586 rad - color: '#FFFFFFFF' + color: '#D381C996' id: TechNE decals: - 415: -4,-4 - 2452: -3,11 + 2442: -4,-12 - node: - angle: 6.283185307179586 rad - color: '#FFFFFFFF' + color: '#D381C996' id: TechNW decals: - 2451: -5,11 + 2443: -8,-12 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechS decals: - 235: -4,9 + 2451: -7,-16 + 2452: -6,-16 + 2453: -5,-16 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechSE decals: - 236: -3,9 + 2445: -4,-16 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechSW decals: - 234: -5,9 + 2444: -8,-16 - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: TechSW - decals: - 412: -7,-4 - - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechW decals: - 237: -5,10 - - node: - angle: 1.5707963267948966 rad - color: '#37C9B430' - id: TrimWarnEast - decals: - 427: 3,-1 - 428: 2,-1 - 429: 1,-1 - - node: - angle: 1.5707963267948966 rad - color: '#37C9B430' - id: TrimWarnNorthWest - decals: - 422: 0,-2 - 432: 0,-4 + 2448: -8,-13 + 2449: -8,-14 + 2450: -8,-15 - node: - angle: 3.141592653589793 rad - color: '#37C9B430' - id: TrimWarnNorthWest + color: '#D381C996' + id: TrimWarnNorth decals: - 423: 4,-2 - 433: 4,-4 + 2332: 1,-1 + 2333: 2,-1 + 2334: 3,-1 + 2342: 1,-3 + 2343: 2,-3 + 2344: 3,-3 - node: - angle: 4.71238898038469 rad - color: '#37C9B430' - id: TrimWarnNorthWest + color: '#D381C996' + id: TrimWarnNorthEast decals: - 421: 4,-1 - 431: 4,-3 + 2331: 4,-1 + 2340: 4,-3 - node: - angle: 6.283185307179586 rad - color: '#37C9B430' + color: '#D381C996' id: TrimWarnNorthWest decals: - 420: 0,-1 - 430: 0,-3 - - node: - angle: 3.141592653589793 rad - color: '#37C9B430' - id: TrimWarnSouth - decals: - 434: 1,-3 - 435: 2,-3 - 436: 3,-3 + 2330: 0,-1 + 2341: 0,-3 - node: - angle: 6.283185307179586 rad - color: '#37C9B430' + color: '#D381C996' id: TrimWarnSouth decals: - 424: 1,-2 - 425: 2,-2 - 426: 3,-2 - 437: 1,-4 - 438: 2,-4 - 439: 3,-4 - - node: - angle: 1.5707963267948966 rad - color: '#37C9B430' - id: TrimlineNorth - decals: - 445: 5,-3 - 446: -1,-3 + 2337: 1,-2 + 2338: 2,-2 + 2339: 3,-2 + 2347: 1,-4 + 2348: 2,-4 + 2349: 3,-4 - node: - angle: 4.71238898038469 rad - color: '#37C9B430' - id: TrimlineNorth + color: '#D381C996' + id: TrimWarnSouthEast decals: - 444: 5,-3 - 447: -1,-3 + 2335: 4,-2 + 2345: 4,-4 - node: - angle: 3.141592653589793 rad - color: '#37C9B430' - id: TrimlineNorthEnd + color: '#D381C996' + id: TrimWarnSouthWest decals: - 441: 5,-4 - 443: -1,-4 + 2336: 0,-2 + 2346: 0,-4 - node: - angle: 6.283185307179586 rad - color: '#37C9B430' + color: '#D381C996' id: TrimlineNorthEnd decals: - 440: 5,-2 - 442: -1,-2 + 2351: 5,-2 + 2352: -1,-2 - node: color: '#D381C996' - id: WarnCornerGreyscaleNE + id: TrimlineSouthEnd decals: - 153: 5,-24 - - node: - color: '#FF94FF3E' - id: WarnCornerGreyscaleNE - decals: - 218: 8,10 - 219: 9,6 - 220: 10,0 - 222: 11,-4 + 2350: 5,-3 + 2353: -1,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 49: -7,-22 - 68: -12,-18 - 152: 4,-24 - 176: -13,-16 + 48: -13,-16 - node: color: '#FF94FF21' id: WarnCornerGreyscaleNW decals: - 203: -10,-4 - 204: -11,-9 + 66: -10,-4 + 67: -11,-9 - node: color: '#FF94FF3E' id: WarnCornerGreyscaleNW decals: - 205: -10,-4 - 206: -11,-9 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleSE - decals: - 50: -2,-23 - 150: 6,-22 - - node: - color: '#FF94FF3E' - id: WarnCornerGreyscaleSE - decals: - 221: 11,-5 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleSW - decals: - 148: 4,-22 - - node: - color: '#D381C996' - id: WarnCornerSmallGreyscaleNE - decals: - 154: 5,-25 + 68: -10,-4 + 69: -11,-9 - node: color: '#FF94FF3E' id: WarnCornerSmallGreyscaleNE decals: - 231: 10,-4 - 232: 9,0 - 233: 8,6 + 83: 10,-4 + 84: 9,0 - node: color: '#FF94FF3E' id: WarnCornerSmallGreyscaleNW decals: - 210: -10,-9 + 73: -10,-9 - node: color: '#FF94FF3E' id: WarnEndGreyscaleE decals: - 212: 11,-18 - 213: 13,-21 + 75: 11,-18 + 76: 13,-21 - node: color: '#FF94FF3E' id: WarnEndGreyscaleS decals: - 216: 7,-33 - 217: -7,-33 + 79: 7,-33 + 80: -7,-33 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 178: 3,17 - 179: 5,17 - 180: -7,11 + 49: 3,17 + 50: 5,17 + 51: -7,11 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 59: -6,-29 - 60: -6,-30 - 61: -6,-31 + 7: -6,-29 + 8: -6,-30 + 9: -6,-31 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -3157,56 +4962,39 @@ entities: 0: -8,8 5: -9,-9 6: -9,-10 - 54: -1,-12 - 55: -1,-11 - 57: 0,-20 - 173: -4,-1 - 184: 6,7 - 188: 4,6 + 55: 6,7 + 59: 4,6 - node: color: '#FF94FF3E' id: WarnLineGreyscaleE decals: - 211: -12,-16 - 223: 8,9 - 224: 8,8 - 225: 8,7 - 226: 9,5 - 227: 9,1 - 228: 10,-1 - 229: 10,-2 - 230: 10,-3 + 74: -12,-16 + 81: 9,5 + 82: 9,1 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 51: -1,0 - 65: -11,-18 - 66: -10,-18 - 175: -12,-16 - 181: 3,7 - 182: 4,7 - 183: 5,7 - 190: 4,4 + 47: -12,-16 + 52: 3,7 + 53: 4,7 + 54: 5,7 - node: color: '#FF94FF3E' id: WarnLineGreyscaleN decals: - 214: 12,-21 + 77: 12,-21 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 58: -6,-23 - 149: 5,-22 - 186: 3,7 - 187: 5,7 - 191: 3,3 + 57: 3,7 + 58: 5,7 - node: color: '#FF94FF3E' id: WarnLineGreyscaleS decals: - 215: 10,-18 + 78: 10,-18 - node: color: '#D381C996' id: WarnLineGreyscaleW @@ -3215,45 +5003,39 @@ entities: 2: -8,6 3: -9,-9 4: -9,-10 - 52: -2,-1 - 53: -2,-14 - 56: -3,-19 - 67: -12,-19 - 119: -2,-6 - 151: 2,-20 - 174: -13,-17 - 185: 2,7 - 189: 4,6 + 46: -13,-17 + 56: 2,7 + 60: 4,6 - node: color: '#FF94FF3E' id: WarnLineGreyscaleW decals: - 207: -11,-12 - 208: -11,-11 - 209: -11,-10 + 70: -11,-12 + 71: -11,-11 + 72: -11,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 73: 2,8 - 74: 6,8 - 75: 4,8 + 13: 2,8 + 14: 6,8 + 15: 4,8 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 62: 5,-29 - 63: 5,-30 - 64: 5,-31 + 10: 5,-29 + 11: 5,-30 + 12: 5,-31 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 76: 0,5 - 77: 0,4 - 78: 0,3 - 79: 0,2 - 80: -5,2 + 16: 0,5 + 17: 0,4 + 18: 0,3 + 19: 0,2 + 20: -5,2 - type: GridAtmosphere version: 2 data: @@ -3267,7 +5049,7 @@ entities: 0,1: 0: 56347 -1,1: - 0: 63709 + 0: 63741 0,2: 0: 52673 -1,2: @@ -3275,7 +5057,7 @@ entities: 0,4: 0: 4 1,0: - 0: 47287 + 0: 47359 1,1: 0: 30491 1,2: @@ -3283,20 +5065,19 @@ entities: 1,3: 1: 4369 1,-1: - 0: 30583 + 0: 65535 1,4: 1: 17 0: 4 2,0: - 0: 55 - 1: 13056 - 2,1: - 1: 3 - 0: 4912 - 2,2: - 0: 273 + 0: 17 + 1: 12544 2,-1: - 0: 30591 + 0: 4373 + 1: 64 + 2,1: + 1: 2 + 0: 32 0,-4: 0: 8738 1: 17476 @@ -3317,10 +5098,9 @@ entities: 0,-5: 0: 24799 2,-2: - 0: 49152 + 1: 16384 -4,-4: 0: 8 - 1: 34944 -4,-5: 0: 34944 1: 8 @@ -3345,7 +5125,7 @@ entities: -1,-5: 0: 52990 -2,1: - 0: 50653 + 0: 51677 1: 4096 -2,2: 0: 43213 @@ -3354,7 +5134,7 @@ entities: 0: 65024 1: 4 -3,-6: - 0: 7423 + 0: 23807 -4,-6: 1: 34816 -3,-5: @@ -3383,7 +5163,7 @@ entities: 0,-8: 0: 56816 0,-7: - 0: 28945 + 0: 61713 1: 64 0,-6: 0: 53367 @@ -3458,16 +5238,10 @@ entities: - type: ShuttleDeed shuttleName: Shuttle KXZ-684 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAardpointMediumMissile entities: - - uid: 21 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1 - - type: Physics - canCollide: False - - uid: 141 + - uid: 2 components: - type: Transform rot: -1.5707963267948966 rad @@ -3475,7 +5249,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 142 + - uid: 3 components: - type: Transform rot: 1.5707963267948966 rad @@ -3483,16 +5257,24 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 206 + - uid: 4 components: - type: Transform pos: -10.5,-8.5 parent: 1 - type: Physics canCollide: False + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - type: Physics + canCollide: False - proto: AAAHardpointFixed entities: - - uid: 1418 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad @@ -3500,14 +5282,12 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 873 - - 221 - - 825 + - 948 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic entities: - - uid: 158 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -3515,7 +5295,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 178 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad @@ -3523,115 +5303,107 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 179 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: -6.5,11.5 parent: 1 - type: Physics canCollide: False - - uid: 216 +- proto: AAAHardpointSmallBallistic + entities: + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - type: Physics canCollide: False -- proto: AAAHardpointSmallBallistic - entities: - - uid: 395 + - uid: 11 components: - type: Transform pos: -12.5,-15.5 parent: 1 - type: Physics canCollide: False - - uid: 468 + - uid: 12 components: - type: Transform pos: -6.5,-32.5 parent: 1 - type: Physics canCollide: False - - uid: 472 + - uid: 13 components: - type: Transform pos: 7.5,-32.5 parent: 1 - type: Physics canCollide: False - - uid: 473 + - uid: 14 components: - type: Transform pos: 2.5,16.5 parent: 1 - type: Physics canCollide: False - - uid: 476 + - uid: 15 components: - type: Transform pos: 6.5,16.5 parent: 1 - type: Physics canCollide: False - - uid: 831 + - uid: 16 components: - type: Transform - pos: 11.5,-4.5 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 parent: 1 - type: Physics canCollide: False - - uid: 835 + - uid: 17 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: 13.5,-25.5 parent: 1 - type: Physics canCollide: False - - uid: 871 + - uid: 18 components: - type: Transform - pos: 9.5,6.5 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - type: Physics canCollide: False - - uid: 898 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-25.5 + pos: 10.5,-4.5 parent: 1 - type: Physics canCollide: False -- proto: AcceleratorCannon +- proto: AcceleratorCannonFilled entities: - - uid: 324 + - uid: 20 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 1 - - type: BallisticAmmoProvider - entities: - - 326 - - 393 - - 478 - - 847 - - 1400 + - type: ApcPowerReceiver + powerLoad: 25000 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True - ents: - - 326 - - 393 - - 478 - - 847 - - 1400 + ents: [] SpaceArtillery-CoolantSlot: !type:ContainerSlot showEnts: False occludes: True @@ -3644,12 +5416,14 @@ entities: showEnts: False occludes: True ents: [] - - type: SpaceArtillery - coolantStored: 120 + - type: Battery + startingCharge: 96185.875 + - type: ApcPowerReceiverBattery + enabled: True - type: ItemSlots - proto: AirAlarm entities: - - uid: 1489 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad @@ -3657,22 +5431,22 @@ entities: parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 - - uid: 1490 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 + - uid: 22 components: - type: Transform rot: -1.5707963267948966 rad @@ -3680,49 +5454,49 @@ entities: parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 - - uid: 1493 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 + - uid: 23 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 1494 + - uid: 24 components: - type: Transform pos: -11.5,-21.5 parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 - - uid: 1495 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 + - uid: 25 components: - type: Transform rot: 3.141592653589793 rad @@ -3730,24 +5504,24 @@ entities: parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 - proto: AirCanister entities: - - uid: 1411 + - uid: 26 components: - type: Transform anchored: True @@ -3757,133 +5531,144 @@ entities: bodyType: Static - proto: AirlockCommandLockedDSM entities: - - uid: 119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - - uid: 459 + - uid: 27 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-23.5 parent: 1 - - uid: 465 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - uid: 467 + - uid: 29 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 1 - - uid: 494 + - uid: 30 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 531 + - uid: 31 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 811 + - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-22.5 + rot: -1.5707963267948966 rad + pos: -4.5,6.5 parent: 1 - - uid: 812 + - uid: 33 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 + pos: -9.5,-20.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 73 + - uid: 35 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 237 + - uid: 36 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - - uid: 384 + - uid: 37 components: - type: Transform pos: 0.5,-10.5 parent: 1 - type: Door - secondsUntilStateChange: -14233.606 + secondsUntilStateChange: -25457.42 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True - - uid: 458 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 460 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 461 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 1 - - uid: 462 + - uid: 41 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-18.5 parent: 1 - - uid: 463 + - uid: 42 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 466 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 627 + - uid: 44 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1612 + - uid: 45 components: - type: Transform pos: 9.5,-21.5 parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 - proto: AirlockExternal entities: - - uid: 397 + - uid: 48 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 398 + - uid: 49 components: - type: Transform rot: 3.141592653589793 rad @@ -3891,13 +5676,13 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 414 + - uid: 50 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 1 - - uid: 510 + - uid: 51 components: - type: Transform rot: 3.141592653589793 rad @@ -3905,13 +5690,13 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 273 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 1 - - uid: 274 + - uid: 53 components: - type: Transform rot: 1.5707963267948966 rad @@ -3921,15 +5706,15 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -21472.318 + secondsUntilStateChange: -32696.133 state: Opening - - uid: 403 + - uid: 54 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-17.5 parent: 1 - - uid: 404 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad @@ -3937,25 +5722,37 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 1638 + - uid: 57 components: - type: Transform - parent: 741 + parent: 56 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1640 + - uid: 62 components: - type: Transform - parent: 742 + parent: 61 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: AltarConvertBurden + entities: + - uid: 66 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 - proto: AmeController entities: - - uid: 1650 + - uid: 68 components: - type: Transform pos: 3.5,-30.5 @@ -3968,53 +5765,53 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 1651 + ent: 69 - proto: AmeJar entities: - - uid: 169 + - uid: 69 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 70 components: - type: Transform pos: 3.8230472,-28.364965 parent: 1 - - uid: 454 + - uid: 71 components: - type: Transform pos: 3.4812212,-28.364965 parent: 1 - - uid: 455 + - uid: 72 components: - type: Transform pos: 3.2880154,-28.364965 parent: 1 - - uid: 553 + - uid: 73 components: - type: Transform pos: 3.659566,-28.364965 parent: 1 - - uid: 1648 + - uid: 74 components: - type: Transform pos: 3.1542568,-28.364965 parent: 1 - - uid: 1651 - components: - - type: Transform - parent: 1650 - - type: Physics - canCollide: False - proto: AmeShielding entities: - - uid: 170 + - uid: 75 components: - type: Transform pos: 4.5,-30.5 parent: 1 - - uid: 452 + - uid: 76 components: - type: Transform pos: 5.5,-30.5 parent: 1 - - uid: 453 + - uid: 77 components: - type: Transform pos: 5.5,-29.5 @@ -4022,22 +5819,22 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 556 + - uid: 78 components: - type: Transform pos: 5.5,-28.5 parent: 1 - - uid: 784 + - uid: 79 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 1187 + - uid: 80 components: - type: Transform pos: 6.5,-30.5 parent: 1 - - uid: 1193 + - uid: 81 components: - type: Transform pos: 6.5,-29.5 @@ -4045,94 +5842,88 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 1303 + - uid: 82 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 1644 + - uid: 83 components: - type: Transform pos: 7.5,-30.5 parent: 1 - - uid: 1645 + - uid: 84 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 1646 + - uid: 85 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 1649 + - uid: 86 components: - type: Transform pos: 4.5,-28.5 parent: 1 - proto: APCBasic entities: - - uid: 931 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 1 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 1 - - uid: 932 + - uid: 89 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 1 - - uid: 933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 1 - - uid: 934 + - uid: 90 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 1 - - uid: 935 + - uid: 91 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 936 + - uid: 92 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 1 - - uid: 937 + - uid: 93 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 1 - - uid: 938 + - uid: 94 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 1 - - uid: 939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1 - - uid: 940 + - uid: 95 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 1 - - uid: 1081 + - uid: 96 components: - type: Transform rot: 1.5707963267948966 rad @@ -4140,88 +5931,102 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 9 + - uid: 97 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 10 + - uid: 98 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 162 + - uid: 99 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 223 + - uid: 100 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 234 + - uid: 101 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 383 + - uid: 102 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 390 + - uid: 103 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 391 + - uid: 104 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 399 + - uid: 105 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 400 + - uid: 106 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - - uid: 401 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-17.5 parent: 1 - - uid: 402 + - uid: 108 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-18.5 parent: 1 - - uid: 689 + - uid: 109 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 1674 + - uid: 110 components: - type: Transform pos: 6.5,8.5 parent: 1 + - uid: 111 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 545 + - uid: 113 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4232,16 +6037,29 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 - - uid: 561 + - 949 + - 950 + linkedConsoleId: 950 + - uid: 114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: 11.5,-17.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4252,16 +6070,29 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 - - uid: 1540 + - 949 + - 950 + linkedConsoleId: 950 + - uid: 115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 + rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4272,15 +6103,24 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 - - uid: 1541 + - 949 + - 950 + linkedConsoleId: 950 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 parent: 1 - type: ContainerContainer containers: @@ -4288,39 +6128,55 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True ent: null + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 -- proto: Bed + - 949 + - 950 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 +- proto: BedsheetBlack entities: - - uid: 576 + - uid: 117 components: - type: Transform - pos: -3.5,2.5 + pos: -8.5,-25.5 parent: 1 - - uid: 653 + - uid: 118 components: - type: Transform - pos: -8.5,-23.5 + pos: -8.5,-24.5 parent: 1 - - uid: 654 + - uid: 119 components: - type: Transform - pos: -8.5,-24.5 + pos: -11.5,-22.5 parent: 1 - - uid: 655 +- proto: BedsheetCaptain + entities: + - uid: 120 components: - type: Transform - pos: -8.5,-25.5 + rot: 3.141592653589793 rad + pos: -11.5,-24.5 parent: 1 - proto: BedsheetMedical entities: - - uid: 17 + - uid: 121 components: - type: Transform pos: -3.4646935,-7.445119 @@ -4328,57 +6184,42 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 -- proto: BedsheetPurple - entities: - - uid: 656 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 1 - - uid: 657 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1 - - uid: 658 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1 - proto: BedsheetRD entities: - - uid: 577 + - uid: 122 components: - - type: MetaData - name: imperial bedsheet - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 + pos: -11.5,-23.5 parent: 1 -- proto: BenchSteelLeft - entities: - - uid: 790 + - uid: 123 components: - type: Transform - pos: 3.5,-18.5 + pos: -8.5,-23.5 parent: 1 -- proto: BenchSteelRight - entities: - - uid: 791 + - uid: 124 components: - type: Transform - pos: 4.5,-18.5 + pos: -10.5,-25.5 parent: 1 - proto: BiomassReclaimer entities: - - uid: 600 + - uid: 125 components: - type: Transform pos: -3.5,-3.5 parent: 1 - proto: BlastDoor entities: - - uid: 224 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1451 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad @@ -4386,8 +6227,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1739 - - uid: 471 + - 1449 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad @@ -4395,142 +6236,91 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 641 - - uid: 484 + - 1453 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 485 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 486 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 487 + - uid: 132 components: - type: Transform - pos: -12.5,-25.5 + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 parent: 1 - type: DeviceLinkSink links: - - 753 - - uid: 488 + - 1454 + - uid: 133 components: - type: Transform - pos: -11.5,-25.5 + pos: 11.5,-20.5 parent: 1 - type: DeviceLinkSink links: - - 753 - - uid: 489 + - 1455 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-26.5 + pos: -5.5,11.5 parent: 1 - type: DeviceLinkSink links: - - 753 - - uid: 490 + - 1452 + - uid: 135 components: - type: Transform - pos: -10.5,-26.5 + rot: 3.141592653589793 rad + pos: 2.5,8.5 parent: 1 - type: DeviceLinkSink links: - - 753 - - uid: 491 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1 - - uid: 492 + - 1449 + - uid: 136 components: - type: Transform - pos: -10.5,-27.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 753 - - uid: 499 + - 1450 +- proto: BoozeDispenser + entities: + - uid: 137 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 751 - - uid: 513 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 1 - - type: DeviceLinkSink - links: - - 755 - - uid: 640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1609 - - uid: 663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1 - - type: DeviceLinkSink - links: - - 543 - - uid: 1626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1739 -- proto: BoozeDispenser - entities: - - uid: 702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 + pos: -5.5,2.5 parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 44 + - uid: 138 components: - type: Transform - pos: -8.5,-17.5 + anchored: True + pos: -9.5,-17.5 parent: 1 + - type: Physics + fixedRotation: False + bodyType: Static - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 348 + - uid: 139 components: - type: Transform pos: -6.5,-30.5 @@ -4541,4071 +6331,4389 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 716 + - uid: 140 components: - type: Transform pos: -6.66038,-8.189533 parent: 1 - proto: BoxBottle entities: - - uid: 718 + - uid: 141 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 - - uid: 719 + - uid: 142 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 +- proto: BoxMRE + entities: + - uid: 143 + components: + - type: Transform + pos: -5.2764893,9.70092 + parent: 1 - proto: BoxPillCanister entities: - - uid: 717 + - uid: 144 components: - type: Transform pos: -6.301005,-8.189533 parent: 1 - proto: BoxSyringe entities: - - uid: 1566 + - uid: 145 components: - type: Transform pos: -6.777571,-8.547294 parent: 1 +- proto: BrokenBottle + entities: + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.665624,9.387818 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 1.570816353955541 rad + pos: -4.258595,11.426207 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 3.367074,-0.8726237 + parent: 1 - proto: ButtonFrameCaution entities: - - uid: 20 + - uid: 149 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 209 + - uid: 150 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 389 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,7.5 parent: 1 - - uid: 519 + - uid: 152 components: - type: Transform - pos: 6.5,1.5 + rot: -1.5707963267948966 rad + pos: 8.5,3.5 parent: 1 - - uid: 538 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 639 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 754 + - uid: 155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-26.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 1661 + - uid: 156 components: - type: Transform pos: 4.5,8.5 parent: 1 - proto: CableApcExtension entities: - - uid: 22 + - uid: 157 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 158 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 48 + - uid: 159 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 53 + - uid: 160 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 59 + - uid: 161 components: - type: Transform pos: -11.5,-17.5 parent: 1 - - uid: 63 + - uid: 162 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 72 + - uid: 163 components: - type: Transform pos: 9.5,-27.5 parent: 1 - - uid: 79 + - uid: 164 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 88 + - uid: 165 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 89 + - uid: 166 components: - type: Transform pos: -8.5,-27.5 parent: 1 - - uid: 90 + - uid: 167 components: - type: Transform pos: -8.5,-28.5 parent: 1 - - uid: 110 + - uid: 168 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 111 + - uid: 169 components: - type: Transform pos: -8.5,-29.5 parent: 1 - - uid: 137 + - uid: 170 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 140 + - uid: 171 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 145 + - uid: 172 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 175 + - uid: 173 components: - type: Transform pos: 9.5,-29.5 parent: 1 - - uid: 176 + - uid: 174 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 195 + - uid: 175 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 196 + - uid: 176 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 197 + - uid: 177 components: - type: Transform pos: 9.5,-28.5 parent: 1 - - uid: 213 + - uid: 178 components: - type: Transform pos: 11.5,-17.5 parent: 1 - - uid: 215 + - uid: 179 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 218 + - uid: 180 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 219 + - uid: 181 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 220 + - uid: 182 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 244 + - uid: 183 components: - type: Transform pos: 13.5,-20.5 parent: 1 - - uid: 289 + - uid: 184 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 295 + - uid: 185 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 394 + - uid: 186 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 584 + - uid: 187 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 598 + - uid: 188 components: - type: Transform pos: -11.5,-20.5 parent: 1 - - uid: 602 + - uid: 189 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 750 + - uid: 190 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 752 + - uid: 191 components: - type: Transform pos: 13.5,-25.5 parent: 1 - - uid: 830 + - uid: 192 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 841 + - uid: 193 components: - type: Transform pos: 8.5,-23.5 parent: 1 - - uid: 842 + - uid: 194 components: - type: Transform pos: 8.5,-24.5 parent: 1 - - uid: 844 + - uid: 195 components: - type: Transform pos: 7.5,-26.5 parent: 1 - - uid: 845 + - uid: 196 components: - type: Transform pos: 8.5,-26.5 parent: 1 - - uid: 846 + - uid: 197 components: - type: Transform pos: 7.5,-23.5 parent: 1 - - uid: 852 + - uid: 198 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 893 + - uid: 199 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 903 + - uid: 200 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1082 + - uid: 201 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 1083 + - uid: 202 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 1084 + - uid: 203 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 1085 + - uid: 204 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1086 + - uid: 205 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1087 + - uid: 206 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1088 + - uid: 207 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 1089 + - uid: 208 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 1090 + - uid: 209 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1091 + - uid: 210 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1092 + - uid: 211 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1093 + - uid: 212 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1094 + - uid: 213 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1095 + - uid: 214 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1096 + - uid: 215 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1097 + - uid: 216 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1098 + - uid: 217 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1099 + - uid: 218 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1100 + - uid: 219 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1101 + - uid: 220 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1102 + - uid: 221 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1103 + - uid: 222 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1104 + - uid: 223 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1105 + - uid: 224 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1106 + - uid: 225 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1107 + - uid: 226 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 1108 + - uid: 227 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 1109 + - uid: 228 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1110 + - uid: 229 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1111 + - uid: 230 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 1112 + - uid: 231 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 1113 + - uid: 232 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 1114 + - uid: 233 components: - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 1115 + - uid: 234 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 1116 + - uid: 235 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 1117 + - uid: 236 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 1118 + - uid: 237 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 1119 + - uid: 238 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 1120 + - uid: 239 components: - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 1121 + - uid: 240 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 1122 + - uid: 241 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 1123 + - uid: 242 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 1124 + - uid: 243 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1125 + - uid: 244 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1126 + - uid: 245 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 1127 + - uid: 246 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1128 + - uid: 247 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 1129 + - uid: 248 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1130 + - uid: 249 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1131 + - uid: 250 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1132 + - uid: 251 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1133 + - uid: 252 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1134 + - uid: 253 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1135 + - uid: 254 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1136 + - uid: 255 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 1137 + - uid: 256 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1138 + - uid: 257 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1139 + - uid: 258 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 1140 + - uid: 259 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 1141 + - uid: 260 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1142 + - uid: 261 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1143 + - uid: 262 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 1144 + - uid: 263 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1145 + - uid: 264 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 1146 + - uid: 265 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 1147 + - uid: 266 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1148 + - uid: 267 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 1149 + - uid: 268 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1150 + - uid: 269 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 1151 + - uid: 270 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1152 + - uid: 271 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1153 + - uid: 272 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 1154 + - uid: 273 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1155 + - uid: 274 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1156 + - uid: 275 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 1157 + - uid: 276 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 1158 + - uid: 277 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1159 + - uid: 278 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1160 + - uid: 279 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1161 + - uid: 280 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1162 + - uid: 281 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 1163 + - uid: 282 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 1164 + - uid: 283 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1166 + - uid: 284 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1167 + - uid: 285 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 1168 + - uid: 286 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1169 + - uid: 287 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 1170 + - uid: 288 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 1171 + - uid: 289 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 1172 + - uid: 290 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 1173 + - uid: 291 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 1174 + - uid: 292 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 1175 + - uid: 293 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 1176 + - uid: 294 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 1177 + - uid: 295 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1178 + - uid: 296 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1179 + - uid: 297 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1180 + - uid: 298 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1181 + - uid: 299 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1182 + - uid: 300 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1183 + - uid: 301 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1184 + - uid: 302 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1185 + - uid: 303 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 1186 + - uid: 304 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1188 + - uid: 305 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 1189 + - uid: 306 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 1190 + - uid: 307 components: - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 1191 + - uid: 308 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 1192 + - uid: 309 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1194 + - uid: 310 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1195 + - uid: 311 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1196 + - uid: 312 components: - type: Transform pos: 3.5,-20.5 parent: 1 - - uid: 1197 + - uid: 313 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1198 + - uid: 314 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 1199 + - uid: 315 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 1200 + - uid: 316 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 1201 + - uid: 317 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 1202 + - uid: 318 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1203 + - uid: 319 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 1204 + - uid: 320 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 1205 + - uid: 321 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1206 + - uid: 322 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1207 + - uid: 323 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 1208 + - uid: 324 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 1209 + - uid: 325 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1210 + - uid: 326 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1211 + - uid: 327 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 1212 + - uid: 328 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 1213 + - uid: 329 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 1214 + - uid: 330 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 1215 + - uid: 331 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 1216 + - uid: 332 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 1217 + - uid: 333 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 1218 + - uid: 334 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 1219 + - uid: 335 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 1220 + - uid: 336 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1221 + - uid: 337 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 1222 + - uid: 338 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1223 + - uid: 339 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 1224 + - uid: 340 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 1225 + - uid: 341 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1226 + - uid: 342 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 1227 + - uid: 343 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 1228 + - uid: 344 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 1229 + - uid: 345 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1230 + - uid: 346 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1231 + - uid: 347 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 1232 + - uid: 348 components: - type: Transform pos: -8.5,-17.5 parent: 1 - - uid: 1233 + - uid: 349 components: - type: Transform pos: -8.5,-18.5 parent: 1 - - uid: 1234 + - uid: 350 components: - type: Transform pos: -9.5,-18.5 parent: 1 - - uid: 1235 + - uid: 351 components: - type: Transform pos: -10.5,-18.5 parent: 1 - - uid: 1236 + - uid: 352 components: - type: Transform pos: -11.5,-18.5 parent: 1 - - uid: 1237 + - uid: 353 components: - type: Transform pos: -12.5,-18.5 parent: 1 - - uid: 1238 + - uid: 354 components: - type: Transform pos: -12.5,-17.5 parent: 1 - - uid: 1239 + - uid: 355 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 1240 + - uid: 356 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1241 + - uid: 357 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 1242 + - uid: 358 components: - type: Transform pos: -10.5,-22.5 parent: 1 - - uid: 1243 + - uid: 359 components: - type: Transform pos: -10.5,-23.5 parent: 1 - - uid: 1244 + - uid: 360 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 1245 + - uid: 361 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 1246 + - uid: 362 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 1247 + - uid: 363 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 1248 + - uid: 364 components: - type: Transform pos: -9.5,-24.5 parent: 1 - - uid: 1249 + - uid: 365 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1250 + - uid: 366 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1251 + - uid: 367 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 1252 + - uid: 368 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1253 + - uid: 369 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 1254 + - uid: 370 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 1255 + - uid: 371 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 1256 + - uid: 372 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 1257 + - uid: 373 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 1258 + - uid: 374 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 1259 + - uid: 375 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 1260 + - uid: 376 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 1261 + - uid: 377 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 1262 + - uid: 378 components: - type: Transform pos: -5.5,-30.5 parent: 1 - - uid: 1263 + - uid: 379 components: - type: Transform pos: -4.5,-30.5 parent: 1 - - uid: 1264 + - uid: 380 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 1265 + - uid: 381 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 1266 + - uid: 382 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 1267 + - uid: 383 components: - type: Transform pos: -0.5,-30.5 parent: 1 - - uid: 1268 + - uid: 384 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 1269 + - uid: 385 components: - type: Transform pos: -3.5,-32.5 parent: 1 - - uid: 1270 + - uid: 386 components: - type: Transform pos: -4.5,-32.5 parent: 1 - - uid: 1271 + - uid: 387 components: - type: Transform pos: -2.5,-32.5 parent: 1 - - uid: 1272 + - uid: 388 components: - type: Transform pos: -1.5,-32.5 parent: 1 - - uid: 1273 + - uid: 389 components: - type: Transform pos: -0.5,-32.5 parent: 1 - - uid: 1274 + - uid: 390 components: - type: Transform pos: 0.5,-32.5 parent: 1 - - uid: 1275 + - uid: 391 components: - type: Transform pos: 1.5,-32.5 parent: 1 - - uid: 1276 + - uid: 392 components: - type: Transform pos: 2.5,-32.5 parent: 1 - - uid: 1277 + - uid: 393 components: - type: Transform pos: 3.5,-32.5 parent: 1 - - uid: 1278 + - uid: 394 components: - type: Transform pos: 4.5,-32.5 parent: 1 - - uid: 1279 + - uid: 395 components: - type: Transform pos: 5.5,-32.5 parent: 1 - - uid: 1280 + - uid: 396 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 1281 + - uid: 397 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1282 + - uid: 398 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 1283 + - uid: 399 components: - type: Transform pos: 6.5,-25.5 parent: 1 - - uid: 1284 + - uid: 400 components: - type: Transform pos: 6.5,-24.5 parent: 1 - - uid: 1285 + - uid: 401 components: - type: Transform pos: 6.5,-23.5 parent: 1 - - uid: 1286 + - uid: 402 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 1287 + - uid: 403 components: - type: Transform pos: 6.5,-21.5 parent: 1 - - uid: 1288 + - uid: 404 components: - type: Transform pos: 6.5,-20.5 parent: 1 - - uid: 1289 + - uid: 405 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - uid: 1290 + - uid: 406 components: - type: Transform pos: 5.5,-19.5 parent: 1 - - uid: 1291 + - uid: 407 components: - type: Transform pos: 4.5,-19.5 parent: 1 - - uid: 1292 + - uid: 408 components: - type: Transform pos: 7.5,-21.5 parent: 1 - - uid: 1293 + - uid: 409 components: - type: Transform pos: 8.5,-21.5 parent: 1 - - uid: 1294 + - uid: 410 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 1295 + - uid: 411 components: - type: Transform pos: 10.5,-21.5 parent: 1 - - uid: 1296 + - uid: 412 components: - type: Transform pos: 11.5,-21.5 parent: 1 - - uid: 1297 + - uid: 413 components: - type: Transform pos: 11.5,-22.5 parent: 1 - - uid: 1298 + - uid: 414 components: - type: Transform pos: 11.5,-23.5 parent: 1 - - uid: 1299 + - uid: 415 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 1300 + - uid: 416 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 1301 + - uid: 417 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 1302 + - uid: 418 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1304 + - uid: 419 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1305 + - uid: 420 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1306 + - uid: 421 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1307 + - uid: 422 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 1308 + - uid: 423 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1309 + - uid: 424 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 1310 + - uid: 425 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 1311 + - uid: 426 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 1312 + - uid: 427 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 1313 + - uid: 428 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1314 + - uid: 429 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 1315 + - uid: 430 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 1316 + - uid: 431 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 1317 + - uid: 432 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 1318 + - uid: 433 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1319 + - uid: 434 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 1320 + - uid: 435 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 1321 + - uid: 436 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 1322 + - uid: 437 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 1323 + - uid: 438 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 1324 + - uid: 439 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 1325 + - uid: 440 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 1326 + - uid: 441 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1327 + - uid: 442 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1328 + - uid: 443 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1329 + - uid: 444 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 1330 + - uid: 445 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 1331 + - uid: 446 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1332 + - uid: 447 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 1333 + - uid: 448 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 1334 + - uid: 449 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1335 + - uid: 450 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1336 + - uid: 451 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1337 + - uid: 452 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1338 + - uid: 453 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 1339 + - uid: 454 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 1340 + - uid: 455 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1341 + - uid: 456 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1342 + - uid: 457 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1343 + - uid: 458 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 1344 + - uid: 459 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 1345 + - uid: 460 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 1346 + - uid: 461 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1347 + - uid: 462 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1348 + - uid: 463 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1349 + - uid: 464 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1350 + - uid: 465 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1351 + - uid: 466 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1352 + - uid: 467 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 1353 + - uid: 468 components: - type: Transform pos: -7.5,-13.5 parent: 1 - - uid: 1354 + - uid: 469 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 1355 + - uid: 470 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 1356 + - uid: 471 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 1357 + - uid: 472 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1358 + - uid: 473 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1359 + - uid: 474 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1360 + - uid: 475 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1361 + - uid: 476 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 1362 + - uid: 477 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1363 + - uid: 478 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 1364 + - uid: 479 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 1365 + - uid: 480 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1366 + - uid: 481 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 1367 + - uid: 482 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 1368 + - uid: 483 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1369 + - uid: 484 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1370 + - uid: 485 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1371 + - uid: 486 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 1372 + - uid: 487 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 1373 + - uid: 488 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 1385 + - uid: 489 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1386 + - uid: 490 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1387 + - uid: 491 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1388 + - uid: 492 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1389 + - uid: 493 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 1390 + - uid: 494 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1391 + - uid: 495 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1392 + - uid: 496 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1393 + - uid: 497 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1394 + - uid: 498 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1395 + - uid: 499 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1396 + - uid: 500 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 1397 + - uid: 501 components: - type: Transform pos: 10.5,-18.5 parent: 1 - - uid: 1399 + - uid: 502 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 1496 + - uid: 503 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 1571 + - uid: 504 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 1572 + - uid: 505 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1573 + - uid: 506 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 1574 + - uid: 507 components: - type: Transform pos: 4.5,-25.5 parent: 1 - - uid: 1575 + - uid: 508 components: - type: Transform pos: 5.5,-25.5 parent: 1 - - uid: 1576 + - uid: 509 components: - type: Transform pos: 7.5,-25.5 parent: 1 - - uid: 1577 + - uid: 510 components: - type: Transform pos: 8.5,-25.5 parent: 1 - - uid: 1578 + - uid: 511 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 1579 + - uid: 512 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 1580 + - uid: 513 components: - type: Transform pos: 9.5,-23.5 parent: 1 - - uid: 1581 + - uid: 514 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 1582 + - uid: 515 components: - type: Transform pos: 5.5,-21.5 parent: 1 - - uid: 1583 + - uid: 516 components: - type: Transform pos: 4.5,-21.5 parent: 1 - - uid: 1584 + - uid: 517 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1585 + - uid: 518 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 1586 + - uid: 519 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 1587 + - uid: 520 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1588 + - uid: 521 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1589 + - uid: 522 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 1590 + - uid: 523 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 1591 + - uid: 524 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 1592 + - uid: 525 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1593 + - uid: 526 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1594 + - uid: 527 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1595 + - uid: 528 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 1596 + - uid: 529 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1597 + - uid: 530 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1624 + - uid: 531 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 1629 + - uid: 532 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1630 + - uid: 533 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1631 + - uid: 534 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 1632 + - uid: 535 components: - type: Transform pos: 7.5,10.5 parent: 1 - - uid: 1633 + - uid: 536 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1634 + - uid: 537 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 1653 + - uid: 538 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 1654 + - uid: 539 components: - type: Transform pos: -4.5,-28.5 parent: 1 - - uid: 1664 + - uid: 540 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1713 + - uid: 541 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1714 + - uid: 542 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1715 + - uid: 543 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1716 + - uid: 544 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1717 + - uid: 545 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1718 + - uid: 546 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1719 + - uid: 547 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 1720 + - uid: 548 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1722 + - uid: 549 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 1723 + - uid: 550 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1728 + - uid: 551 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 1731 + - uid: 552 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 1732 + - uid: 553 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 1733 + - uid: 554 components: - type: Transform pos: 7.5,-31.5 parent: 1 - - uid: 1734 + - uid: 555 components: - type: Transform pos: -6.5,-31.5 parent: 1 - - uid: 1735 + - uid: 556 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1737 + - uid: 557 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 1742 + - uid: 558 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1780 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1 - - uid: 1781 + - uid: 559 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1782 + - uid: 560 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 1783 + - uid: 561 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 1784 + - uid: 562 components: - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 1785 + - uid: 563 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 1786 + - uid: 564 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 1788 + - uid: 565 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 1789 + - uid: 566 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1790 + - uid: 567 components: - type: Transform pos: -8.5,-8.5 parent: 1 - - uid: 1791 + - uid: 568 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 1792 + - uid: 569 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1793 + - uid: 570 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 1794 + - uid: 571 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 1795 + - uid: 572 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 1796 + - uid: 573 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 1797 + - uid: 574 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 1798 + - uid: 575 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 1799 + - uid: 576 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1800 + - uid: 577 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1801 + - uid: 578 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1802 + - uid: 579 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1803 + - uid: 580 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1804 + - uid: 581 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1805 + - uid: 582 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1806 + - uid: 583 components: - type: Transform pos: 6.5,15.5 parent: 1 -- proto: CableHV - entities: - - uid: 889 + - uid: 584 components: - type: Transform - pos: -6.5,-29.5 + pos: 7.5,0.5 parent: 1 - - uid: 902 + - uid: 585 components: - type: Transform - pos: -6.5,-28.5 + pos: 7.5,1.5 parent: 1 - - uid: 905 + - uid: 586 components: - type: Transform - pos: -5.5,-29.5 + pos: 9.5,5.5 parent: 1 - - uid: 906 + - uid: 587 components: - type: Transform - pos: -4.5,-29.5 + pos: 9.5,3.5 parent: 1 - - uid: 907 + - uid: 588 components: - type: Transform - pos: -3.5,-29.5 + pos: -2.5,-1.5 parent: 1 - - uid: 908 + - uid: 589 components: - type: Transform - pos: -3.5,-30.5 + pos: -2.5,-1.5 parent: 1 - - uid: 909 + - uid: 590 components: - type: Transform - pos: -2.5,-30.5 + pos: 10.5,-2.5 parent: 1 - - uid: 910 + - uid: 591 components: - type: Transform - pos: -1.5,-30.5 + pos: 7.5,-0.5 parent: 1 - - uid: 911 + - uid: 592 components: - type: Transform - pos: -0.5,-30.5 + pos: -1.5,-1.5 parent: 1 - - uid: 912 + - uid: 593 components: - type: Transform - pos: 0.5,-30.5 + pos: 1.5,-1.5 parent: 1 - - uid: 913 + - uid: 594 components: - type: Transform - pos: 1.5,-30.5 + pos: 8.5,4.5 parent: 1 - - uid: 914 + - uid: 595 components: - type: Transform - pos: 2.5,-30.5 + pos: 10.5,-4.5 parent: 1 - - uid: 915 + - uid: 596 components: - type: Transform - pos: 3.5,-30.5 + pos: 9.5,4.5 parent: 1 - - uid: 916 +- proto: CableHV + entities: + - uid: 597 components: - type: Transform - pos: 4.5,-30.5 + pos: -6.5,-29.5 parent: 1 - - uid: 917 + - uid: 598 components: - type: Transform - pos: 4.5,-29.5 + pos: -6.5,-28.5 parent: 1 - - uid: 918 + - uid: 599 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 1 + - uid: 612 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 919 + - uid: 613 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 920 + - uid: 614 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 921 + - uid: 615 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 922 + - uid: 616 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 923 + - uid: 617 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 924 + - uid: 618 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 925 + - uid: 619 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 926 + - uid: 620 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 927 + - uid: 621 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 928 + - uid: 622 components: - type: Transform pos: -1.5,-25.5 parent: 1 - - uid: 929 + - uid: 623 components: - type: Transform pos: -1.5,-24.5 parent: 1 - - uid: 930 + - uid: 624 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 1647 + - uid: 625 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 1771 + - uid: 626 components: - type: Transform pos: -5.5,-28.5 parent: 1 - proto: CableMV entities: - - uid: 941 + - uid: 627 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 942 + - uid: 628 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 943 + - uid: 629 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 944 + - uid: 630 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 945 + - uid: 631 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 946 + - uid: 632 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 947 + - uid: 633 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 948 + - uid: 634 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 949 + - uid: 635 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 950 + - uid: 636 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 951 + - uid: 637 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 952 + - uid: 638 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 953 + - uid: 639 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 954 + - uid: 640 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 955 + - uid: 641 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 956 + - uid: 642 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 957 + - uid: 643 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 958 + - uid: 644 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 959 + - uid: 645 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 960 + - uid: 646 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 961 + - uid: 647 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 962 + - uid: 648 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 963 + - uid: 649 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 964 + - uid: 650 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 965 + - uid: 651 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 966 + - uid: 652 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 967 + - uid: 653 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 968 + - uid: 654 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 969 + - uid: 655 components: - type: Transform pos: -1.5,-25.5 parent: 1 - - uid: 970 + - uid: 656 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 971 + - uid: 657 components: - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 972 + - uid: 658 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 973 + - uid: 659 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 974 + - uid: 660 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 975 + - uid: 661 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 976 + - uid: 662 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 977 + - uid: 663 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 978 + - uid: 664 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 979 + - uid: 665 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 980 + - uid: 666 components: - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 981 + - uid: 667 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 982 + - uid: 668 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 983 + - uid: 669 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 984 + - uid: 670 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 985 + - uid: 671 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 986 + - uid: 672 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 987 + - uid: 673 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 988 + - uid: 674 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 989 + - uid: 675 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 990 + - uid: 676 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 991 + - uid: 677 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 992 + - uid: 678 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 993 + - uid: 679 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 994 + - uid: 680 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 995 + - uid: 681 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 996 + - uid: 682 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 997 + - uid: 683 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 998 + - uid: 684 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 999 + - uid: 685 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1000 + - uid: 686 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1001 + - uid: 687 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1002 + - uid: 688 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1003 + - uid: 689 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1004 + - uid: 690 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1005 + - uid: 691 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1006 + - uid: 692 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1007 + - uid: 693 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1008 + - uid: 694 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1009 + - uid: 695 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1010 + - uid: 696 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1011 + - uid: 697 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1012 + - uid: 698 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 1013 + - uid: 699 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 1014 + - uid: 700 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1015 + - uid: 701 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1016 + - uid: 702 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1017 + - uid: 703 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 1018 + - uid: 704 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 1019 + - uid: 705 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 1020 + - uid: 706 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1021 + - uid: 707 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 1022 + - uid: 708 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1023 + - uid: 709 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1024 + - uid: 710 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 1025 + - uid: 711 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 1026 + - uid: 712 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1027 + - uid: 713 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1028 + - uid: 714 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 1029 + - uid: 715 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1030 + - uid: 716 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1031 + - uid: 717 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1032 + - uid: 718 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 1033 + - uid: 719 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1034 + - uid: 720 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 1035 + - uid: 721 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 1036 + - uid: 722 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 1037 + - uid: 723 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 1038 + - uid: 724 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 1039 + - uid: 725 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 1040 + - uid: 726 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 1041 + - uid: 727 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 1042 + - uid: 728 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1043 + - uid: 729 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1044 + - uid: 730 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1045 + - uid: 731 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1046 + - uid: 732 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1047 + - uid: 733 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1048 + - uid: 734 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1049 + - uid: 735 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1050 + - uid: 736 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 1051 + - uid: 737 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1052 + - uid: 738 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 1053 + - uid: 739 components: - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 1054 + - uid: 740 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 1055 + - uid: 741 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1056 + - uid: 742 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1057 + - uid: 743 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1058 + - uid: 744 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1059 + - uid: 745 components: - type: Transform pos: 3.5,-20.5 parent: 1 - - uid: 1060 + - uid: 746 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1061 + - uid: 747 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1062 + - uid: 748 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1063 + - uid: 749 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1064 + - uid: 750 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 1065 + - uid: 751 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1066 + - uid: 752 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1067 + - uid: 753 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1068 + - uid: 754 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 1069 + - uid: 755 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1070 + - uid: 756 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 1071 + - uid: 757 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 1072 + - uid: 758 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1073 + - uid: 759 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1074 + - uid: 760 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 1075 + - uid: 761 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1076 + - uid: 762 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1077 + - uid: 763 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 1078 + - uid: 764 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1079 + - uid: 765 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 1080 + - uid: 766 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1379 + - uid: 767 components: - type: Transform pos: -6.5,-29.5 parent: 1 - - uid: 1380 + - uid: 768 components: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 1381 + - uid: 769 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 1382 + - uid: 770 components: - type: Transform pos: -3.5,-29.5 parent: 1 - - uid: 1383 + - uid: 771 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 1384 + - uid: 772 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 1601 + - uid: 773 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 1652 + - uid: 774 components: - type: Transform pos: -0.5,-30.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 1770 + - uid: 775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + pos: -1.5,-1.5 parent: 1 -- proto: CarpetBlack - entities: - - uid: 647 + - uid: 776 components: - type: Transform - pos: -8.5,-25.5 + pos: -2.5,-1.5 parent: 1 - - uid: 648 + - uid: 777 components: - type: Transform - pos: -8.5,-24.5 + pos: 6.5,-21.5 parent: 1 - - uid: 649 + - uid: 778 components: - type: Transform - pos: -8.5,-23.5 + pos: 6.5,-20.5 parent: 1 - - uid: 650 + - uid: 779 components: - type: Transform - pos: -9.5,-25.5 + pos: 4.5,-20.5 parent: 1 - - uid: 651 + - uid: 780 components: - type: Transform - pos: -9.5,-24.5 + pos: 5.5,-20.5 parent: 1 - - uid: 652 + - uid: 781 components: - type: Transform - pos: -9.5,-23.5 + pos: 6.5,-22.5 parent: 1 -- proto: CarpetPurple +- proto: CableTerminal entities: - - uid: 562 + - uid: 782 components: - type: Transform - pos: -5.5,2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-28.5 parent: 1 - - uid: 563 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 783 components: - type: Transform - pos: -5.5,3.5 + pos: 0.036164522,8.750959 parent: 1 - - uid: 565 + - uid: 784 components: - type: Transform - pos: -4.5,2.5 + pos: -0.80500996,8.838582 parent: 1 - - uid: 566 + - uid: 785 components: - type: Transform - pos: -4.5,3.5 + pos: 2.3813057,-18.354 parent: 1 - - uid: 567 + - uid: 786 components: - type: Transform - pos: -4.5,4.5 + pos: 8.67259,-18.248854 parent: 1 - - uid: 568 + - uid: 787 components: - type: Transform - pos: -3.5,2.5 + pos: 8.269527,-18.564293 parent: 1 - - uid: 569 + - uid: 788 components: - type: Transform - pos: -3.5,3.5 + pos: 3.2750537,-18.634392 parent: 1 - - uid: 570 + - uid: 789 components: - type: Transform - pos: -3.5,4.5 + pos: 7.4458776,-18.529245 parent: 1 -- proto: CartridgeRailHighExplosive - entities: - - uid: 326 - components: - - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 393 + - uid: 790 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 478 + pos: 2.6616974,-18.599342 + parent: 1 + - uid: 791 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 847 + pos: 7.761318,-18.406574 + parent: 1 + - uid: 792 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 1400 + pos: 3.0121868,-18.231329 + parent: 1 +- proto: CardDeckNanotrasen + entities: + - uid: 793 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False -- proto: Catwalk + pos: -2.4614599,9.619713 + parent: 1 +- proto: CarpetBlack entities: - - uid: 148 + - uid: 794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 + pos: -8.5,-25.5 parent: 1 - - uid: 150 + - uid: 795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 + pos: -8.5,-24.5 parent: 1 - - uid: 152 + - uid: 796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 + pos: -8.5,-23.5 parent: 1 - - uid: 164 +- proto: CarpetPurple + entities: + - uid: 797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 + pos: 3.5,-18.5 parent: 1 - - uid: 251 + - uid: 798 components: - type: Transform - pos: 2.5,-5.5 + pos: 5.5,-19.5 parent: 1 - - uid: 252 + - uid: 799 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 +- proto: CartridgeRailHighExplosive + entities: + - uid: 932 + components: + - type: Transform + pos: 3.3832502,6.059848 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 3.4375036,6.480312 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 3.491757,6.480312 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 3.4239402,6.6837626 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 3.4239402,6.3039885 + parent: 1 +- proto: Catwalk + entities: + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 1 + - uid: 810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 1 + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 814 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 253 + - uid: 815 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 254 + - uid: 816 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 255 + - uid: 817 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 256 + - uid: 818 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 257 + - uid: 819 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 258 + - uid: 820 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 259 + - uid: 821 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 260 + - uid: 822 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 261 + - uid: 823 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 262 + - uid: 824 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 263 + - uid: 825 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 264 + - uid: 826 components: - type: Transform pos: 2.5,-16.5 parent: 1 - - uid: 360 + - uid: 827 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 392 + - uid: 828 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 412 + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-24.5 parent: 1 - - uid: 413 + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 1 - - uid: 415 + - uid: 831 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-22.5 parent: 1 - - uid: 416 + - uid: 832 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 1 - - uid: 418 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 1 - - uid: 420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 1 - - uid: 428 + - uid: 834 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 1 - - uid: 429 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-28.5 parent: 1 - - uid: 430 + - uid: 836 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-25.5 parent: 1 - - uid: 432 + - uid: 837 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-27.5 parent: 1 - - uid: 433 + - uid: 838 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 1 - - uid: 434 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-29.5 parent: 1 - - uid: 552 + - uid: 840 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 1 - - uid: 596 + - uid: 841 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 1 - - uid: 599 + - uid: 842 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-18.5 parent: 1 - - uid: 638 + - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-19.5 parent: 1 - - uid: 1660 + - uid: 844 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 1 - - uid: 1665 + - uid: 845 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-7.5 parent: 1 - - uid: 1666 + - uid: 846 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 1667 + - uid: 847 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 1668 + - uid: 848 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-5.5 parent: 1 - - uid: 1669 + - uid: 849 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 1670 + - uid: 850 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-4.5 parent: 1 - - uid: 1671 + - uid: 851 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 1 - - uid: 1672 + - uid: 852 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 1673 + - uid: 853 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 1678 + - uid: 854 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 1699 + - uid: 855 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 1700 + - uid: 856 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 1701 + - uid: 857 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1702 + - uid: 858 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 1703 + - uid: 859 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 1724 + - uid: 860 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1725 + - uid: 861 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1730 + - uid: 862 components: - type: Transform - pos: 8.5,4.5 + pos: 8.5,3.5 parent: 1 - - uid: 1758 + - uid: 863 components: - type: Transform - pos: 8.5,4.5 + pos: 8.5,2.5 parent: 1 - - uid: 1759 + - uid: 864 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 parent: 1 - - uid: 1760 + - uid: 865 components: - type: Transform - pos: 8.5,2.5 + pos: 9.5,3.5 parent: 1 - - uid: 1765 + - uid: 866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 + pos: 9.5,4.5 parent: 1 - - uid: 1773 + - uid: 867 components: - type: Transform - pos: 9.5,2.5 + pos: 0.5,-23.5 parent: 1 - - uid: 1774 + - uid: 868 components: - type: Transform - pos: 9.5,3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 1 - - uid: 1775 + - uid: 869 components: - type: Transform - pos: 9.5,4.5 + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 0.5,-26.5 parent: 1 - proto: ChairFolding entities: - - uid: 524 + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.4942985,11.499319 + parent: 1 + - uid: 873 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.363054,-19.397055 parent: 1 - - uid: 525 + - uid: 874 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.675554,-19.41268 parent: 1 - - uid: 526 + - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.675554,-19.41268 parent: 1 - - uid: 734 + - uid: 876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.750229,-22.76684 + pos: -3.5051608,4.552843 parent: 1 - - uid: 736 + - uid: 877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.718979,-23.907465 + rot: 3.141592653589793 rad + pos: -3.488885,2.6973746 parent: 1 - proto: ChairOfficeDark entities: - - uid: 559 + - uid: 878 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.325447,-29.204823 parent: 1 - - uid: 631 + - uid: 879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.422879,-19.352354 + pos: -5.5834303,-8.422228 parent: 1 - - uid: 724 + - uid: 880 components: - type: Transform - pos: -5.5834303,-8.422228 + rot: 3.141592653589793 rad + pos: 4.446555,-26.37038 parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 1772 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,7.5 + pos: 7.5064507,-26.37038 parent: 1 -- proto: ChairWood - entities: - - uid: 581 + - uid: 882 components: - type: Transform - pos: -5.4415607,3.1557019 + rot: 3.141592653589793 rad + pos: 5.9954076,-24.280783 parent: 1 - proto: ChemDispenser entities: - - uid: 470 + - uid: 883 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 722 + - uid: 884 components: - type: Transform pos: -5.5,-9.5 parent: 1 - proto: ChemMaster entities: - - uid: 688 + - uid: 885 components: - type: Transform pos: -6.5,-7.5 parent: 1 +- proto: ChurchWindow + entities: + - uid: 886 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 887 + components: + - type: Transform + pos: -8.767945,-21.830345 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: -10.7561,-22.430092 + parent: 1 - proto: CloningPod entities: - - uid: 677 + - uid: 889 components: - type: Transform pos: -5.5,-3.5 parent: 1 + - type: DeviceLinkSink + links: + - 939 - proto: ClosetEmergencyFilledRandom entities: - - uid: 607 + - uid: 890 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 617 + - uid: 891 components: - type: Transform pos: -6.5,-24.5 parent: 1 -- proto: ClothingBackpackDuffelSurgeryAdvancedFilled +- proto: ClosetToolFilled entities: - - uid: 887 + - uid: 892 components: - type: Transform - pos: -3.3814595,-5.8999166 + pos: -0.5606214,-24.496494 parent: 1 - - uid: 1374 + - type: Physics + fixedRotation: False + - uid: 893 components: - type: Transform - pos: -3.4363146,-5.5297155 + anchored: True + pos: -8.5,-17.5 parent: 1 - - uid: 1375 + - type: Physics + fixedRotation: False + bodyType: Static +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 894 components: - type: Transform - pos: -3.4363146,-5.337759 + pos: -4.6478863,-9.453101 parent: 1 -- proto: ClothingHeadHelmetImperialEVA +- proto: ClothingBeltSheathDSMSabreFilled entities: - - uid: 730 + - uid: 896 components: - type: Transform - parent: 645 + parent: 895 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 804 +- proto: ClothingHandsGlovesImperialGovernorGloves + entities: + - uid: 897 components: - type: Transform - parent: 748 + parent: 895 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 806 +- proto: ClothingHandsGlovesImperialLonggloves + entities: + - uid: 904 components: - type: Transform - parent: 805 + parent: 903 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 1639 + - uid: 905 components: - type: Transform - parent: 741 + parent: 903 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1641 +- proto: ClothingHeadHelmetImperialEVA + entities: + - uid: 58 components: - type: Transform - parent: 742 + parent: 56 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadsetEmpire - entities: - - uid: 619 + - uid: 63 components: - type: Transform - pos: -6.560283,-25.952425 - parent: 1 - - uid: 620 + parent: 61 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 906 components: - type: Transform - pos: -6.560283,-25.952425 - parent: 1 - - uid: 621 + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 907 components: - type: Transform - pos: -6.372783,-25.9993 - parent: 1 + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingMaskImperialCombatGasmask entities: - - uid: 1636 + - uid: 59 components: - type: Transform - parent: 741 + parent: 56 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1642 + - uid: 64 components: - type: Transform - parent: 742 + parent: 61 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterCoatImperialSoftsuit +- proto: ClothingMaskImperialGovernorMask entities: - - uid: 747 + - uid: 898 components: - type: Transform - parent: 645 + parent: 895 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 797 +- proto: ClothingNeckCloakImperialGovernor + entities: + - uid: 899 components: - type: Transform - parent: 748 + parent: 895 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 808 +- proto: ClothingNeckCrucifixGold + entities: + - uid: 914 + components: + - type: Transform + pos: 6.3914356,-18.430052 + parent: 1 +- proto: ClothingOuterCoatImperialGovernor + entities: + - uid: 900 components: - type: Transform - parent: 805 + parent: 895 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 1637 +- proto: ClothingOuterCoatImperialSoftsuit + entities: + - uid: 60 components: - type: Transform - parent: 741 + parent: 56 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1643 + - uid: 65 components: - type: Transform - parent: 742 + parent: 61 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesBootsMag + - uid: 908 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 909 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsImperialGovernorBoots entities: - - uid: 669 + - uid: 901 components: - type: Transform - parent: 645 + parent: 895 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 801 +- proto: ClothingShoesBootsMagDSM + entities: + - uid: 910 components: - type: Transform - parent: 748 + parent: 903 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 810 + - uid: 911 components: - type: Transform - parent: 805 + parent: 903 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 820 + - uid: 915 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 821 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 837 + - uid: 917 components: - type: Transform pos: 2.5,7.5 parent: 1 -- proto: Cobweb2 - entities: - - uid: 155 + - uid: 918 components: - type: Transform - pos: 9.5,-24.5 + pos: -5.5,9.5 parent: 1 - - uid: 802 + - uid: 919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + pos: -5.5,5.5 parent: 1 - - uid: 803 + - uid: 920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + rot: -1.5707963267948966 rad + pos: -2.5,11.5 parent: 1 -- proto: ComputerAdvancedRadar - entities: - - uid: 1497 + - uid: 921 components: - type: Transform - pos: 6.5,-23.5 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 parent: 1 -- proto: ComputerBankATM - entities: - - uid: 469 + - uid: 922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 + pos: -1.5,0.5 parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: ComputerCloningConsole - entities: - - uid: 680 + - uid: 923 components: - type: Transform - pos: -4.5,-3.5 + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 parent: 1 -- proto: ComputerRadar - entities: - - uid: 880 + - uid: 924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 parent: 1 -- proto: ComputerShuttle +- proto: Cobweb2 entities: - - uid: 813 + - uid: 925 components: - type: Transform - pos: 7.5,-23.5 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 parent: 1 - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: [] - disk_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - id_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: NamedModules - buttonNames: - - NOTHING - - Use signallers - - To fire main cannon - - Module D - - Module E -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 518 + - uid: 926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,5.5 + pos: 0.5,8.5 parent: 1 -- proto: ComputerTabletopAlert - entities: - - uid: 635 + - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: -3.5,2.5 parent: 1 - - uid: 838 + - uid: 928 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 1.5,3.5 parent: 1 -- proto: ComputerTabletopCommsShip + - uid: 930 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 1 +- proto: ComputerAlert entities: - - uid: 1536 + - uid: 937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-26.5 + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 parent: 1 -- proto: ComputerTabletopCrewMonitoring +- proto: ComputerBroken entities: - - uid: 868 + - uid: 938 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 +- proto: ComputerCloningConsole + entities: + - uid: 939 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 889: + - - CloningPodSender + - CloningPodReceiver + - - MedicalScannerSender + - CloningPodReceiver + 1241: + - - MedicalScannerSender + - MedicalScannerReceiver + - - CloningPodSender + - MedicalScannerReceiver +- proto: ComputerPowerMonitoring + entities: + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-26.5 parent: 1 -- proto: ComputerTabletopPowerMonitoring +- proto: ComputerRadar entities: - - uid: 623 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: ComputerTabletopAdvancedRadar + entities: + - uid: 942 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1 +- proto: ComputerTabletopAlert + entities: + - uid: 944 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-29.5 + pos: -2.5,-28.5 parent: 1 - - uid: 624 +- proto: ComputerTabletopCommsShip + entities: + - uid: 945 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 1 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-23.5 + pos: -2.5,-29.5 parent: 1 - - uid: 839 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: 1.5,-23.5 parent: 1 -- proto: ComputerTabletopSurveillanceCameraMonitor +- proto: ComputerTabletopShuttle entities: - - uid: 633 + - uid: 948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 + pos: 5.5,-23.5 parent: 1 -- proto: ComputerTargeting + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: [] + disk_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + id_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: DeviceLinkSource + linkedPorts: + 6: + - - Group1 + - SpaceArtilleryFire +- proto: ComputerTabletopTargeting entities: - - uid: 840 + - uid: 949 components: - type: Transform - pos: 8.5,-23.5 + pos: 4.5,-25.5 + parent: 1 + - type: TargetingConsole + cannonGroups: + all: + - 113 + - 114 + - 115 + - 116 + 70mm "Jeong" swarmrocket platform: + - 113 + - 114 + - 115 + - 116 + - uid: 950 + components: + - type: Transform + pos: 7.5,-25.5 parent: 1 - type: TargetingConsole cannonGroups: all: - - 545 - - 561 - - 1540 - - 1541 + - 113 + - 114 + - 115 + - 116 70mm "Jeong" swarmrocket platform: - - 545 - - 561 - - 1540 - - 1541 + - 113 + - 114 + - 115 + - 116 +- proto: ComputerWallmountBankATM + entities: + - uid: 951 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - type: ContainerContainer + containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False - proto: CoolantCartridge entities: - - uid: 534 + - uid: 953 components: - type: Transform - parent: 500 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 535 + - uid: 954 components: - type: Transform - parent: 500 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 536 + - uid: 955 components: - type: Transform - parent: 500 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8613,19 +10721,19 @@ entities: - type: InsideEntityStorage - proto: CoolantCartridge30 entities: - - uid: 501 + - uid: 956 components: - type: Transform - parent: 500 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 560 + - uid: 957 components: - type: Transform - parent: 500 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8633,24 +10741,32 @@ entities: - type: InsideEntityStorage - proto: CrateAutogunAmmo entities: - - uid: 1677 + - uid: 958 components: - type: Transform - pos: -2.5,11.5 + pos: -1.5,2.5 parent: 1 - - uid: 1679 + - uid: 959 components: - type: Transform - pos: -3.5,11.5 + pos: -1.5,3.5 parent: 1 - proto: CrateCoolant entities: - - uid: 500 + - uid: 952 components: - type: Transform pos: 2.5,6.5 parent: 1 - type: Lock + lockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_on.ogg + unlockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_off.ogg locked: False - type: EntityStorage air: @@ -8676,495 +10792,699 @@ entities: showEnts: False occludes: True ents: - - 560 - - 501 - - 536 - - 535 - - 534 + - 957 + - 956 + - 955 + - 954 + - 953 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: CrateSwarmerAmmo +- proto: CrateFoodMRE entities: - - uid: 1680 - components: - - type: Transform - pos: -2.5,10.5 - parent: 1 - - uid: 1681 + - uid: 960 components: - type: Transform - pos: -3.5,10.5 + pos: -5.5,5.5 parent: 1 -- proto: CryogenicSleepUnitSpawnerLateJoin +- proto: CrateJeongAmmo entities: - - uid: 610 + - uid: 961 components: - type: Transform - pos: -3.5,-24.5 + pos: 0.5,4.5 parent: 1 - - uid: 611 + - uid: 962 components: - type: Transform - pos: -3.5,-26.5 + pos: 0.5,3.5 parent: 1 -- proto: CurtainsBlackOpen +- proto: CrateVulcanAmmo entities: - - uid: 695 + - uid: 963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 + pos: 1.5,4.5 parent: 1 - - uid: 697 + - uid: 964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-1.5 + pos: 1.5,3.5 parent: 1 -- proto: CurtainsPurpleOpen +- proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 578 + - uid: 965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 + pos: -3.5,-24.5 parent: 1 - - uid: 659 + - uid: 966 components: - type: Transform - pos: -8.5,-23.5 + pos: -3.5,-26.5 parent: 1 - - uid: 660 +- proto: CurtainsBlack + entities: + - uid: 967 components: - type: Transform - pos: -8.5,-25.5 + rot: 3.141592653589793 rad + pos: -8.5,-24.5 parent: 1 - - uid: 661 + - uid: 968 components: - type: Transform - pos: -8.5,-24.5 + pos: -11.5,-23.5 parent: 1 -- proto: DoubleEmergencyOxygenTank +- proto: CurtainsBlackOpen entities: - - uid: 646 + - uid: 969 components: - type: Transform - parent: 645 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 768 + rot: 3.141592653589793 rad + pos: -10.5,-25.5 + parent: 1 + - uid: 970 components: - type: Transform - parent: 748 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 809 + rot: 3.141592653589793 rad + pos: -11.5,-24.5 + parent: 1 + - uid: 971 components: - type: Transform - parent: 805 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: Dresser - entities: - - uid: 579 + rot: 3.141592653589793 rad + pos: -8.5,-23.5 + parent: 1 + - uid: 972 components: - type: Transform - pos: -3.5,3.5 + rot: 3.141592653589793 rad + pos: -11.5,-22.5 parent: 1 -- proto: DresserFilled - entities: - - uid: 725 + - uid: 973 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-22.5 + pos: -6.5,-1.5 parent: 1 -- proto: DrinkColaCan - entities: - - uid: 739 + - uid: 974 components: - type: Transform - pos: -11.672104,-24.42309 - parent: 1 -- proto: DrinkGlass + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 1 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 1 +- proto: CurtainsPurpleOpen entities: - - uid: 704 + - uid: 978 components: - type: Transform - pos: -1.6902208,4.7378936 + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 - - uid: 705 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 912 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 913 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Dresser + entities: + - uid: 979 components: - type: Transform - pos: -1.4870958,4.7535186 + pos: -8.5,-22.5 parent: 1 - - uid: 706 + - type: Storage + storedItems: + 985: + position: 0,0 + _rotation: East + 980: + position: 2,0 + _rotation: South + 981: + position: 4,0 + _rotation: South + 982: + position: 0,2 + _rotation: South + 983: + position: 2,2 + _rotation: South + 984: + position: 4,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 980 + - 981 + - 982 + - 983 + - 984 + - 985 +- proto: DrinkBeerCan + entities: + - uid: 986 components: - type: Transform - pos: -1.3620958,4.5972686 + pos: -10.738575,-22.1497 parent: 1 - - uid: 707 + - uid: 987 + components: + - type: Transform + pos: -3.50918,3.8372777 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: -10.195317,-22.079603 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: -3.3586764,3.483025 + parent: 1 +- proto: DrinkBeerGrowler + entities: + - uid: 980 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 981 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 982 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 983 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 984 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False +- proto: DrinkCoconutWaterGlass + entities: + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.4607587,-25.832245 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 991 + components: + - type: Transform + pos: -5.3006854,4.105737 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: -5.7225714,4.6838393 + parent: 1 + - uid: 993 components: - type: Transform - pos: -1.5808458,4.4878936 + pos: -5.788966,4.1871176 parent: 1 - proto: DrinkRootBeerCan entities: - - uid: 757 + - uid: 994 components: - type: Transform pos: -5.30653,-19.372026 parent: 1 - proto: DrinkWineBottleFull entities: - - uid: 582 + - uid: 995 + components: + - type: Transform + pos: -3.5655012,11.610062 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: -0.33184934,8.71591 + parent: 1 + - uid: 997 components: - type: Transform - pos: -5.69732,2.8443413 + pos: 7.6518664,-23.18046 parent: 1 - proto: DrinkWineGlass entities: - - uid: 583 + - uid: 998 + components: + - type: Transform + pos: -1.0328281,8.575714 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: -3.845893,11.68016 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: -3.179963,11.575012 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: -1.3833175,8.663337 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 7.1798615,-23.359495 + parent: 1 + - uid: 1003 components: - type: Transform - pos: -5.35357,2.6412163 + pos: 7.440278,-23.619913 parent: 1 - proto: Dropper entities: - - uid: 720 + - uid: 1004 components: - type: Transform - pos: -4.53538,-9.439533 + pos: -5.2039843,-9.642988 parent: 1 - proto: DSMConscriptAmmoVendory entities: - - uid: 860 + - uid: 1005 components: - type: Transform - pos: 6.5,-0.5 + pos: 8.5,1.5 parent: 1 - proto: DSMConscriptGearVendory entities: - - uid: 595 + - uid: 1006 components: - type: Transform - pos: 6.5,-2.5 + pos: 8.5,-0.5 parent: 1 - proto: DSMConscriptShipVendory entities: - - uid: 1603 + - uid: 1007 components: - type: Transform pos: 1.5,1.5 parent: 1 -- proto: EncryptionKeyEmpire - entities: - - uid: 817 - components: - - type: Transform - parent: 816 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - proto: ExtinguisherCabinetFilled entities: - - uid: 881 + - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 882 + - uid: 1009 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 1 - - uid: 883 + - uid: 1010 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-20.5 parent: 1 - - uid: 884 + - uid: 1011 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 1 - - uid: 885 + - uid: 1012 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 1 -- proto: FireAxeCabinetFilled - entities: - - uid: 818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - proto: Firelock entities: - - uid: 208 + - uid: 1013 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 232 + - uid: 1014 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 758 + - uid: 1015 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 759 + - uid: 1016 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 760 + - uid: 1017 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 761 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1 - - uid: 764 + - uid: 1018 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 765 + - uid: 1019 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 766 + - uid: 1020 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 767 + - uid: 1021 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 769 + - uid: 1022 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 770 + - uid: 1023 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 771 + - uid: 1024 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 772 + - uid: 1025 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 773 + - uid: 1026 components: - type: Transform pos: -7.5,-21.5 parent: 1 - - uid: 774 + - uid: 1027 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 775 + - uid: 1028 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 854 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 888 + - uid: 1030 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 890 + - uid: 1031 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 891 + - uid: 1032 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-22.5 parent: 1 -- proto: FirelockEdge +- proto: FloodlightBroken entities: - - uid: 776 + - uid: 1033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + pos: 6.3343687,1.5250366 parent: 1 - - uid: 777 +- proto: FloorDrain + entities: + - uid: 1034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 1 - - uid: 778 + - type: Fixtures + fixtures: {} + - uid: 1035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 + pos: -3.5,-1.5 parent: 1 - - uid: 779 + - type: Fixtures + fixtures: {} +- proto: FoodBowlBigTrash + entities: + - uid: 1036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 + pos: 0.077132344,8.544015 parent: 1 -- proto: FloorDrain +- proto: FoodPacketPistachioTrash entities: - - uid: 691 + - uid: 1037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: -4.536465,4.209358 parent: 1 - - type: Fixtures - fixtures: {} -- proto: FoodBoxDonkpocketHonk +- proto: FoodPacketPopcornTrash entities: - - uid: 738 + - uid: 1038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.422104,-22.98559 + pos: -9.646851,-22.937117 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 7.078408,-0.70122194 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: -3.706387,9.840868 + parent: 1 +- proto: FoodPacketSemkiTrash + entities: + - uid: 1041 + components: + - type: Transform + pos: -0.7350528,5.5156784 + parent: 1 +- proto: FoodPacketStickTrash + entities: + - uid: 1042 + components: + - type: Transform + pos: -0.5434767,-28.729654 + parent: 1 +- proto: FoodPacketSusTrash + entities: + - uid: 1043 + components: + - type: Transform + pos: -5.447663,-28.58317 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 0.57957006,-28.33903 + parent: 1 +- proto: FoodPlateSmallTrash + entities: + - uid: 1045 + components: + - type: Transform + pos: -4.5162544,8.455652 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 0.5346668,-2.3862953 + parent: 1 +- proto: FoodPSBTrash + entities: + - uid: 1047 + components: + - type: Transform + pos: -5.422898,-25.990818 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 2.1904192,-3.1112895 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: -0.60484445,7.4808426 parent: 1 - proto: FoodSnackNutribrick entities: - - uid: 622 + - uid: 1050 components: - type: Transform pos: -6.497783,-26.421175 parent: 1 - proto: GasPassiveVent entities: - - uid: 609 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + pos: 2.5,-15.5 parent: 1 - proto: GasPipeBend entities: - - uid: 1424 + - uid: 1052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + - uid: 1053 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1433 + - uid: 1054 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1434 + - uid: 1055 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1447 + - uid: 1056 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 1452 + - uid: 1057 components: - type: Transform pos: -4.5,-12.5 parent: 1 - - uid: 1453 + - uid: 1058 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 1458 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 - - uid: 1459 + - uid: 1060 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 1 - - uid: 1467 + - uid: 1061 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-22.5 parent: 1 - - uid: 1468 + - uid: 1062 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 1486 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 1 - - uid: 1487 + - uid: 1064 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 1 - - uid: 1614 + - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-30.5 parent: 1 - - uid: 1615 + - uid: 1066 components: - type: Transform rot: -1.5707963267948966 rad @@ -9172,449 +11492,488 @@ entities: parent: 1 - proto: GasPipeFourway entities: - - uid: 1426 + - uid: 1067 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1456 + - uid: 1068 components: - type: Transform pos: -1.5,-19.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1427 + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1 + - uid: 1073 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 1428 + - uid: 1074 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 1429 + - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 1430 + - uid: 1076 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 - - uid: 1435 + - uid: 1077 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1436 + - uid: 1078 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 1437 + - uid: 1079 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 1438 + - uid: 1080 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 1439 + - uid: 1081 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 1440 + - uid: 1082 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 1441 + - uid: 1083 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 1442 + - uid: 1084 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - uid: 1443 + - uid: 1085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1444 + - uid: 1086 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 1446 + - uid: 1087 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - - uid: 1448 + - uid: 1088 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 1 - - uid: 1449 + - uid: 1089 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 - - uid: 1450 + - uid: 1090 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1451 + - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1460 + - uid: 1092 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 1461 + - uid: 1093 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 - - uid: 1462 + - uid: 1094 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 1 - - uid: 1463 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-21.5 parent: 1 - - uid: 1464 + - uid: 1096 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 1465 + - uid: 1097 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 - - uid: 1470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 1 - - uid: 1471 + - uid: 1098 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1472 + - uid: 1099 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1473 + - uid: 1100 components: - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 1474 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 1476 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 1 - - uid: 1477 + - uid: 1103 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 1478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 1 - - uid: 1479 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1480 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 1 - - uid: 1481 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 1 - - uid: 1482 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1483 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1484 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1485 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1491 + - uid: 1111 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 1498 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 - - uid: 1499 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 1 - - uid: 1500 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1501 + - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 1 - - uid: 1502 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 1 - - uid: 1503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 1 - - uid: 1616 + - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 1 - - uid: 1617 + - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-30.5 parent: 1 - - uid: 1618 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-30.5 parent: 1 - - uid: 1619 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - uid: 1620 + - uid: 1121 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1621 + - uid: 1122 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1623 + - uid: 1123 components: - type: Transform pos: 0.5,-27.5 parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 1398 + - uid: 1124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 + pos: 4.5,-22.5 parent: 1 - - uid: 1422 + - uid: 1125 components: - type: Transform - pos: -2.5,8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 parent: 1 - - uid: 1423 + - uid: 1126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - - uid: 1425 + rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 1127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 1132 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - - uid: 1431 + - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1432 + - uid: 1134 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 1445 + - uid: 1135 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 1454 + - uid: 1136 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 1455 + - uid: 1137 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-20.5 parent: 1 - - uid: 1457 + - uid: 1138 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 1 - - uid: 1466 + - uid: 1139 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 1 - - uid: 1469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - - uid: 1475 + - uid: 1140 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 1 - - uid: 1492 + - uid: 1141 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-13.5 parent: 1 + - uid: 1142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 - proto: GasPort entities: - - uid: 1410 + - uid: 1143 components: - type: Transform pos: -4.5,-28.5 parent: 1 - proto: GasValve entities: - - uid: 1613 + - uid: 1144 components: - type: Transform pos: -4.5,-29.5 parent: 1 - proto: GasVentPump entities: - - uid: 532 + - uid: 1145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 1 + - uid: 1146 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 608 + - uid: 1147 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 1403 + - uid: 1148 components: - type: Transform rot: -1.5707963267948966 rad @@ -9622,22 +11981,22 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1407 + - 24 + - 25 + - 22 + - 21 + - uid: 1149 components: - type: Transform pos: 0.5,4.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1408 + - 24 + - 25 + - 22 + - 21 + - uid: 1150 components: - type: Transform rot: -1.5707963267948966 rad @@ -9645,22 +12004,22 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1412 + - 24 + - 25 + - 22 + - 21 + - uid: 1151 components: - type: Transform pos: -9.5,-21.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1415 + - 24 + - 25 + - 22 + - 21 + - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad @@ -9668,11 +12027,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1416 + - 24 + - 25 + - 22 + - 21 + - uid: 1153 components: - type: Transform rot: 1.5707963267948966 rad @@ -9680,11 +12039,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1420 + - 24 + - 25 + - 22 + - 21 + - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad @@ -9692,13 +12051,18 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 + - 24 + - 25 + - 22 + - 21 - proto: GasVentScrubber entities: - - uid: 1402 + - uid: 1155 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 1156 components: - type: Transform rot: 1.5707963267948966 rad @@ -9706,11 +12070,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1405 + - 24 + - 25 + - 22 + - 21 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad @@ -9718,11 +12082,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1406 + - 24 + - 25 + - 22 + - 21 + - uid: 1158 components: - type: Transform rot: 3.141592653589793 rad @@ -9730,11 +12094,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1409 + - 24 + - 25 + - 22 + - 21 + - uid: 1159 components: - type: Transform rot: 1.5707963267948966 rad @@ -9742,11 +12106,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1413 + - 24 + - 25 + - 22 + - 21 + - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad @@ -9754,11 +12118,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1414 + - 24 + - 25 + - 22 + - 21 + - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad @@ -9766,11 +12130,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1417 + - 24 + - 25 + - 22 + - 21 + - uid: 1162 components: - type: Transform rot: -1.5707963267948966 rad @@ -9778,310 +12142,405 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1421 + - 24 + - 25 + - 22 + - 21 + - uid: 1163 components: - type: Transform pos: 5.5,-19.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 + - 24 + - 25 + - 22 + - 21 - proto: Girder entities: - - uid: 275 + - uid: 1164 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 276 + - uid: 1165 components: - type: Transform pos: 2.5,-12.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 606 + - uid: 1166 components: - type: Transform pos: -1.5,-26.5 parent: 1 - proto: Grille entities: - - uid: 36 + - uid: 1167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 1168 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 37 + - uid: 1169 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 38 + - uid: 1170 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 97 + - uid: 1171 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 146 + - uid: 1172 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 246 + - uid: 1173 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 247 + - uid: 1174 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 248 + - uid: 1175 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 270 + - uid: 1176 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 290 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1 - - uid: 315 + - uid: 1177 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 316 + - uid: 1178 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 317 + - uid: 1179 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 318 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 319 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1 - - uid: 320 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1 - - uid: 321 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 1 - - uid: 371 + - uid: 1180 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 372 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1 - - uid: 374 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 1 - - uid: 456 + - uid: 1181 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 464 + - uid: 1182 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1 - - uid: 498 + - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 508 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1 - - uid: 509 + - uid: 1184 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - - uid: 512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - - uid: 520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - - uid: 586 + - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 588 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1627 +- proto: Gyroscope + entities: + - uid: 1187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 + pos: -0.5,-27.5 parent: 1 - - uid: 1628 + - uid: 1188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -1.5,-24.5 parent: 1 -- proto: Gyroscope - entities: - - uid: 1746 + - uid: 1189 components: - type: Transform - pos: 0.5,-23.5 + pos: 6.5,6.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: -5.5,-30.5 parent: 1 -- proto: GyroscopeNfsd +- proto: HeadHuman entities: - - uid: 235 + - uid: 1191 components: - type: Transform - pos: -1.5,-24.5 + pos: -3.462973,10.391843 parent: 1 -- proto: JetpackBlackFilled +- proto: IdnaTorpedo entities: - - uid: 666 + - uid: 1193 components: - type: Transform - parent: 645 + parent: 1192 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 796 + - uid: 1194 components: - type: Transform - parent: 748 + parent: 1192 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 807 + - uid: 1195 components: - type: Transform - parent: 805 + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1196 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1197 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1198 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1199 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1200 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1201 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1202 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1203 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1204 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1205 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1206 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1207 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1208 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1209 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1210 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1211 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1212 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1213 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1214 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1215 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1216 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1217 + components: + - type: Transform + parent: 1192 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1218 + components: + - type: Transform + parent: 1192 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 1656 + - uid: 1219 components: - type: Transform pos: -2.9984322,-28.354212 parent: 1 - - uid: 1657 + - uid: 1220 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5525718,-28.844797 parent: 1 - - uid: 1658 + - uid: 1221 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5674338,-28.94886 parent: 1 -- proto: Jukebox - entities: - - uid: 1741 + - uid: 1222 components: - type: Transform - pos: 0.5,5.5 + pos: -9.432028,-17.3254 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 737 + - uid: 1223 components: - type: Transform - pos: -11.5,-22.5 + pos: -9.607809,-17.247274 parent: 1 -- proto: KitchenReagentGrinder +- proto: Jukebox entities: - - uid: 721 + - uid: 1224 components: - type: Transform - pos: -6.5,-9.5 + pos: -2.5,8.5 parent: 1 -- proto: LampGold +- proto: KitchenReagentGrinder entities: - - uid: 483 + - uid: 1225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.1576877,5.140425 + pos: -6.5,-9.5 parent: 1 - proto: LightStripInner entities: - - uid: 19 + - uid: 1226 components: - type: Transform rot: 1.5707963267948966 rad @@ -10090,7 +12549,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 156 + - uid: 1227 components: - type: Transform pos: -6.5,-12.5 @@ -10098,7 +12557,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 229 + - uid: 1228 components: - type: Transform rot: -1.5707963267948966 rad @@ -10107,7 +12566,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 344 + - uid: 1229 components: - type: Transform rot: 3.141592653589793 rad @@ -10116,7 +12575,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 667 + - uid: 1230 components: - type: Transform rot: 1.5707963267948966 rad @@ -10127,7 +12586,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 497 + - uid: 1231 components: - type: Transform pos: -5.5,-14.5 @@ -10135,7 +12594,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 539 + - uid: 1232 components: - type: Transform rot: -1.5707963267948966 rad @@ -10144,7 +12603,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 664 + - uid: 1233 components: - type: Transform rot: 3.141592653589793 rad @@ -10153,7 +12612,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 665 + - uid: 1234 components: - type: Transform rot: 1.5707963267948966 rad @@ -10162,80 +12621,92 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF -- proto: LockerFreezerBase - entities: - - uid: 701 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1 -- proto: LuxuryPen +- proto: MagazineLightRifleBoxSlugHE entities: - - uid: 585 + - uid: 1235 components: - type: Transform - pos: -3.8295627,4.734175 + pos: -1.793534,4.6197577 parent: 1 -- proto: MagazineNeedler - entities: - - uid: 138 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1236 components: - type: Transform - pos: 4.721819,-3.2654834 + pos: -1.4951398,4.6061945 parent: 1 - - uid: 144 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1237 components: - type: Transform - pos: 4.3233814,-3.3123584 + pos: -1.8206606,4.3078003 parent: 1 - - uid: 225 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1238 components: - type: Transform - pos: 4.674944,-3.6639209 + pos: -1.5222666,4.3213634 parent: 1 - - uid: 411 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] +- proto: MaterialBiomass + entities: + - uid: 1239 components: - type: Transform - pos: 4.2765064,-3.6639209 + pos: -5.541295,-3.6153278 parent: 1 - proto: MedicalBed entities: - - uid: 601 + - uid: 1240 components: - type: Transform pos: -3.5,-7.5 parent: 1 - proto: MedicalScanner entities: - - uid: 681 + - uid: 1241 components: - type: Transform pos: -6.5,-3.5 parent: 1 + - type: DeviceLinkSink + links: + - 939 - proto: MedkitAdvancedFilled entities: - - uid: 714 + - uid: 1242 components: - type: Transform pos: -3.2042627,-9.149912 parent: 1 - proto: MedkitBruteFilled entities: - - uid: 712 + - uid: 1243 components: - type: Transform pos: -3.6261377,-9.165537 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 713 + - uid: 1244 components: - type: Transform pos: -3.6261377,-9.399912 parent: 1 - proto: MedkitCombatFilled entities: - - uid: 708 + - uid: 1245 components: - type: Transform pos: -3.6678185,-8.195641 @@ -10243,1401 +12714,1564 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 709 + - uid: 1246 components: - type: Transform pos: -3.2355127,-8.177672 parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 710 + - uid: 1247 components: - type: Transform pos: -3.6573877,-8.443297 parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 715 + - uid: 1248 components: - type: Transform pos: -3.1730127,-9.446787 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 711 + - uid: 1249 components: - type: Transform pos: -3.2042627,-8.412047 parent: 1 - proto: MiningDrill entities: - - uid: 171 + - uid: 1250 components: - type: Transform pos: -5.622288,-17.293901 parent: 1 - - uid: 530 + - uid: 1251 components: - type: Transform pos: -5.316179,-17.278828 parent: 1 -- proto: OreBag +- proto: N14BedWood entities: - - uid: 236 + - uid: 1252 components: - type: Transform - pos: -5.700413,-17.450151 + pos: -8.5,-25.5 parent: 1 - - uid: 528 - components: - - type: Transform - pos: -5.363054,-17.435078 - parent: 1 -- proto: OreBox - entities: - - uid: 554 + - uid: 1253 components: - type: Transform - pos: -8.5,-19.5 + pos: -8.5,-23.5 parent: 1 -- proto: OreProcessor - entities: - - uid: 207 + - uid: 1254 components: - type: Transform - pos: -6.5,-17.5 + pos: -8.5,-24.5 parent: 1 -- proto: Paper - entities: - - uid: 1404 + - uid: 1255 components: - type: Transform - pos: 4.7522736,-24.147545 + pos: -11.5,-24.5 parent: 1 - - type: Paper - content: >- - NOTE FROM ENGINEERS: - - - we moved the cockpit in the most secure place on the ship. the downside is that the shuttle console's signals don't reach the main cannon - - - we made these signallers so you can use them to fire it still. it's unideal, but it's better than getting flung out a window at the first moment of engagement - - - DON'T LOSE THEM!!! - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: PaperBin20 - entities: - - uid: 632 + - uid: 1256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 + pos: -10.5,-25.5 parent: 1 - - uid: 904 + - uid: 1257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: -11.5,-23.5 parent: 1 -- proto: Pen - entities: - - uid: 662 + - uid: 1258 components: - type: Transform - pos: 7.504503,-20.35259 + pos: -11.5,-22.5 parent: 1 -- proto: PlasmaWindowDirectional +- proto: N14BedWoodBunk entities: - - uid: 597 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1 - - uid: 696 + - uid: 1259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: -8.5,-23.5 parent: 1 -- proto: PlastitaniumWindow - entities: - - uid: 592 + - uid: 1260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 + pos: -8.5,-24.5 parent: 1 - - uid: 593 + - uid: 1261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 + pos: -8.5,-25.5 parent: 1 - - uid: 594 + - uid: 1262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 + pos: -11.5,-22.5 parent: 1 - - uid: 746 + - uid: 1263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 + pos: -10.5,-25.5 parent: 1 - - uid: 1599 + - uid: 1264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -11.5,-24.5 parent: 1 - - uid: 1659 + - uid: 1265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 + pos: -11.5,-23.5 parent: 1 -- proto: PlushieSharkBlue +- proto: N14ChairOfficeGreenBroken entities: - - uid: 154 + - uid: 1266 components: - type: Transform - pos: -3.3709435,-7.382575 + rot: 3.141592653589793 rad + pos: -2.4491975,11.5481 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: PosterLegitBarDrinks +- proto: N14CrateAluminium entities: - - uid: 815 + - uid: 1192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 + pos: 0.5,5.5 parent: 1 -- proto: PottedPlantRandom + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1193 + - 1194 + - 1195 + - 1196 + - 1197 + - 1198 + - 1199 + - 1200 + - 1201 + - 1202 + - 1203 + - 1204 + - 1205 + - 1206 + - 1207 + - 1208 + - 1209 + - 1210 + - 1211 + - 1212 + - 1213 + - 1214 + - 1215 + - 1216 + - 1217 + - 1218 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: N14JunkMirror entities: - - uid: 792 + - uid: 1267 components: - type: Transform - pos: 5.5,-18.5 + rot: 3.141592653589793 rad + pos: -4.5,1.5 parent: 1 - - uid: 793 +- proto: N14JunkUrinal + entities: + - uid: 1268 components: - type: Transform - pos: 2.5,-18.5 + pos: -3.5,0.5 parent: 1 -- proto: PowerCellRecharger + - type: Fixtures + fixtures: {} +- proto: N14TableCounterBar entities: - - uid: 636 + - uid: 1269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 + rot: 1.5707963267948966 rad + pos: -0.5,8.5 parent: 1 -- proto: Poweredlight - entities: - - uid: 864 + - uid: 1270 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-9.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 1 - - uid: 872 + - uid: 1271 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-8.5 + pos: 0.5,8.5 parent: 1 -- proto: PoweredlightLED +- proto: N14TableMetalGrate entities: - - uid: 1488 + - uid: 1272 components: - type: Transform - pos: 2.5,-13.5 + rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 1 - - uid: 1504 + - uid: 1273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 + pos: -3.5,11.5 parent: 1 - - uid: 1505 + - uid: 1274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-29.5 + rot: 3.141592653589793 rad + pos: -10.5,-22.5 parent: 1 - - uid: 1506 +- proto: N14ToiletDirty + entities: + - uid: 1275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 parent: 1 - - uid: 1507 + - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-29.5 + pos: -6.5,-1.5 parent: 1 - - uid: 1508 +- proto: OreBag + entities: + - uid: 1277 components: - type: Transform - pos: -0.5,-24.5 + pos: -5.700413,-17.450151 parent: 1 - - uid: 1509 + - uid: 1278 components: - type: Transform - pos: 1.5,-22.5 + pos: -5.363054,-17.435078 parent: 1 - - uid: 1510 +- proto: OreBox + entities: + - uid: 1279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 + pos: -8.304914,-19.716951 parent: 1 - - uid: 1511 +- proto: OreProcessor + entities: + - uid: 1280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 + pos: -6.5,-17.5 parent: 1 - - uid: 1512 +- proto: Paper + entities: + - uid: 1281 components: - type: Transform - pos: -4.5,-24.5 + pos: -3.462973,10.194015 parent: 1 - - uid: 1513 + - type: Paper + content: He who paid for this with his life + - uid: 1282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-26.5 + pos: 8.1924,-1.2578125 parent: 1 - - uid: 1514 + - type: Paper + content: >- + We scavanged disposal to fix some issues. + + + Just gather all the trash and throw it into space. + + + -Engineering + - uid: 1283 components: - type: Transform - pos: -11.5,-22.5 + pos: -1.181829,4.4976873 parent: 1 - - uid: 1515 + - type: Paper + content: > + Explosive Slugthrower ammo. + + + Use it wisely. These are the last. +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1284 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-24.5 + pos: -3.5,-1.5 parent: 1 - - uid: 1516 +- proto: PlasmaWindowDirectional + entities: + - uid: 1285 components: - type: Transform - pos: -8.5,-21.5 + pos: -6.5,-0.5 parent: 1 - - uid: 1517 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-18.5 + pos: -6.5,-0.5 parent: 1 - - uid: 1518 +- proto: PlastitaniumWindow + entities: + - uid: 1287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-17.5 + rot: 1.5707963267948966 rad + pos: -2.5,12.5 parent: 1 - - uid: 1519 + - uid: 1288 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-19.5 + pos: -4.5,12.5 parent: 1 - - uid: 1520 + - uid: 1289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 1 - - uid: 1522 +- proto: PlushiePearCat + entities: + - uid: 1290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -2.4731965,11.600811 parent: 1 - - uid: 1523 + - uid: 1291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 + pos: 11.401751,-23.386135 parent: 1 - - uid: 1524 + - uid: 1292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 + pos: -11.523069,-23.564976 parent: 1 - - uid: 1525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - - uid: 1526 +- proto: PlushieSharkBlue + entities: + - uid: 1293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-9.5 + pos: -3.3709435,-7.382575 parent: 1 - - uid: 1527 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PosterLegitBarDrinks + entities: + - uid: 1294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + pos: -1.5,1.5 parent: 1 - - uid: 1528 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 1295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 + pos: -2.5,-12.5 parent: 1 - - uid: 1529 +- proto: Poweredlight + entities: + - uid: 1296 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: -6.5,-8.5 parent: 1 - - uid: 1530 + - uid: 1297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + rot: 3.141592653589793 rad + pos: 2.5,-16.5 parent: 1 - - uid: 1531 + - uid: 1298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + pos: 1.5,-22.5 parent: 1 - - uid: 1532 + - uid: 1299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 parent: 1 - - uid: 1533 + - uid: 1300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,5.5 + pos: -6.5,-21.5 parent: 1 - - uid: 1534 + - uid: 1301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,7.5 + pos: -4.5,-24.5 parent: 1 - - uid: 1535 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,7.5 + pos: -10.5,-25.5 parent: 1 - - uid: 1537 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,6.5 + pos: -4.5,-26.5 parent: 1 - - uid: 1538 + - uid: 1304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 + pos: -11.5,-22.5 parent: 1 - - uid: 1539 + - uid: 1305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,4.5 + pos: -1.5,-21.5 parent: 1 - - uid: 1543 + - uid: 1306 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-3.5 + pos: -7.5,-15.5 parent: 1 - - uid: 1546 + - uid: 1307 components: - type: Transform - pos: -1.5,0.5 + rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 1 - - uid: 1547 + - uid: 1308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 parent: 1 - - uid: 1548 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,2.5 + pos: -8.5,-19.5 parent: 1 - - uid: 1549 + - uid: 1310 components: - type: Transform - pos: 0.5,5.5 + pos: -10.5,-17.5 parent: 1 - - uid: 1550 + - uid: 1311 components: - type: Transform - pos: -1.5,5.5 + rot: 3.141592653589793 rad + pos: 7.5,-21.5 parent: 1 - - uid: 1551 + - uid: 1312 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 1313 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -6.5,-0.5 parent: 1 - - uid: 1552 + - uid: 1314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-15.5 + pos: -0.5,-14.5 parent: 1 - - uid: 1553 + - uid: 1315 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-15.5 + pos: -6.5,-8.5 parent: 1 - - uid: 1554 + - uid: 1316 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-20.5 + pos: -6.5,-3.5 parent: 1 - - uid: 1555 + - uid: 1317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - - uid: 1556 - components: - - type: Transform - pos: 6.5,-24.5 + pos: 8.5,0.5 parent: 1 - - uid: 1557 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 1 - - uid: 1558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -2.5,7.5 parent: 1 - - uid: 1559 + - uid: 1319 components: - type: Transform - pos: 7.5,-23.5 + pos: -5.5,5.5 parent: 1 - - uid: 1560 + - uid: 1320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 parent: 1 - - uid: 1561 + - uid: 1321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-20.5 + pos: -1.5,-2.5 parent: 1 - - uid: 1562 + - uid: 1322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-22.5 + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 parent: 1 - - uid: 1563 + - uid: 1323 components: - type: Transform - pos: 7.5,-18.5 + pos: 2.5,1.5 parent: 1 - - uid: 1564 + - uid: 1324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 1 - - uid: 1565 + - uid: 1325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: -5.5,-17.5 parent: 1 -- proto: PoweredlightRed - entities: - - uid: 1787 + - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,5.5 + pos: -2.5,-17.5 parent: 1 - - uid: 1807 + - uid: 1327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,1.5 + pos: 1.5,-12.5 parent: 1 - - uid: 1808 + - uid: 1328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 + pos: 5.5,-23.5 parent: 1 - - uid: 1809 + - uid: 1329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,9.5 + rot: 3.141592653589793 rad + pos: 7.5,-26.5 parent: 1 - - uid: 1811 + - uid: 1330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 + rot: 3.141592653589793 rad + pos: 4.5,-26.5 parent: 1 - - uid: 1812 + - uid: 1331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 parent: 1 -- proto: PoweredSmallLight - entities: - - uid: 1567 + - uid: 1332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-29.5 + pos: -8.5,-21.5 parent: 1 - - uid: 1568 + - uid: 1333 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-29.5 + pos: 1.5,-9.5 parent: 1 - - uid: 1569 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + pos: 1.5,4.5 parent: 1 - - uid: 1570 + - uid: 1335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + rot: 1.5707963267948966 rad + pos: -1.5,3.5 parent: 1 -- proto: Rack +- proto: PoweredlightRed entities: - - uid: 174 + - uid: 1336 components: - type: Transform - pos: 3.5,-3.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 522 + - uid: 1337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-17.5 + rot: -1.5707963267948966 rad + pos: 6.5,10.5 parent: 1 - - uid: 557 + - uid: 1338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-28.5 + pos: 2.5,10.5 parent: 1 - - uid: 558 + - uid: 1339 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-28.5 + pos: 10.5,-18.5 parent: 1 - - uid: 686 + - uid: 1340 components: - type: Transform - pos: -3.5,-9.5 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 parent: 1 - - uid: 687 + - uid: 1341 components: - type: Transform - pos: -3.5,-8.5 + rot: -1.5707963267948966 rad + pos: -9.5,-6.5 parent: 1 - - uid: 723 + - uid: 1342 components: - type: Transform - pos: 4.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 parent: 1 - - uid: 836 +- proto: PoweredSmallLight + entities: + - uid: 1343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 + rot: 3.141592653589793 rad + pos: -5.5,-30.5 parent: 1 - - uid: 1419 + - uid: 1344 components: - type: Transform - pos: 4.5,-24.5 + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 parent: 1 - - uid: 1625 + - uid: 1345 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,6.5 + pos: 3.5,6.5 parent: 1 - - uid: 1675 + - uid: 1346 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1676 + - uid: 1347 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,6.5 + pos: 11.5,-23.5 parent: 1 -- proto: Railing - entities: - - uid: 277 + - uid: 1348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: 2.5,-29.5 parent: 1 - - uid: 278 + - uid: 1349 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-14.5 + pos: 5.5,4.5 parent: 1 - - uid: 279 +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 1350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 parent: 1 - - uid: 280 +- proto: Rack + entities: + - uid: 1351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 parent: 1 - - uid: 281 + - uid: 1352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-28.5 parent: 1 - - uid: 282 + - uid: 1353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 parent: 1 - - uid: 448 + - uid: 1354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 + pos: -3.5,-9.5 parent: 1 - - uid: 449 + - uid: 1355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + pos: -3.5,-8.5 parent: 1 - - uid: 482 + - uid: 1356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 1357 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-17.5 + pos: 5.5,6.5 parent: 1 - - uid: 493 + - uid: 1358 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: 3.5,6.5 parent: 1 - - uid: 571 + - uid: 1359 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: Railing + entities: + - uid: 1361 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: 3.5,-25.5 parent: 1 - - uid: 572 + - uid: 1362 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,4.5 + pos: 4.5,-25.5 parent: 1 - - uid: 612 + - uid: 1363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 1369 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 1 - - uid: 615 + - uid: 1370 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 1 - - uid: 675 + - uid: 1371 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 676 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 678 + - uid: 1373 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 794 + - uid: 1374 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 799 + - uid: 1375 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 819 + - uid: 1376 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 1663 + - uid: 1377 components: - type: Transform - pos: -3.5,9.5 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 parent: 1 - - uid: 1744 + - uid: 1378 components: - type: Transform - pos: 11.5,-4.5 + rot: 3.141592653589793 rad + pos: 12.5,-19.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 265 + - uid: 1379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + pos: 11.5,-18.5 parent: 1 - - uid: 272 + - uid: 1380 components: - type: Transform - pos: 2.5,-5.5 + rot: -1.5707963267948966 rad + pos: -10.5,-8.5 parent: 1 - - uid: 495 + - uid: 1381 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,9.5 + pos: -9.5,-4.5 parent: 1 - - uid: 823 + - uid: 1382 components: - type: Transform - pos: 3.5,0.5 + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 parent: 1 - - uid: 833 + - uid: 1383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: -9.5,-6.5 parent: 1 -- proto: RailingCornerSmall - entities: - - uid: 450 + - uid: 1384 components: - type: Transform - pos: -0.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,4.5 parent: 1 - - uid: 1662 + - uid: 1385 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,10.5 + pos: 9.5,3.5 parent: 1 -- proto: RandomVendingSnacks - entities: - - uid: 1401 + - uid: 1386 components: - type: Transform - pos: 0.5,-20.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 1 -- proto: RCD - entities: - - uid: 780 + - uid: 1387 components: - type: Transform - pos: 2.4895868,-28.36768 + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 parent: 1 -- proto: RCDAmmo - entities: - - uid: 781 + - uid: 1388 components: - type: Transform - pos: 2.2552118,-28.539555 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 parent: 1 - - uid: 782 + - uid: 1389 components: - type: Transform - pos: 2.4114618,-28.539555 + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 parent: 1 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 436 + - uid: 1390 components: - type: Transform - pos: -12.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,17.5 parent: 1 - - uid: 437 + - uid: 1391 components: - type: Transform - pos: -12.5,-23.5 + rot: 3.141592653589793 rad + pos: 4.5,16.5 parent: 1 - - uid: 438 +- proto: RailingCorner + entities: + - uid: 1392 components: - type: Transform - pos: -12.5,-24.5 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 parent: 1 - - uid: 439 + - uid: 1393 components: - type: Transform - pos: -12.5,-25.5 + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 1 - - uid: 440 + - uid: 1394 components: - type: Transform - pos: -11.5,-25.5 + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 parent: 1 - - uid: 441 + - uid: 1395 components: - type: Transform - pos: -11.5,-26.5 + rot: 3.141592653589793 rad + pos: -7.5,9.5 parent: 1 - - uid: 442 + - uid: 1396 components: - type: Transform - pos: -10.5,-26.5 + rot: 3.141592653589793 rad + pos: -6.5,11.5 parent: 1 - - uid: 443 + - uid: 1397 components: - type: Transform - pos: -10.5,-27.5 + rot: 3.141592653589793 rad + pos: 2.5,16.5 parent: 1 - - uid: 642 + - uid: 1398 components: - type: Transform - pos: 12.5,-21.5 + pos: 2.5,-5.5 parent: 1 - - uid: 643 + - uid: 1399 components: - type: Transform - pos: 12.5,-22.5 + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 parent: 1 - - uid: 644 + - uid: 1400 components: - type: Transform - pos: 12.5,-23.5 + pos: 3.5,0.5 parent: 1 - - uid: 786 + - uid: 1401 components: - type: Transform - pos: 3.5,-17.5 + rot: -1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 787 + - uid: 1402 components: - type: Transform - pos: 4.5,-17.5 + pos: 13.5,-20.5 parent: 1 - - uid: 788 + - uid: 1403 components: - type: Transform - pos: 5.5,-17.5 + rot: 3.141592653589793 rad + pos: -12.5,-15.5 parent: 1 - - uid: 789 + - uid: 1404 components: - type: Transform - pos: 6.5,-17.5 + rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 1 - - uid: 850 + - uid: 1405 components: - type: Transform - pos: 5.5,-4.5 + rot: 3.141592653589793 rad + pos: -8.5,0.5 parent: 1 - - uid: 857 + - uid: 1406 components: - type: Transform - pos: 3.5,-4.5 + rot: 3.141592653589793 rad + pos: -9.5,-3.5 parent: 1 - - uid: 862 + - uid: 1407 components: - type: Transform - pos: 6.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 870 + - uid: 1408 components: - type: Transform - pos: 4.5,-4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 parent: 1 -- proto: ReinforcedWindow - entities: - - uid: 29 + - uid: 1409 components: - type: Transform - pos: -2.5,-8.5 + pos: 10.5,-4.5 parent: 1 - - uid: 33 + - uid: 1410 components: - type: Transform - pos: -2.5,-7.5 + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 parent: 1 - - uid: 117 +- proto: RailingCornerSmall + entities: + - uid: 1411 components: - type: Transform - pos: -2.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 parent: 1 - - uid: 370 + - uid: 1412 components: - type: Transform - pos: 2.5,-25.5 + rot: 3.141592653589793 rad + pos: 1.5,-5.5 parent: 1 - - uid: 373 + - uid: 1413 components: - type: Transform - pos: 1.5,-25.5 + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 parent: 1 - - uid: 377 + - uid: 1414 components: - type: Transform - pos: 1.5,-26.5 + pos: -0.5,-27.5 parent: 1 - - uid: 1605 + - uid: 1415 components: - type: Transform - pos: -2.5,-11.5 + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 parent: 1 - - uid: 1606 + - uid: 1416 components: - type: Transform - pos: -2.5,-15.5 + pos: -9.5,-7.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 parent: 1 -- proto: RemoteSignallerAdvanced +- proto: RCD entities: - - uid: 221 + - uid: 1418 components: - type: Transform - pos: 4.4483914,-24.476612 + pos: 2.4895868,-28.36768 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1418: - - Pressed: SpaceArtilleryFire - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 825 +- proto: RCDAmmo + entities: + - uid: 1419 components: - type: Transform - pos: 4.1604066,-24.174967 + pos: 2.2552118,-28.539555 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1418: - - Pressed: SpaceArtilleryFire - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 873 + - uid: 1420 components: - type: Transform - pos: 4.654095,-24.627434 + pos: 2.4114618,-28.539555 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1418: - - Pressed: SpaceArtilleryFire - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: RubberStampEmpire +- proto: ReinforcedPlasmaWindow entities: - - uid: 587 + - uid: 1421 components: - type: Transform - pos: -3.8295627,4.3123 + rot: 3.141592653589793 rad + pos: 2.5,-26.5 parent: 1 -- proto: SheetPlasma1 - entities: - - uid: 1542 + - uid: 1422 components: - type: Transform - pos: -6.2016025,-9.712741 + rot: 3.141592653589793 rad + pos: 2.5,-25.5 parent: 1 - - uid: 1544 + - uid: 1423 components: - type: Transform - pos: -6.4895864,-9.781297 + pos: -12.5,-22.5 parent: 1 - - uid: 1545 + - uid: 1424 components: - type: Transform - pos: -6.722717,-9.753875 + pos: -12.5,-23.5 parent: 1 -- proto: ShuttersNormalOpen - entities: - - uid: 480 + - uid: 1425 components: - type: Transform - pos: -5.5,12.5 + pos: -12.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 634 - - uid: 533 + - uid: 1426 components: - type: Transform - pos: -1.5,12.5 + pos: 4.5,-17.5 parent: 1 - - type: DeviceLinkSink - links: - - 634 - - uid: 542 + - uid: 1427 components: - type: Transform - pos: -2.5,12.5 + pos: 5.5,-17.5 parent: 1 - - type: DeviceLinkSink - links: - - 634 - - uid: 544 + - uid: 1428 components: - type: Transform - pos: -4.5,12.5 + pos: 6.5,-17.5 parent: 1 - - type: DeviceLinkSink - links: - - 634 - - uid: 575 + - uid: 1429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 + pos: 5.5,-4.5 parent: 1 - - type: DeviceLinkSink - links: - - 634 -- proto: SignalButton - entities: - - uid: 634 + - uid: 1430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 + pos: 3.5,-4.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 575: - - Pressed: Toggle - 533: - - Pressed: Toggle - 542: - - Pressed: Toggle - 544: - - Pressed: Toggle - 480: - - Pressed: Toggle - - uid: 753 + - uid: 1431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-26.5 + pos: 6.5,-4.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 492: - - Pressed: Toggle - 490: - - Pressed: Toggle - 489: - - Pressed: Toggle - 488: - - Pressed: Toggle - 487: - - Pressed: Toggle - 486: - - Pressed: Toggle - 485: - - Pressed: Toggle - 484: - - Pressed: Toggle - - uid: 1739 + - uid: 1432 components: - type: Transform - pos: 4.5,8.5 + pos: 4.5,-4.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 224: - - Pressed: Toggle - 1626: - - Pressed: Toggle -- proto: SignalButtonDirectional +- proto: ReinforcedWindow entities: - - uid: 543 + - uid: 1433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 + pos: -2.5,-8.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 663: - - Pressed: Toggle - - uid: 641 + - uid: 1434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 + pos: -2.5,-7.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 471: - - Pressed: Toggle - - uid: 751 + - uid: 1435 components: - type: Transform - pos: -7.5,-4.5 + pos: -2.5,-9.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 499: - - Pressed: Toggle - - uid: 755 + - uid: 1436 components: - type: Transform - pos: 10.5,-20.5 + pos: -2.5,-11.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 513: - - Pressed: Toggle - - uid: 1609 + - uid: 1437 components: - type: Transform - pos: 6.5,1.5 + pos: -2.5,-15.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 640: - - Pressed: Toggle -- proto: SignBridge +- proto: RomaineBible entities: - - uid: 814 + - uid: 1438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 + pos: 0.68456995,8.628288 parent: 1 - - uid: 843 + - uid: 1439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 + pos: 4.667796,-18.42695 parent: 1 -- proto: SignCargo +- proto: ShardGlass entities: - - uid: 744 + - uid: 1440 components: - type: Transform - pos: -2.5,-12.5 + pos: -5.0402684,2.5269613 parent: 1 -- proto: SignConference +- proto: SheetPlasma1 entities: - - uid: 762 + - uid: 1441 components: - type: Transform - pos: 0.5,-5.5 + pos: -6.2016025,-9.712741 parent: 1 -- proto: SignEngineering - entities: - - uid: 745 + - uid: 1442 components: - type: Transform - pos: -1.5,-23.5 + pos: -6.4895864,-9.781297 parent: 1 -- proto: SignEVA - entities: - - uid: 731 + - uid: 1443 components: - type: Transform - pos: 0.5,-12.5 + pos: -6.722717,-9.753875 parent: 1 - - uid: 763 +- proto: Shower + entities: + - uid: 1444 components: - type: Transform - pos: 0.5,-9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 -- proto: SinkWide + - type: Fixtures + fixtures: {} +- proto: ShuttersNormalOpen entities: - - uid: 694 + - uid: 1445 components: - type: Transform - pos: -3.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,12.5 parent: 1 - - uid: 849 + - type: DeviceLinkSink + links: + - 1448 + - uid: 1446 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-1.5 + pos: -4.5,12.5 parent: 1 - - uid: 861 + - type: DeviceLinkSink + links: + - 1448 + - uid: 1447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1448 +- proto: SignalButton + entities: + - uid: 1448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1445: + - - Pressed + - Toggle + 1447: + - - Pressed + - Toggle + 1446: + - - Pressed + - Toggle + - uid: 1449 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 127: + - - Pressed + - Toggle + 135: + - - Pressed + - Toggle + - uid: 1450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 136: + - - Pressed + - Toggle + - uid: 1451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 126: + - - Pressed + - Toggle +- proto: SignalButtonDirectional + entities: + - uid: 1452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 134: + - - Pressed + - Toggle + - uid: 1453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 128: + - - Pressed + - Toggle + - uid: 1454 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 132: + - - Pressed + - Toggle + - uid: 1455 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 133: + - - Pressed + - Toggle +- proto: SignArmory + entities: + - uid: 1456 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 1457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 +- proto: SignConference + entities: + - uid: 1458 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 1459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 1461 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 1 +- proto: SignEVA + entities: + - uid: 1462 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 +- proto: Sink + entities: + - uid: 1464 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 867 +- proto: SinkWide + entities: + - uid: 1465 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-1.5 + pos: -4.5,-1.5 parent: 1 - proto: SMESBasic entities: - - uid: 457 + - uid: 1466 components: - type: Transform pos: -6.5,-28.5 parent: 1 - proto: SoapSyndie entities: - - uid: 853 + - uid: 1467 components: - type: Transform pos: -6.4883375,-0.45261037 parent: 1 - proto: SodaDispenser entities: - - uid: 703 + - uid: 1468 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,3.5 + pos: -5.5,3.5 + parent: 1 +- proto: SpaceCash + entities: + - uid: 1469 + components: + - type: Transform + pos: -2.3738375,9.803488 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: -2.724327,9.426944 parent: 1 +- proto: SpeedLoader127x99 + entities: + - uid: 902 + components: + - type: Transform + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: StairDark entities: - - uid: 672 + - uid: 1471 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 679 + - uid: 1472 components: - type: Transform pos: -4.5,-5.5 parent: 1 - proto: StairStage entities: - - uid: 451 + - uid: 1473 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 1 - - uid: 564 + - uid: 1474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 parent: 1 - proto: StairStageDark entities: - - uid: 614 + - uid: 1475 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 1 - - uid: 832 + - uid: 1476 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 1600 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1 - proto: StoolBar entities: - - uid: 733 + - uid: 1477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + rot: 3.141592653589793 rad + pos: 0.5,7.5 parent: 1 - - uid: 735 + - uid: 1478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 + pos: -2.5,10.5 parent: 1 - proto: SubstationBasic entities: - - uid: 350 + - uid: 1479 components: - type: Transform pos: -6.5,-29.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 645 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 646 - - 666 - - 669 - - 730 - - 747 - - uid: 741 + - uid: 56 components: - type: Transform pos: 5.5,4.5 @@ -11666,17 +14300,15 @@ entities: showEnts: False occludes: True ents: - - 1636 - - 1637 - - 1638 - - 1639 - - uid: 742 + - 59 + - 60 + - 57 + - 58 + - uid: 61 components: - type: Transform pos: 5.5,3.5 parent: 1 - - type: Lock - locked: False - type: EntityStorage air: volume: 200 @@ -11701,2185 +14333,2217 @@ entities: showEnts: False occludes: True ents: - - 1643 - - 1642 - - 1641 - - 1640 - - uid: 748 + - 65 + - 64 + - 63 + - 62 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 1480 components: - type: Transform - pos: 0.5,8.5 + pos: -4.5,-30.5 parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 768 - - 796 - - 797 - - 801 - - 804 - - uid: 805 +- proto: Table + entities: + - uid: 1481 components: - type: Transform - pos: -1.5,8.5 + rot: 3.141592653589793 rad + pos: -5.5,-19.5 parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 806 - - 807 - - 808 - - 809 - - 810 -- proto: SurveillanceCameraRouterGeneral +- proto: TableCarpet entities: - - uid: 783 + - uid: 1482 components: - type: Transform - pos: -4.5,-30.5 + pos: -2.5,9.5 parent: 1 -- proto: SwarmrocketClip +- proto: TableFancyPurple entities: - - uid: 160 + - uid: 1483 components: - type: Transform - pos: 3.5939274,-3.408547 + pos: 3.5,-18.5 parent: 1 - - uid: 180 + - uid: 1484 components: - type: Transform - pos: 3.3595524,-3.7132344 + pos: 7.5,-18.5 parent: 1 -- proto: SyndicatePersonalAI - entities: - - uid: 740 + - uid: 1485 components: - - type: MetaData - desc: An Imperial model personal AI. - name: imperial personal AI - type: Transform - rot: 1.5707963267948966 rad - pos: -11.497063,-23.8065 + pos: 8.5,-18.5 parent: 1 -- proto: Table + - uid: 1486 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 +- proto: TableGlass entities: - - uid: 523 + - uid: 1487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-19.5 + pos: -6.5,-8.5 parent: 1 - - uid: 726 + - uid: 1488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 + pos: -6.5,-9.5 parent: 1 - - uid: 727 + - uid: 1489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-23.5 + pos: -5.5,-9.5 parent: 1 - - uid: 728 + - uid: 1490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 + pos: -4.5,-9.5 parent: 1 -- proto: TableFancyPurple +- proto: TableReinforced entities: - - uid: 856 + - uid: 1491 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 7.5,-23.5 parent: 1 - - uid: 859 + - uid: 1492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + rot: 3.141592653589793 rad + pos: 3.5,-25.5 parent: 1 - - uid: 863 + - uid: 1493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-25.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + - uid: 1502 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-26.5 + pos: -6.5,-26.5 parent: 1 - - uid: 865 + - uid: 1503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-26.5 + pos: -6.5,-25.5 parent: 1 -- proto: TableGlass + - uid: 1504 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 +- proto: TableWood entities: - - uid: 682 + - uid: 1506 components: - type: Transform - pos: -6.5,-8.5 + pos: -3.5,3.5 parent: 1 - - uid: 683 + - uid: 1507 components: - type: Transform - pos: -6.5,-9.5 + rot: -1.5707963267948966 rad + pos: -5.5,3.5 parent: 1 - - uid: 684 + - uid: 1508 components: - type: Transform - pos: -5.5,-9.5 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 parent: 1 - - uid: 685 + - uid: 1509 components: - type: Transform - pos: -4.5,-9.5 + rot: -1.5707963267948966 rad + pos: -5.5,4.5 parent: 1 -- proto: TableReinforced +- proto: TelecomServer entities: - - uid: 217 + - uid: 1510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: -1.5,-25.5 parent: 1 - - uid: 222 +- proto: ThrusterDSMWarship + entities: + - uid: 1511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 + pos: 0.5,10.5 parent: 1 - - uid: 241 + - uid: 1512 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-24.5 + pos: 1.5,-32.5 parent: 1 - - uid: 417 + - uid: 1513 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-22.5 + pos: 4.5,-32.5 parent: 1 - - uid: 419 + - uid: 1514 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-23.5 + pos: 5.5,-32.5 parent: 1 - - uid: 547 + - uid: 1515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + rot: 3.141592653589793 rad + pos: -2.5,-32.5 parent: 1 - - uid: 548 + - uid: 1516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 + rot: 3.141592653589793 rad + pos: 0.5,-32.5 parent: 1 - - uid: 550 + - uid: 1517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 + rot: 3.141592653589793 rad + pos: -3.5,-32.5 parent: 1 - - uid: 555 + - uid: 1518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-28.5 + rot: 3.141592653589793 rad + pos: -0.5,-32.5 parent: 1 - - uid: 613 + - uid: 1519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-26.5 + rot: 3.141592653589793 rad + pos: 3.5,-32.5 parent: 1 - - uid: 616 + - uid: 1520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-25.5 + rot: 1.5707963267948966 rad + pos: -7.5,2.5 parent: 1 - - uid: 628 + - uid: 1521 components: - type: Transform - pos: 7.5,-18.5 + rot: 1.5707963267948966 rad + pos: -7.5,3.5 parent: 1 - - uid: 629 + - uid: 1522 components: - type: Transform - pos: 7.5,-19.5 + rot: 1.5707963267948966 rad + pos: -7.5,4.5 parent: 1 - - uid: 630 + - uid: 1523 components: - type: Transform - pos: 7.5,-20.5 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 parent: 1 -- proto: TableWood - entities: - - uid: 580 + - uid: 1524 components: - type: Transform - pos: -5.5,2.5 + rot: -1.5707963267948966 rad + pos: 10.5,-18.5 parent: 1 - - uid: 698 + - uid: 1525 components: - type: Transform - pos: -1.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,-32.5 parent: 1 - - uid: 699 + - uid: 1526 components: - type: Transform - pos: -1.5,3.5 + pos: -0.5,10.5 parent: 1 - - uid: 700 + - uid: 1527 components: - type: Transform - pos: -1.5,4.5 + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 parent: 1 - - uid: 1743 +- proto: ToolboxElectricalFilled + entities: + - uid: 1528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: -3.4456987,-28.261448 parent: 1 -- proto: TelecomServer +- proto: ToolboxEmergencyFilled entities: - - uid: 816 + - uid: 1529 components: - type: Transform - pos: 0.5,-25.5 + pos: -6.497783,-25.358675 parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 817 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: ThrusterDSMWarship +- proto: ToolboxMechanicalFilled entities: - - uid: 24 + - uid: 1530 components: - type: Transform - pos: 0.5,10.5 + pos: -3.4456987,-28.464573 parent: 1 - - uid: 198 +- proto: TradeGoodWine + entities: + - uid: 1531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-32.5 + pos: -5.5,7.5 parent: 1 - - uid: 199 +- proto: TrashBag + entities: + - uid: 1532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-32.5 + pos: 8.414298,-1.3230925 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 8.646911,-1.12778 parent: 1 - - uid: 203 +- proto: UnionfallNemesisMothershipComputer + entities: + - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-32.5 + pos: 5.5,-3.5 parent: 1 - - uid: 204 +- proto: UnionfallShipNodeDSM + entities: + - uid: 1535 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-32.5 + pos: -5.5,-13.5 parent: 1 - - uid: 205 +- proto: VendingMachineCoffee + entities: + - uid: 1536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-32.5 + pos: 0.5,-18.5 parent: 1 - - uid: 211 +- proto: VendingMachineSalvage + entities: + - uid: 1537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-32.5 + pos: -4.5,-17.5 parent: 1 - - uid: 212 +- proto: VendingMachineStarkist + entities: + - uid: 1538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-32.5 + pos: 0.5,-20.5 parent: 1 - - uid: 214 +- proto: VendingMachineSustenance + entities: + - uid: 1539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-32.5 + pos: -1.5,0.5 parent: 1 - - uid: 238 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 + pos: 3.5,4.5 parent: 1 - - uid: 239 +- proto: VendingMachineYouTool + entities: + - uid: 1541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + rot: -1.5707963267948966 rad + pos: 8.5,0.5 parent: 1 - - uid: 240 +- proto: WallPlastitanium + entities: + - uid: 1542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,4.5 + pos: 10.5,-22.5 parent: 1 - - uid: 287 + - uid: 1543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 + rot: 3.141592653589793 rad + pos: 4.5,-22.5 parent: 1 - - uid: 294 + - uid: 1544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 + rot: 3.141592653589793 rad + pos: 2.5,-22.5 parent: 1 - - uid: 297 + - uid: 1545 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,2.5 + pos: 5.5,-22.5 parent: 1 - - uid: 322 + - uid: 1546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,3.5 + pos: -5.5,6.5 parent: 1 - - uid: 346 + - uid: 1547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: 3.5,-17.5 parent: 1 - - uid: 351 + - uid: 1548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-32.5 + pos: 12.5,-21.5 parent: 1 - - uid: 894 + - uid: 1549 components: - type: Transform - pos: -0.5,10.5 + pos: 12.5,-22.5 parent: 1 - - uid: 1768 + - uid: 1550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 + pos: 12.5,-23.5 parent: 1 -- proto: ToiletDirtyWater - entities: - - uid: 692 + - uid: 1551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + rot: 3.141592653589793 rad + pos: -5.5,12.5 parent: 1 - - uid: 693 + - uid: 1552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + rot: 3.141592653589793 rad + pos: -1.5,12.5 parent: 1 -- proto: ToolboxElectricalFilled - entities: - - uid: 625 + - uid: 1553 components: - type: Transform - pos: -3.4456987,-28.261448 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 1 -- proto: ToolboxEmergencyFilled - entities: - - uid: 618 + - uid: 1554 components: - type: Transform - pos: -6.497783,-25.358675 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 1 -- proto: ToolboxMechanicalFilled - entities: - - uid: 626 + - uid: 1555 components: - type: Transform - pos: -3.4456987,-28.464573 + rot: 3.141592653589793 rad + pos: -1.5,11.5 parent: 1 -- proto: UnionfallNemesisMothershipComputer - entities: - - uid: 210 + - uid: 1556 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: 9.5,2.5 parent: 1 -- proto: UnionfallShipNodeDSM - entities: - - uid: 151 + - uid: 1557 components: - type: Transform - pos: -5.5,-13.5 + rot: 3.141592653589793 rad + pos: 8.5,2.5 parent: 1 -- proto: VendingMachineCoffee - entities: - - uid: 732 + - uid: 1558 components: - type: Transform - pos: 1.5,4.5 + rot: 3.141592653589793 rad + pos: 8.5,3.5 parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 521 + - uid: 1559 components: - type: Transform - pos: -4.5,-17.5 + pos: -10.5,-26.5 parent: 1 -- proto: VendingMachineSovietSoda - entities: - - uid: 878 + - uid: 1560 components: - type: Transform - pos: 1.5,3.5 + pos: -12.5,-25.5 parent: 1 -- proto: VendingMachineSustenance - entities: - - uid: 877 + - uid: 1561 components: - type: Transform - pos: -1.5,0.5 + pos: -11.5,-25.5 parent: 1 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 743 + - uid: 1562 components: - type: Transform - pos: 3.5,4.5 + pos: -11.5,-26.5 parent: 1 -- proto: VendingMachineYouTool - entities: - - uid: 869 + - uid: 1563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -10.5,-27.5 parent: 1 -- proto: WallPlastitanium - entities: - - uid: 2 + - uid: 1564 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 3 + - uid: 1565 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 4 + - uid: 1566 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 5 + - uid: 1567 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 6 + - uid: 1568 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 7 + - uid: 1569 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 8 + - uid: 1570 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 11 + - uid: 1571 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 12 + - uid: 1572 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 13 + - uid: 1573 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 14 + - uid: 1574 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 15 + - uid: 1575 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 16 + - uid: 1576 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 18 + - uid: 1577 components: - type: Transform pos: -10.5,-16.5 parent: 1 - - uid: 23 + - uid: 1578 components: - type: Transform pos: 11.5,-27.5 parent: 1 - - uid: 25 + - uid: 1579 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 26 + - uid: 1580 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 27 + - uid: 1581 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 28 + - uid: 1582 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 30 + - uid: 1583 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 31 + - uid: 1584 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 32 + - uid: 1585 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 34 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 35 + - uid: 1587 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 39 + - uid: 1588 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 40 + - uid: 1589 components: - type: Transform pos: -10.5,-15.5 parent: 1 - - uid: 41 + - uid: 1590 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 43 + - uid: 1591 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 45 + - uid: 1592 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 46 + - uid: 1593 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 47 + - uid: 1594 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 49 + - uid: 1595 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 50 + - uid: 1596 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 51 + - uid: 1597 components: - type: Transform pos: 0.5,-21.5 parent: 1 - - uid: 52 + - uid: 1598 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 54 + - uid: 1599 components: - type: Transform pos: -0.5,-23.5 parent: 1 - - uid: 55 + - uid: 1600 components: - type: Transform pos: -1.5,-23.5 parent: 1 - - uid: 56 + - uid: 1601 components: - type: Transform pos: -2.5,-23.5 parent: 1 - - uid: 57 + - uid: 1602 components: - type: Transform pos: -3.5,-23.5 parent: 1 - - uid: 58 + - uid: 1603 components: - type: Transform pos: -4.5,-23.5 parent: 1 - - uid: 60 + - uid: 1604 components: - type: Transform pos: -6.5,-23.5 parent: 1 - - uid: 61 + - uid: 1605 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 62 + - uid: 1606 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 64 + - uid: 1607 components: - type: Transform pos: -3.5,-19.5 parent: 1 - - uid: 65 + - uid: 1608 components: - type: Transform pos: -3.5,-20.5 parent: 1 - - uid: 66 + - uid: 1609 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 67 + - uid: 1610 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 68 + - uid: 1611 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 69 + - uid: 1612 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 70 + - uid: 1613 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 71 + - uid: 1614 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 74 + - uid: 1615 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 75 + - uid: 1616 components: - type: Transform pos: -7.5,-20.5 parent: 1 - - uid: 76 + - uid: 1617 components: - type: Transform pos: -6.5,-20.5 parent: 1 - - uid: 77 + - uid: 1618 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 78 + - uid: 1619 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 80 + - uid: 1620 components: - type: Transform pos: -7.5,-22.5 parent: 1 - - uid: 81 + - uid: 1621 components: - type: Transform pos: -7.5,-23.5 parent: 1 - - uid: 82 + - uid: 1622 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 83 + - uid: 1623 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 84 + - uid: 1624 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 85 + - uid: 1625 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - uid: 86 + - uid: 1626 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - uid: 87 + - uid: 1627 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 91 + - uid: 1628 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 92 + - uid: 1629 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 93 + - uid: 1630 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 94 + - uid: 1631 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 95 + - uid: 1632 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 96 + - uid: 1633 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 98 + - uid: 1634 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 99 + - uid: 1635 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 100 + - uid: 1636 components: - type: Transform pos: -9.5,-16.5 parent: 1 - - uid: 101 + - uid: 1637 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 103 + - uid: 1638 components: - type: Transform pos: -7.5,-8.5 parent: 1 - - uid: 104 + - uid: 1639 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 105 + - uid: 1640 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 106 + - uid: 1641 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 107 + - uid: 1642 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 108 + - uid: 1643 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 109 + - uid: 1644 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 112 + - uid: 1645 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 113 + - uid: 1646 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 114 + - uid: 1647 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 115 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1 - - uid: 116 + - uid: 1648 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 118 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1 - - uid: 120 + - uid: 1649 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 121 + - uid: 1650 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 122 + - uid: 1651 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 123 + - uid: 1652 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 124 + - uid: 1653 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 125 + - uid: 1654 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 126 + - uid: 1655 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 127 + - uid: 1656 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 128 + - uid: 1657 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 129 + - uid: 1658 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 130 + - uid: 1659 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 131 + - uid: 1660 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 132 + - uid: 1661 components: - type: Transform pos: 11.5,-26.5 parent: 1 - - uid: 133 + - uid: 1662 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 134 + - uid: 1663 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 135 + - uid: 1664 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 136 + - uid: 1665 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 139 + - uid: 1666 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 143 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 1 - - uid: 147 + - uid: 1667 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 149 + - uid: 1668 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 157 + - uid: 1669 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 165 + - uid: 1670 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 166 + - uid: 1671 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 167 + - uid: 1672 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 168 + - uid: 1673 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 1 - - uid: 172 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 1 - - uid: 173 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 1 - - uid: 181 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - - uid: 182 + - uid: 1674 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 183 + - uid: 1675 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 184 + - uid: 1676 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 185 + - uid: 1677 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 186 + - uid: 1678 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 187 + - uid: 1679 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 188 + - uid: 1680 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 189 + - uid: 1681 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 190 + - uid: 1682 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 191 + - uid: 1683 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 192 + - uid: 1684 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 193 + - uid: 1685 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 194 + - uid: 1686 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 200 + - uid: 1687 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 201 + - uid: 1688 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 202 + - uid: 1689 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 226 + - uid: 1690 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 230 + - uid: 1691 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 233 + - uid: 1692 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 243 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 1 - - uid: 249 + - uid: 1693 components: - type: Transform pos: 10.5,-23.5 parent: 1 - - uid: 250 + - uid: 1694 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 266 + - uid: 1695 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 267 + - uid: 1696 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 268 + - uid: 1697 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 269 + - uid: 1698 components: - type: Transform pos: 9.5,-20.5 parent: 1 - - uid: 283 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 1 - - uid: 284 + - uid: 1699 components: - type: Transform pos: 10.5,-24.5 parent: 1 - - uid: 285 + - uid: 1700 components: - type: Transform pos: 11.5,-24.5 parent: 1 - - uid: 286 + - uid: 1701 components: - type: Transform pos: 10.5,-25.5 parent: 1 - - uid: 288 + - uid: 1702 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 291 + - uid: 1703 components: - type: Transform pos: 2.5,-21.5 parent: 1 - - uid: 292 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 1 - - uid: 293 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 1 - - uid: 296 + - uid: 1704 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 298 + - uid: 1705 components: - type: Transform pos: 8.5,-22.5 parent: 1 - - uid: 299 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1 - - uid: 300 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 1 - - uid: 301 + - uid: 1706 components: - type: Transform - pos: 3.5,-25.5 + rot: 3.141592653589793 rad + pos: 9.5,-25.5 parent: 1 - - uid: 302 + - uid: 1707 components: - type: Transform - pos: 3.5,-26.5 + rot: 3.141592653589793 rad + pos: 9.5,-24.5 parent: 1 - - uid: 303 + - uid: 1708 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 304 + - uid: 1709 components: - type: Transform pos: 4.5,-27.5 parent: 1 - - uid: 305 + - uid: 1710 components: - type: Transform pos: 5.5,-27.5 parent: 1 - - uid: 306 + - uid: 1711 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 307 + - uid: 1712 components: - type: Transform pos: 7.5,-27.5 parent: 1 - - uid: 308 + - uid: 1713 components: - type: Transform pos: 8.5,-27.5 parent: 1 - - uid: 309 + - uid: 1714 components: - type: Transform pos: -8.5,-20.5 parent: 1 - - uid: 310 + - uid: 1715 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 311 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 1 - - uid: 312 + - uid: 1716 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 313 + - uid: 1717 components: - type: Transform pos: -11.5,-21.5 parent: 1 - - uid: 323 + - uid: 1718 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 325 + - uid: 1719 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 328 + - uid: 1720 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 329 + - uid: 1721 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 330 + - uid: 1722 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 331 + - uid: 1723 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 332 + - uid: 1724 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 333 + - uid: 1725 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 334 + - uid: 1726 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 335 + - uid: 1727 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 336 + - uid: 1728 components: - type: Transform pos: -2.5,-26.5 parent: 1 - - uid: 337 + - uid: 1729 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 338 + - uid: 1730 components: - type: Transform pos: -3.5,-27.5 parent: 1 - - uid: 339 + - uid: 1731 components: - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 340 + - uid: 1732 components: - type: Transform pos: -5.5,-27.5 parent: 1 - - uid: 341 + - uid: 1733 components: - type: Transform pos: -6.5,-27.5 parent: 1 - - uid: 342 + - uid: 1734 components: - type: Transform pos: 8.5,-28.5 parent: 1 - - uid: 343 + - uid: 1735 components: - type: Transform pos: 8.5,-29.5 parent: 1 - - uid: 347 + - uid: 1736 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 349 + - uid: 1737 components: - type: Transform pos: 8.5,-30.5 parent: 1 - - uid: 352 + - uid: 1738 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 355 + - uid: 1739 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 356 + - uid: 1740 components: - type: Transform pos: -5.5,-31.5 parent: 1 - - uid: 358 + - uid: 1741 components: - type: Transform pos: -1.5,-31.5 parent: 1 - - uid: 361 + - uid: 1742 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 362 + - uid: 1743 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 363 + - uid: 1744 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 364 + - uid: 1745 components: - type: Transform pos: 1.5,-31.5 parent: 1 - - uid: 365 + - uid: 1746 components: - type: Transform pos: 0.5,-31.5 parent: 1 - - uid: 366 + - uid: 1747 components: - type: Transform pos: -0.5,-31.5 parent: 1 - - uid: 367 + - uid: 1748 components: - type: Transform pos: -2.5,-31.5 parent: 1 - - uid: 368 + - uid: 1749 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 369 + - uid: 1750 components: - type: Transform pos: -4.5,-31.5 parent: 1 - - uid: 375 + - uid: 1751 components: - type: Transform pos: 2.5,-27.5 parent: 1 - - uid: 376 + - uid: 1752 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 378 + - uid: 1753 components: - type: Transform pos: 1.5,-27.5 parent: 1 - - uid: 379 + - uid: 1754 components: - type: Transform pos: 1.5,-29.5 parent: 1 - - uid: 380 + - uid: 1755 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 381 + - uid: 1756 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 382 + - uid: 1757 components: - type: Transform pos: -1.5,-29.5 parent: 1 - - uid: 385 + - uid: 1758 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 396 + - uid: 1759 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 407 + - uid: 1760 components: - type: Transform pos: -11.5,-19.5 parent: 1 - - uid: 408 + - uid: 1761 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 409 + - uid: 1762 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 410 + - uid: 1763 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 477 + - uid: 1764 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 1 - - uid: 479 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - - uid: 529 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-22.5 parent: 1 - - uid: 537 + - uid: 1767 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 540 + - uid: 1768 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 541 + - uid: 1769 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - uid: 589 + - uid: 1770 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - uid: 603 + - uid: 1771 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 604 + - uid: 1772 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 690 + - uid: 1773 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 798 + - uid: 1774 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 824 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 1 - - uid: 826 + - uid: 1775 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 848 + - uid: 1776 components: - type: Transform pos: 10.5,-26.5 parent: 1 - - uid: 851 + - uid: 1777 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 855 + - uid: 1778 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 866 + - uid: 1779 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 886 + - uid: 1780 components: - type: Transform pos: -9.5,-14.5 parent: 1 - - uid: 1521 + - uid: 1781 components: - type: Transform pos: -9.5,-15.5 parent: 1 - - uid: 1598 + - uid: 1782 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1608 + - uid: 1783 components: - type: Transform pos: -9.5,-8.5 parent: 1 + - uid: 1784 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 1785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 1786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 1787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 1788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 1789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 1 - proto: WallPlastitaniumCMM entities: - - uid: 42 + - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - - uid: 102 + - uid: 1791 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 1 - - uid: 153 + - uid: 1792 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 1 - - uid: 159 + - uid: 1793 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-1.5 parent: 1 - - uid: 163 + - uid: 1794 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 - - uid: 517 + - uid: 1795 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 1 - - uid: 1635 + - uid: 1796 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 1 - - uid: 1764 + - uid: 1797 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 1 - - uid: 1767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 314 + - uid: 1798 components: - type: Transform pos: -12.5,-21.5 parent: 1 - - uid: 405 + - uid: 1799 components: - type: Transform pos: -12.5,-16.5 parent: 1 - - uid: 431 + - uid: 1800 components: - type: Transform pos: -7.5,6.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 245 + - uid: 1801 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 435 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1 - - uid: 756 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 177 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 1 - - uid: 271 + - uid: 1802 components: - type: Transform pos: 10.5,-19.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 406 + - uid: 1803 components: - type: Transform pos: -12.5,-19.5 parent: 1 - - uid: 785 + - uid: 1804 components: - type: Transform pos: -7.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 327 + - uid: 1805 components: - type: Transform pos: -8.5,-29.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 242 + - uid: 1806 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 1165 + - uid: 1807 components: - type: Transform pos: 8.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 345 + - uid: 1808 components: - type: Transform pos: 9.5,-29.5 parent: 1 - proto: WallPlastitaniumDSM entities: - - uid: 161 + - uid: 1809 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 227 + - uid: 1810 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 228 + - uid: 1811 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 231 + - uid: 1812 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 353 + - uid: 1813 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 1 - - uid: 354 + - uid: 1814 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 1 - - uid: 357 + - uid: 1815 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 1 - - uid: 359 + - uid: 1816 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - - uid: 386 + - uid: 1817 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 387 + - uid: 1818 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 388 + - uid: 1819 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 421 + - uid: 1820 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-28.5 parent: 1 - - uid: 422 + - uid: 1821 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-32.5 parent: 1 - - uid: 423 + - uid: 1822 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 1 - - uid: 424 + - uid: 1823 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-32.5 parent: 1 - - uid: 425 + - uid: 1824 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,10.5 parent: 1 - - uid: 426 + - uid: 1825 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 427 + - uid: 1826 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - - uid: 444 + - uid: 1827 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 1 - - uid: 445 + - uid: 1828 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - - uid: 446 + - uid: 1829 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1 - - uid: 474 + - uid: 1830 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 475 + - uid: 1831 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 481 + - uid: 1832 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 502 + - uid: 1833 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 503 + - uid: 1834 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 504 + - uid: 1835 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - uid: 505 + - uid: 1836 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 1 - - uid: 506 + - uid: 1837 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 1 - - uid: 507 + - uid: 1838 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 1 - - uid: 590 + - uid: 1839 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 591 + - uid: 1840 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 605 + - uid: 1841 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-32.5 parent: 1 - - uid: 670 + - uid: 1842 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 671 + - uid: 1843 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 729 + - uid: 1844 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 749 + - uid: 1845 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-28.5 parent: 1 - - uid: 892 + - uid: 1846 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-31.5 parent: 1 - - uid: 895 + - uid: 1847 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 896 + - uid: 1848 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 897 + - uid: 1849 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 1 - - uid: 899 + - uid: 1850 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 - - uid: 900 + - uid: 1851 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 901 + - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 1376 + - uid: 1853 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - - uid: 1377 + - uid: 1854 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1622 + - uid: 1855 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - - uid: 1712 + - uid: 1856 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1726 + - uid: 1857 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1729 + - uid: 1858 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1749 + - uid: 1859 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1750 + - uid: 1860 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1751 + - uid: 1861 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1752 + - uid: 1862 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1753 + - uid: 1863 components: - type: Transform pos: 5.5,18.5 parent: 1 - - uid: 1754 + - uid: 1864 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1755 + - uid: 1865 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1756 + - uid: 1866 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1757 + - uid: 1867 components: - type: Transform pos: 3.5,17.5 parent: 1 +- proto: WardrobeBlack + entities: + - uid: 895 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 899 + - 898 + - 900 + - 897 + - 902 + - 901 + - 896 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 903 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 904 + - 912 + - 910 + - 906 + - 905 + - 907 + - 908 + - 913 + - 911 + - 909 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WarpPointShip entities: - - uid: 1602 + - uid: 1868 components: + - type: MetaData + name: DSM Nemesis - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 637 + - uid: 1869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 + pos: 1.5,-22.5 parent: 1 +- proto: WeaponDonorRevolverMadrugad + entities: + - uid: 985 + components: + - type: Transform + parent: 979 + - type: RevolverAmmoProvider + chambers: + - null + - null + - null + - null + - null + - null + - null + - type: Physics + canCollide: False - proto: WeaponFlareGun entities: - - uid: 546 + - uid: 1870 components: - type: Transform pos: -5.634655,-19.159256 parent: 1 - proto: WeaponTurretNeedler entities: - - uid: 573 + - uid: 1871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - type: ContainerContainer containers: @@ -13887,6 +16551,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -13895,14 +16567,22 @@ entities: showEnts: False occludes: True ent: null + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 574 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13917,14 +16597,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1610 + linkedConsoleId: 950 + - uid: 1873 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13939,14 +16631,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1611 + linkedConsoleId: 950 + - uid: 1874 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13961,14 +16665,23 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 -- proto: WeaponTurretVulcan + linkedConsoleId: 950 +- proto: WeaponTurretPDT entities: - - uid: 527 + - uid: 1875 components: - type: Transform - pos: 13.5,-25.5 + rot: 3.141592653589793 rad + pos: 2.5,16.5 parent: 1 - type: ContainerContainer containers: @@ -13976,21 +16689,24 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 874 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 + pos: 13.5,-25.5 parent: 1 - type: ContainerContainer containers: @@ -13998,21 +16714,25 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 875 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,16.5 + rot: -1.5707963267948966 rad + pos: -12.5,-15.5 parent: 1 - type: ContainerContainer containers: @@ -14020,17 +16740,21 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 876 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1878 components: - type: Transform pos: 7.5,-32.5 @@ -14041,17 +16765,21 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 879 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1879 components: - type: Transform pos: -6.5,-32.5 @@ -14062,17 +16790,21 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 1604 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1880 components: - type: Transform rot: 3.141592653589793 rad @@ -14084,21 +16816,25 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 1607 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 + rot: -1.5707963267948966 rad + pos: -8.5,0.5 parent: 1 - type: ContainerContainer containers: @@ -14106,21 +16842,27 @@ entities: showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot + machine_board: !type:Container showEnts: False occludes: True - ent: null - gun_chamber: !type:ContainerSlot + ents: [] + machine_parts: !type:Container showEnts: False occludes: True - ent: null + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 1655 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 +- proto: WeaponTurretVulcan + entities: + - uid: 1882 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-4.5 + pos: 9.5,3.5 parent: 1 - type: ContainerContainer containers: @@ -14128,6 +16870,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -14136,13 +16886,17 @@ entities: showEnts: False occludes: True ent: null + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 840 - - uid: 1682 + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 + - uid: 1883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 parent: 1 - type: ContainerContainer containers: @@ -14150,6 +16904,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -14158,38 +16920,24 @@ entities: showEnts: False occludes: True ent: null + - type: ApcPowerReceiver + powerLoad: 5 + - type: PointCannon + linkedConsoleId: 950 + - type: Battery + startingCharge: 0 - proto: WindoorSecure entities: - - uid: 516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 1 - - uid: 549 + - uid: 1884 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 551 + - uid: 1885 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 1 - - uid: 515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1 ... diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml new file mode 100644 index 00000000000..17bd5eb0cdc --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml @@ -0,0 +1,87 @@ +- type: entity + parent: Paper + id: UnionfallDSMCadetNote + name: Mandate disciplinary regiment briefing + components: + - type: Paper + content: | + DIVINE SOL MANDATE + DISCIPLINARY REGIMENT BRIEFING + + Soldiers of the Regiment, + + You serve in a Mandate disciplinary regiment — + a formation composed of disgraced soldiers, + criminals and condemned veterans. + + Mandate wastes no useful servant. + + In the Taypan sector our patrol fleet has detected + the remnants of a rebel warfleet belonging to the + New Crescent Workers League. + + Communications failure prevents reinforcement. + Therefore this battle falls to us alone. + + Consider this your opportunity for redemption. + + ------------------------------------------------ + + OBJECTIVE + + Destroy the enemy Cloner Databases located aboard + their warships. + + These devices allow rebel forces to continuously + return to the battlefield. + + Eliminate them and the rebellion dies here. + + Methods: + + • Destroy them using ship weaponry + • Board enemy vessels and sabotage them + + Sabotage procedure: + - Interaction time: 10 seconds + - Detonation timer: 60 seconds + + Enemy technicians may disarm the device. So defend it till your last breath. + + ------------------------------------------------ + + HADAL TIDE + + At the beginning of the operation both fleets are + contained within protective barriers. + + Duration: 20 minutes. + + Use this time to: + + • Organize ship crews + • Deploy fighters + • Form boarding parties + + Once the barrier collapses, + the fleet engagement will begin. + + ------------------------------------------------ + + ORDERS + + 1. Report to the Knight-Bannaret + or the Grand Steward. + + 2. Join an operational ship crew + or acquire a fighter voucher. + + 3. Deploy through the shipyard console. + + 4. Follow Mandate fleet command. + + Redemption is earned through obedience. + + FOR THE KAISER! + + GLORY TO MANDATE! \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml new file mode 100644 index 00000000000..33c75d4cff1 --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml @@ -0,0 +1,65 @@ +- type: entity + parent: Paper + id: UnionfallDSMShipCaptainNote + name: engineering corps report + components: + - type: Paper + content: | + REGIMENT BATTALION + ENGINEERING CORPS REPORT + + Sir, + + I do not wish to speak poorly, + but given our trust I must be honest. + + Keeping this rusted wreck running + is a miracle. The ship is literally + falling apart. + + Supplies have been scarce, the same + engine oil has circulated far too long, + and much of the vessel has rusted and + become filthy. + + Some of the weapons were also corroded. + We emptied them to remove the rust. + + Be sure to reload them before battle. + + ------------------------------------------------ + + SHIP STATUS + + To improve your survival chances in the + upcoming engagements we relocated the + bridge to a more secure position. + + The move was rushed however, and some + prisoners have already turned the old + bridge into a makeshift bar. + + Please excuse the ship's shortcomings. + + The prisoners we carry must either reach + redemption soon, or we must reach our + destination before they worsen the + situation further. + + For the Kaiser! + + ------------------------------------------------ + + NOTE + + Your belongings have been moved to the + new bridge. + + We are aware that some items are missing. + During the relocation several prisoners + managed to loot part of your property. + + We recovered most of it, however we + suspect that your special gun may + currently be somewhere in the + dormitories. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml new file mode 100644 index 00000000000..2edaf7d1199 --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml @@ -0,0 +1,86 @@ +- type: entity + parent: Paper + id: UnionfallNCWLCadetNote + name: NCWL revolutionary cadet briefing + components: + - type: Paper + content: | + NEW CRESCENT WORKERS LEAGUE + REVOLUTIONARY SOLDIER BRIEFING + + Comrade, + + After the fall of Nova Belraska, + the revolutionary forces of the + New Crescent Workers League have + withdrawn to the Taypan sector. + + Our fleet now operates from the + converted freighter "Dear Clementine". + + The Divine Sol Mandate has detected + our presence and is moving to crush + what they believe to be the final + remnants of the revolution. + + They are mistaken. + + ------------------------------------------------ + + OBJECTIVE + + Destroy the Mandate Cloner Databases + located aboard their warships. + + These systems allow imperial soldiers + to endlessly return to battle. + + Destroy them and the Mandate fleet + will collapse. + + Methods: + + • Destroy them using ship weapons + • Board enemy vessels and sabotage them + + Sabotage procedure: + - Interaction time: 10 seconds + - Detonation timer: 60 seconds + + Enemy engineers may disarm the device. + + ------------------------------------------------ + + HADAL TIDE + + At the start of the operation both + fleets are confined within a defensive + barrier. + + Duration: 20 minutes. + + Use this time to: + + • Organize crews + • Prepare fighters + • Coordinate with command + + When the barrier falls, + the battle begins. + + ------------------------------------------------ + + ORDERS TO ALL SOLDIERS + + 1. Report to the Kommissar or Admiral. + 2. Join an active ship crew or obtain + a fighter voucher. + 3. Deploy via the shipyard console. + 4. Maintain formation and follow orders. + + The revolution survives only if we fight. + + Stand firm, comrade. + + Long live the Workers. + Long live the Revolution. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml new file mode 100644 index 00000000000..a3ad6a19160 --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml @@ -0,0 +1,54 @@ +- type: entity + parent: Paper + id: UnionfallNCWLShipCaptainNote + name: Unionfallnotes + components: + - type: Paper + content: | + NEW CRESCENT WORKERS LEAGUE + ENGINEERING SECTION REPORT + + Comrade Commander, + + Since the loss of our station we + have received no supplies and have + been travelling for a considerable + time. + + I understand that your expectation + of me is to keep this vessel + operational. + + However, without resupply for much + longer, I fear the ship will + eventually lose its ability to + function if we do not reach our + new home soon. + + ------------------------------------------------ + + ENGINEERING STATUS + + My intention is not to damage + morale. + + The engineering team is already + working tirelessly to keep the + ship together and I am doing my + best to maintain their spirits. + + This information remains strictly + between you and me. + + I have not informed them of the + situation. + + To keep morale high I continue + to assure them that everything + is under control. + + ------------------------------------------------ + + Everything for the Cause. + + Glory to the Workers. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml index aec5d0efa39..7ec079e6ac4 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml @@ -22,7 +22,7 @@ UnionfallShipCaptainNCWL: [ 1, 1 ] UnionfallShipCrewNCWL: [ 2, 2 ] UnionfallLeaderNCWL: [ 1, 1 ] - UnionfallOfficerNCWL: [ 5, 5 ] + UnionfallOfficerNCWL: [ 3, 3 ] UnionfallDoctorNCWL: [ 5, 5 ] - UnionfallRiflemanNCWL: [ 50, 50 ] - UnionfallCadetNCWL: [ 50, 50 ] + UnionfallRiflemanNCWL: [ 10, 10 ] + UnionfallCadetNCWL: [ 20, 20 ] diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml index 82d45563306..bf79f15c3a5 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml @@ -9,8 +9,7 @@ gridComponents: - type: BlockShipWeaponProjectileGrid - type: PreventPilot - # - type: SelfDeleteGrid //haha this broke because of using this for antilag .2 | 2025 - # timeToDelete: 1200 # 20 minutes + - type: UnionfallGraceBarrier - type: VesselIcon iffIcon: sprite: _Crescent/ShipIcons/ifficons.rsi diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml index b17d906055f..6c3e3100fbc 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml @@ -9,8 +9,7 @@ gridComponents: - type: BlockShipWeaponProjectileGrid - type: PreventPilot - # - type: SelfDeleteGrid //haha this broke because of using this for antilag .2 | 2025 - # timeToDelete: 1200 # 20 minutes + - type: UnionfallGraceBarrier - type: VesselIcon iffIcon: sprite: _Crescent/ShipIcons/ifficons.rsi diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml index ca4324f08e3..83d601b952b 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml @@ -22,7 +22,7 @@ UnionfallShipCaptainDSM: [ 1, 1 ] UnionfallShipCrewDSM: [ 2, 2 ] UnionfallLeaderDSM: [ 1, 1 ] - UnionfallOfficerDSM: [ 5, 5 ] + UnionfallOfficerDSM: [ 3, 3 ] UnionfallDoctorDSM: [ 5, 5 ] - UnionfallRiflemanDSM: [ 50, 50 ] - UnionfallCadetDSM: [ 50, 50 ] + UnionfallRiflemanDSM: [ 10, 10 ] + UnionfallCadetDSM: [ 20, 20 ] diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml index 6983d4ceae5..c613d5e46ef 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml @@ -44,7 +44,7 @@ equipment: neck: ClothingNeckIFFCyan jumpsuit: ClothingUniformJumpsuitImperialCombat - outerClothing: ClothingOuterHardsuitImperialSoldier + outerClothing: ClothingOuterCoatVictorian shoes: ClothingShoesBootsMagDSM belt: ClothingBeltAssaultFilledRifleman gloves: ClothingHandsGlovesImperialLonggloves @@ -53,14 +53,15 @@ pocket2: ExGrenade ears: ClothingHeadsetEmpire id: LevymanPDA - suitstorage: WeaponSniperDSMLegax + suitstorage: JetpackBlackFilled eyes: ClothingEyesHudSecurity inhand: - - BookUnionfallDSMGuide - - JetpackBlackFilled + - UnionfallDSMCadetNote + storage: back: - - BoxMRE - - WeaponPistolComplianceImperial - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - VoidsuitKitDSM + - WeaponPistolComplianceImperial + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml index 72bbbd7d324..5e5a0717a0c 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml @@ -49,7 +49,7 @@ head: ClothingHeadHatImperialSurgeon neck: ClothingNeckIFFCyan jumpsuit: ClothingUniformJumpsuitImperialSurgeon - outerClothing: ClothingOuterHardsuitImperialWorker + outerClothing: ClothingOuterCoatAuthorityChirurgeon shoes: ClothingShoesBootsMagDSM belt: ClothingBeltAssaultFilledMedic eyes: ClothingEyesHudMedSec @@ -61,19 +61,17 @@ suitstorage: WeaponPistolNeoVolker back: ClothingBackpackSatchelMedical inhand: - - BookUnionfallDSMGuide - - JetpackBlackFilled + - UnionfallDSMCadetNote storage: back: - - DefibrillatorCompact - - BoxMRE - - MedkitCombatFilled - - OmnizineChemistryBottle - - Bloodpack - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CrowbarRed - - HandHeldMassScannerEE + - DefibrillatorCompact + - MedkitCombatFilled + - OmnizineChemistryBottle + - Bloodpack + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml index d34b76978ca..5ba7799ecd9 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml @@ -6,6 +6,9 @@ requirements: - !type:FactionRequirement factionID: "DSM" + - !type:CharacterSpeciesRequirement + species: + - Human - !type:CharacterWhitelistRequirement - !type:CharacterOverallTimeRequirement min: 20000 @@ -80,15 +83,16 @@ id: UnionfallLeaderDSMGear equipment: jumpsuit: ClothingUniformJumpsuitImperialGovernor - neck: ClothingNeckIFFCyan + neck: ClothingNeckImperialGreatcoat back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM - head: ClothingHeadHatImperialBicorne + head: ClothingHeadHatImperialPeakedCap + gloves: ClothingHandsGlovesImperialLonggloves outerClothing: ClothingOuterHardsuitImperialKnight id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle ears: ClothingHeadsetEmpire suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity @@ -96,7 +100,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolNeoVolker - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - WeaponPistolNeoVolker + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml index 5c38662786a..70d0c330372 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml @@ -6,6 +6,9 @@ requirements: - !type:FactionRequirement factionID: "DSM" + - !type:CharacterSpeciesRequirement + species: + - Human - !type:CharacterOverallTimeRequirement min: 20000 - !type:CharacterTraitRequirement @@ -79,15 +82,16 @@ id: UnionfallOfficerDSMGear equipment: jumpsuit: ClothingUniformJumpsuitImperialGovernor - neck: ClothingNeckIFFCyan + neck: ClothingNeckCloakImperialCapelet back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM head: ClothingHeadHatImperialBeret - outerClothing: ClothingOuterHardsuitImperialCommand + gloves: ClothingHandsGlovesImperialLonggloves + outerClothing: ClothingOuterHardsuitImperialKnight id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle ears: ClothingHeadsetEmpire suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity @@ -95,7 +99,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolNeoVolker - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - WeaponPistolNeoVolker + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml index c715c360d25..515a9311447 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml @@ -59,11 +59,11 @@ suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity inhand: - - BookUnionfallDSMGuide + - UnionfallDSMCadetNote - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolComplianceImperial - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - WeaponPistolComplianceImperial + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml index c40aec4c741..403deaedb45 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml @@ -6,6 +6,9 @@ requirements: - !type:FactionRequirement factionID: "DSM" + - !type:CharacterSpeciesRequirement + species: + - Human - !type:CharacterOverallTimeRequirement min: 20000 - !type:CharacterTraitRequirement @@ -79,18 +82,23 @@ id: UnionfallShipCaptainDSMGear equipment: jumpsuit: ClothingUniformJumpsuitMilitaryCaptain - neck: ClothingNeckIFFCyan + neck: ClothingNeckCloakImperialGovernor back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM - head: ClothingHeadHatImperialPeakedCap - outerClothing: ClothingOuterCoatImperialParade + head: ClothingHeadHatImperialBicorne + gloves: ClothingHandsGlovesImperialLonggloves + outerClothing: ClothingOuterHardsuitImperialCommand id: KnightPDA belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolNeoVolker + suitstorage: JetpackBlackFilled ears: ClothingHeadsetEmpire eyes: ClothingEyesHudSecurity + inhand: + - UnionfallDSMShipCaptainNote storage: back: - - VoidsuitKitDSM - - BoxMRE - - WeaponPistolNeoVolker + - ClothingMaskImperialCombatGasmask + - HandHeldMassScannerEE + - CrowbarRed diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml index 4aa7fe47ddf..e7f58070791 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml @@ -85,14 +85,16 @@ id: LevymanPDA belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolNeoVolker ears: ClothingHeadsetEmpire eyes: ClothingEyesHudSecurity outerClothing: ClothingOuterHardsuitImperialWorker - suitstorage: WeaponPistolNeoVolker + suitstorage: JetpackBlackFilled inhand: - - BookUnionfallDSMGuide - - JetpackBlackFilled + - UnionfallDSMCadetNote + storage: back: - - BoxMRE - - WeaponPistolNeoVolker + - ClothingMaskImperialCombatGasmask + - HandHeldMassScannerEE + - CrowbarRed diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml index 88f3d3434c7..e24fa65ac5b 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml @@ -50,7 +50,7 @@ equipment: neck: ClothingNeckIFFOrange jumpsuit: ClothingUniformJumpsuitNCWL - outerClothing: ClothingOuterHardsuitNCWLInfantry + outerClothing: ClothingOuterCoatTrench shoes: ClothingShoesBootsMagNCWL belt: ClothingBeltNCWLPouchesFilledRifleman back: ClothingBackpackNCWL @@ -58,15 +58,18 @@ pocket2: ExGrenade ears: ClothingHeadsetNCWL id: NCWLHomeguardSoldatPDA - suitstorage: WeaponSniperNCWLNovomosin + suitstorage: JetpackBlackFilled gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - BookUnionfallNCWLGuide - - JetpackBlackFilled + - UnionfallNCWLCadetNote + storage: back: - - BoxMRE - - WeaponPistolComrade - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - VoidsuitKitNCWL + - WeaponPistolComrade + - CrowbarRed + - HandHeldMassScannerEE + + diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml index a2ec056c770..2ffb745e152 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml @@ -57,26 +57,24 @@ belt: ClothingBeltNCWLPouchesFilledMedic pocket1: DoubleEmergencyOxygenTankFilled pocket2: ParamedHypo - outerClothing: ClothingOuterHardsuitNCWLMedi + outerClothing: ClothingOuterCoatAuthorityChirurgeon head: ClothingHeadHatNCWLCapsoftMedical suitstorage: WeaponPistolT91 back: ClothingBackpackSatchelMedical gloves: ClothingHandsGlovesNitrile eyes: ClothingEyesHudMedSec inhand: - - BookUnionfallNCWLGuide - - JetpackBlackFilled + - UnionfallNCWLCadetNote storage: back: - - DefibrillatorCompact - - BoxMRE - - MedkitCombatFilled - - OmnizineChemistryBottle - - Bloodpack - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CrowbarRed - - HandHeldMassScannerEE + - DefibrillatorCompact + - MedkitCombatFilled + - OmnizineChemistryBottle + - Bloodpack + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml index f3d97ed0470..533ad9b7305 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml @@ -85,21 +85,20 @@ id: NCWLFactionLeaderPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterArmorNCWLOpremeCarapace + outerClothing: ClothingOuterHardsuitNCWLPetya head: ClothingHeadHatNCWLBeretAdmiral belt: ClothingBeltNCWLPouchesFilledKommissar pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle back: ClothingBackpackNCWL suitstorage: WeaponSniperNCWLNovomosin gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - ClothingOuterHardsuitNCWLPetya - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolT91 - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - WeaponPistolT91 + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml index 277e8ff74ff..133ed1c969d 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml @@ -84,21 +84,20 @@ id: NCWLHomeguardSquadCaptainPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterArmorNCWLCarapace + outerClothing: ClothingOuterHardsuitNCWLPetya head: ClothingHeadHatNCWLKommissarHat belt: ClothingBeltNCWLPouchesFilledKommissar pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle back: ClothingBackpackNCWL suitstorage: WeaponSniperNCWLNovomosin gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - ClothingOuterHardsuitNCWLInfantry - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolT91 - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - WeaponPistolT91 + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml index 856d37e4a7b..61c36482f90 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml @@ -64,12 +64,14 @@ suitstorage: WeaponSniperNCWLNovomosin gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL + inhand: - - BookUnionfallNCWLGuide + - UnionfallNCWLCadetNote - JetpackBlackFilled + storage: back: - - BoxMRE - - WeaponPistolComrade - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - WeaponPistolComrade + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml index 540da2f85ea..a415ec18409 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml @@ -84,16 +84,22 @@ id: NCWLHomeguardLeaderPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterCoatJacketJamrock + outerClothing: ClothingOuterArmorNCWLCarapace head: ClothingHeadHatNCWLBeretAdmiral - belt: ClothingBeltAssaultFilledCrew #looks better + belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolT91 back: ClothingBackpackNCWL gloves: ClothingHandsGlovesCombat + suitstorage: JetpackBlackFilled eyes: ClothingEyesHudSecurity - suitstorage: WeaponPistolT91 + + inhand: + - ClothingOuterHardsuitNCWLPetya + - UnionfallNCWLShipCaptainNote + storage: back: - - VoidsuitKitNCWL - - BoxMRE - - WeaponPistolT91 + - ClothingMaskNCWLGasmask + - HandHeldMassScannerEE + - CrowbarRed \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml index f8ab2976e37..2bcc915307a 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml @@ -87,15 +87,18 @@ head: ClothingHeadHatNCWLBeret belt: ClothingBeltAssaultFilledCrew #drips better pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolT91 back: ClothingBackpackNCWL gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitNCWLEngi eyes: ClothingEyesHudSecurity - suitstorage: WeaponPistolT91 + suitstorage: JetpackBlackFilled + inhand: - - BookUnionfallNCWLGuide - - JetpackBlackFilled + - UnionfallNCWLCadetNote + storage: back: - - BoxMRE - - WeaponPistolT91 + - ClothingMaskNCWLGasmask + - HandHeldMassScannerEE + - CrowbarRed \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Roles/factions.yml b/Resources/Prototypes/_Crescent/Roles/factions.yml index cf45b94a392..192b7fabe22 100644 --- a/Resources/Prototypes/_Crescent/Roles/factions.yml +++ b/Resources/Prototypes/_Crescent/Roles/factions.yml @@ -80,7 +80,7 @@ 'Kinetic Preservation of Corporate Interests,' and 'Competitive Partnership Management.' color: "#9FED58" weight: 6 - enabled: true + enabled: false icon: sprite: /Textures/_Crescent/faction_icons.rsi state: shi @@ -109,7 +109,7 @@ pillaging. But with the destruction of Freeport, these groups have drifted apart even more, often fighting each other. color: "#9FED58" weight: 5 - enabled: true + enabled: false icon: sprite: /Textures/_Crescent/faction_icons.rsi state: tfsc diff --git a/Resources/Textures/_Crescent/Structures/Wallmounts/posters.rsi/Vogsburg..png b/Resources/Textures/_Crescent/Structures/Wallmounts/posters.rsi/Vogsburg..png new file mode 100644 index 00000000000..556ebe2ff61 Binary files /dev/null and b/Resources/Textures/_Crescent/Structures/Wallmounts/posters.rsi/Vogsburg..png differ diff --git a/sd b/sd new file mode 100644 index 00000000000..0de125b254b --- /dev/null +++ b/sd @@ -0,0 +1,12 @@ + balreska-mvd-update + feature-pr + map-change + master + nemesis-qol +* outerclothing-bubz + pr-magnate + pr-magnate-map + pr-radio-channel + pr-radio-color + pr-yeni-map + qol-fixes