From dc76b0b60f355632b8a805fc4e5cae40d2b3cc54 Mon Sep 17 00:00:00 2001 From: Eric J Date: Sun, 2 Aug 2026 07:52:04 -0700 Subject: [PATCH] test(cliffs): the residual is TWO defects and the field is NOT either (#84) #91 handed over one lead: "the defect is in the grid-4 cliff-elevation field, the one input with no per-corner oracle". It is refuted, and so is the idea that there is a single cause. Everything upstream of the crossing test is now measured, not read: - grid-1 `vulcanus_elevation` exact to 4.8e-2 over all 12,675 captured corners - the grid-4 `multisample` min-filter reproduces the game through the CLIFF GENERATOR at both [0,0] and [1500,1500]; grid 1/2/8/centred all score far worse, and `multisample(e,0,0)` is the identity in this channel - `cliffiness_basic` exact to 6.4e-6 - over the 4,266 UNCLAMPED corners. 8,409 of 12,675 sit ON a clamp, so the old "exact" claim was two-thirds vacuous: it was measuring the clamp, not `qmn` - `cliff_smoothing = 1` READ BACK off Vulcanus's own surface. It had been inferred from the prototype default since #28 and never once measured - the smoothing stencil measured on both axes with a delta probe, whose in-chunk-3 arms predict the game places NOTHING and it places nothing - `crossingsForChunk` re-disassembled at 0x10160c9cc (the VA in the notes had moved); `smoothingKnots` matches it line for line - `fixImpossibleCells`'s give-up branch never fires: 0 chunks need a retry With `cliff_smoothing = 0` and every other term real: [0,0] 0 wrong (7 at s=1) [-1200,800] 0 wrong (4 at s=1), precision 1.0000 [1500,1500] 21 wrong (26 at s=1) So two regions carry a smoothing-only defect and one carries a defect that survives smoothing being off - all over-detections, all at the high bands (670/790/1030), margins 0.69-46.6 units, so not float32. Scoring [0,0] alone says "it's the smoothing", which is false for 21 of the 37; two regions out of three agreeing is the same trap as #88. Also re-scopes #84 item 2: the "over-placement below elevation 120" is not spread over the low band, it is one contiguous blob (cells cx 43-48, cy 34-40) where the game places zero cliffs under every setting tried AND under a synthetic cliff_elevation. A field-independent hole is a rule we do not implement, not a field error - and it is not lava. Two new oracle fixtures + provenance; no src change. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_015yqZhJCUVLDU5q7SVwAVkj --- docs/noise/vulcanus-cliffs-NOTES.md | 116 + test/cliffSmoothingModel.spec.ts | 316 + test/fixtures/PROVENANCE.json | 8 + ...le-cliff-smoothing-stencil.seed123456.json | 1698 ++ ...liff-smoothing-off-regions.seed123456.json | 15720 ++++++++++++++++ test/oracle/capture.ts | 254 + 6 files changed, 18112 insertions(+) create mode 100644 test/cliffSmoothingModel.spec.ts create mode 100644 test/fixtures/oracle-cliff-smoothing-stencil.seed123456.json create mode 100644 test/fixtures/oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json diff --git a/docs/noise/vulcanus-cliffs-NOTES.md b/docs/noise/vulcanus-cliffs-NOTES.md index 48993778..05603c15 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -23,6 +23,17 @@ > the last two sections, which are post-fix and are where this banner's numbers > come from. Each of the last three corrects the one before it - read all three, > in order, or you will act on a superseded number. +> +> ## UPDATE, 2026-08-02: the FIELD is exonerated; the residual is two defects +> +> The last section, **`## The residual is TWO defects, and the field is not +> either of them`**, supersedes the "the defect is in the grid-4 cliff-elevation +> field" lead that #91 handed over. That field is now measured correct, along +> with `cliffiness_basic` (over its unclamped corners), the smoothing stencil on +> both axes, and `cliff_smoothing = 1` read back from the game. Read that section +> before touching anything: **with `cliff_smoothing = 0` the port is exact at +> `[0,0]` and `[-1200,800]` and still 21-wrong at `[1500,1500]`**, so there is no +> single cause left to look for. Factorio 2.1.12 (build 87038, mac-arm64). Ported 2026-07-26. Companion to `cliffs-NOTES.md`, which holds the reverse-engineering of the placement rule @@ -1204,3 +1215,108 @@ prompt to find the independent evidence, not as the evidence. The route that worked here was: stop tuning shapes against the metric, and go read what the engine does. The binary is unstripped and the whole chain took three `lldb` calls. + +## The residual is TWO defects, and the field is not either of them (2026-08-02) + +The handoff into this session (#91) named one lead: "the defect is in the +**grid-4 cliff-elevation field** - the one input in the chain with no direct +per-corner oracle", with the next step being to capture `cliff_elevation` at the +4-tile corner lattice. **That lead is refuted.** The grid-4 field is correct, and +so is everything else upstream of the crossing test. What is left splits into two +defects that live in different regions and have different causes, which is why a +single number ("37 wrong orientations") could never be chased to a single cause. + +### What was eliminated, and how + +Each of these is a measurement, not a reading. Do not re-derive them. + +| input | verdict | how | +| --- | --- | --- | +| grid-1 `vulcanus_elevation` | exact, worst **4.8e-2** | all **12,675** corners of `oracle-vulcanus-cliff-corner-fields-entity-regions` | +| grid-4 `multisample` min-filter | exact | through the CLIFF GENERATOR at `[0,0]` **and** `[1500,1500]`; grid 1 / 2 / 8 / centred all score far worse | +| `multisample(e, 0, 0)` | the identity in this channel | arm A ≡ arm B, cell for cell, both regions | +| `cliffiness_basic` | exact, worst **6.4e-6** | over the **4,266 UNCLAMPED** corners (see the vacuity note below) | +| `cliff_smoothing = 1` | **measured**, not inferred | read back off the planet's own surface with nothing overridden | +| the smoothing stencil | exact | delta probe, both axes, `test/cliffSmoothingModel.spec.ts` | +| `crossesCliff` | exact | disassembly, `0x10160c914` | +| `crossingsForChunk`'s smoothing | matches `smoothingKnots` | disassembly, `0x10160c9cc` (**the VA in cliffs-NOTES.md had moved**) | +| `fixImpossibleCells` give-up branch | never fires | **0** chunks in these regions need even one retry | + +Two of those deserve their own note. + +**The `cliffiness_basic` exoneration was two-thirds vacuous and is now not.** +`cliffiness_basic` is `clamp(qmn, 0, 1) + 0.5`, and **8,409 of the 12,675 +captured corners sit ON a clamp** (6,330 at the floor, 2,079 at the ceiling). +Agreeing there says nothing whatever about `qmn`; it says both sides clamped. The +comparison that carries information is the 4,266-corner interior, and it agrees +to 6.4e-6. Any future "field X is exact" claim about a clamped expression has to +report the interior separately or it is measuring the clamp. + +**The smoothing stencil was measured, not just disassembled.** The probe is a +DELTA on one corner column: `1 + 1000 * if(1 - abs(x - X0), 1, 0)` routed onto +`cliff_elevation` with smoothing left at 1. Every corner but one carries the +constant 1, so the smoothed field is exactly `1 + 1000 * w(i)` for the stencil +weight `w`, and the game's cliffs trace `w = 0.5` directly. The design's teeth +are the **in-chunk-index-3 arms**: 3 is not a knot, so the model predicts the game +places *nothing at all*, and the game places nothing at all. An arm whose +predicted output is EMPTY cannot be satisfied by a stencil that is merely close - +which is the failure mode of every weight-matching check. + +### The split + +Force `cliff_smoothing = 0` and leave every other term real, and the port's +grid-4 field is scored with no interpolation in the way: + +| region | smoothing = 0 | smoothing = 1 (ships) | +| --- | --- | --- | +| `[0,0]` | **0** wrong | 7 wrong | +| `[-1200,800]` | **0** wrong, precision 1.0000 | 4 wrong | +| `[1500,1500]` | **21** wrong | 26 wrong | + +So `[0,0]` and `[-1200,800]` carry a defect that exists ONLY under smoothing, +while `[1500,1500]` carries one that survives smoothing being switched off +entirely. `[1500,1500]`'s 21 are all **over-detections**, all at the HIGH bands +(670 / 790 / 1030), with margins of **0.69 - 46.6 elevation units** - far too +large for float32, and the cliffiness there sits up to 1.0 clear of its gate. + +**This is why one region was never enough.** `[0,0]` alone says "smoothing off is +exact, therefore the residual is the smoothing", and that is false for 21 of the +37. Two of three regions agreeing is exactly the evidence that produces a +confident wrong conclusion - the same shape as #88. + +Note also what this does to `docs/noise/...` note "cliff_smoothing is NOT the +residual (#79, #80)". That was measured **before #83 fixed the multisample grid**, +when the field was wrong everywhere and so nothing downstream could be scored. It +has expired: with the field right, smoothing off is exact in two regions of three. + +### The smoothing-side defect is NOT in the stencil + +The stencil arms are exact in six of eight; the two that are not are exact +everywhere except one four-cell vertical run at `x = 1750`, rows 1526.5-1538.5, +which appears in both arms regardless of which delta column is used. It is not +the collision rejection - the game's tiles over `x 1742..1760, y 1518..1546` are +all `volcanic-*` ground tiles with **no lava at all**, and only `lava`/`lava-hot` +carry the `water_tile` layer the cliff mask collides with. + +That is the same signature as the `[0,0]` **blob** below, and they are probably +one thing. + +### The blob: a place the game puts no cliff, whatever field it is given + +`#84` item 2 ("over-placement below elevation 120") is not spread over the low +band at all. In region `[0,0]` **every** excess cell, at every level of the +19-level sweep and in both probe arms, sits in one contiguous patch: cells +`cx 43-48, cy 34-40` (world `x 172-196, y 136-164`). The game places **zero** +cliffs there under real settings, under all four collapsed arms, at all 19 sweep +levels, and with a completely synthetic `cliff_elevation` routed onto it. + +A field-independent hole is not a field error. The obvious suspect, lava, is +mostly ruled out: most of those cells have no lava within 10 tiles by our +resolver, and our resolver is right about lava there to 4 tiles in 483 (those 4 +being lava the game HAS and we miss - note the 994-position capture that +"exonerated the mask" sampled neighbourhoods of tiles OUR mask calls lava and +therefore structurally could not find that class of error). + +**This is the sharpest open lead**, and a much better one than "we over-place at +low elevation": it is a bounded, contiguous, field-independent suppression, so +whatever causes it is a rule the port does not implement at all. diff --git a/test/cliffSmoothingModel.spec.ts b/test/cliffSmoothingModel.spec.ts new file mode 100644 index 00000000..f2722b18 --- /dev/null +++ b/test/cliffSmoothingModel.spec.ts @@ -0,0 +1,316 @@ +import { describe, expect, it } from "vite-plus/test"; + +import stencil from "./fixtures/oracle-cliff-smoothing-stencil.seed123456.json"; +import offRegions from "./fixtures/oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json"; +import entities from "./fixtures/oracle-vulcanus-cliff-entities.seed123456.json"; +import { CLIFF_ORIENTATION_NAMES, cliffOrientationForCode } from "../src/noise/cliffs/cliffCatalog"; +import { makeCliffPlacementFromFields, smoothingKnots } from "../src/noise/cliffs/cliffPlacement"; +import { + VULCANUS_CLIFF_ELEVATION_0, + VULCANUS_CLIFF_ELEVATION_INTERVAL, + VULCANUS_CLIFF_RICHNESS, + VULCANUS_CLIFF_SMOOTHING, + makeCliffinessBasic, + makeVulcanusCliffFields, +} from "../src/noise/cliffs/vulcanusCliffFields"; +import { VULCANUS_CLIFF_BLOCKING_TILES } from "../src/noise/preview/renderVulcanusCliffs"; +import { makeVulcanusTileResolver } from "../src/noise/tiles/vulcanusCatalog"; +import { withCtxDefaults } from "../src/noise/eval/ctx"; + +const seed = offRegions.seed; +const ctx = withCtxDefaults({ seed0: seed, startingPositions: [{ x: 0, y: 0 }] }); +const fields = makeVulcanusCliffFields(ctx); +const tileAt = makeVulcanusTileResolver({ seed0: seed, startingPositions: [{ x: 0, y: 0 }] }); +const lava = (x: number, y: number): boolean => + VULCANUS_CLIFF_BLOCKING_TILES.has(tileAt(x, y).name); +const key = (x: number, y: number): string => `${String(x)},${String(y)}`; + +interface Box { + x0: number; + y0: number; + x1: number; + y1: number; +} +/** + * The game's dump is chunk-aligned and so reaches slightly outside the requested + * box, while `placedCells` filters to it exactly. Comparing without this clips + * a row of "the game placed one we didn't" that is purely a framing artefact. + */ +const inBox = (p: { x: number; y: number }, r: Box): boolean => + p.x >= r.x0 && p.x < r.x1 && p.y >= r.y0 && p.y < r.y1; + +const gameCliffs = ( + cliffs: { x: number; y: number; name: string; orientation: string }[], + r: Box, +): Map => { + const m = new Map(); + for (const p of cliffs) + if (p.name === "cliff-vulcanus" && inBox(p, r)) m.set(key(p.x, p.y), p.orientation); + return m; +}; + +interface Score { + game: number; + ours: number; + matched: number; + missed: number; + oursOnly: number; + oriWrong: number; +} +const score = ( + game: Map, + placed: { x: number; y: number; code: number }[], +): Score => { + let matched = 0; + let oriWrong = 0; + const ours = new Set(); + for (const p of placed) { + const k = key(p.x, p.y); + ours.add(k); + const want = game.get(k); + if (want === undefined) continue; + matched++; + const id = cliffOrientationForCode(p.code); + if (CLIFF_ORIENTATION_NAMES[id as number] !== want) oriWrong++; + } + let missed = 0; + for (const k of game.keys()) if (!ours.has(k)) missed++; + return { + game: game.size, + ours: ours.size, + matched, + missed, + oursOnly: ours.size - matched, + oriWrong, + }; +}; + +/** + * **`cliff_smoothing = 1` on Vulcanus, and it is now MEASURED** (#84). + * + * `VULCANUS_CLIFF_SMOOTHING` was inferred from the `CliffPlacementSettings` + * prototype's default list (issue #28) because the planet's `cliff_settings` + * block does not mention it. That inference was right, but an inference of + * exactly this shape is what #28 itself was a bug in, and the value turns out to + * be the difference between a port that is exact and one that is not (below). So + * the fixture's first case overrides nothing and reads the whole block back off + * the planet's own surface. + */ +describe("Vulcanus cliff_settings, read back from the game", () => { + const defaults = offRegions.cases[0].effective; + + it("reports the four constants the port hard-codes", () => { + expect(defaults?.cliff_smoothing).toBe(VULCANUS_CLIFF_SMOOTHING); + expect(defaults?.cliff_elevation_0).toBe(VULCANUS_CLIFF_ELEVATION_0); + expect(defaults?.cliff_elevation_interval).toBe(VULCANUS_CLIFF_ELEVATION_INTERVAL); + expect(defaults?.richness).toBe(VULCANUS_CLIFF_RICHNESS); + // Non-vacuity: the readback is a real dump, not an echo of what we asked for - + // this case sent no cliffSettings at all. + expect(offRegions.cases[0].cliffs.length).toBeGreaterThan(500); + }); +}); + +/** + * **The `cliff_smoothing` stencil, measured against the game** (#84). + * + * `smoothingKnots` interpolates each corner between knots at in-chunk indices + * **0, 4 and 7** - `hi = min(lo + 4, CHUNK_CORNERS - 1)`, so the second span is + * three corners wide, not four. That came off a disassembly of + * `crossingsForChunk` (re-derived 2026-08-02 at `0x10160c9cc`; the VA in + * cliffs-NOTES.md had moved), and this file is the measurement that the reading + * is right. + * + * The probe is a delta on one corner column or row, so the smoothed field is + * `1 + 1000 * w(i)` for exactly the stencil weight `w`. See the fixture's + * `_comment` for the construction. + * + * **The in-chunk-3 arms are the ones with teeth.** 3 is not a knot, so the model + * predicts the game places nothing at all, and that is what the game does. An + * arm whose predicted output is EMPTY cannot be satisfied by a stencil that is + * merely close, which is the failure mode every weight-matching test here has. + */ +describe("the cliff_smoothing stencil", () => { + const cliffinessOpen = makeCliffinessBasic(seed, 4); + const extras: string[] = []; + const wrongTotal: number[] = []; + const oursOnlyKeys = (game: Map, placed: { x: number; y: number }[]): string[] => + placed.map((p) => key(p.x, p.y)).filter((k) => !game.has(k)); + + for (const arm of stencil.cases) { + const r = arm.region; + const game = gameCliffs(arm.cliffs, r); + // The probe: 1 everywhere, 1001 on the one corner line. + const rawProbe = (x: number, y: number): number => + (arm.axis === "x" ? x : y) / 4 === arm.index ? 1001 : 1; + const smoothed = (x: number, y: number): number => { + const kx = smoothingKnots(x / 4); + const ky = smoothingKnots(y / 4); + return ( + (1 - kx.t) * (1 - ky.t) * rawProbe(kx.lo * 4, ky.lo * 4) + + kx.t * (1 - ky.t) * rawProbe(kx.hi * 4, ky.lo * 4) + + (1 - kx.t) * ky.t * rawProbe(kx.lo * 4, ky.hi * 4) + + kx.t * ky.t * rawProbe(kx.hi * 4, ky.hi * 4) + ); + }; + const placed = makeCliffPlacementFromFields( + { cliffElevation: smoothed, cliffiness: cliffinessOpen }, + { + elevation0: stencil.cliffElevation0, + interval: arm.effective?.cliff_elevation_interval ?? 1000000, + // `smoothed` has already applied it; the placement must not apply it twice. + smoothing: 0, + tileCollides: lava, + }, + ).placedCells(r.x0, r.y0, r.x1, r.y1); + const s = score(game, placed); + + it(`reproduces the game's stencil: ${arm.label}`, () => { + expect(arm.effective?.cliff_smoothing).toBe(1); + // The stencil itself is exact in the direction that matters: the model + // never fails to place a cliff the game places, in any arm. Weight, + // knot position and interpolation family are therefore all right - a + // stencil that were wrong anywhere would lose recall somewhere. + expect(s.missed).toBe(0); + expect(s.matched).toBeGreaterThan(arm.index % 8 === 3 ? -1 : 25); + console.log( + ` ${arm.label.padEnd(38)} game=${String(s.game).padStart(3)} ours=${String(s.ours).padStart(3)} oriWrong=${String(s.oriWrong)} oursOnly=${String(s.oursOnly)}`, + ); + extras.push(...oursOnlyKeys(game, placed).map((k) => `${arm.label}: ${k}`)); + wrongTotal.push(s.oriWrong); + }); + } + + /** + * **The one thing the stencil does NOT explain, kept visible.** Two column arms + * place 4 cells each that the game does not, and they are the same four both + * times - cell column 437, rows 381-384, i.e. a short vertical run that appears + * whenever the stencil's contour passes through it, whatever the delta column. + * + * It is not the collision rejection: the game's tiles over + * `x 1742..1760, y 1518..1546` are `volcanic-soil-dark` / `-folds` / + * `-jagged-ground` / `-folds-flat` / `-soil-light` and contain **no lava at + * all**, and only `lava` and `lava-hot` carry the `water_tile` layer the cliff + * mask collides with. It is not the stencil either, or the row arms and the + * in-chunk-3 arms would not be exact. + * + * It looks like the same unexplained blanket suppression as the `[0,0]` blob - + * a contiguous patch where the game places no cliff under ANY cliff_elevation + * routed onto it. Asserted as an exact count rather than an upper bound, + * because the SHAPE is the lead: if it moves, the cause has changed. + */ + it("leaves a small, LOCALISED residual - pinned by shape, not bounded away", () => { + // Six of the eight arms are exact. The two that are not are exact everywhere + // except ONE place, and it is the same place in both: a four-cell vertical + // run at x = 1750 (cell column 437, in-chunk 5), rows 1526.5 - 1538.5. + const cells = [...new Set(extras.map((e) => e.split(": ")[1]))].sort(); + expect(cells).toEqual(["1750,1526.5", "1750,1530.5", "1750,1534.5", "1750,1538.5"]); + expect(extras.length).toBe(8); + // ...and exactly one wrong orientation in each of those same two arms. + expect(wrongTotal).toEqual([0, 0, 1, 1, 0, 0, 0, 0]); + }); + + it("the non-knot arms place NOTHING, and the knot arms are not empty", () => { + for (const arm of stencil.cases) { + const n = gameCliffs(arm.cliffs, arm.region).size; + // in-chunk index 3 on either axis: not a knot, so the delta reaches no corner. + if (arm.index % 8 === 3) expect(n).toBe(0); + // Everything else must carry real signal, or the arms above compare nothing. + else expect(n).toBeGreaterThan(25); + } + }); +}); + +/** + * **The orientation residual is TWO defects, not one** (#84). + * + * Run the real rule with `cliff_smoothing` forced to 0 and every other term + * left alone, and the port's grid-4 cliff elevation is scored directly - no + * interpolation stands between the field and the crossing test. + * + * | region | smoothing = 0 | smoothing = 1 (ships) | + * | --- | --- | --- | + * | `[0,0]` | 0 wrong (oracle-vulcanus-cliff-collapsed, arm 0) | 7 wrong | + * | `[-1200,800]` | **0 wrong**, precision 1.0000 | 4 wrong | + * | `[1500,1500]` | **21 wrong** | 26 wrong | + * + * So `[0,0]` and `[-1200,800]` carry a defect that exists ONLY under smoothing, + * while `[1500,1500]` carries one that survives smoothing being switched off + * entirely. Everything upstream of the smoothing has been separately verified + * against the game - the grid-1 elevation at all 12,675 captured corners + * (worst 4.8e-2), the grid-4 `multisample` min-filter through the cliff + * generator itself, `cliffiness_basic` over its 4,266 UNCLAMPED corners + * (worst 6.4e-6), `crossesCliff` by disassembly, and the stencil above - which + * is what makes the split meaningful rather than just two numbers. + * + * **This is why one region was not enough.** Scoring only `[0,0]` says "smoothing + * off is exact, therefore the residual is the smoothing", which is false for 21 + * of the 37 wrong orientations. Two of the three regions agreeing is exactly the + * evidence that produces a confident wrong conclusion. + */ +describe("the residual splits: smoothing=0 is exact in two regions and not in the third", () => { + const armFor = (x0: number): (typeof offRegions.cases)[number] => { + const c = offRegions.cases.find( + (a) => a.effective?.cliff_smoothing === 0 && a.region.x0 === x0, + ); + expect(c).toBeDefined(); + return c as (typeof offRegions.cases)[number]; + }; + const scoreAt = (arm: (typeof offRegions.cases)[number], smoothing: number): Score => { + const r = arm.region; + const placed = makeCliffPlacementFromFields(fields, { + elevation0: arm.effective?.cliff_elevation_0 ?? VULCANUS_CLIFF_ELEVATION_0, + interval: arm.effective?.cliff_elevation_interval ?? VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing, + tileCollides: lava, + }).placedCells(r.x0, r.y0, r.x1, r.y1); + return score(gameCliffs(arm.cliffs, r), placed); + }; + + it("every override applied, and both arms compare a substantial set", () => { + for (const arm of offRegions.cases.filter((a) => a.effective?.cliff_smoothing === 0)) { + expect(arm.effective?.cliff_smoothing).toBe(0); + expect(arm.effective?.cliff_elevation_0).toBe(VULCANUS_CLIFF_ELEVATION_0); + expect(arm.effective?.cliff_elevation_interval).toBe(VULCANUS_CLIFF_ELEVATION_INTERVAL); + expect(gameCliffs(arm.cliffs, arm.region).size).toBeGreaterThan(400); + } + }, 120000); + + it("[-1200,800] with smoothing OFF is orientation-exact", () => { + const s = scoreAt(armFor(-1200), 0); + expect(s.oriWrong).toBe(0); + // Measured 479/479: not one cell placed that the game does not also place. + expect(s.oursOnly).toBe(0); + expect(s.matched).toBeGreaterThan(400); + }, 120000); + + it("[1500,1500] with smoothing OFF is NOT - the residual there is upstream", () => { + const s = scoreAt(armFor(1500), 0); + // Measured 21 of 1191 matched cells, every one an OVER-detection, all at the + // high bands (670 / 790 / 1030) with margins 0.69 - 46.6 elevation units, so + // this is not float32 noise. Upper bound: the port may improve without + // editing it, but it must not silently pass by matching nothing. + expect(s.oriWrong).toBeGreaterThan(0); + expect(s.oriWrong).toBeLessThanOrEqual(21); + expect(s.matched).toBeGreaterThan(1100); + }, 120000); + + /** + * The control that makes the two tests above mean something: with smoothing at + * its real value of 1, `[-1200,800]` is NOT exact. If it were, "smoothing off + * is exact there" would be saying nothing about the smoothing. + */ + it("and smoothing=1 is what introduces [-1200,800]'s errors", () => { + const ec = entities.cases.find((c) => c.region.x0 === -1200); + expect(ec).toBeDefined(); + const r = (ec as NonNullable).region; + const placed = makeCliffPlacementFromFields(fields, { + elevation0: VULCANUS_CLIFF_ELEVATION_0, + interval: VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing: VULCANUS_CLIFF_SMOOTHING, + tileCollides: lava, + }).placedCells(r.x0, r.y0, r.x1, r.y1); + const s = score(gameCliffs((ec as NonNullable).cliffs, r), placed); + expect(s.oriWrong).toBeGreaterThan(0); + expect(s.matched).toBeGreaterThan(300); + }, 120000); +}); diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index 854988db..45388d8c 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -287,6 +287,14 @@ "oracle-multisample-grid.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-08-01 by test/oracle/capture.ts multisample-grid against the installed binary, in sync at 2.1.12 per pnpm refs:sync --check. Probe expressions routed onto property_expression_names.cliff_elevation on a Vulcanus surface with the rule collapsed, so the CLIFF GENERATOR is the readout instead of calculate_tile_properties. Carries its own positive control (multisample(x,4,0) must move the contour) and null control (multisample(x,0,4) must not)." + }, + "oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "stated - captured 2026-08-02 against the installed 2.1.12 binary (refs:sync --check in sync). Case 0 overrides nothing and READS cliff_settings back off Vulcanus's own surface, which is how cliff_smoothing=1 stopped being an inference from the CliffPlacementSettings prototype default and became a measurement; cases 1-2 record the effective settings the surface reported, so a failed override cannot pass as a null result" + }, + "oracle-cliff-smoothing-stencil.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "stated - captured 2026-08-02 against the installed 2.1.12 binary (refs:sync --check in sync). Each arm records the effective cliff_settings; the in-chunk-3 arms are self-validating in that the model predicts an EMPTY result and the game produces one" } } } diff --git a/test/fixtures/oracle-cliff-smoothing-stencil.seed123456.json b/test/fixtures/oracle-cliff-smoothing-stencil.seed123456.json new file mode 100644 index 00000000..46eeaf95 --- /dev/null +++ b/test/fixtures/oracle-cliff-smoothing-stencil.seed123456.json @@ -0,0 +1,1698 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 (Space Age) via test/oracle. Measures the cliff_smoothing STENCIL rather than deriving it. A DELTA probe `1 + 1000 * if(1 - abs(x - X0), 1, 0)` is routed onto property_expression_names.cliff_elevation with cliff_smoothing left at 1, cliff_elevation_interval=1e6 (a single contour) and richness=4 (the cliffiness gate held open). Every corner except column X0/4 carries the constant 1, so the smoothed field is exactly 1 + 1000*w(i) where w(i) is the weight corner i gives the knot at X0/4 - the game's cliffs at cliff_elevation_0=500 therefore trace the w=0.5 contour of the stencil itself. Four column arms and four row arms cover in-chunk indices 0, 3, 4 and 7 on both axes. The in-chunk-3 arms are the load-bearing ones: 3 is NOT a knot under `smoothingKnots`, so the model predicts the game places NOTHING, and an empty prediction cannot be satisfied by a stencil that is merely close. Forced surface seed like every other Vulcanus fixture. Regenerate: node --experimental-strip-types test/oracle/capture.ts cliff-smoothing-stencil", + "seed": 123456, + "cliffElevation0": 500, + "cases": [ + { + "label": "column 432 (in-chunk 0, knot)", + "axis": "x", + "index": 432, + "region": { + "x0": 1700, + "y0": 1500, + "x1": 1800, + "y1": 1600 + }, + "expression": "1 + 1000 * if(1 - abs(x - 1728), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1738, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1738, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1751.9375, + "y": 1542.5, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1749.88671875, + "y": 1545.99609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1744.9375, + "y": 1547.44921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + }, + { + "label": "column 435 (in-chunk 3, NOT a knot)", + "axis": "x", + "index": 435, + "region": { + "x0": 1700, + "y0": 1500, + "x1": 1800, + "y1": 1600 + }, + "expression": "1 + 1000 * if(1 - abs(x - 1740), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1739.98828125, + "y": 1539, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1737.9375, + "y": 1542.5, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 1751.9375, + "y": 1542.5, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1739.98828125, + "y": 1545.99609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1749.88671875, + "y": 1545.99609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1744.9375, + "y": 1547.44921875, + "name": "crater-cliff", + "orientation": "east-to-west" + } + ] + }, + { + "label": "column 436 (in-chunk 4, knot)", + "axis": "x", + "index": 436, + "region": { + "x0": 1700, + "y0": 1500, + "x1": 1800, + "y1": 1600 + }, + "expression": "1 + 1000 * if(1 - abs(x - 1744), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1734, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1734, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1734, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1734, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1734, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1734, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + } + ] + }, + { + "label": "column 439 (in-chunk 7, knot)", + "axis": "x", + "index": 439, + "region": { + "x0": 1700, + "y0": 1500, + "x1": 1800, + "y1": 1600 + }, + "expression": "1 + 1000 * if(1 - abs(x - 1756), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1750, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1758, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1758, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1758, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1739.98828125, + "y": 1539, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1737.9375, + "y": 1542.5, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1758, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1739.98828125, + "y": 1545.99609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1750, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1758, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1750, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1758, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + } + ] + }, + { + "label": "row 376 (in-chunk 0, knot)", + "axis": "y", + "index": 376, + "region": { + "x0": 1500, + "y0": 1450, + "x1": 1600, + "y1": 1560 + }, + "expression": "1 + 1000 * if(1 - abs(y - 1504), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1498, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1538, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1566, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1570, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1574, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1530, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1570, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1574, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + } + ] + }, + { + "label": "row 379 (in-chunk 3, NOT a knot)", + "axis": "y", + "index": 379, + "region": { + "x0": 1500, + "y0": 1450, + "x1": 1600, + "y1": 1560 + }, + "expression": "1 + 1000 * if(1 - abs(y - 1516), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [] + }, + { + "label": "row 380 (in-chunk 4, knot)", + "axis": "y", + "index": 380, + "region": { + "x0": 1500, + "y0": 1450, + "x1": 1600, + "y1": 1560 + }, + "expression": "1 + 1000 * if(1 - abs(y - 1520), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1498, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1538, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1566, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1570, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1574, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1578, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1498, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1530, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1534, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1550, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1582, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1586, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + } + ] + }, + { + "label": "row 383 (in-chunk 7, knot)", + "axis": "y", + "index": 383, + "region": { + "x0": 1500, + "y0": 1450, + "x1": 1600, + "y1": 1560 + }, + "expression": "1 + 1000 * if(1 - abs(y - 1532), 1, 0)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 500, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 1, + "richness": 4 + }, + "cliffs": [ + { + "x": 1498, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1538, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1582, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1498, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1530, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1534, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1550, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1574, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1578, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + } + ] + } + ] +} diff --git a/test/fixtures/oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json new file mode 100644 index 00000000..b0f4fbe3 --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json @@ -0,0 +1,15720 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 (Space Age) via test/oracle. Case 0 overrides NOTHING and exists purely to read cliff_settings back off Vulcanus's own surface, which is how cliff_smoothing=1 stopped being an inference from the CliffPlacementSettings prototype default and became a measurement. Cases 1-2 are the SAME rule with cliff_smoothing forced to 0 and every other term left real (cliff_elevation_0=70, cliff_elevation_interval=120, richness=1), at the two entity regions oracle-vulcanus-cliff-smoothing and oracle-vulcanus-cliff-collapsed do not cover. With smoothing off the generator reads the RAW 4-tile corner field, so these arms score the port's grid-4 cliff elevation directly. They are what splits the standing orientation residual in two: [-1200,800] is exact with smoothing off (as [0,0] already was) while [1500,1500] is not. `effective` is the cliff_settings the SURFACE reported back, so an override that failed to apply cannot be mistaken for one that did nothing. Forced surface seed like every other Vulcanus fixture. Regenerate: node --experimental-strip-types test/oracle/capture.ts vulcanus-cliff-smoothing-off-regions", + "seed": 123456, + "cases": [ + { + "label": "planet defaults (nothing overridden)", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffs": [ + { + "x": 1502, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1662, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1702, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1634, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1738, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ] + }, + { + "label": "smoothing=0 at [1500,1500]", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 0, + "richness": 1 + }, + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffs": [ + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1586, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1670, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1706, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1670, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1706, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1498, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1574, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1578, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1582, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1590, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1594, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1514, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1578, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1602, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1630, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1634, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1650, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1638, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1642, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1590, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1618, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1646, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1650, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1658, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1698, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1634, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1638, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1646, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1650, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1674, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1678, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1686, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1698, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1702, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1658, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1670, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1674, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1678, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1742, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1746, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1546, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1642, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1670, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1682, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1686, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1722, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1506, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1554, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1658, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1674, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1682, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1686, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1698, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1706, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1710, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1714, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1726, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1670, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1674, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1690, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1698, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1718, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1674, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1686, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1750, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1666, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1674, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1694, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1710, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1714, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1738, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1750, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1498, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1666, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1706, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1710, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1714, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1738, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1742, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1710, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1750, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1666, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1670, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1698, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1738, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1742, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1750, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1706, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1670, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1662, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1666, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1670, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1678, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1722, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1730, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1610, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1662, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1686, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1706, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1662, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1722, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1714, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1718, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1714, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1718, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1722, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1546, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1638, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1642, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1646, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1722, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1726, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1546, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1634, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1638, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1642, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1646, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1722, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1550, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1626, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1634, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1638, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1550, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1618, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1626, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1610, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1614, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1622, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1626, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1642, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1750, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1754, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1622, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1562, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1538, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1722, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1730, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1738, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1562, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1566, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1650, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1730, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1514, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1578, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1750, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1514, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1546, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1558, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1718, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1726, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1758, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1578, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1594, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1702, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1710, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1622, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1726, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1730, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1734, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1738, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1530, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1542, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1622, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1686, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1718, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1722, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1730, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1754, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1758, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1614, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1622, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1710, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1718, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1718, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1734, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1566, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1614, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1734, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1734, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1738, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1518, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1538, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1566, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1634, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1738, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1518, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1530, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1538, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1634, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1638, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1734, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1738, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1526, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1606, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1614, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1734, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1750, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1526, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1558, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1562, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1566, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1570, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1574, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1578, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1562, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1570, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1638, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1750, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1542, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1554, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1558, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1562, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1638, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1538, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1562, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1734, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1738, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1594, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1742, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1578, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1750, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1614, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1742, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1746, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1758, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1606, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1610, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1614, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1626, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1598, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1602, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1606, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1610, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1614, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1734, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1738, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1746, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1498, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1538, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1542, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1574, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1578, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1594, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1598, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1610, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1630, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1714, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1506, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1510, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1594, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1602, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ] + }, + { + "label": "smoothing=0 at [-1200,800]", + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 0, + "richness": 1 + }, + "region": { + "x0": -1200, + "y0": 800, + "x1": -944, + "y1": 1056 + }, + "cliffs": [ + { + "x": -1018, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1014, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1010, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1006, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1022, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1018, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1010, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1184.375, + "y": 814.98828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1046, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1010, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1189.32421875, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1179.42578125, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1191.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1177.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1050, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1046, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1006, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1002, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -994, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1189.32421875, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1179.42578125, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -1034, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1002, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -998, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1184.375, + "y": 824.88671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1042, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1034, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1018, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1014, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1006, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1002, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1054, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1010, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1006, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1002, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1054, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1042, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -994, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -990, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1046, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1010, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1002, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -998, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -990, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -986, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1046, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1010, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1006, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -986, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -986, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -982, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -982, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -978, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -974, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1062, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1190, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1186, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1182, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1062, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1058, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1202, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1058, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1054, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1070, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1066, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1054, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1070, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1058, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1170, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1078, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1074, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1070, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1066, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1198, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1174, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1170, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1166, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1154, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1150, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1078, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1070, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1174, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1158, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1154, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1142, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1078, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1066, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1062, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1198, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1194, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1174, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1162, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1194, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1174, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1170, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1158, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1154, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1150, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1118, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1114, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1110, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1198, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1194, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1162, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1158, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1122, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1118, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1114, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1110, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1122, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1114, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1110, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1106, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -946, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1122, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1114, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1110, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -946, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1122, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1118, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1114, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1114, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1110, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1046, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1042, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1038, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -946, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1038, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -954, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -950, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -946, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1198, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1194, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1190, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1046, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -966, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -962, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -954, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -946, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1046, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -950, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -946, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1046, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -970, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -966, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -962, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -954, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -950, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1186, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1182, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1178, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1174, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1170, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1166, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1162, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1042, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -966, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -962, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -958, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -954, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -950, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1190, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1186, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1162, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1158, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1094, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1090, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1086, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1082, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1042, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -966, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -958, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -954, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1162, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1158, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1090, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1086, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1042, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1038, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -962, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -954, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -950, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1194, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1190, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1182, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1174, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1162, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1158, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1038, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -962, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -958, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -950, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -946, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1198, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1194, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1182, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1162, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1066, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1062, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1058, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -958, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -950, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -946, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1198, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1182, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1178, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1166, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1162, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1166, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1158, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -958, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -946, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1182, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1174, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1170, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -962, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -958, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -946, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1202, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1190, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1186, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1182, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1178, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1158, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -958, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1186, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1178, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1174, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1170, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1154, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1150, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -970, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1202, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1186, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1182, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1178, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1174, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1154, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1150, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1198, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1182, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1178, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1174, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1182, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1178, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1174, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1170, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1158, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1146, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1142, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1170, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1166, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1158, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1142, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1138, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1134, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1070, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1066, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1062, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1058, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1174, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1170, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1166, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1162, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1158, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1150, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1146, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1138, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1070, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1058, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1054, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1174, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1170, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1166, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1142, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1138, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1054, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1050, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1194, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1190, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1182, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1178, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1174, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1166, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1162, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1142, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1078, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1074, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1046, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -946, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1178, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1162, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1158, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1154, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1150, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1078, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1054, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1050, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1046, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -946, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1178, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1078, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1074, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1054, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1046, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -946, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -942, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1182, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1070, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1198, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1194, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1190, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1182, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1070, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1062, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1058, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1046, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1202, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1190, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1186, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1182, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1066, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1062, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1046, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1198, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1194, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1190, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1186, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1182, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1114, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1110, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1106, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1074, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1066, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1050, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1046, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1186, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1182, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1078, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1074, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1046, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1202, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1194, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1078, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1074, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1066, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1054, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1050, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1046, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1070, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1066, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1062, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1058, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1050, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1198, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1070, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1066, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1058, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1050, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -966, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -962, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -970, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -974, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -970, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + } + ] + } + ] +} diff --git a/test/oracle/capture.ts b/test/oracle/capture.ts index ba02819a..73a8fc95 100644 --- a/test/oracle/capture.ts +++ b/test/oracle/capture.ts @@ -3460,6 +3460,258 @@ async function captureVulcanusCliffCornerFieldsAtEntityRegions(): Promise ); } +/** + * **`cliff_smoothing = 0` at the OTHER two entity regions** (#84). + * + * `captureVulcanusCliffSmoothing` above asks this question at `[0,0]` only, and + * `oracle-vulcanus-cliff-collapsed`'s first arm answers it there at the real + * bands. The answer at `[0,0]` is that the port is EXACT with smoothing off - + * which reads like "the whole residual is the smoothing" until the same arm is + * run at the other two regions, and it is not: `[-1200,800]` is also exact, and + * `[1500,1500]` still carries 21 wrong orientations. **The residual is two + * different defects, and one region-worth of evidence could not tell them + * apart.** That is why this capture covers all three rather than the worst one. + * + * Case 0 overrides NOTHING and exists to read `cliff_settings` back off the + * planet's own surface. `VULCANUS_CLIFF_SMOOTHING = 1` had until now been + * inferred from the `CliffPlacementSettings` prototype default (issue #28) and + * never once read out of a running game; the value is load-bearing enough that + * an inference is not good enough, and the same class of assumption is what #28 + * itself was. + */ +async function captureVulcanusCliffSmoothingOffRegions(): Promise { + const seed = 123456; + const regions: Region[] = [ + { x0: 1500, y0: 1500, x1: 1756, y1: 1756 }, + { x0: -1200, y0: 800, x1: -944, y1: 1056 }, + ]; + const cases: { + label: string; + effective: DumpedCliffSettings | undefined; + region: Region; + cliffs: Position[]; + }[] = []; + + { + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const dump = await sampleCliffEntitiesFull(regions[0], { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + }); + cases.push({ + label: "planet defaults (nothing overridden)", + effective: dump.cliffSettings, + region: regions[0], + cliffs: dump.cliffs, + }); + console.log(` defaults reported back: ${JSON.stringify(dump.cliffSettings)}`); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + } + + for (const region of regions) { + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const dump = await sampleCliffEntitiesFull(region, { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + cliffSettings: { + cliff_smoothing: 0, + cliff_elevation_interval: 120, + cliff_elevation_0: 70, + richness: 1, + }, + }); + cases.push({ + label: `smoothing=0 at [${String(region.x0)},${String(region.y0)}]`, + effective: dump.cliffSettings, + region, + cliffs: dump.cliffs, + }); + console.log( + ` smoothing=0 at [${String(region.x0)},${String(region.y0)}] -> ${String(dump.cliffs.length)} cliffs`, + ); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + } + + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 (Space Age) via test/oracle. Case 0 overrides NOTHING and " + + "exists purely to read cliff_settings back off Vulcanus's own surface, which is how " + + "cliff_smoothing=1 stopped being an inference from the CliffPlacementSettings prototype " + + "default and became a measurement. Cases 1-2 are the SAME rule with cliff_smoothing forced " + + "to 0 and every other term left real (cliff_elevation_0=70, cliff_elevation_interval=120, " + + "richness=1), at the two entity regions oracle-vulcanus-cliff-smoothing and " + + "oracle-vulcanus-cliff-collapsed do not cover. With smoothing off the generator reads the " + + "RAW 4-tile corner field, so these arms score the port's grid-4 cliff elevation directly. " + + "They are what splits the standing orientation residual in two: [-1200,800] is exact with " + + "smoothing off (as [0,0] already was) while [1500,1500] is not. `effective` is the " + + "cliff_settings the SURFACE reported back, so an override that failed to apply cannot be " + + "mistaken for one that did nothing. Forced surface seed like every other Vulcanus fixture. " + + "Regenerate: node --experimental-strip-types test/oracle/capture.ts " + + "vulcanus-cliff-smoothing-off-regions", + seed, + cases, + }; + const out = join(FIXTURES, "oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log(`wrote ${out} (${String(cases.length)} cases)`); +} + +/** + * **The `cliff_smoothing` STENCIL, measured directly instead of derived** (#84). + * + * `smoothingKnots` claims the engine interpolates each corner between knots at + * IN-CHUNK indices 0, 4 and 7 - the 7 rather than 8 being the asymmetry that + * makes smoothing "inaccurate" in the prototype's own words. That came off a + * disassembly of `crossingsForChunk`, and a disassembly is a reading, not a + * measurement. + * + * This measures it. The probe is a DELTA on one corner column (or row): + * + * 1 + 1000 * if(1 - abs(x - X0), 1, 0) + * + * routed onto `cliff_elevation` with smoothing left at 1, a single contour + * (`interval = 1e6`) and the cliffiness gate held open (`richness = 4`). The + * smoothed field is then exactly `1 + 1000 * w(i)`, where `w(i)` is the weight + * corner `i` gives the knot at `X0/4` and nothing else - every other corner + * contributes the constant 1. Cliffs appear where that crosses + * `cliff_elevation_0 = 500`, i.e. where `w` crosses 0.5, so the cliff columns + * read the stencil off the game directly. + * + * **The arms include a corner that is NOT a knot under the model, and its + * prediction is that the game produces NOTHING AT ALL.** That is the whole point + * of the design: a stencil test that can only ever confirm weights is much + * weaker than one with an arm whose predicted output is empty, because an empty + * result cannot be produced by a stencil that is merely close. + */ +async function captureCliffSmoothingStencil(): Promise { + const seed = 123456; + const arms: { label: string; axis: "x" | "y"; index: number; region: Region }[] = [ + { + label: "column 432 (in-chunk 0, knot)", + axis: "x", + index: 432, + region: { x0: 1700, y0: 1500, x1: 1800, y1: 1600 }, + }, + { + label: "column 435 (in-chunk 3, NOT a knot)", + axis: "x", + index: 435, + region: { x0: 1700, y0: 1500, x1: 1800, y1: 1600 }, + }, + { + label: "column 436 (in-chunk 4, knot)", + axis: "x", + index: 436, + region: { x0: 1700, y0: 1500, x1: 1800, y1: 1600 }, + }, + { + label: "column 439 (in-chunk 7, knot)", + axis: "x", + index: 439, + region: { x0: 1700, y0: 1500, x1: 1800, y1: 1600 }, + }, + { + label: "row 376 (in-chunk 0, knot)", + axis: "y", + index: 376, + region: { x0: 1500, y0: 1450, x1: 1600, y1: 1560 }, + }, + { + label: "row 379 (in-chunk 3, NOT a knot)", + axis: "y", + index: 379, + region: { x0: 1500, y0: 1450, x1: 1600, y1: 1560 }, + }, + { + label: "row 380 (in-chunk 4, knot)", + axis: "y", + index: 380, + region: { x0: 1500, y0: 1450, x1: 1600, y1: 1560 }, + }, + { + label: "row 383 (in-chunk 7, knot)", + axis: "y", + index: 383, + region: { x0: 1500, y0: 1450, x1: 1600, y1: 1560 }, + }, + ]; + const E0 = 500; + const cases: { + label: string; + axis: "x" | "y"; + index: number; + region: Region; + expression: string; + effective: DumpedCliffSettings | undefined; + cliffs: Position[]; + }[] = []; + + for (const arm of arms) { + const at = arm.index * 4; + const expression = `1 + 1000 * if(1 - abs(${arm.axis} - ${String(at)}), 1, 0)`; + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const dump = await sampleCliffEntitiesFull(arm.region, { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + probeExpression: expression, + cliffSettings: { + cliff_smoothing: 1, + cliff_elevation_interval: 1000000, + cliff_elevation_0: E0, + richness: 4, + }, + }); + cases.push({ + label: arm.label, + axis: arm.axis, + index: arm.index, + region: arm.region, + expression, + effective: dump.cliffSettings, + cliffs: dump.cliffs, + }); + console.log(` ${arm.label.padEnd(38)} -> ${String(dump.cliffs.length)} cliffs`); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + } + + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 (Space Age) via test/oracle. Measures the cliff_smoothing " + + "STENCIL rather than deriving it. A DELTA probe `1 + 1000 * if(1 - abs(x - X0), 1, 0)` is " + + "routed onto property_expression_names.cliff_elevation with cliff_smoothing left at 1, " + + "cliff_elevation_interval=1e6 (a single contour) and richness=4 (the cliffiness gate held " + + "open). Every corner except column X0/4 carries the constant 1, so the smoothed field is " + + "exactly 1 + 1000*w(i) where w(i) is the weight corner i gives the knot at X0/4 - the game's " + + "cliffs at cliff_elevation_0=500 therefore trace the w=0.5 contour of the stencil itself. " + + "Four column arms and four row arms cover in-chunk indices 0, 3, 4 and 7 on both axes. The " + + "in-chunk-3 arms are the load-bearing ones: 3 is NOT a knot under `smoothingKnots`, so the " + + "model predicts the game places NOTHING, and an empty prediction cannot be satisfied by a " + + "stencil that is merely close. Forced surface seed like every other Vulcanus fixture. " + + "Regenerate: node --experimental-strip-types test/oracle/capture.ts cliff-smoothing-stencil", + seed, + cliffElevation0: E0, + cases, + }; + const out = join(FIXTURES, "oracle-cliff-smoothing-stencil.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log(`wrote ${out} (${String(cases.length)} arms)`); +} + if (want("cliff-entities")) await captureCliffEntities(); if (want("vulcanus-ore-cliff-replication")) await captureVulcanusOreCliffReplication(); if (want("vulcanus-cliff-corner-fields")) await captureVulcanusCliffCornerFields(); @@ -3468,6 +3720,8 @@ if (want("vulcanus-cliff-corner-fields-entity-regions")) if (want("rocks")) await captureRocks(); if (want("vulcanus-cliff-entities")) await captureVulcanusCliffEntities(); if (want("vulcanus-cliff-smoothing")) await captureVulcanusCliffSmoothing(); +if (want("vulcanus-cliff-smoothing-off-regions")) await captureVulcanusCliffSmoothingOffRegions(); +if (want("cliff-smoothing-stencil")) await captureCliffSmoothingStencil(); if (want("vulcanus-cliff-collapsed")) await captureVulcanusCliffCollapsed(); if (want("vulcanus-elevation-levels")) await captureVulcanusElevationLevels(); if (want("multisample-grid")) await captureMultisampleGrid();