diff --git a/docs/noise/vulcanus-cliffs-NOTES.md b/docs/noise/vulcanus-cliffs-NOTES.md index 82814e8..44180bb 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -3569,3 +3569,71 @@ That is the part that actually unblocks the next attempt. Every structural test on this residual - border, orientation, rim distance, anything new - just doubled its power. At n = 14 nothing could have been settled; at 27 the border question is answerable with one more capture round of the same size. + +## RESULT: the unexplained residual sits on CHUNK BORDERS - 2.91 sigma (2026-08-03, #84) + +The section above reported a chunk-border enrichment as a lead and said one more +capture round would settle it. It did. + +`test/cliffResidualBorderEnrichment.spec.ts`, +`oracle-vulcanus-cliff-entities-border-batch.seed123456.json`. + +| batch | unexplained | on chunk border | base rate | z | +| --- | --- | --- | --- | --- | +| original 3 regions | 14 | 9 (64.3%) | 45.0% | 1.45 | +| +4 regions | 13 | 9 (69.2%) | 47.2% | 1.59 | +| **+8 regions** | 17 | **12 (70.6%)** | 46.0% | **2.03** | +| **combined, 15 regions** | **44** | **30 (68.2%)** | ~46.3% | **2.91** | + +p is about 0.002. **This is a result, not a lead.** + +### The prediction was registered before the capture + +Written into `captureVulcanusCliffEntitiesBorderBatch`'s own doc comment, before +it ran: roughly 26 more unexplained cells with about 17 on a border if the +enrichment is real at ~66%, taking the combined figure to ~2.9 sigma - and a +**fall back toward the base rate** if it is noise. + +It came back 12 of 17, at a higher rate than predicted on fewer cells, and the +combined figure landed on 2.91. The effect size is stable across all three +batches (64-71%) and so is the base rate (45-47%), which is what says the +comparison is sound rather than the numerator being lucky. + +**The first row was correctly dismissed as noise when it was all there was.** Its +value came from being written down, so it could be re-tested when n grew - which +is the whole lesson of this stretch. + +### Why it points at `updateConnections` + +**Chunk borders are that rule's entire domain.** `applyCliffs` gates it on +`tryToAddCliff`'s fifth argument, which is `!onChunkBorder`, so it runs on the +chunk's outer ring and nowhere else. Nothing else in the pipeline treats border +cells differently at all. + +And it is the rule the port has the weakest grip on: + +- `cliffConnections.spec.ts` measures it firing **zero** times on our own cell + set, and `applyCliffConnections` documents its model as an **UPPER bound** on + how much it removes - the one place the port is knowingly not a transcription. +- #122 promoted its gate from inert to load-bearing. +- #127 showed the gate cannot be scored from map-generation output at all. + +So: modelled approximately, unobservable directly, and the residual it cannot +explain is enriched **1.47x** on precisely its domain. **This is the first +positive evidence that `updateConnections` does anything.** + +### What it does NOT say + +It does not say the 30 border cells are destroyed BY `updateConnections`. An +enrichment on a rule's domain is not the rule firing, and **14 of the 44 are not +on a border at all** - so if this is one cause, it is not the only one. + +### The port generalises, across fifteen regions + +This batch: 5581 raw, 5134 game cliffs, strict superset in all eight regions, +destruction predicate **precision 0.9818, recall 0.8434**, 7 false rejections. +Two of the eight have no unexplained cells at all and `[-1600,3200]` reproduces +the game exactly (686 = 686). + +The residual is **concentrated, not a background rate** - which is itself a +constraint on any mechanism proposed for it. diff --git a/test/cliffResidualBorderEnrichment.spec.ts b/test/cliffResidualBorderEnrichment.spec.ts new file mode 100644 index 0000000..8343ba6 --- /dev/null +++ b/test/cliffResidualBorderEnrichment.spec.ts @@ -0,0 +1,286 @@ +import { describe, expect, it } from "vite-plus/test"; + +import batch from "./fixtures/oracle-vulcanus-cliff-entities-border-batch.seed123456.json"; +import { CLIFF_CODE_TO_ORIENTATION, cliffCollisionTileBox } from "../src/noise/cliffs/cliffCatalog"; +import { cliffCodeForOrientation, onChunkBorder } from "../src/noise/cliffs/cliffConnections"; +import { makeCliffPlacementFromFields } from "../src/noise/cliffs/cliffPlacement"; +import { + VULCANUS_CLIFF_ELEVATION_0, + VULCANUS_CLIFF_ELEVATION_INTERVAL, + VULCANUS_CLIFF_SMOOTHING, + makeVulcanusCliffFields, +} from "../src/noise/cliffs/vulcanusCliffFields"; +import { makeVulcanusOreRejection } from "../src/noise/cliffs/vulcanusOreRejection"; +import { VULCANUS_CLIFF_BLOCKING_TILES } from "../src/noise/preview/renderVulcanusCliffs"; +import { buildResources } from "../src/noise/preview/renderVulcanusResources"; +import { makeVulcanusTileResolver } from "../src/noise/tiles/vulcanusCatalog"; +import { withCtxDefaults } from "../src/noise/eval/ctx"; + +/** + * **The unexplained residual sits on CHUNK BORDERS - 2.91 sigma over 15 regions, + * with the prediction registered before the data** (#84). + * + * This closes a question that has been open in three stages, and the way it + * closed matters as much as the answer. + * + * | batch | unexplained | on chunk border | base rate | z | + * | --- | --- | --- | --- | --- | + * | original 3 regions | 14 | 9 (64.3%) | 45.0% | 1.45 | + * | +4 regions (#131) | 13 | 9 (69.2%) | 47.2% | 1.59 | + * | **+8 regions (here)** | 17 | **12 (70.6%)** | 46.0% | **2.03** | + * | **combined** | **44** | **30 (68.2%)** | ~46.3% | **2.91** | + * + * The first row was correctly **dismissed as noise** - at n = 14 any partition + * lands near there. The second was the same hypothesis on fresh data. This third + * batch was captured against a prediction written into + * `captureVulcanusCliffEntitiesBorderBatch`'s doc comment **before it ran**: + * roughly 26 more unexplained cells with about 17 on a border, taking the + * combined figure to ~2.9 sigma - and a fall back toward the base rate if the + * effect was noise. + * + * It came back at 12 of 17 and a combined **2.91 sigma**. The effect size is + * stable across all three batches (64-71%) and so is the base rate it is + * measured against (45-47%), which is what says the comparison is sound rather + * than the numerator being lucky. + * + * ## Why this points somewhere + * + * **Chunk borders are `Cliff::updateConnections`' entire domain.** `applyCliffs` + * gates it on `tryToAddCliff`'s fifth argument, which is `!onChunkBorder`, so it + * runs on the chunk's outer ring and nowhere else. It is the only rule in the + * pipeline that treats border cells differently at all. + * + * And it is exactly the rule the port has the weakest grip on: + * + * - `test/cliffConnections.spec.ts` measures it firing **zero** times on our own + * cell set, and `applyCliffConnections` documents its model of the rule as an + * **UPPER bound** on how much it removes - the one place the port is knowingly + * not a transcription. + * - #122 promoted its gate from inert to load-bearing. + * - #127 showed the gate cannot be scored from map-generation output at all, + * because destruction, `updateConnections` and the crossing field all preserve + * connection consistency. + * + * So the port models this rule approximately, cannot observe it directly, and + * the residual it cannot explain is enriched 1.47x on precisely its domain. + * **That is the first positive evidence that `updateConnections` does anything**, + * and it is where the next attempt should go. + * + * ## What it does NOT say + * + * It does not say the 30 border cells are destroyed BY `updateConnections`. The + * enrichment is a correlation with the rule's domain, not a demonstration of the + * rule firing - and 14 of the 44 are not on a border at all, so if this is one + * cause it is not the only one. p is about 0.002, which is a strong hint and not + * a proof of mechanism. + * + * ## The port also generalises, across fifteen regions now + * + * | | this batch | + * | --- | --- | + * | raw cells / game cliffs | 5581 / 5134 | + * | raw is a strict superset | **yes, all eight** | + * | destruction predicate precision | **0.9818** | + * | destruction predicate recall | **0.8434** | + * + * Two of the eight regions have **no unexplained cells at all**, and + * `[-1600,3200]` reproduces the game exactly - 686 raw, 686 game. + */ + +const INPUT = { seed0: 123456, startingPositions: [{ x: 0, y: 0 }] }; +const ctx = withCtxDefaults(INPUT); +const fields = makeVulcanusCliffFields(ctx); +const tileAt = makeVulcanusTileResolver(INPUT); +const oreRejects = makeVulcanusOreRejection(buildResources(ctx), ctx.vulcanusResourceControls); +const K = (x: number, y: number): string => `${String(x)},${String(y)}`; +const BANDS = { + elevation0: VULCANUS_CLIFF_ELEVATION_0, + interval: VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing: VULCANUS_CLIFF_SMOOTHING, +}; +const isLava = (x: number, y: number): boolean => + VULCANUS_CLIFF_BLOCKING_TILES.has(tileAt(x, y).name); + +interface Ent { + x: number; + y: number; + name: string; + orientation?: string; +} +interface Region { + x0: number; + y0: number; + x1: number; + y1: number; +} +interface Case { + label: string; + region: Region; + cliffs: Ent[]; +} +const CASES = batch.cases as unknown as Case[]; + +interface Totals { + raw: number; + game: number; + rawOnBorder: number; + ourKill: number; + gameKill: number; + agree: number; + falseRejections: number; + missed: number; + ore: number; + unknown: number; + unknownOnBorder: number; + superset: boolean; + perRegionUnknown: number[]; +} + +const T: Totals = (() => { + const t: Totals = { + raw: 0, + game: 0, + rawOnBorder: 0, + ourKill: 0, + gameKill: 0, + agree: 0, + falseRejections: 0, + missed: 0, + ore: 0, + unknown: 0, + unknownOnBorder: 0, + superset: true, + perRegionUnknown: [], + }; + for (let i = 0; i < CASES.length; i += 2) { + const on = CASES[i]; + const off = CASES[i + 1]; + const r = on.region; + const inR = (p: { x: number; y: number }): boolean => + p.x >= r.x0 && p.x < r.x1 && p.y >= r.y0 && p.y < r.y1; + const game = new Set( + on.cliffs.filter((e) => e.name === "cliff-vulcanus" && inR(e)).map((e) => K(e.x, e.y)), + ); + const gameOff = new Set( + off.cliffs.filter((e) => e.name === "cliff-vulcanus" && inR(e)).map((e) => K(e.x, e.y)), + ); + const oreSuppressed = new Set([...gameOff].filter((k) => !game.has(k))); + const cells = makeCliffPlacementFromFields(fields, BANDS) + .placedCells(r.x0 - 64, r.y0 - 64, r.x1 + 64, r.y1 + 64) + .filter(inR); + let regionUnknown = 0; + for (const p of cells) { + const o = CLIFF_CODE_TO_ORIENTATION[p.code]; + if (o === undefined) continue; + const k = K(p.x, p.y); + const code = cliffCodeForOrientation(o); + const box = cliffCollisionTileBox(code, p.x, p.y); + let lava = false; + if (box !== undefined) + for (let tx = box.left; tx <= box.right; tx++) + for (let ty = box.top; ty <= box.bottom; ty++) if (isLava(tx, ty)) lava = true; + const ourKill = lava || oreRejects(code, p.x, p.y); + const gameKill = !game.has(k); + const border = onChunkBorder(p.x, p.y); + t.raw++; + if (border) t.rawOnBorder++; + if (ourKill) t.ourKill++; + if (gameKill) t.gameKill++; + if (ourKill && gameKill) t.agree++; + else if (ourKill) t.falseRejections++; + else if (gameKill) { + t.missed++; + if (oreSuppressed.has(k)) t.ore++; + else { + t.unknown++; + regionUnknown++; + if (border) t.unknownOnBorder++; + } + } + } + const have = new Set(cells.map((p) => K(p.x, p.y))); + for (const k of game) if (!have.has(k)) t.superset = false; + t.game += game.size; + t.perRegionUnknown.push(regionUnknown); + } + return t; +})(); + +/** One-sample binomial z, the same statistic quoted in the doc comment. */ +const z = (k: number, n: number, p: number): number => (k - n * p) / Math.sqrt(n * p * (1 - p)); + +describe("the pre-registered chunk-border test, on eight fresh regions", () => { + /** + * The sample and the base rate first, because the enrichment is only worth + * anything against them. The base rate is stable at 46.0% here against 45.0% + * and 47.2% in the two earlier batches, so the denominator is not drifting. + */ + it("captures 5581 raw cells at a 46.0% border base rate", () => { + expect(CASES.length).toBe(16); + expect(T.raw).toBe(5581); + expect(T.game).toBe(5134); + expect(T.rawOnBorder / T.raw).toBeCloseTo(0.46, 2); + }, 900000); + + /** + * **The prediction, and the result.** Registered before the capture: roughly + * 26 more unexplained cells with about 17 on a border. It came back 17 and 12 + * - fewer cells than predicted, at a HIGHER rate than predicted, and the + * combined figure landed on the predicted 2.9 sigma. + */ + it("finds 12 of 17 unexplained cells on a chunk border", () => { + expect(T.unknown).toBe(17); + expect(T.unknownOnBorder).toBe(12); + expect(T.unknownOnBorder / T.unknown).toBeCloseTo(0.706, 3); + // On its own this batch clears 2 sigma. + expect(z(T.unknownOnBorder, T.unknown, T.rawOnBorder / T.raw)).toBeGreaterThan(2); + }, 900000); + + /** + * **Combined over all fifteen regions: 30 of 44, 2.91 sigma.** Three + * independent batches, two of them pre-registered, with a stable effect size + * (64.3%, 69.2%, 70.6%) against a stable base rate (45.0%, 47.2%, 46.0%). + */ + it("brings the combined figure to 30 of 44 at 2.91 sigma", () => { + const combinedN = 27 + T.unknown; + const combinedK = 18 + T.unknownOnBorder; + expect(combinedN).toBe(44); + expect(combinedK).toBe(30); + expect(combinedK / combinedN).toBeCloseTo(0.682, 3); + expect(z(combinedK, combinedN, 0.463)).toBeCloseTo(2.91, 2); + }, 900000); + + /** + * **And the honest limit.** 14 of the 44 are NOT on a border, so if this is one + * cause it is not the only one - and an enrichment on a rule's domain is not + * the rule firing. This arm exists so the count cannot be quietly rounded to + * "the residual is updateConnections". + */ + it("leaves 14 of the 44 off the border", () => { + expect(27 + T.unknown - (18 + T.unknownOnBorder)).toBe(14); + }, 900000); +}); + +describe("the port on eight more regions it was never fitted to", () => { + it("keeps the superset property and scores 0.982 / 0.843", () => { + expect(T.superset).toBe(true); + expect(T.ourKill).toBe(384); + expect(T.gameKill).toBe(447); + expect(T.agree).toBe(377); + expect(T.agree / T.ourKill).toBeCloseTo(0.9818, 4); + expect(T.agree / T.gameKill).toBeCloseTo(0.8434, 4); + expect(T.falseRejections).toBe(7); + }, 900000); + + /** + * A quarter of the regions have nothing to explain at all, which is worth + * pinning: the residual is not a uniform background rate, it is concentrated. + */ + it("finds two of the eight regions completely explained", () => { + expect(T.perRegionUnknown).toEqual([0, 2, 4, 0, 1, 4, 3, 3]); + expect(T.perRegionUnknown.filter((n) => n === 0).length).toBe(2); + expect(T.missed).toBe(70); + expect(T.ore).toBe(53); + expect(T.unknown).toBe(17); + }, 900000); +}); diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index a89ab7c..653a2d5 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -327,6 +327,10 @@ "oracle-vulcanus-cliff-entities-more-regions.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-08-03 by test/oracle/capture.ts vulcanus-cliff-entities-more-regions against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Four MORE Vulcanus cliff-entity regions with the paired ON / ALL-resources-OFF ore lever (#84), captured to raise n: the residual's unexplained population was 14 cells and every structural test on it landed at 1.4-1.9 sigma against its base rate, which is what a partition looks like at n=14 whether or not a cause exists; and the shipped accuracy figure was measured on three regions chosen for reasons unrelated to sampling. Regions [3000,3000], [-2000,-2000], [800,-1500] and [-2600,1200], each 256x256, spread away from spawn and from each other. Each arm records the autoplace_controls and cliff_settings the SURFACE read back and dumps cliffs and resources from one generated surface, so an override that failed to apply cannot be mistaken for a term that does not matter." + }, + "oracle-vulcanus-cliff-entities-border-batch.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-03 by test/oracle/capture.ts vulcanus-cliff-entities-border-batch against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Eight Vulcanus cliff-entity regions with the paired ON / ALL-resources-OFF ore lever, captured to make the chunk-border question decisive (#84). The unexplained residual ran 9/14 on a border in the original three regions and 9/13 in the four added by #131 - replicated but only ~2.1 sigma combined. The prediction was recorded in the capture's own doc comment BEFORE the capture ran: ~26 more unexplained cells with ~17 on a border if the enrichment is real, a fall toward the ~46% base rate if it is noise. Regions [2200,-2800], [-3400,-900], [1200,2600], [-1600,3200], [3600,600], [-900,-3300], [2800,2000], [-3000,2800], each 256x256, spread away from spawn, from each other and from the seven already captured. Each arm records the autoplace_controls and cliff_settings the SURFACE read back and dumps cliffs and resources from one generated surface." } } } diff --git a/test/fixtures/oracle-vulcanus-cliff-entities-border-batch.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-entities-border-batch.seed123456.json new file mode 100644 index 0000000..bed9db2 --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-entities-border-batch.seed123456.json @@ -0,0 +1,96303 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 via test/oracle. Eight more Vulcanus cliff-entity regions with the paired ON / ALL-resources-OFF ore lever, captured to make the CHUNK-BORDER question decisive (#84). The unexplained residual ran 9/14 on a border in the original three regions and 9/13 in the four added by #131 - replicated, but 1.59 sigma alone and ~2.1 combined. PREDICTION RECORDED BEFORE CAPTURE: if the enrichment is real at ~66%, these should add ~26 unexplained cells with ~17 on a border, taking the combined figure to ~2.9 sigma; if it is noise, the new batch sits near its own ~46% base rate and the combined figure FALLS. Regions are spread away from spawn, from each other, and from the seven already captured. Each arm records the autoplace_controls and cliff_settings the SURFACE read back and dumps cliffs and resources from one generated surface. Regenerate: node --experimental-strip-types test/oracle/capture.ts vulcanus-cliff-entities-border-batch", + "seed": 123456, + "cases": [ + { + "label": "[2200,-2800], resources ON", + "region": { + "x0": 2200, + "y0": -2800, + "x1": 2456, + "y1": -2544 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 2218, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2226, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2282, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2382, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2414, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2422, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2430, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2438, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2218, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2222, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2226, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2250, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2262, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2266, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2270, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2274, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2278, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2282, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2382, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2386, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2390, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2394, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2398, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2402, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2406, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2410, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2414, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2418, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2422, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2430, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2438, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2214, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2250, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2254, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2258, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2262, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2390, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2394, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2398, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2402, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2406, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2410, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2414, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2422, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2426, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2430, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2434, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2214, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2254, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2258, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2266, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2270, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2294, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2394, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2398, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2402, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2406, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2410, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2414, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2418, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2422, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2206, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2210, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2266, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2270, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2274, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2294, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2298, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2306, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2206, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2266, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2270, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2274, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2298, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2302, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2314, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2454, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2458, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2230, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2254, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2258, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2282, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2286, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2290, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2310, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2314, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2450, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2454, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2198, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2202, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2230, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2254, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2262, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2266, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2270, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2274, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2278, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2282, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2290, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2294, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2306, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2310, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2442, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2446, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2450, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2202, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2226, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2230, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2234, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2294, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2298, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2302, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2438, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2442, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2458, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2202, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2226, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2234, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2374, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2382, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2434, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2438, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2230, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2234, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2246, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2374, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2426, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2430, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2434, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2230, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2234, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2238, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2246, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2322, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2326, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2330, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2374, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2422, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2426, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2226, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2230, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2234, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2242, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2246, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2306, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2310, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2314, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2318, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2374, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2378, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2382, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2450, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2454, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2206, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2210, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2214, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2222, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2226, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2230, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2378, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2446, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2450, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2222, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2226, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2230, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2438, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2442, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2446, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2218, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2222, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2226, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2230, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2382, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2438, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2210, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2214, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2386, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2414, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2198, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2202, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2206, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2210, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2386, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2410, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2414, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2242, + "y": -2729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2414, + "y": -2729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2342, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2358, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2362, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2370, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2374, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2398, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2402, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2414, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2210, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2242, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2314, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2318, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2342, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2350, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2354, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2366, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2374, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2398, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2402, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2414, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2418, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2314, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2318, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2342, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2350, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2354, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2362, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2366, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2374, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2418, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2238, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2242, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2318, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2342, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2374, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2386, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2418, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2242, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2318, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2322, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2342, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2346, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2362, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2370, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2374, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2418, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2206, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2246, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2322, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2326, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2346, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2350, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2354, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2358, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2362, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2366, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2418, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2246, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2250, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2326, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2330, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2334, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2338, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2342, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2354, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2414, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2418, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2434, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2210, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2214, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2254, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2342, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2346, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2354, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2382, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2426, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2430, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2434, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2214, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2346, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2350, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2354, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2426, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2210, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2214, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2258, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2342, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2346, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2350, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2354, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2358, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2366, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2378, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2406, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2410, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2210, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2258, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2342, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2346, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2350, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2358, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2362, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2382, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2386, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2394, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2410, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2226, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2238, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2242, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2310, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2350, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2354, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2358, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2362, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2366, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2370, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2394, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2222, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2226, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2246, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2250, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2310, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2330, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2334, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2350, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2354, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2358, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2362, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2366, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2370, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2374, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2378, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2394, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2398, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2254, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2258, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2310, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2338, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2346, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2350, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2354, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2358, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2362, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2378, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2382, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2386, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2398, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2254, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2258, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2310, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2338, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2346, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2354, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2362, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2386, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2398, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2414, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2254, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2258, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2310, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2314, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2338, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2346, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2354, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2386, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2398, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2402, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2330, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2338, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2346, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2354, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2386, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2390, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2402, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2406, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2442, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2326, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2330, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2334, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2338, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2346, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2350, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2354, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2358, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2362, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2366, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2370, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2374, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2390, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2394, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2438, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2442, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2322, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2326, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2350, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2362, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2374, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2390, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2394, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2438, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2442, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2302, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2306, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2310, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2314, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2318, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2350, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2354, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2362, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2442, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2298, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2302, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2354, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2366, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2430, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2442, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2446, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2323.92578125, + "y": -2642.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2328.875, + "y": -2643.88671875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 2333.82421875, + "y": -2642.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 2298, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2354, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2358, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2366, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2386, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2430, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2446, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2450, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2321.875, + "y": -2638.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 2335.875, + "y": -2638.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2262, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2294, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2298, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2358, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2362, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2386, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2398, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2402, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2430, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2434, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2450, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2454, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2333.82421875, + "y": -2635.44140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2262, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2294, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2310, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2314, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2390, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2394, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2398, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2402, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2406, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2410, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2434, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2454, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2458, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2262, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2290, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2294, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2306, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2310, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2322, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2326, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2350, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2354, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2390, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2414, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2418, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2434, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2438, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2258, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2262, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2290, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2294, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2298, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2302, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2310, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2314, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2350, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2354, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2390, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2394, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2414, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2418, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2422, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2434, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2438, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2446, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2450, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2454, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2262, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2306, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2310, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2350, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2354, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2386, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2394, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2398, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2422, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2426, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2430, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2434, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2438, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2446, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2450, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2454, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2202, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2234, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2262, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2266, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2270, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2274, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2386, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2390, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2398, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2430, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2438, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2442, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2234, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2238, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2266, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2270, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2390, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2430, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2442, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2446, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2242, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2430, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2434, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2446, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2450, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2454, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2458, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2202, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2206, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2210, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2286, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2290, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2310, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2314, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2318, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2390, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2434, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2438, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2206, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2226, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2230, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2238, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2246, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2282, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2286, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2314, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2318, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2390, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2438, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2442, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2446, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2450, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2206, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2246, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2262, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2266, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2270, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2274, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2278, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2282, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2286, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2290, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2302, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2306, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2310, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2314, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2326, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2450, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2454, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2198, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2202, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2206, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2210, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2238, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2246, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2250, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2254, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2262, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2266, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2270, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2274, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2278, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2282, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2286, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2302, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2306, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2314, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2318, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2326, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2454, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2246, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2250, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2262, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2266, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2270, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2278, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2314, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2318, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2454, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2458, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2206, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2250, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2254, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2266, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2270, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2274, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2278, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2322, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2326, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2206, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2210, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2254, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2258, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2266, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2322, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2334, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2446, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2450, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2254, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2334, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2442, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2446, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2450, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2250, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2262, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2306, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2310, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2314, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2334, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2442, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2450, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2198, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2202, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2206, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2214, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2242, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2246, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2302, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2306, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2310, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2314, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2334, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2338, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2382, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2442, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2450, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2454, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2458, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2242, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2270, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2274, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2298, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2302, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2310, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2314, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2382, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2386, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2442, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2282, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2286, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2290, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2294, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2330, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2386, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2438, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2442, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2222, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2238, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2246, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2250, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2282, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2294, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2298, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2302, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2306, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2386, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2434, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2438, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2230, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2234, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2238, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2254, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2258, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2262, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2266, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2278, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2282, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2298, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2302, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2306, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2310, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2386, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2434, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2246, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2258, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2262, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2266, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2270, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2274, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2278, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2310, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2314, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2430, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2434, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2218, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2222, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2246, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2254, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2258, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2262, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2266, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2270, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2274, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2322, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2430, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2254, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2258, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2430, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ], + "resources": [ + { + "x": 2404.5, + "y": -2685.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2401.5, + "y": -2680.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2422.5, + "y": -2677.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2413.5, + "y": -2675.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2404.5, + "y": -2672.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2438.5, + "y": -2672.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2438.5, + "y": -2665.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2421.5, + "y": -2662.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2434.5, + "y": -2661.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2431.5, + "y": -2658.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2403.5, + "y": -2657.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2407.5, + "y": -2657.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2401.5, + "y": -2653.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2422.5, + "y": -2653.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2414.5, + "y": -2649.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2421.5, + "y": -2648.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2436.5, + "y": -2649.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2415.5, + "y": -2643.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2388.5, + "y": -2636.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2423.5, + "y": -2636.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 2417.5, + "y": -2634.5, + "name": "sulfuric-acid-geyser" + } + ] + }, + { + "label": "[2200,-2800], ALL resources OFF", + "region": { + "x0": 2200, + "y0": -2800, + "x1": 2456, + "y1": -2544 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 2218, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2226, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2282, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2382, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2414, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2422, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2430, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2438, + "y": -2801.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2218, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2222, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2226, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2250, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2262, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2266, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2270, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2274, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2278, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2282, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2382, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2386, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2390, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2394, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2398, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2402, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2406, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2410, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2414, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2418, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2422, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2430, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2438, + "y": -2797.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2214, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2250, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2254, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2258, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2262, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2390, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2394, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2398, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2402, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2406, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2410, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2414, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2422, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2426, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2430, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2434, + "y": -2793.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2214, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2254, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2258, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2266, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2270, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2294, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2394, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2398, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2402, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2406, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2410, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2414, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2418, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2422, + "y": -2789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2206, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2210, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2266, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2270, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2274, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2294, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2298, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2306, + "y": -2785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2206, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2266, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2270, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2274, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2298, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2302, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2314, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2454, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2458, + "y": -2781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2230, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2254, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2258, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2282, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2286, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2290, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2310, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2314, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2450, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2454, + "y": -2777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2198, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2202, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2230, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2254, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2262, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2266, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2270, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2274, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2278, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2282, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2290, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2294, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2306, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2310, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2442, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2446, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2450, + "y": -2773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2202, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2226, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2230, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2234, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2294, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2298, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2302, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2438, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2442, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2458, + "y": -2769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2202, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2226, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2234, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2374, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2382, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2434, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2438, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2230, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2234, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2246, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2374, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2426, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2430, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2434, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2230, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2234, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2238, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2246, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2322, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2326, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2330, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2374, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2422, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2426, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2454, + "y": -2757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2226, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2230, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2234, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2242, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2246, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2306, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2310, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2314, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2318, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2374, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2378, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2382, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2450, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2454, + "y": -2753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2206, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2210, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2214, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2222, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2226, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2230, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2378, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2446, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2450, + "y": -2749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2222, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2226, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2230, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2438, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2442, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2446, + "y": -2745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2218, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2222, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2226, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2230, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2382, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2438, + "y": -2741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2210, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2214, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2386, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2414, + "y": -2737.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2198, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2202, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2206, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2210, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2386, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2410, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2414, + "y": -2733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2242, + "y": -2729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2414, + "y": -2729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2342, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2358, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2362, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2370, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2374, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2398, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2402, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2414, + "y": -2725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2210, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2242, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2314, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2318, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2342, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2350, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2354, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2366, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2374, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2398, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2402, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2414, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2418, + "y": -2721.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2314, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2318, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2342, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2350, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2354, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2362, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2366, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2374, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2418, + "y": -2717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2238, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2242, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2318, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2342, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2374, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2382, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2386, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2418, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2713.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2242, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2318, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2322, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2342, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2346, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2362, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2370, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2374, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2418, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2206, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2246, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2322, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2326, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2346, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2350, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2354, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2358, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2362, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2366, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2418, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2246, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2250, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2326, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2330, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2334, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2338, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2342, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2354, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2414, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2418, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2434, + "y": -2701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2210, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2214, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2254, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2342, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2346, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2354, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2382, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2426, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2430, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2434, + "y": -2697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2214, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2346, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2350, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2354, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2366, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2426, + "y": -2693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2210, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2214, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2258, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2342, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2346, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2350, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2354, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2358, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2366, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2378, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2406, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2410, + "y": -2689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2210, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2258, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2342, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2346, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2350, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2358, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2362, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2378, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2382, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2386, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2394, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2410, + "y": -2685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2226, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2238, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2242, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2306, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2310, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2350, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2354, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2358, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2362, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2366, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2370, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2394, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2222, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2226, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2246, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2250, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2310, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2330, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2334, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2350, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2354, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2358, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2362, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2366, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2370, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2374, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2378, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2394, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2398, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2254, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2258, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2310, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2338, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2346, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2350, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2354, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2358, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2362, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2378, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2382, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2386, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2398, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2254, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2258, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2310, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2338, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2346, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2354, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2362, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2386, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2398, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2414, + "y": -2669.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2254, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2258, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2310, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2314, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2338, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2346, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2354, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2386, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2398, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2402, + "y": -2665.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2330, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2338, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2346, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2354, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2386, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2390, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2402, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2406, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2442, + "y": -2661.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2326, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2330, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2334, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2338, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2346, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2350, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2354, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2358, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2362, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2366, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2370, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2374, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2390, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2394, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2438, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2442, + "y": -2657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2322, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2326, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2350, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2358, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2362, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2374, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2390, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2394, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2438, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2442, + "y": -2653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2302, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2306, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2310, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2314, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2318, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2350, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2354, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2362, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2442, + "y": -2649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2298, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2302, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2354, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2362, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2366, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2430, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2442, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2446, + "y": -2645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2323.92578125, + "y": -2642.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2328.875, + "y": -2643.88671875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 2333.82421875, + "y": -2642.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 2298, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2354, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2358, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2366, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2386, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2418, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2430, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2446, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2450, + "y": -2641.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2321.875, + "y": -2638.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 2335.875, + "y": -2638.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2262, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2294, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2298, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2358, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2362, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2386, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2398, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2402, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2418, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2430, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2434, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2450, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2454, + "y": -2637.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2333.82421875, + "y": -2635.44140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2262, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2294, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2310, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2314, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2390, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2394, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2398, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2402, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2406, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2410, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2418, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2434, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2454, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2458, + "y": -2633.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2262, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2290, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2294, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2306, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2310, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2322, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2326, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2350, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2354, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2390, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2410, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2414, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2418, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2434, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2438, + "y": -2629.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2258, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2262, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2290, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2294, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2298, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2302, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2310, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2314, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2350, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2354, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2390, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2394, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2414, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2418, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2422, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2434, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2438, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2446, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2450, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2454, + "y": -2625.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2258, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2262, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2306, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2310, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2350, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2354, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2386, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2394, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2398, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2410, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2422, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2426, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2430, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2434, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2438, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2446, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2450, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2454, + "y": -2621.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2202, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2234, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2262, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2266, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2270, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2274, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2386, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2390, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2398, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2430, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2438, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2442, + "y": -2617.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2234, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2238, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2266, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2270, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2390, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2430, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2442, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2446, + "y": -2613.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2242, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2430, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2434, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2446, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2450, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2454, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2458, + "y": -2609.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2202, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2206, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2210, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2286, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2290, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2310, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2314, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2318, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2390, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2434, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2438, + "y": -2605.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2206, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2226, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2230, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2238, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2246, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2282, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2286, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2314, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2318, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2390, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2438, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2442, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2446, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2450, + "y": -2601.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2206, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2246, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2262, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2266, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2270, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2274, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2278, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2282, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2286, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2290, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2302, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2306, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2310, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2314, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2326, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2450, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2454, + "y": -2597.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2198, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2202, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2206, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2210, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2214, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2238, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2246, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2250, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2254, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2262, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2266, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2270, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2274, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2278, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2282, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2286, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2302, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2306, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2314, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2318, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2322, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2326, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2454, + "y": -2593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2246, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2250, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2262, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2266, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2270, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2278, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2314, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2318, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2454, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2458, + "y": -2589.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2206, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2250, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2254, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2266, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2270, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2274, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2278, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2322, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2326, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2585.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2206, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2210, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2254, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2258, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2266, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2322, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2334, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2446, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2450, + "y": -2581.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2254, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2334, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2442, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2446, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2450, + "y": -2577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2250, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2262, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2306, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2310, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2314, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2334, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2442, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2450, + "y": -2573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2198, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2202, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2206, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2214, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2242, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2246, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2302, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2306, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2310, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2314, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2334, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2338, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2382, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2442, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2450, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2454, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2458, + "y": -2569.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2206, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2242, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2270, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2274, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2298, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2302, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2306, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2310, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2314, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2322, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2326, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2330, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2382, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2386, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2442, + "y": -2565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2282, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2286, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2290, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2294, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2330, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2386, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2438, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2442, + "y": -2561.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2222, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2238, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2242, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2246, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2250, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2262, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2282, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2294, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2298, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2302, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2306, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2386, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2434, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2438, + "y": -2557.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2230, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2234, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2238, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2254, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2258, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2262, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2266, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2278, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2282, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2298, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2302, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2306, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2310, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2386, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2434, + "y": -2553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2246, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2258, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2262, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2266, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2270, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2274, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2278, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2310, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2314, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2318, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2430, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2434, + "y": -2549.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2218, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2222, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2246, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2254, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2258, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2262, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2266, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2270, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2274, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2318, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2322, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2430, + "y": -2545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2254, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2258, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2430, + "y": -2541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ], + "resources": [] + }, + { + "label": "[-3400,-900], resources ON", + "region": { + "x0": -3400, + "y0": -900, + "x1": -3144, + "y1": -644 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -3394, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3366, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3362, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3350, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3214, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3202, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3190, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3146, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3394, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3366, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3362, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3358, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3350, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3222, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3218, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3214, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3210, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3206, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3202, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3198, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3190, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3174, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3170, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3154, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3150, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3146, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3358, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3350, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3346, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3254, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3222, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3210, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3206, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3202, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3198, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3190, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3174, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3170, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3394, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3374, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3370, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3358, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3266, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3262, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3258, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3254, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3234, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3230, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3226, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3222, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3206, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3202, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3198, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3190, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3402, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3398, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3394, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3374, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3358, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3342, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3338, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3334, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3330, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3326, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3282, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3278, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3274, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3270, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3266, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3238, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3234, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3190, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3178, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3398, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3394, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3378, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3374, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3362, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3358, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3178, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3402, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3398, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3378, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3286, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3282, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3182, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3178, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3170, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3154, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3150, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3394, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3390, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3378, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3350.30078125, + "y": -873.5625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -3286, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3218, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3214, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3174, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3170, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3154, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3348.25, + "y": -870.0625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -3390, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3314, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3310, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3306, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3302, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3298, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3294, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3286, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3222, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3218, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3178, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3174, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3158, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3154, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3146, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3390, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3378, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3355.25, + "y": -865.11328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -3322, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3318, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3314, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3298, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3294, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3222, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3218, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3214, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3210, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3158, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3154, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3146, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3142, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3402, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3398, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3394, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3390, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3382, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3378, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3326, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3322, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3214, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3210, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3202, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3198, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3154, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3382, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3290, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3286, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3282, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3278, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3274, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3214, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3154, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3150, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3382, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3298, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3294, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3290, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3274, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3270, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3214, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3150, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3173.13671875, + "y": -851.875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -3402, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3398, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3394, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3390, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3386, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3382, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3298, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3282, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3270, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3214, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3198, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3194, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3175.1875, + "y": -848.375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -3402, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3398, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3394, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3390, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3306, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3302, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3298, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3194, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3173.13671875, + "y": -844.87890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -3168.1875, + "y": -843.42578125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3394, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3378, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3374, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3310, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3306, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3286, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3282, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3194, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3398, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3394, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3346, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3342, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3338, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3302, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3298, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3294, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3290, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3286, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3346, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3342, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3338, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3334, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3306, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3302, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3346, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3342, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3334, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3362, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3358, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3150, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3146, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3142, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3366, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3362, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3358, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3354, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3346, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3342, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3334, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3370, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3366, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3354, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3350, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3346, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3390, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3358, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3238, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3234, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3230, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3226, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3222, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3390, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3386, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3362, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3358, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3354, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3350, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3306, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3386, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3358, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3354, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3314, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3390, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3318, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3298, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3166, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3318, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3314, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3306, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3298, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3170, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3166, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3322, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3318, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3314, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3274, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3270, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3266, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3170, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3154, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3150, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3146, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3142, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3374, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3370, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3322, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3314, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3294, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3290, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3266, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3262, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3258, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3170, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3154, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3382, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3378, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3374, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3370, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3322, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3318, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3314, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3306, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3298, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3294, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3158, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3154, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3353.75, + "y": -783.94921875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -3348.80078125, + "y": -782.5, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -3382, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3378, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3374, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3370, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3362, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3318, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3314, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3270, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3266, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3158, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346.75, + "y": -779, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -3378, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3374, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3362, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3314, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3274, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3270, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3158, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3353.75, + "y": -774.05078125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -3348.80078125, + "y": -775.50390625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3318, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3278, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3274, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3362, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3322, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3318, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3298, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3294, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3290, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3286, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3282, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3278, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3270, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3266, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3190, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3370, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3298, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3270, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3266, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3190, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3186, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3374, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3354, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3310, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3306, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3270, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3266, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3262, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3238, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3234, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3194, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3186, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3170, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3166, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3382, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3378, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3358, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3318, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3310, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3274, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3270, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3234, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3230, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3226, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3202, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3194, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3186, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3182, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3178, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3174, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3170, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3166, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3162, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3158, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3386, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3382, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3362, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3354, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3350, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3334, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3330, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3322, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3318, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3274, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3226, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3202, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3194, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3190, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3402, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3398, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3390, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3382, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3378, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3362, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3358, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3334, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3330, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3326, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3322, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3282, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3278, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3274, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3202, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3190, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3402, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3390, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3358, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3346, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3330, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3326, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3314, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3254, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3250, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3246, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3242, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3202, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3198, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3402, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3390, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3346, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3318, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3262, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3258, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3254, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3242, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3398, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3394, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3374, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3370, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3346, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3318, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3282, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3266, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3242, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3238, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3398, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3394, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3358, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3350, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3322, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3318, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3278, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3266, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3262, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3238, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3402, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3390, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3386, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3362, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3330, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3326, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3322, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3306, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3302, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3262, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3258, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3254, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3238, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3394, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3362, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3310, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3306, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3254, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3250, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3246, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3366, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3342, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3338, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3310, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3246, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3374, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3366, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3346, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3342, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3278, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3274, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3270, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3266, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3262, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3210, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3206, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3378, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3374, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3358, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3354, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3350, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3270, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3266, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3262, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3258, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3218, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3382, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3378, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3362, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3218, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3214, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3210, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3390, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3386, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3358, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3310, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3226, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3222, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3218, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3214, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3210, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3394, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3390, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3362, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3358, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3318, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3314, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3310, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3178, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3174, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3374, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3370, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3314, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3310, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3182, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3178, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3370, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3366, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3362, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3242, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3182, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3394, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3390, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3362, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3310, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3242, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3238, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3198, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3194, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3402, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3398, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3390, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3386, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3362, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3342, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3334, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3330, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3326, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3310, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3238, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3234, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3198, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3194, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3186, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3182, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3178, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3174, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3154, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3150, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3386, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3382, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3370, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3366, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3362, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3346, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3326, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3314, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3310, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3234, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3194, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3190, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3186, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3174, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3326, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3314, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3234, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3230, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3206, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3202, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3186, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3174, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3154, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3362, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3326, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3238, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3234, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3230, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3226, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3206, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3202, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3170, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3166, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3154, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3366, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3326, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3314, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3238, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3210, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3206, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3202, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3198, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3166, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3366, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3326, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3322, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3314, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3310, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3306, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3238, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3210, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3166, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3322, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3238, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3210, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3174, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3170, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3166, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3322, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3318, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3314, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3238, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3214, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3210, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3190, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3174, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3170, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3166, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3154, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3354, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3350, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3346, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3342, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3322, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3318, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3314, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3242, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3238, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3214, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3190, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3174, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3326, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3322, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3302, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3242, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3214, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3198, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3190, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3174, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3158, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3154, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3330, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3326, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3306, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3302, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3242, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3206, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3202, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3198, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3194, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3190, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3174, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3170, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3158, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3146, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3142, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3330, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3306, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3194, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3170, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3158, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3146, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ], + "resources": [ + { + "x": -3247.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -850.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -849.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -848.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -847.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -846.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -844.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -845.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3279.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -843.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -842.5, + "name": "calcite" + }, + { + "x": -3280.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3279.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3279.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -841.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -840.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3279.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -839.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -838.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3277.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3276.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3275.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3274.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3272.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3273.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -837.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -836.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3235.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3234.5, + "y": -835.5, + "name": "calcite" + }, + { + "x": -3235.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3234.5, + "y": -834.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3270.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3269.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3268.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3267.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3266.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3265.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3237.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3235.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3234.5, + "y": -833.5, + "name": "calcite" + }, + { + "x": -3235.5, + "y": -832.5, + "name": "calcite" + }, + { + "x": -3271.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3264.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3263.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3262.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3261.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -830.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3236.5, + "y": -831.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -829.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -828.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -827.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -826.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3260.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -825.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -824.5, + "name": "calcite" + }, + { + "x": -3259.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3258.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3256.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -823.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3238.5, + "y": -822.5, + "name": "calcite" + }, + { + "x": -3257.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3255.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -821.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -820.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -819.5, + "name": "calcite" + }, + { + "x": -3239.5, + "y": -818.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3254.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3242.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3243.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3240.5, + "y": -817.5, + "name": "calcite" + }, + { + "x": -3241.5, + "y": -816.5, + "name": "calcite" + }, + { + "x": -3253.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3252.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3244.5, + "y": -815.5, + "name": "calcite" + }, + { + "x": -3245.5, + "y": -814.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -813.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -813.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -812.5, + "name": "calcite" + }, + { + "x": -3250.5, + "y": -812.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -813.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -813.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -812.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -812.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -813.5, + "name": "calcite" + }, + { + "x": -3246.5, + "y": -813.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -812.5, + "name": "calcite" + }, + { + "x": -3251.5, + "y": -811.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -811.5, + "name": "calcite" + }, + { + "x": -3248.5, + "y": -811.5, + "name": "calcite" + }, + { + "x": -3249.5, + "y": -810.5, + "name": "calcite" + }, + { + "x": -3247.5, + "y": -811.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -744.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -744.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -744.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -744.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -744.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -743.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -742.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -741.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -740.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -739.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -738.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -737.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -736.5, + "name": "calcite" + }, + { + "x": -3158.5, + "y": -736.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3306.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -735.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -734.5, + "name": "calcite" + }, + { + "x": -3154.5, + "y": -734.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3146.5, + "y": -735.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3305.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -733.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -732.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -731.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -730.5, + "name": "calcite" + }, + { + "x": -3152.5, + "y": -731.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3144.5, + "y": -731.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3301.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -729.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -728.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3281.5, + "y": -727.5, + "name": "calcite" + }, + { + "x": -3281.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3280.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3278.5, + "y": -726.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -724.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -725.5, + "name": "calcite" + }, + { + "x": -3143.5, + "y": -724.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3302.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -722.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -723.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -721.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -720.5, + "name": "calcite" + }, + { + "x": -3155.5, + "y": -721.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3304.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -719.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -718.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -717.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3282.5, + "y": -716.5, + "name": "calcite" + }, + { + "x": -3307.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -715.5, + "name": "calcite" + }, + { + "x": -3283.5, + "y": -714.5, + "name": "calcite" + }, + { + "x": -3307.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3307.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3284.5, + "y": -713.5, + "name": "calcite" + }, + { + "x": -3285.5, + "y": -712.5, + "name": "calcite" + }, + { + "x": -3308.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3308.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3307.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3307.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -711.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -710.5, + "name": "calcite" + }, + { + "x": -3150.5, + "y": -710.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3307.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3307.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3286.5, + "y": -709.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -708.5, + "name": "calcite" + }, + { + "x": -3147.5, + "y": -709.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3307.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3306.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3288.5, + "y": -706.5, + "name": "calcite" + }, + { + "x": -3287.5, + "y": -707.5, + "name": "calcite" + }, + { + "x": -3305.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3290.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -704.5, + "name": "calcite" + }, + { + "x": -3289.5, + "y": -705.5, + "name": "calcite" + }, + { + "x": -3304.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -703.5, + "name": "calcite" + }, + { + "x": -3291.5, + "y": -702.5, + "name": "calcite" + }, + { + "x": -3168.5, + "y": -702.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -3304.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3303.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -701.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3292.5, + "y": -700.5, + "name": "calcite" + }, + { + "x": -3302.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3301.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3300.5, + "y": -698.5, + "name": "calcite" + }, + { + "x": -3299.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3298.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3297.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3296.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3295.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3294.5, + "y": -698.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -699.5, + "name": "calcite" + }, + { + "x": -3293.5, + "y": -698.5, + "name": "calcite" + }, + { + "x": -3166.5, + "y": -691.5, + "name": "sulfuric-acid-geyser" + } + ] + }, + { + "label": "[-3400,-900], ALL resources OFF", + "region": { + "x0": -3400, + "y0": -900, + "x1": -3144, + "y1": -644 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -3394, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3366, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3362, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3350, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3214, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3202, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3190, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3146, + "y": -901.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3394, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3366, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3362, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3358, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3350, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3222, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3218, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3214, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3210, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3206, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3202, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3198, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3190, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3174, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3170, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3154, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3150, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3146, + "y": -897.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3358, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3350, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3346, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3254, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3222, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3210, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3206, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3202, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3198, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3190, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3174, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3170, + "y": -893.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3394, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3374, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3370, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3358, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3266, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3262, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3258, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3254, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3234, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3230, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3226, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3222, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3206, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3202, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3198, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3190, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3178, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -889.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3402, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3398, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3394, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3374, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3358, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3342, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3338, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3334, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3330, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3326, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3282, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3278, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3274, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3270, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3266, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3238, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3234, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3190, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3178, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -885.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3398, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3394, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3378, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3374, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3362, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3358, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3178, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3170, + "y": -881.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3402, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3398, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3378, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3286, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3282, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3182, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3178, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3170, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3154, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3150, + "y": -877.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3394, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3390, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3378, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3350.30078125, + "y": -873.5625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -3286, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3218, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3214, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3174, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3170, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3154, + "y": -873.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3348.25, + "y": -870.0625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -3390, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3314, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3310, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3306, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3302, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3298, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3294, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3286, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3222, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3218, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3178, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3174, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3158, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3154, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3146, + "y": -869.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3390, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3378, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3355.25, + "y": -865.11328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -3322, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3318, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3314, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3298, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3294, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3222, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3218, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3214, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3210, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3158, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3154, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3146, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3142, + "y": -865.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3402, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3398, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3394, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3390, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3382, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3378, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3326, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3322, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3214, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3210, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3202, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3198, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3154, + "y": -861.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3382, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3290, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3286, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3282, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3278, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3274, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3214, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3154, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3150, + "y": -857.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3382, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3298, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3294, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3290, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3274, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3270, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3214, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3150, + "y": -853.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3173.13671875, + "y": -851.875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -3402, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3398, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3394, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3390, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3386, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3382, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3298, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3282, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3278, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3270, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3266, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3262, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3214, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3198, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3194, + "y": -849.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3175.1875, + "y": -848.375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -3402, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3398, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3394, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3390, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3306, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3302, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3298, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3278, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3262, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3258, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3254, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3250, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3194, + "y": -845.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3173.13671875, + "y": -844.87890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -3168.1875, + "y": -843.42578125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3394, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3378, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3374, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3310, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3306, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3286, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3282, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3278, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3274, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3194, + "y": -841.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3398, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3394, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3346, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3342, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3338, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3302, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3298, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3294, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3290, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3286, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3274, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3270, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3266, + "y": -837.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3346, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3342, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3338, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3334, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3306, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3302, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -833.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3346, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3342, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3334, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3262, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3258, + "y": -829.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3362, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3358, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3254, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3250, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3150, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3146, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3142, + "y": -825.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3366, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3362, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3358, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3354, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3346, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3342, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3334, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3250, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3246, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3242, + "y": -821.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3370, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3366, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3354, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3350, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3346, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3242, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3238, + "y": -817.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3390, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3358, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3238, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3234, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3230, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3226, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3222, + "y": -813.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3390, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3386, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3362, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3358, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3354, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3350, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3306, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -809.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3386, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3358, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3354, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3314, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -805.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3390, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3318, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3298, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3166, + "y": -801.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3318, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3314, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3306, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3298, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3170, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3166, + "y": -797.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3322, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3318, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3314, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3274, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3270, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3266, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3170, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3154, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3150, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3146, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3142, + "y": -793.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3374, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3370, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3322, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3314, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3294, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3290, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3266, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3262, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3258, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3170, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3154, + "y": -789.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3382, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3378, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3374, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3370, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3322, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3318, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3314, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3306, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3298, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3294, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3158, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3154, + "y": -785.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3353.75, + "y": -783.94921875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -3348.80078125, + "y": -782.5, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -3382, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3378, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3374, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3370, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3362, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3318, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3314, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3270, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3266, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3158, + "y": -781.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346.75, + "y": -779, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -3378, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3374, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3362, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3314, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3274, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3270, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3158, + "y": -777.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3353.75, + "y": -774.05078125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -3348.80078125, + "y": -775.50390625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3318, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3278, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3274, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -773.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3362, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3322, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3318, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3298, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3294, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3290, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3286, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3282, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3278, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3270, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3266, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3190, + "y": -769.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3370, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3298, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3270, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3266, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3190, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3186, + "y": -765.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3374, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3354, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3310, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3306, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3302, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3270, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3266, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3262, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3238, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3234, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3194, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3186, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3170, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3166, + "y": -761.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3382, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3378, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3358, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3318, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3310, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3274, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3270, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3234, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3230, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3226, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3202, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3194, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3186, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3182, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3178, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3174, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3170, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3166, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3162, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3158, + "y": -757.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3386, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3382, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3362, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3354, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3350, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3334, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3330, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3322, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3318, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3282, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3274, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3226, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3202, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3194, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3190, + "y": -753.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3402, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3398, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3390, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3382, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3378, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3362, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3358, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3334, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3330, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3326, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3322, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3282, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3278, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3274, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3202, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3190, + "y": -749.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3402, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3390, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3358, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3346, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3330, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3326, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3314, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3310, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3254, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3250, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3246, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3242, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3202, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3198, + "y": -745.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3402, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3390, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3386, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3346, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3318, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3266, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3262, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3258, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3254, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3242, + "y": -741.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3398, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3394, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3374, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3370, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3346, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3318, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3282, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3266, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3242, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3238, + "y": -737.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3398, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3394, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3358, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3354, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3350, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3322, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3318, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3302, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3298, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3294, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3282, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3278, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3266, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3262, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3238, + "y": -733.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3402, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3398, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3394, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3390, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3386, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3362, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3330, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3326, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3322, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3306, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3302, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3294, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3290, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3286, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3262, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3258, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3254, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3238, + "y": -729.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3394, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3362, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3310, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3306, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3302, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3298, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3294, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3286, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3254, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3250, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3246, + "y": -725.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3366, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3342, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3338, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3310, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3306, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3302, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3294, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3290, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3286, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3246, + "y": -721.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3374, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3366, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3346, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3342, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3306, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3302, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3294, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3290, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3286, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3282, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3278, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3274, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3270, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3266, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3262, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3210, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3206, + "y": -717.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3378, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3374, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3358, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3354, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3350, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3310, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3302, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3298, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3294, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3290, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3286, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3282, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3270, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3266, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3262, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3258, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3218, + "y": -713.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3382, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3378, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3370, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3366, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3362, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3310, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3298, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3294, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3290, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3286, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3282, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3218, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3214, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3210, + "y": -709.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3390, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3386, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3382, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3370, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3366, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3358, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3314, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3310, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3306, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3302, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3298, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3294, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3290, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3226, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3222, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3218, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3214, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3210, + "y": -705.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3394, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3390, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3374, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3366, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3362, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3358, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3318, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3314, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3310, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3306, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3178, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3174, + "y": -701.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3374, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3370, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3314, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3310, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3182, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3178, + "y": -697.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3370, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3366, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3362, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3242, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3182, + "y": -693.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3394, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3390, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3362, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3310, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3242, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3238, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3198, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3194, + "y": -689.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3402, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3398, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3394, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3390, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3386, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3362, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3346, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3342, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3334, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3330, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3326, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3310, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3238, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3234, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3198, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3194, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3186, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3182, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3178, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3174, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3154, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3150, + "y": -685.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3386, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3382, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3378, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3374, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3370, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3366, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3362, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3350, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3346, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3326, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3314, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3310, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3234, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3194, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3190, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3186, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3174, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -681.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3326, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3314, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3234, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3230, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3206, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3202, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3186, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3174, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3154, + "y": -677.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3362, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3358, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3326, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3238, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3234, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3230, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3226, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3206, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3202, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3170, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3166, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3154, + "y": -673.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3366, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3362, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3326, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3318, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3314, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3238, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3210, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3206, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3202, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3198, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3166, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -669.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3370, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3366, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3326, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3322, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3314, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3310, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3306, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3238, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3210, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3166, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -665.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3322, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3238, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3210, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3198, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3174, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3170, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3166, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -661.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3322, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3318, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3314, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3238, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3214, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3210, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3190, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3174, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3170, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -3166, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3154, + "y": -657.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3354, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -3350, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3346, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3342, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -3338, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -3322, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3318, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3314, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3242, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -3238, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3214, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3190, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3174, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3154, + "y": -653.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3326, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3322, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3302, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3242, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3214, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3198, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -3190, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3174, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3158, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3154, + "y": -649.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3330, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3326, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3306, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3302, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3242, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -3206, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -3202, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -3198, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3194, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3190, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3174, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3170, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -3158, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3146, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -3142, + "y": -645.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3330, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3306, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3194, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3170, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3158, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -3146, + "y": -641.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ], + "resources": [] + }, + { + "label": "[1200,2600], resources ON", + "region": { + "x0": 1200, + "y0": 2600, + "x1": 1456, + "y1": 2856 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 1202, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1226, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1230, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1234, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1238, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1258, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1294, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1202, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1206, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1210, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1214, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1230, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1238, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1258, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1294, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1298, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1302, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1318, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1426, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1434, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1450, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1214, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1218, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1230, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1234, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1238, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1262, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1266, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1270, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1282, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1302, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1426, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1454, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1458, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1218, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1262, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1270, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1278, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1282, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1302, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1314, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1318, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1322, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1326, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1426, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1450, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1454, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1458, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1222, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1238, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1298, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1302, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1314, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1322, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1426, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1438, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1442, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1222, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1226, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1246, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1298, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1310, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1314, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1318, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1426, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1430, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1226, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1238, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1242, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1270, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1274, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1278, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1282, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1286, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1290, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1294, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1298, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1318, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1322, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1330, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1338, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1342, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1346, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1430, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1434, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1226, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1322, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1326, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1330, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1342, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1346, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1358, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1362, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1430, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1434, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1226, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1226, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1234, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1258, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1270, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1430, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1434, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1438, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1234, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1258, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1278, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1326, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1330, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1338, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1422, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1238, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1242, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1258, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1338, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1342, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1418, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1422, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1242, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1258, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1342, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1414, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1442, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1446, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1326, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1330, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1342, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1346, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1414, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1422, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1434, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1438, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1450, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1330, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1338, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1342, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1346, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1378, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1414, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1450, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1342, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1378, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1414, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1418, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1442, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1450, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1374, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1378, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1382, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1386, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1390, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1418, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1422, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1442, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1214, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1218, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1222, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1262, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1374, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1378, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1426, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1430, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1442, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1214, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1250, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1254, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1262, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1306, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1378, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1382, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1386, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1390, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1394, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1398, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1402, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1406, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1430, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1262, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1266, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1310, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1410, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1430, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1434, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1254, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1266, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1282, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1302, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1310, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1314, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1418, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1422, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1434, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1230, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1234, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1254, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1258, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1266, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1270, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1282, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1302, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1306, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1310, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1314, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1318, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1342, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1418, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1426, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1438, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1218, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1226, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1230, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1258, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1302, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1306, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1310, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1314, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1318, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1334, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1410, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1418, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1422, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1426, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1218, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1226, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1258, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1274, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1310, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1314, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1318, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1322, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1326, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1330, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1342, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1438, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1222, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1226, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1258, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1262, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1290, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1330, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1334, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1342, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1262, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1266, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1290, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1334, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1338, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1342, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1350, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1354, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1446, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1222, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1226, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1290, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1294, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1330, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1334, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1354, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1362, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1366, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1442, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1446, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1226, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1294, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1298, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1366, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1370, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1382, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1430, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1434, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1438, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1242, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1246, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1250, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1282, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1298, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1322, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1326, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1342, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1442, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1446, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1250, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1254, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1270, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1282, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1286, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1298, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1302, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1326, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1330, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1338, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1342, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1210, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1214, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1218, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1222, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1226, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1254, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1258, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1286, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1302, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1306, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1330, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1334, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1342, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1226, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1270, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1286, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1302, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1306, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1334, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1398, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1402, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1202, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1234, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1262, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1270, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1298, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1302, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1202, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1206, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1242, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1262, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1270, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1298, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1206, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1210, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1214, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1218, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1242, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1246, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1286, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1298, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1306, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1310, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1390, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1394, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1218, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1266, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1270, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1286, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1218, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1286, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1370, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1374, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1218, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1378, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1218, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1226, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1230, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1238, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1246, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1330, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1334, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1338, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1394, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1234, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1238, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1246, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1394, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1398, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1234, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1322, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1326, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1398, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1402, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1410, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1234, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1406, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1234, + "y": 2766.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1374, + "y": 2766.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1378, + "y": 2766.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1234, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1342, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1354, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1358, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1378, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1442, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1446, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1238, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1242, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1342, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1358, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1362, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1366, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1370, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1390, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1394, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1438, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1442, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1214, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1242, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1246, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1250, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1342, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1350, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1374, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1378, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1382, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1394, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1398, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1414, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1426, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1430, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1434, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1438, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1442, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1214, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1250, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1270, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1274, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1278, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1350, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1354, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1358, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1362, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1366, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1370, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1374, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1378, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1382, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1402, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1406, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1418, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1422, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1426, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1430, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1434, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1438, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1214, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1278, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1358, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1362, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1394, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1398, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1410, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1446, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1450, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1278, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1366, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1370, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1398, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1402, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1406, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1410, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1426, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1214, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1230, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1234, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1350, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1354, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1358, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1378, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1410, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1430, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1434, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1206, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1214, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1218, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1234, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1242, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1246, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1262, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1274, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1278, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1282, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1286, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1290, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1362, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1370, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1374, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1390, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1394, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1406, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1426, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1430, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1438, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1442, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1450, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1206, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1210, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1218, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1246, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1262, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1266, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1270, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1274, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1282, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1286, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1290, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1362, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1378, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1410, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1434, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1438, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1214, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1218, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1222, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1226, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1246, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1250, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1254, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1258, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1282, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1290, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1330, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1334, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1338, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1342, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1362, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1366, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1370, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1378, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1430, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1434, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1218, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1226, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1242, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1246, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1262, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1266, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1274, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1282, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1290, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1314, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1326, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1330, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1342, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1350, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1354, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1358, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1370, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1374, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1378, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1394, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1398, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1410, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1426, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1430, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1214, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1222, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1226, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1230, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1234, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1238, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1242, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1246, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1266, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1274, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1314, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1330, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1358, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1362, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1366, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1370, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1378, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1394, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1410, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1414, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1214, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1226, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1238, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1242, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1262, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1266, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1314, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1330, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1334, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1386, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1390, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1226, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1242, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1254, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1258, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1262, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1334, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1214, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1218, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1234, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1242, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1254, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1334, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1214, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1222, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1230, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1234, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1238, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1242, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1250, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1254, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1310, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1314, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1334, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1338, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1214, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1222, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1230, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1234, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1238, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1242, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1246, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1250, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1254, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1310, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1334, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1338, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1198, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1202, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1206, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1214, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1234, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1238, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1246, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1254, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1274, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1278, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1306, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1310, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1330, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1334, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1206, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1210, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1214, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1218, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1234, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1250, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1278, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1306, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1322, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1326, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1330, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1222, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1226, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1230, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1234, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1246, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1250, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1254, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1258, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1262, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1274, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1278, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1306, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1322, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1326, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1414, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1426, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1442, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1458, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1210, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1222, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1242, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1246, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1250, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1254, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1270, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1274, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1306, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1414, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1442, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1446, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1210, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1218, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1222, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1238, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1242, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1250, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1266, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1270, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1306, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1446, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1210, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1250, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1266, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1326, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ], + "resources": [ + { + "x": 1266.5, + "y": 2600.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2622.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2622.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2622.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1336.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2675.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2675.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2774.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2782.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2787.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2786.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2787.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2788.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2788.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2788.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2791.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2800.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1306.5, + "y": 2804.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1301.5, + "y": 2807.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1281.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2813.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1303.5, + "y": 2813.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1306.5, + "y": 2812.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1277.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2816.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1276.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2818.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1302.5, + "y": 2819.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1275.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2824.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1267.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1251.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2838.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1250.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1251.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1255.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1255.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1255.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2855.5, + "name": "calcite" + } + ] + }, + { + "label": "[1200,2600], ALL resources OFF", + "region": { + "x0": 1200, + "y0": 2600, + "x1": 1456, + "y1": 2856 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 1202, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1226, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1230, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1234, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1238, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1258, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1294, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": 2598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1202, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1206, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1210, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1214, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1230, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1238, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1258, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1294, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1298, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1302, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1318, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1426, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1434, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1450, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": 2602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1214, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1218, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1230, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1234, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1238, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1262, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1266, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1270, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1282, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1302, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1426, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1454, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1458, + "y": 2606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1218, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1262, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1270, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1278, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1282, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1302, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1314, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1318, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1322, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1326, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1426, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1450, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1454, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1458, + "y": 2610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1222, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1238, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1246, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1298, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1302, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1314, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1322, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1426, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1438, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1442, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1222, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1226, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1246, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1298, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1314, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1318, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1426, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1430, + "y": 2618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1226, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1238, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1242, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1270, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1274, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1278, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1282, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1286, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1290, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1294, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1298, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1318, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1322, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1330, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1338, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1342, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1346, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1430, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1434, + "y": 2622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1226, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1314, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1318, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1322, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1326, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1330, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1342, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1346, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1358, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1362, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1430, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1434, + "y": 2626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1226, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1310, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1314, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1318, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1226, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1234, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1258, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1270, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1310, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1338, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1430, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1434, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1438, + "y": 2634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1234, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1242, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1258, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1278, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1310, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1326, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1330, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1338, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1422, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1238, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1242, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1258, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1282, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1286, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1310, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1318, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1322, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1342, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1418, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1422, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1242, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1258, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1310, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1322, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1342, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1414, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1442, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1446, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": 2646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1274, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1306, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1322, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1326, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1330, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1342, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1346, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1414, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1422, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1434, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1438, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1450, + "y": 2650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1258, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1342, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1346, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1378, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1414, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1450, + "y": 2654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1258, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1262, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1342, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1378, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1414, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1418, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1442, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1450, + "y": 2658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1262, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1330, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1334, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1374, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1378, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1382, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1386, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1390, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1418, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1422, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1442, + "y": 2662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1214, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1218, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1222, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1262, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1334, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1374, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1378, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1426, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1430, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1442, + "y": 2666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1214, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1250, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1254, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1262, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1334, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1378, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1382, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1386, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1390, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1394, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1398, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1402, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1406, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1430, + "y": 2670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1254, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1262, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1266, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1306, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1310, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1410, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1430, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1434, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1254, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1266, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1274, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1282, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1302, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1310, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1314, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1418, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1422, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1434, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": 2678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1230, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1234, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1254, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1258, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1266, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1270, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1282, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1302, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1306, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1310, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1314, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1318, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1342, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1418, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1426, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1438, + "y": 2682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1218, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1226, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1230, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1258, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1302, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1306, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1310, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1314, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1318, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1334, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1410, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1418, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1422, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1426, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": 2686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1218, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1226, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1258, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1270, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1274, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1310, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1314, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1318, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1322, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1326, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1330, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1342, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1438, + "y": 2690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1222, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1226, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1258, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1262, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1290, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1330, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1334, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1342, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": 2694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1262, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1266, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1274, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1290, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1330, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1334, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1338, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1342, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1350, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1354, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1446, + "y": 2698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1222, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1226, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1290, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1294, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1330, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1334, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1354, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1362, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1366, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1442, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1446, + "y": 2702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1226, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1294, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1298, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1366, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1370, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1382, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1430, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1434, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1438, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": 2706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1234, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1242, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1246, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1250, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1278, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1282, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1298, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1322, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1326, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1338, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1342, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1442, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1446, + "y": 2710.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1250, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1254, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1270, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1282, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1286, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1298, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1302, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1326, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1330, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1334, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1338, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1342, + "y": 2714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1210, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1214, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1218, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1222, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1226, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1254, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1258, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1286, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1302, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1306, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1330, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1334, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1338, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1342, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1226, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1270, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1286, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1302, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1306, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1334, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1398, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1402, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1202, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1234, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1262, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1270, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1298, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1302, + "y": 2726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1202, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1206, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1242, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1262, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1270, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1298, + "y": 2730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1206, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1210, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1214, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1218, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1242, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1246, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1286, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1298, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1306, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1310, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1390, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1394, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1218, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1266, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1270, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1286, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1218, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1286, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1370, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1374, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1218, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1378, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1218, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1226, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1230, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1238, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1246, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1330, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1334, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1338, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1394, + "y": 2750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1234, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1238, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1246, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1394, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1398, + "y": 2754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1234, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1322, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1326, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1398, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1402, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1410, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1234, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1406, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2762.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1234, + "y": 2766.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1374, + "y": 2766.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1378, + "y": 2766.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1234, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1342, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1354, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1358, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1378, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1442, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1446, + "y": 2770.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1238, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1242, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1342, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1358, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1362, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1366, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1370, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1390, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1394, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1438, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1442, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1214, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1242, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1246, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1250, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1342, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1350, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1374, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1378, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1382, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1394, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1398, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1414, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1426, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1430, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1434, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1438, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1442, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2778.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1214, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1250, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1270, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1274, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1278, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1350, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1354, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1358, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1362, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1366, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1370, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1374, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1378, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1382, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1402, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1406, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1418, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1422, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1426, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1430, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1434, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1438, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": 2782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1214, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1278, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1358, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1362, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1394, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1398, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1410, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1446, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1450, + "y": 2786.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1278, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1366, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1370, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1398, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1402, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1406, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1410, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1426, + "y": 2790.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1214, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1230, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1234, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1350, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1354, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1358, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1378, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1390, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1410, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1430, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1434, + "y": 2794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1206, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1214, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1218, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1234, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1238, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1242, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1246, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1262, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1274, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1278, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1282, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1286, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1290, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1362, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1370, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1374, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1378, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1390, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1394, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1406, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1426, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1430, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1438, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1442, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1446, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1450, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1206, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1210, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1218, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1246, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1262, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1266, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1270, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1274, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1278, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1282, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1286, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1290, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1362, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1378, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1410, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1434, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1438, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1214, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1218, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1222, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1226, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1246, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1250, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1254, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1258, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1282, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1290, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1330, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1334, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1338, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1342, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1362, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1366, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1370, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1378, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1430, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1434, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1218, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1222, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1226, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1238, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1242, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1246, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1262, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1266, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1270, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1274, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1282, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1290, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1314, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1326, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1330, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1342, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1346, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1350, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1354, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1358, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1370, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1374, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1378, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1394, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1398, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1410, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1426, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1430, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1214, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1222, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1226, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1230, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1234, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1238, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1242, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1246, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1266, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1274, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1278, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1282, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1290, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1314, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1330, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1358, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1362, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1366, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1370, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1374, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1378, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1382, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1386, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1394, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1410, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1414, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1214, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1226, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1238, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1242, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1262, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1266, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1274, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1278, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1282, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1290, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1294, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1314, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1330, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1334, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1386, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1390, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1394, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1226, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1230, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1234, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1242, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1254, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1258, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1262, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1274, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1282, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1294, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1298, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1314, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1334, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1214, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1218, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1234, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1242, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1254, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1270, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1274, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1282, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1286, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1298, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1314, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1334, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1214, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1222, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1230, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1234, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1238, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1242, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1250, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1254, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1266, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1270, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1286, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1298, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1302, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1310, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1314, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1334, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1338, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1214, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1222, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1230, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1234, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1238, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1242, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1246, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1250, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1254, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1266, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1270, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1274, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1286, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1298, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1302, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1310, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1334, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1338, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1198, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1202, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1206, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1214, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1218, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1234, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1238, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1246, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1254, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1258, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1274, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1278, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1286, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1298, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1306, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1310, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1330, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1334, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1206, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1210, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1214, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1218, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1234, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1246, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1250, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1258, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1262, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1278, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1286, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1298, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1306, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1322, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1326, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1330, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1210, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1222, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1226, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1230, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1234, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1246, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1250, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1254, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1258, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1262, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1274, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1278, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1286, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1294, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1298, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1306, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1322, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1326, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1414, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1426, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1442, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1458, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1210, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1222, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1242, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1246, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1250, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1254, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1270, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1274, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1282, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1286, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1294, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1306, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1414, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1442, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1446, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1210, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1218, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1222, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1238, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1242, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1250, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1266, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1270, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1282, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1294, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1306, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1326, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1446, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1210, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1250, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1266, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1326, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ], + "resources": [] + }, + { + "label": "[-1600,3200], resources ON", + "region": { + "x0": -1600, + "y0": 3200, + "x1": -1344, + "y1": 3456 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -1598, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1594, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1590, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1586, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1582, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1526, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1522, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1518, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1514, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1474, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1442, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1430, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1426, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1402, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1378, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1358, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1598, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1594, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1586, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1522, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1482, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1478, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1474, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1466, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1442, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1430, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1422, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1402, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1398, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1382, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1378, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1358, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1354, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1350, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1346, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1598, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1590, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1586, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1486, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1482, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1474, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1466, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1462, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1434, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1430, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1398, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1382, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1378, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1374, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1370, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1366, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1346, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1598, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1594, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1590, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1486, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1482, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1474, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1466, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1462, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1434, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1422, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1398, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1386, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1382, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1378, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1374, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1598, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1594, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1590, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1578, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1574, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1570, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1542, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1538, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1534, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1522, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1434, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1422, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1390, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1386, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1382, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1378, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1598, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1574, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1570, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1546, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1542, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1534, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1522, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1422, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1410, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1406, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1402, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1390, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1386, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1382, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1378, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1374, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1370, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1354, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1346, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1598, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1590, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1586, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1582, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1574, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1570, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1566, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1562, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1550, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1546, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1534, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1530, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1522, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1490, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1486, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1446, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1442, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1426, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1422, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1418, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1398, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1394, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1390, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1386, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1382, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1378, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1370, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1366, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1354, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1598, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1594, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1590, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1586, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1582, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1578, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1574, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1570, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1566, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1554, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1550, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1542, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1538, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1534, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1530, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1522, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1506, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1502, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1498, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1490, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1486, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1478, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1474, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1470, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1458, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1454, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1450, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1446, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1430, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1426, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1418, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1414, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1398, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1374, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1370, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1366, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1358, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1354, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1346, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1578, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1574, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1570, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1566, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1562, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1550, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1546, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1542, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1534, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1530, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1526, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1514, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1510, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1506, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1462, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1458, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1454, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1450, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1446, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1442, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1438, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1426, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1422, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1418, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1414, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1410, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1406, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1398, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1362, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1358, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1354, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1574, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1570, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1562, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1558, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1542, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1538, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1534, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1510, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1506, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1466, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1462, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1454, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1450, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1446, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1442, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1438, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1418, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1414, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1410, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1406, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1402, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1398, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1394, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1366, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1362, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1358, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1354, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1598, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1594, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1570, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1566, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1558, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1554, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1550, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1518, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1514, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1510, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1506, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1466, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1458, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1454, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1446, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1442, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1438, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1422, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1418, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1414, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1410, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1406, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1402, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1394, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1366, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1362, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1358, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1594, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1590, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1578, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1574, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1570, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1566, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1562, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1554, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1550, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1530, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1526, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1518, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1514, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1506, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1502, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1490, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1486, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1466, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1462, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1458, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1450, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1446, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1438, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1422, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1418, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1414, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1410, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1406, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1402, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1398, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1394, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1378, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1366, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1362, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1590, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1578, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1562, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1558, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1538, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1534, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1526, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1514, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1510, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1506, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1502, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1498, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1494, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1490, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1486, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1462, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1458, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1454, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1414, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1406, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1398, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1394, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1390, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1386, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1382, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1366, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1362, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1358, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1590, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1578, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1558, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1554, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1526, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1522, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1506, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1502, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1494, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1490, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1458, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1442, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1438, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1414, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1410, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1406, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1402, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1394, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1390, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1382, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1378, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1594, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1590, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1578, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1554, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1539.6875, + "y": 3258.67578125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1522, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1498, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1494, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1490, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1486, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1458, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1454, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1450, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1434, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1430, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1402, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1398, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1394, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1390, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1386, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1362, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1358, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1354, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1350, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1544.63671875, + "y": 3260.125, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1534.73828125, + "y": 3260.125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1594, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1590, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1582, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1578, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1546.6875, + "y": 3263.625, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1532.6875, + "y": 3263.625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1522, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1498, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1494, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1490, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1486, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1454, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1442, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1426, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1390, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1386, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1382, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1362, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1354, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1346, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1598, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1594, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1590, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1582, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1578, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1574, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1570, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1566, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1562, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1558, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1554, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1544.63671875, + "y": 3267.12109375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1522, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1494, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1490, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1486, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1454, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1450, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1442, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1426, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1422, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1418, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1390, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1382, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1378, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1354, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1346, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1539.6875, + "y": 3268.57421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1586, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1582, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1534, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1530, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1526, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1418, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1414, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1410, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1390, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1386, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1354, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1350, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1346, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1598, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1594, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1590, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1586, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1582, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1578, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1574, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1570, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1566, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1562, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1558, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1554, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1550, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1494, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1490, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1486, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1386, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1374, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1370, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1366, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1362, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1350, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1346, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1362, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1354, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1346, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1386, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1382, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1378, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1354, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1350, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1378, + "y": 3286.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1410, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1402, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1398, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1394, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1390, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1386, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1382, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1378, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1410, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1406, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1402, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1378, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3302.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3306.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1394, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1390, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1374, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1434, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1430, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1394, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1390, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1374, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1370, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1430, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1426, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1410, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1406, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1402, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1394, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1390, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1426, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1402, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1394, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1390, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1402, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1398, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1390, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1374, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1370, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1398, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1374, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1370, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1398, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1374, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1362, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1398, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1374, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1366, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1362, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1398, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1394, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1378, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1374, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1370, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1366, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1394, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1374, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1370, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1366, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1350, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1346, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1394, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1374, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1366, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1362, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1358, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1354, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1350, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1394, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1390, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1382, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1374, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1370, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1362, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1394, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1390, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1382, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1366, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1362, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1354, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1346, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1394, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1390, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1382, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1362, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1354, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1390, + "y": 3366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1390, + "y": 3370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1386, + "y": 3370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1382, + "y": 3370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3374.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1378, + "y": 3374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1346, + "y": 3378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1386, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1374, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1370, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1366, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1362, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1358, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1354, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1350, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1346, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1386, + "y": 3386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1366, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1362, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1358, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1354, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1382, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1374, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1370, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1354, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1374, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1354, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1350, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1350, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1350, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1350, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1346, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1346, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1346, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1350, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1346, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1350, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1346, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1462, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1458, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1454, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1350, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1346, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1466, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1462, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1446, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1442, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1470, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1466, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1458, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1454, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1346, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1466, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1458, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1454, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1450, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1442, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + } + ], + "resources": [ + { + "x": -1378.5, + "y": 3423.5, + "name": "coal" + }, + { + "x": -1383.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1382.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1383.5, + "y": 3425.5, + "name": "coal" + }, + { + "x": -1382.5, + "y": 3425.5, + "name": "coal" + }, + { + "x": -1381.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1380.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1381.5, + "y": 3425.5, + "name": "coal" + }, + { + "x": -1380.5, + "y": 3425.5, + "name": "coal" + }, + { + "x": -1379.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1378.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1379.5, + "y": 3425.5, + "name": "coal" + }, + { + "x": -1378.5, + "y": 3425.5, + "name": "coal" + }, + { + "x": -1377.5, + "y": 3424.5, + "name": "coal" + }, + { + "x": -1382.5, + "y": 3426.5, + "name": "coal" + }, + { + "x": -1383.5, + "y": 3427.5, + "name": "coal" + }, + { + "x": -1382.5, + "y": 3427.5, + "name": "coal" + }, + { + "x": -1381.5, + "y": 3426.5, + "name": "coal" + }, + { + "x": -1380.5, + "y": 3426.5, + "name": "coal" + }, + { + "x": -1381.5, + "y": 3427.5, + "name": "coal" + }, + { + "x": -1380.5, + "y": 3427.5, + "name": "coal" + }, + { + "x": -1379.5, + "y": 3426.5, + "name": "coal" + }, + { + "x": -1378.5, + "y": 3426.5, + "name": "coal" + }, + { + "x": -1379.5, + "y": 3427.5, + "name": "coal" + }, + { + "x": -1378.5, + "y": 3427.5, + "name": "coal" + }, + { + "x": -1383.5, + "y": 3428.5, + "name": "coal" + }, + { + "x": -1382.5, + "y": 3428.5, + "name": "coal" + }, + { + "x": -1383.5, + "y": 3429.5, + "name": "coal" + }, + { + "x": -1382.5, + "y": 3429.5, + "name": "coal" + }, + { + "x": -1381.5, + "y": 3428.5, + "name": "coal" + }, + { + "x": -1380.5, + "y": 3428.5, + "name": "coal" + }, + { + "x": -1381.5, + "y": 3429.5, + "name": "coal" + }, + { + "x": -1380.5, + "y": 3429.5, + "name": "coal" + }, + { + "x": -1379.5, + "y": 3428.5, + "name": "coal" + }, + { + "x": -1384.5, + "y": 3430.5, + "name": "coal" + } + ] + }, + { + "label": "[-1600,3200], ALL resources OFF", + "region": { + "x0": -1600, + "y0": 3200, + "x1": -1344, + "y1": 3456 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -1598, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1594, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1590, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1586, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1582, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1526, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1522, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1518, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1514, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1474, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1442, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1430, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1426, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1402, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1378, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1358, + "y": 3202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1598, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1594, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1586, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1522, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1482, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1478, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1474, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1466, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1442, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1430, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1422, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1402, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1398, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1382, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1378, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1358, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1354, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1350, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1346, + "y": 3206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1598, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1590, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1586, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1486, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1482, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1474, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1466, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1462, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1434, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1430, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1398, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1382, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1378, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1374, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1370, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1366, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1346, + "y": 3210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1598, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1594, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1590, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1486, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1482, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1474, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1466, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1462, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1434, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1422, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1398, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1386, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1382, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1378, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1374, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1598, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1594, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1590, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1578, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1574, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1570, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1542, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1538, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1534, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1522, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1434, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1422, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1390, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1386, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1382, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1378, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1598, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1574, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1570, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1546, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1542, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1534, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1522, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1422, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1418, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1410, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1406, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1402, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1390, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1386, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1382, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1378, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1374, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1370, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1354, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1346, + "y": 3222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1598, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1590, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1586, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1582, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1574, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1570, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1566, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1562, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1550, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1546, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1534, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1530, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1522, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1490, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1486, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1446, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1442, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1426, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1422, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1418, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1414, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1398, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1394, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1390, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1386, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1382, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1378, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1370, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1366, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1354, + "y": 3226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1598, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1594, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1590, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1586, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1582, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1578, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1574, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1570, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1566, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1554, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1550, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1542, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1538, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1534, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1530, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1522, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1506, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1502, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1498, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1490, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1486, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1478, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1474, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1470, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1458, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1454, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1450, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1446, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1430, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1426, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1418, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1414, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1398, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1374, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1370, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1366, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1358, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1354, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1346, + "y": 3230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1578, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1574, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1570, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1566, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1562, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1550, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1546, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1542, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1534, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1530, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1526, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1514, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1510, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1506, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1462, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1458, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1454, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1450, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1446, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1442, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1438, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1426, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1422, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1418, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1414, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1410, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1406, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1398, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1362, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1358, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1354, + "y": 3234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1574, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1570, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1562, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1558, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1542, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1538, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1534, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1510, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1506, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1466, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1462, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1454, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1450, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1446, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1442, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1438, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1422, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1418, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1414, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1410, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1406, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1402, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1398, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1394, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1366, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1362, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1358, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1354, + "y": 3238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1598, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1594, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1570, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1566, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1558, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1554, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1550, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1518, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1514, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1510, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1506, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1466, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1458, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1454, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1446, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1442, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1438, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1422, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1418, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1414, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1410, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1406, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1402, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1394, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1366, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1362, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1358, + "y": 3242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1594, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1590, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1578, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1574, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1570, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1566, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1562, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1554, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1550, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1530, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1526, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1518, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1514, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1506, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1502, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1490, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1486, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1466, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1462, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1458, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1450, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1446, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1438, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1430, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1422, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1418, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1414, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1410, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1406, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1402, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1398, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1394, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1378, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1366, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1362, + "y": 3246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1590, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1578, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1562, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1558, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1538, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1534, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1526, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1514, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1510, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1506, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1502, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1498, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1494, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1490, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1486, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1462, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1458, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1454, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1414, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1410, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1406, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1398, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1394, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1390, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1386, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1382, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1366, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1362, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1358, + "y": 3250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1590, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1578, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1558, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1554, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1526, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1522, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1506, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1502, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1494, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1490, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1458, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1442, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1438, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1434, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1414, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1410, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1406, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1402, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1394, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1390, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1382, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1378, + "y": 3254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1594, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1590, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1578, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1554, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1539.6875, + "y": 3258.67578125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1522, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1498, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1494, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1490, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1486, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1458, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1454, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1450, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1434, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1430, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1426, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1402, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1398, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1394, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1390, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1386, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1362, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1358, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1354, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1350, + "y": 3258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1544.63671875, + "y": 3260.125, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1534.73828125, + "y": 3260.125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1594, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1590, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1582, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1578, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1546.6875, + "y": 3263.625, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1532.6875, + "y": 3263.625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1522, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1498, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1494, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1490, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1486, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1454, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1442, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1426, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1390, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1386, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1382, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1362, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1354, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1346, + "y": 3262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1598, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1594, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1590, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1582, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1578, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1574, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1570, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1566, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1562, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1558, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1554, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1544.63671875, + "y": 3267.12109375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1522, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1494, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1490, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1486, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1454, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1450, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1442, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1426, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1422, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1418, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1390, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1382, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1378, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1354, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1346, + "y": 3266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1539.6875, + "y": 3268.57421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1586, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1582, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1534, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1530, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1526, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1418, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1414, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1410, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1390, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1386, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1354, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1350, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1346, + "y": 3270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1598, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1594, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1590, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1586, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1582, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1578, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1574, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1570, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1566, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1562, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1558, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1554, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1550, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1494, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1490, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1486, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1386, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1374, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1370, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1366, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1362, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1350, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1346, + "y": 3274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1362, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1354, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1346, + "y": 3278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1386, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1382, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1378, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1354, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1350, + "y": 3282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1378, + "y": 3286.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1410, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1402, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1398, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1394, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1390, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1386, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1382, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1378, + "y": 3294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1410, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1406, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1402, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1378, + "y": 3298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3302.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1378, + "y": 3306.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1394, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1390, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1378, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1374, + "y": 3310.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1434, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1430, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1394, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1390, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1374, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1370, + "y": 3314.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1430, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1426, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1410, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1406, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1402, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1394, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1390, + "y": 3318.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1426, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1402, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1394, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1390, + "y": 3322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1402, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1398, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1390, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1374, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1370, + "y": 3326.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1398, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1374, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1370, + "y": 3330.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1398, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1374, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1362, + "y": 3334.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1398, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1374, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1366, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1362, + "y": 3338.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1398, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1394, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1378, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1374, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1370, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1366, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3342.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1394, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1374, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1370, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1366, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1350, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1346, + "y": 3346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1394, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1374, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1366, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1362, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1358, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1354, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1350, + "y": 3350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1394, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1390, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1382, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1374, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1370, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1362, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3354.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1394, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1390, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1382, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1366, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1362, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1354, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1350, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1346, + "y": 3358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1394, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1390, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1382, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1362, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1358, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1354, + "y": 3362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1390, + "y": 3366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1390, + "y": 3370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1386, + "y": 3370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1382, + "y": 3370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1382, + "y": 3374.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1378, + "y": 3374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1346, + "y": 3378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1386, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1374, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1370, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1366, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1362, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1358, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1354, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1350, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1346, + "y": 3382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1386, + "y": 3386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1386, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1370, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1366, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1362, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1358, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1354, + "y": 3394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1386, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1382, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1374, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1370, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1354, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1378, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1374, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1354, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1350, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1350, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1350, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1350, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1346, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1346, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1346, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1350, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1346, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1350, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1346, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1346, + "y": 3438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1462, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1458, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1454, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1350, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1346, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1466, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1462, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1446, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1442, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1470, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1466, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1458, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1454, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1450, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1446, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1442, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1346, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1470, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1466, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1458, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1454, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1450, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1442, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + } + ], + "resources": [] + }, + { + "label": "[3600,600], resources ON", + "region": { + "x0": 3600, + "y0": 600, + "x1": 3856, + "y1": 856 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 3766, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3762, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3766, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3770, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3822, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3826, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3762, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3766, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3770, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3822, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3826, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3838, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3842, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3766, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3822, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3826, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3830, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3834, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3838, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3766, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3822, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3606, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3610, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3626, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3630, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3818, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3822, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3610, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3618, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3622, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3626, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3766, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3770, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3786, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3818, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3610, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3614, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3618, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3766, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3770, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3786, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3818, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3822, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3766, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3786, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3790, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3794, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3798, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3822, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3826, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3766, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3790, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3794, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3826, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3830, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3830, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3846, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3830, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3834, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3846, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3834, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3842, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3846, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3798, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3802, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3806, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3810, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3814, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3818, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3834, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3838, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3842, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3854, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3790, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3794, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3798, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3818, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3822, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3826, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3854, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3770, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3774, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3790, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3794, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3798, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3802, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3806, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3810, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3814, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3818, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3822, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3826, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3774, + "y": 662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3778, + "y": 662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3782, + "y": 662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3782, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3786, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3798, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3802, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3806, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3810, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3814, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3822, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3826, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3830, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3650, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3786, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3798, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3830, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3642, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3646, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3650, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3786, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3790, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3794, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3798, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3830, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3834, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3638, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3642, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3790, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3794, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3834, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3838, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3838, + "y": 682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3842, + "y": 682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3842, + "y": 686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3838, + "y": 690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3842, + "y": 690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3850, + "y": 690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3838, + "y": 694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3850, + "y": 694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3630, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3634, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3638, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3642, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3846, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3850, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3602, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3630, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3634, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3642, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3746, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3750, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3846, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3602, + "y": 706.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3796.75, + "y": 717.17578125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3791.80078125, + "y": 718.625, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 3801.69921875, + "y": 718.625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 3614, + "y": 722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3789.75, + "y": 722.125, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 3803.75, + "y": 722.125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 3801.69921875, + "y": 725.62109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3614, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3618, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3796.75, + "y": 727.07421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 3814, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3818, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3822, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3618, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3622, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3654, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3658, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3662, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3666, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3670, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3674, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3770, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3774, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3810, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3814, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3826, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3602, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3622, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3654, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3674, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3678, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3682, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3686, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3690, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3758, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3762, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3766, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3770, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3810, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3822, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3826, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3602, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3606, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3610, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3614, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3618, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3622, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3654, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3686, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3754, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3758, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3766, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3810, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3822, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3614, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3618, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3650, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3654, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3682, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3686, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3754, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3802.75, + "y": 742.67578125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3822, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3797.80078125, + "y": 744.125, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 3807.69921875, + "y": 744.125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 3646, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3650, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3682, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3746, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3750, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3754, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3795.75, + "y": 747.625, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 3809.75, + "y": 747.625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 3818, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3822, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3736.5625, + "y": 749.55078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3638, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3642, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3646, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3678, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3682, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3731.61328125, + "y": 751, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 3742, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3746, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3807.69921875, + "y": 751.12109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3818, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3802.75, + "y": 752.57421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 3638, + "y": 754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3678, + "y": 754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3818, + "y": 754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3741.51171875, + "y": 757.99609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3638, + "y": 758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3678, + "y": 758.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3674, + "y": 762.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3678, + "y": 762.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3826, + "y": 762.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3646, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3650, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3674, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3826, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3650, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3654, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3658, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3662, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3666, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3670, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3674, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3826, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3830, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3834, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3838, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3838, + "y": 778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3838, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3842, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3846, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3850, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3854, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3830, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3834, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3838, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3850, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3854, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3858, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3834, + "y": 798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3838, + "y": 798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3850, + "y": 798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3734, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3738, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3742, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3806, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3810, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3726, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3730, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3734, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3742, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3802, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3806, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3854, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3726, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3742, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3798, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3802, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3834, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3838, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3842, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3846, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3850, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3854, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3726, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3730, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3734, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3738, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3742, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3798, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3838, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3842, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3846, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3850, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3726, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3730, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3838, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3842, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3846, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3838, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3850, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3854, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3858, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3846, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3850, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3834, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3834, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3838, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3842, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3842, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + } + ], + "resources": [] + }, + { + "label": "[3600,600], ALL resources OFF", + "region": { + "x0": 3600, + "y0": 600, + "x1": 3856, + "y1": 856 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 3766, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3762, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3766, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3770, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3822, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3826, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3762, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3766, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3770, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3822, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3826, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3838, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3842, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3766, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3822, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3826, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3830, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3834, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3838, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3766, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3822, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3606, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3610, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3626, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3630, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3818, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3822, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3610, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3618, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3622, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3626, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3766, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3770, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3786, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3818, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3610, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3614, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3618, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3766, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3770, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3786, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3818, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3822, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3766, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3786, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3790, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3794, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3798, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3822, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3826, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3766, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3790, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3794, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3826, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3830, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3830, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3846, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3830, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3834, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3846, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3834, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3842, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3846, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3798, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3802, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3806, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3810, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3814, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3818, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3834, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3838, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3842, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3854, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3790, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3794, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3798, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3818, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3822, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3826, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3854, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3770, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3774, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3790, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3794, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3798, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3802, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3806, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3810, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3814, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3818, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3822, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3826, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3774, + "y": 662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3778, + "y": 662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3782, + "y": 662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3782, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3786, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3798, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3802, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3806, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3810, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3814, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3822, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3826, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3830, + "y": 666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3650, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3786, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3798, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3830, + "y": 670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3642, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3646, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3650, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3786, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3790, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3794, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3798, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3830, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3834, + "y": 674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3638, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3642, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3790, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3794, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3834, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3838, + "y": 678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3838, + "y": 682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3842, + "y": 682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3842, + "y": 686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3838, + "y": 690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3842, + "y": 690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3850, + "y": 690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3838, + "y": 694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3850, + "y": 694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3630, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3634, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3638, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3642, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3846, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3850, + "y": 698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3602, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3630, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3634, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3642, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3746, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3750, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3846, + "y": 702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3602, + "y": 706.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3796.75, + "y": 717.17578125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3791.80078125, + "y": 718.625, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 3801.69921875, + "y": 718.625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 3614, + "y": 722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3789.75, + "y": 722.125, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 3803.75, + "y": 722.125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 3801.69921875, + "y": 725.62109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3614, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3618, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3796.75, + "y": 727.07421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 3814, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3818, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3822, + "y": 726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3618, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3622, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3654, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3658, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3662, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3666, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3670, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3674, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3770, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3774, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3810, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3814, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3826, + "y": 730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3602, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3622, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3654, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3674, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3678, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3682, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3686, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3690, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3758, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3762, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3766, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3770, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3810, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3822, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3826, + "y": 734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3602, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3606, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3610, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3614, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3618, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3622, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3654, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3686, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3754, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3758, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3766, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3810, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3822, + "y": 738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3614, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3618, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3650, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3654, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3682, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3686, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3754, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3802.75, + "y": 742.67578125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3822, + "y": 742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3797.80078125, + "y": 744.125, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 3807.69921875, + "y": 744.125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 3646, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3650, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3682, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3746, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3750, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3754, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3795.75, + "y": 747.625, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 3809.75, + "y": 747.625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 3818, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3822, + "y": 746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3736.5625, + "y": 749.55078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3638, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3642, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3646, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3678, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3682, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3731.61328125, + "y": 751, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 3742, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3746, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3807.69921875, + "y": 751.12109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3818, + "y": 750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3802.75, + "y": 752.57421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 3638, + "y": 754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3678, + "y": 754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3818, + "y": 754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3741.51171875, + "y": 757.99609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3638, + "y": 758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3678, + "y": 758.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3674, + "y": 762.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3678, + "y": 762.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3826, + "y": 762.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3646, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3650, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3674, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3826, + "y": 766.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3650, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3654, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3658, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3662, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3666, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3670, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3674, + "y": 770.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3826, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3830, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3834, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3838, + "y": 774.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3838, + "y": 778.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3838, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3842, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3846, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3850, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3854, + "y": 782.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3830, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3834, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3838, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3850, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3854, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3858, + "y": 794.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3834, + "y": 798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3838, + "y": 798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3850, + "y": 798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3734, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3738, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3742, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3806, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3810, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3726, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3730, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3734, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3742, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3802, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3806, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3854, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3726, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3742, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3798, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3802, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3834, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3838, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3842, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3846, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3850, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3854, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3726, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3730, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3734, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3738, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3742, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3798, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 3838, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 3842, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3846, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3850, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3726, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3730, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3838, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3842, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3846, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3838, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3850, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3854, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3858, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3846, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3850, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3834, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3834, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3838, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3842, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3842, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + } + ], + "resources": [] + }, + { + "label": "[-900,-3300], resources ON", + "region": { + "x0": -900, + "y0": -3300, + "x1": -644, + "y1": -3044 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -678, + "y": -3301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -650, + "y": -3301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -834, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -830, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -826, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -678, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -674, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -650, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -834, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -826, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -674, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -650, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -834, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -830, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -826, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -674, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -670, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -834, + "y": -3285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -830, + "y": -3285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -834, + "y": -3281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -830, + "y": -3281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -834, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -826, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -822, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -818, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -814, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -834, + "y": -3265.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -826, + "y": -3265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -822, + "y": -3265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -822, + "y": -3261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -818, + "y": -3261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -814, + "y": -3261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -818, + "y": -3257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -814, + "y": -3257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -802, + "y": -3229.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -798, + "y": -3229.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -802, + "y": -3225.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -786, + "y": -3225.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -782, + "y": -3225.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -806, + "y": -3221.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -802, + "y": -3221.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -782, + "y": -3221.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -806, + "y": -3217.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -782, + "y": -3217.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -778, + "y": -3217.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -806, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -786, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -782, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -778, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -646, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -642, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -882, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -878, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -654, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -650, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -646, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -890, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -886, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -882, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -878, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -662, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -658, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -654, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -646, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -642, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -894, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -890, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -666, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -662, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -654, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -650, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -646, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -894, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -890, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -874, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -658, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -654, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -890, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -886, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -874, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -698, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -694, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -662, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -658, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -886, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -882, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -878, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -874, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -710, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -706, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -674, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -670, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -666, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -662, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -882, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -878, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -818, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -814, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -706, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -882, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -878, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -818, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -814, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -706, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -818, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -814, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -706, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -870, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -866, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -818, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -814, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -706, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -870, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -866, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -750, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -746, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -742, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -706, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -750, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -746, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -802, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -798, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -794, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -790, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -786, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -774, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -770, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -746, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -802, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -766, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -746, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -742, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -806, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -802, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -766, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -762, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -714, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -710, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -806, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -762, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -758, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -714, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -710, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -706, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -806, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -790, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -786, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -782, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -778, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -706, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -702, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -698, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -694, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -690, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -686, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -682, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -722.4375, + "y": -3142.94921875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -806, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -790, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -778, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -774, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -727.38671875, + "y": -3141.5, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -717.48828125, + "y": -3141.5, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -694, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -682, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -678, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -806, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -802, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -790, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -774, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -742, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -738, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -729.4375, + "y": -3138, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -715.4375, + "y": -3138, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -706, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -702, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -698, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -694, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -678, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -727.38671875, + "y": -3134.50390625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -717.48828125, + "y": -3134.50390625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -802, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -790, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -786, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -774, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -770, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -766, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -746, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -742, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -738, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -722.4375, + "y": -3133.05078125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -706, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -678, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -802, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -786, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -782, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -778, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -766, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -750, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -746, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -738, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -734, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -730, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -678, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -802, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -778, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -766, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -754, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -750, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -674, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -802, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -798, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -778, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -766, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -754, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -674, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -802, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -798, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -778, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -774, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -770, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -766, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -758, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -754, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -670, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -802, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -770, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -670, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -666, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -802, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -778, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -774, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -770, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -674, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -666, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -826, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -822, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -778, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -674, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -670, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -666, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -662, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -670, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -662, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -670, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -662, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -782, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -778, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -670, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -662, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -822, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -818, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -782, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -822, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -818, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -782, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -758, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -754, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -750, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -842, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -838, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -834, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -782, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -762, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -758, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -750, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -746, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -834, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -830, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -826, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -822, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -818, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -790, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -786, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -782, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -762, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -746, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -742, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -854, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -850, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -786, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -782, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -766, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -762, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -746, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -742, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -894, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -890, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -866, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -862, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -850, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -846, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -842, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -782, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -778, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -774, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -770, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -746, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -670, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -890, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -886, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -870, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -862, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -858, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -854, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -830, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -826, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -786, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -782, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -750, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -746, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -674, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -670, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -902, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -898, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -886, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -882, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -870, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -866, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -862, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -854, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -850, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -826, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -822, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -786, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -674, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -646, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -642, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -898, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -894, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -882, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -878, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -874, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -862, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -858, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -850, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -846, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -842, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -822, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -818, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -790, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -786, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -678, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -674, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -894, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -890, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -874, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -870, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -854, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -850, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -842, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -818, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -790, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -786, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -678, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -902, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -898, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -890, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -886, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -870, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -866, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -862, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -850, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -846, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -838, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -834, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -830, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -814, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -786, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -782, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -778, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -678, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -898, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -886, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -882, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -862, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -858, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -854, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -846, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -842, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -830, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -826, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -814, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -674, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -666, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -898, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -854, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -666, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + } + ], + "resources": [ + { + "x": -888.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3299.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3298.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3297.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -874.5, + "y": -3296.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3295.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3294.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -876.5, + "y": -3292.5, + "name": "tungsten-ore" + }, + { + "x": -875.5, + "y": -3293.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -879.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -878.5, + "y": -3290.5, + "name": "tungsten-ore" + }, + { + "x": -877.5, + "y": -3291.5, + "name": "tungsten-ore" + }, + { + "x": -886.5, + "y": -3289.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3289.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3289.5, + "name": "tungsten-ore" + }, + { + "x": -885.5, + "y": -3288.5, + "name": "tungsten-ore" + }, + { + "x": -884.5, + "y": -3288.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3289.5, + "name": "tungsten-ore" + }, + { + "x": -882.5, + "y": -3289.5, + "name": "tungsten-ore" + }, + { + "x": -883.5, + "y": -3288.5, + "name": "tungsten-ore" + }, + { + "x": -881.5, + "y": -3289.5, + "name": "tungsten-ore" + }, + { + "x": -880.5, + "y": -3289.5, + "name": "tungsten-ore" + } + ] + }, + { + "label": "[-900,-3300], ALL resources OFF", + "region": { + "x0": -900, + "y0": -3300, + "x1": -644, + "y1": -3044 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -678, + "y": -3301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -650, + "y": -3301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -834, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -830, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -826, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -678, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -674, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -650, + "y": -3297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -834, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -826, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -674, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -650, + "y": -3293.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -834, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -830, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -826, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -674, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -670, + "y": -3289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -834, + "y": -3285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -830, + "y": -3285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -834, + "y": -3281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -830, + "y": -3281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -834, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -826, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -822, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -818, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -814, + "y": -3269.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -834, + "y": -3265.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -826, + "y": -3265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -822, + "y": -3265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -822, + "y": -3261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -818, + "y": -3261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -814, + "y": -3261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -818, + "y": -3257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -814, + "y": -3257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -802, + "y": -3229.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -798, + "y": -3229.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -802, + "y": -3225.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -786, + "y": -3225.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -782, + "y": -3225.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -806, + "y": -3221.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -802, + "y": -3221.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -782, + "y": -3221.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -806, + "y": -3217.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -782, + "y": -3217.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -778, + "y": -3217.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -806, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -786, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -782, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -778, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -646, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -642, + "y": -3213.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -882, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -878, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -654, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -650, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -646, + "y": -3209.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -890, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -886, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -882, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -878, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -662, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -658, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -654, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -646, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -642, + "y": -3205.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -894, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -890, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -666, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -662, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -654, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -650, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -646, + "y": -3201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -894, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -890, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -874, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -658, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -654, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -890, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -886, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -874, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -698, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -694, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -662, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -658, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -886, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -882, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -878, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -874, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -710, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -706, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -674, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -670, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -666, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -662, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -882, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -878, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -818, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -814, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -706, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -882, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -878, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -818, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -814, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -706, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -818, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -814, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -706, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -870, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -866, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -818, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -814, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -706, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -870, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -866, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -750, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -746, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -742, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -706, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -750, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -746, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -802, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -798, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -794, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -790, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -786, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -774, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -770, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -746, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -802, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -766, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -746, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -742, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -806, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -802, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -766, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -762, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -714, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -710, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -806, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -762, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -758, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -714, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -710, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -706, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -806, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -790, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -786, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -782, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -778, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -706, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -702, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -698, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -694, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -690, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -686, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -682, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -722.4375, + "y": -3142.94921875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -806, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -790, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -778, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -774, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -727.38671875, + "y": -3141.5, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -717.48828125, + "y": -3141.5, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -694, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -682, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -678, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -806, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -802, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -790, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -774, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -742, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -738, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -729.4375, + "y": -3138, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -715.4375, + "y": -3138, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -706, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -702, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -698, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -694, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -678, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -727.38671875, + "y": -3134.50390625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -717.48828125, + "y": -3134.50390625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -802, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -790, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -786, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -774, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -770, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -766, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -746, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -742, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -738, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -722.4375, + "y": -3133.05078125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -706, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -678, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -802, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -786, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -782, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -778, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -766, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -750, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -746, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -738, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -734, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -730, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -678, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -802, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -778, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -766, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -754, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -750, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -674, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -802, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -798, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -778, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -766, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -754, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -674, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -802, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -798, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -778, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -774, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -770, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -766, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -758, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -754, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -670, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -802, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -770, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -670, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -666, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -802, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -778, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -774, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -770, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -674, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -666, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -826, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -822, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -778, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -674, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -670, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -666, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -662, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -670, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -662, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -670, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -662, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -782, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -778, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -670, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -662, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -822, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -818, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -782, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -822, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -818, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -782, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -758, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -754, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -750, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -842, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -838, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -834, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -782, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -762, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -758, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -750, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -746, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -834, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -830, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -826, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -822, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -818, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -790, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -786, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -782, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -762, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -746, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -742, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -854, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -850, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -786, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -782, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -766, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -762, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -746, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -742, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -894, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -890, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -866, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -862, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -850, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -846, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -842, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -782, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -778, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -774, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -770, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -746, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -670, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -890, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -886, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -870, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -862, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -858, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -854, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -830, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -826, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -786, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -782, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -750, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -746, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -674, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -670, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -902, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -898, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -886, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -882, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -870, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -866, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -862, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -854, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -850, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -826, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -822, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -786, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -674, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -646, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -642, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -898, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -894, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -882, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -878, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -874, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -862, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -858, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -850, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -846, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -842, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -822, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -818, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -790, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -786, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -678, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -674, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -894, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -890, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -874, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -870, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -858, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -854, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -850, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -842, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -818, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -790, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -786, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -678, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -902, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -898, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -890, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -886, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -870, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -866, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -862, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -850, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -846, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -838, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -834, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -830, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -814, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -786, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -782, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -778, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -678, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -898, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -886, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -882, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -862, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -858, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -854, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -846, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -842, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -830, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -826, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -814, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -674, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -666, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -898, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -854, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -666, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + } + ], + "resources": [] + }, + { + "label": "[2800,2000], resources ON", + "region": { + "x0": 2800, + "y0": 2000, + "x1": 3056, + "y1": 2256 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 2810, + "y": 1998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2854, + "y": 1998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2854, + "y": 2002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2858, + "y": 2002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2858, + "y": 2006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2862, + "y": 2006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2866, + "y": 2006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2866, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2870, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2930, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2934, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2938, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2942, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2870, + "y": 2014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2874, + "y": 2014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2878, + "y": 2014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3026, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3030, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3034, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3038, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3042, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3046, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3050, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3054, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3022, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3046, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3050, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3022, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3046, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3050, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3054, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3058, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3038, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3042, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3046, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3054, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3058, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2945.42578125, + "y": 2033.6875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2950.375, + "y": 2032.23828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 2955.32421875, + "y": 2033.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 2926, + "y": 2034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3014, + "y": 2034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3018, + "y": 2034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2943.375, + "y": 2037.1875, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 2957.375, + "y": 2037.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2926, + "y": 2038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2955.32421875, + "y": 2040.68359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2862, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2866, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2922, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2926, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2950.375, + "y": 2042.13671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2862, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2866, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2922, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3038, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2862, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2922, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3034, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3042, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3046, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2922, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2926, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2946, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3022, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3030, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3034, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3038, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3042, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2926, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2930, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2934, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2938, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2942, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2946, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3018, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3022, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3030, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3038, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2926, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2930, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3014, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3018, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3022, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3030, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3034, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3038, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3050, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3054, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3058, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3014, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3022, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3014, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3022, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3026, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3014, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3018, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2086.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2086.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2086.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2090.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3026, + "y": 2090.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2090.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2094.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3030, + "y": 2094.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3034, + "y": 2094.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2998, + "y": 2098.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3010, + "y": 2098.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3018, + "y": 2098.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2998, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3042, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3046, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3050, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3054, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2998, + "y": 2106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3010, + "y": 2106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3010, + "y": 2110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3034, + "y": 2114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3038, + "y": 2114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3038, + "y": 2118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3042, + "y": 2118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3042, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3046, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3050, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3054, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2906, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2910, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3054, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3058, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2902, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2906, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2910, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2914, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2918, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3026, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2902, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2918, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2922, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2926, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2930, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3026, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2902, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2930, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2934, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3026, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2902, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2934, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3030, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3038, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2902, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2930, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2934, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3022, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3026, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3030, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3034, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3038, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2902, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2906, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3026, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3038, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2906, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2910, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2966, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3010, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3026, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2878, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2882, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2966, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3014, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3030, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3034, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2878, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2882, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2966, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3018, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3022, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3026, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2966, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3026, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3034, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3038, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3014, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3018, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3022, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3026, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3038, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3022, + "y": 2174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2991.125, + "y": 2179.23828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3022, + "y": 2178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2986.17578125, + "y": 2180.6875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2996.07421875, + "y": 2180.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 3022, + "y": 2182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3026, + "y": 2182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2998.125, + "y": 2184.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2986.17578125, + "y": 2187.68359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 2996.07421875, + "y": 2187.68359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3026, + "y": 2186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3034, + "y": 2186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2991.125, + "y": 2189.13671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2982, + "y": 2194.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2986, + "y": 2194.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2970, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2982, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3022, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2894, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2898, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2970, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2974, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2978, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2982, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3022, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3026, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2894, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2898, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2974, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2978, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3022, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3026, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2982, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2986, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2990, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2990, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2994, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2990, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2994, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3046, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3050, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3054, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3058, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2798, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2802, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2942, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2946, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2950, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2954, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2982, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2986, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2990, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3022, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3026, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3038, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3042, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3046, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2954, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2958, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2962, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2966, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2974, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2978, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2982, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3018, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3022, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3026, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3034, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3038, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2966, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2970, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2974, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3018, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3014, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3018, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2966, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2970, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2974, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2978, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2982, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2986, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2990, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2994, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3006, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3010, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3014, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2994, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2998, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3002, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3006, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ], + "resources": [ + { + "x": 3051.5, + "y": 2035.5, + "name": "calcite" + } + ] + }, + { + "label": "[2800,2000], ALL resources OFF", + "region": { + "x0": 2800, + "y0": 2000, + "x1": 3056, + "y1": 2256 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": 2810, + "y": 1998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2854, + "y": 1998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2854, + "y": 2002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2858, + "y": 2002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2858, + "y": 2006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2862, + "y": 2006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2866, + "y": 2006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2866, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2870, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2930, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2934, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2938, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2942, + "y": 2010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2870, + "y": 2014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2874, + "y": 2014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2878, + "y": 2014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 3026, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3030, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3034, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3038, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3042, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3046, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3050, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3054, + "y": 2018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3022, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3046, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3050, + "y": 2022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3022, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3046, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3050, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 3054, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3058, + "y": 2026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3038, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3042, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3046, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3054, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3058, + "y": 2030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2945.42578125, + "y": 2033.6875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2950.375, + "y": 2032.23828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 2955.32421875, + "y": 2033.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 2926, + "y": 2034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3014, + "y": 2034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3018, + "y": 2034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2943.375, + "y": 2037.1875, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 2957.375, + "y": 2037.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2926, + "y": 2038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2955.32421875, + "y": 2040.68359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2862, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2866, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2922, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2926, + "y": 2042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2950.375, + "y": 2042.13671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2862, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2866, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2922, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3038, + "y": 2046.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2862, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2922, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3034, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3042, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3046, + "y": 2050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2922, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2926, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2946, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 3022, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3030, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3034, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3038, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3042, + "y": 2054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2926, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2930, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2934, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2938, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2942, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2946, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3018, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3022, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3030, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3038, + "y": 2058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2926, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2930, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3014, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3018, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3022, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3030, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3034, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3038, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3050, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3054, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3058, + "y": 2062.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3014, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3022, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2066.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3014, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3022, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3026, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2070.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2074.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2078.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3014, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3018, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2082.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2086.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2086.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2086.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2090.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3026, + "y": 2090.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2090.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3026, + "y": 2094.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3030, + "y": 2094.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3034, + "y": 2094.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2998, + "y": 2098.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3010, + "y": 2098.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3018, + "y": 2098.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2998, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3042, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 3046, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3050, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 3054, + "y": 2102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2998, + "y": 2106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3010, + "y": 2106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3018, + "y": 2106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3010, + "y": 2110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3034, + "y": 2114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3038, + "y": 2114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3038, + "y": 2118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3042, + "y": 2118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3042, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3046, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3050, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3054, + "y": 2122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2906, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2910, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3054, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3058, + "y": 2126.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2902, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2906, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2910, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2914, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2918, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3026, + "y": 2130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2902, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2918, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2922, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2926, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2930, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3026, + "y": 2134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2902, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2930, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2934, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 3026, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2902, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2934, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3030, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3038, + "y": 2142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2902, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2930, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2934, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3022, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3026, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3030, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3034, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3038, + "y": 2146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2902, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2906, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3026, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3034, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3038, + "y": 2150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2906, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2910, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2966, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3010, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 3026, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2878, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2882, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2966, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3010, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3014, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3030, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3034, + "y": 2158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2878, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2882, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2966, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3014, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3018, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3022, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3026, + "y": 2162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2966, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3026, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3034, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3038, + "y": 2166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3014, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 3018, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3022, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3026, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3038, + "y": 2170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 3022, + "y": 2174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2991.125, + "y": 2179.23828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 3022, + "y": 2178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2986.17578125, + "y": 2180.6875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2996.07421875, + "y": 2180.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 3022, + "y": 2182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3026, + "y": 2182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2998.125, + "y": 2184.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2986.17578125, + "y": 2187.68359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 2996.07421875, + "y": 2187.68359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 3026, + "y": 2186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3034, + "y": 2186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2991.125, + "y": 2189.13671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2982, + "y": 2194.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2986, + "y": 2194.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2970, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2982, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 3022, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3026, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2894, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2898, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2970, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2974, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2978, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2982, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 3022, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3026, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2894, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2898, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2974, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2978, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 3018, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3022, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3026, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2982, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2986, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2990, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2990, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2994, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2990, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2994, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3046, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3050, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3054, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3058, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2798, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2802, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2942, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2946, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2950, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2954, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2982, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2986, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2990, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3022, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3026, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3038, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3042, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3046, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2954, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2958, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2962, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2966, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2974, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2978, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2982, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3018, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3022, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3026, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 3030, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3034, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3038, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2966, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2970, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2974, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 3018, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 3014, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3018, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2966, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2970, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2974, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2978, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2982, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2986, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2990, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2994, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 3006, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 3010, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3014, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2994, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2998, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3002, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 3006, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ], + "resources": [] + }, + { + "label": "[-3000,2800], resources ON", + "region": { + "x0": -3000, + "y0": 2800, + "x1": -2744, + "y1": 3056 + }, + "autoplaceControls": null, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -2990, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2978, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2974, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2970, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2898, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2894, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2878, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2790, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2758, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2990, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2986, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2978, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2974, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2898, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2894, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2882, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2878, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2790, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2766, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2762, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2758, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2994, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2990, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2986, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2978, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2926, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2922, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2918, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2882, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2866, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2862, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2766, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2746, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2742, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2936.125, + "y": 2809.05078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2982, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2978, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2941.07421875, + "y": 2810.5, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -2931.17578125, + "y": 2810.5, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2926, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2922, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2918, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2886, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2870, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2866, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2862, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2858, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2770, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2758, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2754, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2746, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2982, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2978, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2943.125, + "y": 2814, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -2929.125, + "y": 2814, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2918, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2914, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2910, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2886, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2870, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2866, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2770, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2766, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2758, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2754, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2746, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2742, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2941.07421875, + "y": 2817.49609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -2931.17578125, + "y": 2817.49609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2936.125, + "y": 2818.94921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2890, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2886, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2754, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2978, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2974, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2926, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2902, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2894, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2890, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2882, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2878, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2874, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2870, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2866, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2862, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2746, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2742, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2978, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2974, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2926, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2906, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2902, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2894, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2862, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2858, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2978, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2926, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2922, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2906, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2894, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2886, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2858, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2978, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2922, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2918, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2914, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2906, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2898, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2894, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2890, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2850, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2994, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2990, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2986, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2978, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2926, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2914, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2910, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2898, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2890, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2882, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2878, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2874, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2858, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2850, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2926, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2922, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2918, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2894, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2890, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2886, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2858, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2854, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2850, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2910, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2894, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2886, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2918, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2914, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2910, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2894, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2882, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2974, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2946, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2894, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2882, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2982, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2978, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2974, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2946, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2894, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2882, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2878, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2774, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2990, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2986, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2978, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2974, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2950, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2946, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2898, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2894, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2890, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2886, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2874, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2774, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2998, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2994, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2990, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2978, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2974, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2950, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2930, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2926, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2898, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2894, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2886, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2878, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2874, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2870, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2774, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3002, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2998, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2978, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2974, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2910, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2906, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2894, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2882, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2878, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2774, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2978, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2974, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2970, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2906, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2902, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2894, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2874, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2978, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2938, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2914, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2902, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2898, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2894, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2874, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2982, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2978, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2938, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2934, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2914, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2986, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2982, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2934, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2930, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2918, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2914, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2910, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2786, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2990, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2986, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2926, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2918, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2914, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2910, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2906, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2790, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2786, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2990, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2982, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2926, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2918, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2914, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2906, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2902, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2998, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2994, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2990, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2986, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2982, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2922, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2918, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2866, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2862, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2854, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2850, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2846, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2842, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2838, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2830, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2806, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2782, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2778, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2998, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2986, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2926, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2922, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2862, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2858, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2854, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2850, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2834, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2830, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2826, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2822, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2818, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2810, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2806, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2998, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2994, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2990, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2866, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2862, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2854, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2850, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2846, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2842, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2838, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2826, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2818, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2814, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2810, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3002, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2998, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2994, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2930, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2926, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2914, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2910, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2886, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2878, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2866, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2862, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2834, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2830, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2826, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2813, + "y": 2911.875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2794, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2790, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2786, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2778, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2998, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2994, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2886, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2870, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2834, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2830, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2815.05078125, + "y": 2915.37109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2794, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2750, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2746, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2820, + "y": 2916.82421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2998, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2922, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2898, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2870, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2866, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2794, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2750, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2998, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2922, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2898, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2866, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2862, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2806, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2802, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2798, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2790, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2786, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3002, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2998, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2990, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2934, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2922, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2858, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2854, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2838, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2834, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2830, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2826, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2822, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2818, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2810, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2806, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2794, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2790, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3002, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2998, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2990, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2934, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2926, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2922, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2902, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2854, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2850, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2846, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2842, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2838, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2834, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2826, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2794, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2766, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2762, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2758, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2754, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2746, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2742, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2998, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2986, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2934, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2926, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2918, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2914, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2814, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2810, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2770, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2766, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2754, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2746, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2998, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2942, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2930, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2918, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2914, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2814, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2782, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2778, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2758, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2754, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2998, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2994, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2942, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2938, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2930, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2922, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2918, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2910, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2890, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2834, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2830, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2814, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2782, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2766, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2762, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2758, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2994, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2942, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2938, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2934, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2930, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2922, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2918, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2838, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2826, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2861.1875, + "y": 2948.25, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -2994, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2990, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2938, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2934, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2902, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2890, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2859.13671875, + "y": 2951.74609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -2849.23828125, + "y": 2951.74609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2822, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2854.1875, + "y": 2953.19921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2990, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2986, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2978, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2974, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2970, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2906, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2822, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2818, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2814, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2810, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2786, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3002, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2998, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2986, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2982, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2978, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2970, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2966, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2962, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2918, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2886, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2834, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2830, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2818, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2814, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2786, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3002, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2998, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2962, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2958, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2922, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2886, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2974, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2970, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2926, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2922, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2898, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2778, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2774, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2930, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2926, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2910, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2906, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2826, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2782, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2778, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2958, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2954, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2950, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2946, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2910, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2906, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2886, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2846, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2826, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2822, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2814, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2962, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2958, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2922, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2886, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2878, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2846, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2806, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2802, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2978, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2974, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2930, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2818, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2814, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2810, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2806, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2974, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2970, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2930, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2894, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2890, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2818, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2774, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2770, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2762, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3002, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2998, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2994, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2990, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2970, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2966, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2930, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2914, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2910, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2894, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2878, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2826, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2822, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2818, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2814, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2782, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2778, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2762, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2758, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2754, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2966, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2962, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2930, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2914, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2882, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2878, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2874, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2870, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2838, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2826, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2818, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2814, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2810, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2806, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2758, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2754, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2914, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2898, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2882, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2866, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2862, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2838, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2826, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2806, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2802, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2798, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2770, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2766, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2762, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2754, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2966, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2954, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2950, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2914, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2910, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2902, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2898, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2830, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2826, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2814, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2778, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2774, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2762, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2758, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2754, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2973.8125, + "y": 3007.61328125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2966, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2962, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2958, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2954, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2906, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2902, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2878, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2854, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2850, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2846, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2842, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2838, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2834, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2814, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2810, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2806, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2798, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2794, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2782, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2968.86328125, + "y": 3009.0625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2994, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2930, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2926, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2910, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2906, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2894, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2890, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2882, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2866, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2862, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2854, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2850, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2846, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2966.8125, + "y": 3012.5625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2994, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2962, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2958, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2942, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2938, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2922, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2902, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2898, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2874, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2818, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2814, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2810, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2994, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2946, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2886, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2878, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2834, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2830, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2810, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2806, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2794, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2778, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2774, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2758, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2994, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2978, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2946, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2934, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2930, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2898, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2862, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2858, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2854, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2850, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2842, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2838, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2834, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2802, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2798, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2766, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2994, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2990, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2986, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2982, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2978, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2938, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2934, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2926, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2922, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2914, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2910, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2850, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2846, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2842, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2818, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2766, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2754, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2982, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2978, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2942, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2938, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2886, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2878, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2874, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2818, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2814, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2810, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2770, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2762, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2758, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2990, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2938, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2934, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2930, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2894, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2890, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2878, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2806, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2774, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2770, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2762, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2754, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2990, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2986, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2982, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2978, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2974, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2930, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2894, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2854, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2850, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2846, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2806, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2802, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2778, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2774, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2762, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2934, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2930, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2894, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2858, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2854, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2806, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2782, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2778, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2754, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2938, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2934, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2926, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2922, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2918, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2862, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2858, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2806, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2930, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2878, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2870, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2790, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2786, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2770, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2762, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2758, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2746, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2742, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2938, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2934, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2930, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2882, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2770, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2762, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2750, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2746, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2882, + "y": 3058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2770, + "y": 3058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2750, + "y": 3058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ], + "resources": [ + { + "x": -2999.5, + "y": 2807.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2979.5, + "y": 2963.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2934.5, + "y": 2962.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2965.5, + "y": 2965.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2955.5, + "y": 2965.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2978.5, + "y": 2966.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2952.5, + "y": 2967.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2965.5, + "y": 2968.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2989.5, + "y": 2971.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2980.5, + "y": 2970.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2973.5, + "y": 2971.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2961.5, + "y": 2970.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2984.5, + "y": 2972.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2987.5, + "y": 2975.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2978.5, + "y": 2974.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2968.5, + "y": 2974.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2963.5, + "y": 2974.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2943.5, + "y": 2975.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2973.5, + "y": 2977.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2954.5, + "y": 2977.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2964.5, + "y": 2978.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2946.5, + "y": 2978.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2984.5, + "y": 2980.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2953.5, + "y": 2981.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2945.5, + "y": 2981.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2937.5, + "y": 2981.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2954.5, + "y": 2984.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2947.5, + "y": 2984.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2941.5, + "y": 2985.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2958.5, + "y": 2986.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2945.5, + "y": 2987.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2938.5, + "y": 2986.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2961.5, + "y": 2988.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2948.5, + "y": 2989.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2945.5, + "y": 2991.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2961.5, + "y": 3000.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": -2968.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3017.5, + "name": "calcite" + }, + { + "x": -2977.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3018.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3019.5, + "name": "calcite" + }, + { + "x": -2974.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3020.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3021.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3022.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3023.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3024.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3025.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3026.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3027.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3028.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3029.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3030.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3031.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3032.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3033.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3034.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3035.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2939.5, + "y": 3036.5, + "name": "calcite" + }, + { + "x": -2939.5, + "y": 3037.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2938.5, + "y": 3038.5, + "name": "calcite" + }, + { + "x": -2938.5, + "y": 3039.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2939.5, + "y": 3040.5, + "name": "calcite" + }, + { + "x": -2939.5, + "y": 3041.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2940.5, + "y": 3043.5, + "name": "calcite" + }, + { + "x": -2939.5, + "y": 3042.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3044.5, + "name": "calcite" + }, + { + "x": -2941.5, + "y": 3045.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2942.5, + "y": 3046.5, + "name": "calcite" + }, + { + "x": -2943.5, + "y": 3047.5, + "name": "calcite" + }, + { + "x": -2973.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3048.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3049.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2944.5, + "y": 3050.5, + "name": "calcite" + }, + { + "x": -2945.5, + "y": 3051.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2946.5, + "y": 3052.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3053.5, + "name": "calcite" + }, + { + "x": -2973.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2973.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2972.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2971.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2970.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2969.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2968.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2967.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2966.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2965.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2964.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2963.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2962.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2961.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2960.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2959.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2958.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2957.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2956.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2955.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2954.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2953.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2952.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2951.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2950.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3054.5, + "name": "calcite" + }, + { + "x": -2949.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2948.5, + "y": 3055.5, + "name": "calcite" + }, + { + "x": -2947.5, + "y": 3054.5, + "name": "calcite" + } + ] + }, + { + "label": "[-3000,2800], ALL resources OFF", + "region": { + "x0": -3000, + "y0": 2800, + "x1": -2744, + "y1": 3056 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "cliffs": [ + { + "x": -2990, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2978, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2974, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2970, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2898, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2894, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2878, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2790, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2758, + "y": 2798.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2990, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2986, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2978, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2974, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2898, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2894, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2882, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2878, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2790, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2766, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2762, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2758, + "y": 2802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -3002, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2998, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2994, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2990, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2986, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2978, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2926, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2922, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2918, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2882, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2866, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2862, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2766, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2746, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2742, + "y": 2806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2936.125, + "y": 2809.05078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2982, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2978, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2941.07421875, + "y": 2810.5, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -2931.17578125, + "y": 2810.5, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2926, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2922, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2918, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2886, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2870, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2866, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2862, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2858, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2770, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2758, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2754, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2746, + "y": 2810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2982, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2978, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2943.125, + "y": 2814, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -2929.125, + "y": 2814, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2918, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2914, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2910, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2886, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2870, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2866, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2770, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2766, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2758, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2754, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2746, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2742, + "y": 2814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2941.07421875, + "y": 2817.49609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -2931.17578125, + "y": 2817.49609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2936.125, + "y": 2818.94921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2890, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2886, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2754, + "y": 2818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2978, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2974, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2926, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2902, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2894, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2890, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2882, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2878, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2874, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2870, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2866, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2862, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2746, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2742, + "y": 2822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2978, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2974, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2926, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2906, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2902, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2894, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2862, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2858, + "y": 2826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2978, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2926, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2922, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2906, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2894, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2886, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2858, + "y": 2830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2978, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2922, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2918, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2914, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2906, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2898, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2894, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2890, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2850, + "y": 2834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2994, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2990, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2986, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2978, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2926, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2914, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2910, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2898, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2890, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2882, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2878, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2874, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2858, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2850, + "y": 2838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2926, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2922, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2918, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2894, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2890, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2886, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2858, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2854, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2850, + "y": 2842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2910, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2894, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2886, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2882, + "y": 2846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2918, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2914, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2910, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2894, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2882, + "y": 2850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2974, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2946, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2894, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2882, + "y": 2854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2982, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2978, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2974, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2946, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2894, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2882, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2878, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2774, + "y": 2858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2990, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2986, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2982, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2978, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2974, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2950, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2946, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2898, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2894, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2890, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2886, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2874, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2774, + "y": 2862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2998, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2994, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2990, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2978, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2974, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2950, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2930, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2926, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2898, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2894, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2886, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2878, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2874, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2870, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2774, + "y": 2866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -3002, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2998, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2978, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2974, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2910, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2906, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2894, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2886, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2882, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2878, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2774, + "y": 2870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2978, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2974, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2970, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2906, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2902, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2894, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2874, + "y": 2874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2978, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2938, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2914, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2902, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2898, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2894, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2874, + "y": 2878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2982, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2978, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2938, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2934, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2914, + "y": 2882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2986, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2982, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2934, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2930, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2918, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2914, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2910, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2786, + "y": 2886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2990, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2986, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2926, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2918, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2914, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2910, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2906, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2790, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2786, + "y": 2890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2990, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2982, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2926, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2918, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2914, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2906, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2902, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2998, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2994, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2990, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2986, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2982, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2922, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2918, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2866, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2862, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2854, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2850, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2846, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2842, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2838, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2830, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2806, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2782, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2778, + "y": 2898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2998, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2986, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2926, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2922, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2862, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2858, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2854, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2850, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2834, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2830, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2826, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2822, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2818, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2810, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2806, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 2902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2998, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2994, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2990, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2866, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2862, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2858, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2854, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2850, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2846, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2842, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2838, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2826, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2818, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2814, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2810, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 2906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -3002, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2998, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2994, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2930, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2926, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2914, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2910, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2886, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2878, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2866, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2862, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2834, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2830, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2826, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2813, + "y": 2911.875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2794, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2790, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2786, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2778, + "y": 2910.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2998, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2994, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2890, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2886, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2870, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2834, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2830, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2815.05078125, + "y": 2915.37109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2794, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2750, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2746, + "y": 2914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2820, + "y": 2916.82421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2998, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2922, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2898, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2870, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2866, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2794, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2750, + "y": 2918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2998, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2922, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2898, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2866, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2862, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2806, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2802, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2798, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2790, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2786, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -3002, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2998, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2990, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2934, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2922, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2902, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2858, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2854, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2838, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2834, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2830, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2826, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2822, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2818, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2810, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2806, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2794, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2790, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 2926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -3002, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2998, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2990, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2934, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2926, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2922, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2902, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2854, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2850, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2846, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2842, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2838, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2834, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2826, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2794, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2766, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2762, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2758, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2754, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2746, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2742, + "y": 2930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2998, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2990, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2986, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2934, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2926, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2918, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2914, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2814, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2810, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2770, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2766, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2754, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2746, + "y": 2934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2998, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2942, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2930, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2926, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2918, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2914, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2814, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2782, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2778, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2758, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2754, + "y": 2938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2998, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2994, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2942, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2938, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2930, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2922, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2918, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2914, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2910, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2890, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2834, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2830, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2814, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2782, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2766, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2762, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2758, + "y": 2942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2994, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2942, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2938, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2934, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2930, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2922, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2918, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2838, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2826, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 2946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2861.1875, + "y": 2948.25, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -2994, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2990, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2938, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2934, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2902, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2890, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2859.13671875, + "y": 2951.74609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -2849.23828125, + "y": 2951.74609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2822, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 2950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2854.1875, + "y": 2953.19921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2990, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2986, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2978, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2974, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2970, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2906, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2822, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2818, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2814, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2810, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2786, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 2954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -3002, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2998, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2986, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2982, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2978, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2970, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2966, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2962, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2918, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2886, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2834, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2830, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2818, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2814, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2786, + "y": 2958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -3002, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2998, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2962, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2958, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2922, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2886, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2974, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2970, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2966, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2962, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2958, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2954, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2926, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2922, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2898, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2778, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2774, + "y": 2966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2978, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2974, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2930, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2926, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2910, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2906, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2830, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2826, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2782, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2778, + "y": 2970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2990, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2962, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2958, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2954, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2950, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2946, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2910, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2906, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2886, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2846, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2826, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2822, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2814, + "y": 2974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2990, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2962, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2958, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2946, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2922, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2886, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2878, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2846, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2806, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2802, + "y": 2978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2978, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2974, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2958, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2954, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2950, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2946, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2938, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2930, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2890, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2818, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2814, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2810, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2806, + "y": 2982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2974, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2970, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2950, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2946, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2938, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2930, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2894, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2890, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2818, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2774, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2770, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2762, + "y": 2986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -3002, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2998, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2994, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2990, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2970, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2966, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2946, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2942, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2930, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2914, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2910, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2894, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2878, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2826, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2822, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2818, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2814, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2782, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2778, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2774, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2762, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2758, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2754, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2966, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2962, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2946, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2930, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2914, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2882, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2878, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2874, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2870, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2838, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2826, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2818, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2814, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2810, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2806, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2758, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2754, + "y": 2994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2962, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2958, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2954, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2914, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2898, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2882, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2866, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2862, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2838, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2834, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2826, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2806, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2802, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2798, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2770, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2766, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2762, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2754, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2750, + "y": 2998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2966, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2954, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2950, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2914, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2910, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2902, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2898, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2830, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2826, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2822, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2818, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2814, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2778, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2774, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2762, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2758, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2754, + "y": 3002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2966, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2962, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2958, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2954, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2906, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2902, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2878, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2854, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2850, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2846, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2842, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2838, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2834, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2830, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2814, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2810, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2806, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2798, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2794, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2782, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 3006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2994, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2930, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2926, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2910, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2906, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2894, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2890, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2882, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2866, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2862, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2858, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2854, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2850, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2846, + "y": 3010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2994, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2962, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2958, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2942, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2938, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2922, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2914, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2902, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2898, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2874, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2818, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2814, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2810, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 3014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2994, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2982, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2978, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2970, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2966, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2962, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2958, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2946, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2886, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2878, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2834, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2830, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2810, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2806, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2794, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2778, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2774, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2770, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2766, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2758, + "y": 3018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2994, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2978, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2974, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2970, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2958, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2954, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2946, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2934, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2930, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2898, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2894, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2890, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2862, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2858, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2854, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2850, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2842, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2838, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2834, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2802, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2798, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2766, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2994, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2990, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2986, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2982, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2978, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2974, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2970, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2966, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2962, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2958, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2954, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2950, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2946, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2938, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2934, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2926, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2922, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2914, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2910, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2874, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2870, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2850, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2846, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2842, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2818, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2766, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2754, + "y": 3026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2982, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2978, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2954, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2950, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2946, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2938, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2886, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2882, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2878, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2874, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2822, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2818, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2814, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2810, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2770, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2762, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2758, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 3030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2990, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2958, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2954, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2950, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2946, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2938, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2934, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2930, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2922, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2918, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2894, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2890, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2886, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2878, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2806, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2774, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2770, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2762, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2754, + "y": 3034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2990, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2986, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2982, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2978, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2974, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2962, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2958, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2954, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2950, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2942, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2938, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2922, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2894, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2854, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2850, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2846, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2806, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2802, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2778, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2774, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2762, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 3038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2954, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2946, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2934, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2930, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2910, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2906, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2902, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2898, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2894, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2858, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2854, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2806, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2782, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2778, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2754, + "y": 3042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2954, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2950, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2946, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2942, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2938, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2934, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2926, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2922, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2918, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2862, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2858, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2806, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2766, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2758, + "y": 3046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2962, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2958, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2954, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2950, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2946, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2942, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2930, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2926, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2882, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2878, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2874, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2870, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2866, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2862, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2810, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2790, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2786, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2770, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2762, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2758, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2746, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2742, + "y": 3050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2958, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2954, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2950, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2946, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2938, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2934, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2930, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2918, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2914, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2882, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2770, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2762, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2750, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2746, + "y": 3054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2882, + "y": 3058.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2770, + "y": 3058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2750, + "y": 3058.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ], + "resources": [] + } + ] +} diff --git a/test/oracle/capture.ts b/test/oracle/capture.ts index 38fae1c..7434301 100644 --- a/test/oracle/capture.ts +++ b/test/oracle/capture.ts @@ -3874,6 +3874,113 @@ async function captureVulcanusCliffOreDirection(): Promise { console.log(`wrote ${out} (${String(cases.length)} arms)`); } +/** + * **Eight more regions, to make the CHUNK-BORDER question decisive** (#84). + * + * The unexplained residual is enriched on chunk borders: 9 of 14 on the original + * three regions (64.3% against a 45.0% base), then 9 of 13 on the four added in + * #131 (69.2% against 47.2%). The second was a pre-registered test on fresh data + * and it replicated in direction and magnitude - but at 1.59 sigma alone and + * ~2.1 combined, it is a lead rather than a result. + * + * n is the only thing in the way. **The prediction, recorded here before the + * capture ran:** if the enrichment is real at ~66%, eight more regions should + * add roughly 26 unexplained cells with about 17 on a border, taking the + * combined figure to ~2.9 sigma. If it is noise, the new batch should sit near + * its own base rate of ~46% and the combined figure should FALL. + * + * That is a prediction with a real way to lose, which the first two rounds did + * not have. + * + * Regions are spread away from spawn, from each other, and from the seven + * already captured. ~2.5s an arm. + * + * Regenerate: `node --experimental-strip-types test/oracle/capture.ts + * vulcanus-cliff-entities-border-batch` + */ +async function captureVulcanusCliffEntitiesBorderBatch(): Promise { + const seed = 123456; + const OFF = { frequency: 1, size: 0, richness: 1 }; + const ALL_OFF = { + tungsten_ore: OFF, + calcite: OFF, + vulcanus_coal: OFF, + sulfuric_acid_geyser: OFF, + }; + const PROTOS = [ + "cliff-vulcanus", + "crater-cliff", + "tungsten-ore", + "calcite", + "coal", + "sulfuric-acid-geyser", + ]; + const mk = (x: number, y: number): Region => ({ x0: x, y0: y, x1: x + 256, y1: y + 256 }); + const regions: { label: string; region: Region }[] = [ + { label: "[2200,-2800]", region: mk(2200, -2800) }, + { label: "[-3400,-900]", region: mk(-3400, -900) }, + { label: "[1200,2600]", region: mk(1200, 2600) }, + { label: "[-1600,3200]", region: mk(-1600, 3200) }, + { label: "[3600,600]", region: mk(3600, 600) }, + { label: "[-900,-3300]", region: mk(-900, -3300) }, + { label: "[2800,2000]", region: mk(2800, 2000) }, + { label: "[-3000,2800]", region: mk(-3000, 2800) }, + ]; + + const cases: unknown[] = []; + for (const r of regions) { + for (const off of [false, true]) { + const label = `${r.label}, ${off ? "ALL resources OFF" : "resources ON"}`; + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const dump = await sampleCliffEntitiesFull(r.region, { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + autoplaceControls: off ? ALL_OFF : undefined, + alsoResources: true, + protoNames: PROTOS, + }); + cases.push({ + label, + region: r.region, + autoplaceControls: off ? ALL_OFF : null, + effectiveAutoplace: dump.autoplaceControls, + effectiveCliffSettings: dump.cliffSettings, + cliffs: dump.cliffs, + resources: dump.resources, + }); + const named = dump.cliffs as unknown as readonly { name: string }[]; + const vulc = named.filter((c) => c.name === "cliff-vulcanus").length; + console.log(` ${label} -> ${String(vulc)} cliff-vulcanus`); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + } + } + + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 via test/oracle. Eight more Vulcanus cliff-entity regions " + + "with the paired ON / ALL-resources-OFF ore lever, captured to make the CHUNK-BORDER question " + + "decisive (#84). The unexplained residual ran 9/14 on a border in the original three regions " + + "and 9/13 in the four added by #131 - replicated, but 1.59 sigma alone and ~2.1 combined. " + + "PREDICTION RECORDED BEFORE CAPTURE: if the enrichment is real at ~66%, these should add ~26 " + + "unexplained cells with ~17 on a border, taking the combined figure to ~2.9 sigma; if it is " + + "noise, the new batch sits near its own ~46% base rate and the combined figure FALLS. Regions " + + "are spread away from spawn, from each other, and from the seven already captured. Each arm " + + "records the autoplace_controls and cliff_settings the SURFACE read back and dumps cliffs and " + + "resources from one generated surface. Regenerate: node --experimental-strip-types " + + "test/oracle/capture.ts vulcanus-cliff-entities-border-batch", + seed, + cases, + }; + const out = join(FIXTURES, "oracle-vulcanus-cliff-entities-border-batch.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log(`wrote ${out} (${String(cases.length)} arms)`); +} + /** * **Four MORE cliff-entity regions, with the ore lever, to raise n** (#84). * @@ -4777,6 +4884,7 @@ if (want("vulcanus-cliff-ore-direction-regions")) await captureVulcanusCliffOreD if (want("vulcanus-tile-lever")) await captureVulcanusTileLever(); if (want("vulcanus-cliff-ore-richness")) await captureVulcanusCliffOreRichness(); if (want("vulcanus-cliff-entities-more-regions")) await captureVulcanusCliffEntitiesMoreRegions(); +if (want("vulcanus-cliff-entities-border-batch")) await captureVulcanusCliffEntitiesBorderBatch(); if (want("vulcanus-ore-cliff-replication")) await captureVulcanusOreCliffReplication(); if (want("vulcanus-cliff-corner-fields")) await captureVulcanusCliffCornerFields(); if (want("vulcanus-cliff-corner-fields-entity-regions"))